/*幻灯片*/
#container{
    position: relative;
    background: #F2F2F2;
}
.title{
    background: white;
    margin-bottom: 5px;
}
#btn-back{
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 2rem;
    color: #999999;
    height: 35px;
    line-height: 35px;
}
.search{
    z-index: 9999;
    width: calc(90% - 30px);
    padding: 0 2%;
    margin: 0px auto;
    text-align: center;
    top: 10px;
    background: white;
    border-radius: 20px;
    height: 28px;
    line-height: 28px;
    display: inline-block;
    vertical-align: middle;
}
.bg{
    width: 50%;
    padding: 20px;
}
.tips{
    padding-bottom: 10px;
    color: #767676;
}
.tips span{
    margin-right: 3px;
}
.item{
    width: 92%;
    padding: 5px 4%;
    font-size: 0;
    background: white;
    border-bottom: 1px solid #F2F2F2;
}
.item>div{
    display: inline-block;
    vertical-align: middle;
    height: 45px;
    line-height: 45px;
}
.item>div:first-child{
    width: 60px;
    font-size: 0.92rem;
    color: #767676;
}
.item>div:nth-child(2){
    width: calc(100% - 90px);
}
.item>div:nth-child(2) span{
    font-size: 0.85rem;
    margin-right: 10px;
    background: #EFF3F6;
    padding: 5px 13px;
    border-radius: 3px;
    text-align: center;
}
.item>div:nth-child(2) .active{
    background-color: #0498E2;
    color: white;
}
.item>div:nth-child(2) input{
    outline: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: 0;
    font-size: 0.95rem;
    color: #565656;
}
.item>div:nth-child(2) input::placeholder{
    color: #999999;
}
.item>div:last-child{
    width: 30px;
    text-align: right;
}
.item>div:last-child span{
    font-size: 1.6rem;
    color: #999999;
}

.btn-delete{
    text-align: right;
    width: 92%;
    margin: 10px auto;
    color: #868686;
}
.btn-delete span{
    font-size: 1.2rem;
    color: #333333;
    margin-right: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.btn-add{
    display: block;
    width: 85%;
    font-size: 0.9rem;
    text-align: center;
    background-color: #0498E2;
    color: white;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    position: fixed;
    bottom: 10px;
    left: 7.5%;
}



#area{
    position: fixed;
    bottom: 0;
    width: 100%;
    /*height: 300px;*/
    top: 0px;
    background-color: white;
    border-top: 1px solid #E6E6e6;
    display: none;
}
#area>.title{
    width: 100%;
    height: 30px;
    font-size: 0;
    text-align: center;
    border-bottom: 1px solid #e6e6e6;
}
#area>.title>div{
    width: 47%;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    text-align: left;
    height: 100%;
    line-height: 30px;
}
#area>.title>div:last-child{
    text-align: right;
    background: linear-gradient(to right, #0498E2, #0498E2);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 15px;
}
#area>.province,#area>.area,#area>.city{
    margin-top: 5px;
    width: calc(33.33% - 1px);
    border-left: 1px solid #F2F2F2;
    display: inline-block;
    font-size: 0;
    float: left;
    vertical-align: middle;
    height: 90%;
    overflow-y: auto;
    text-align: center;
}
#area>.province>div,#area>.area>div,#area>.city>div{
    font-size: 15px;
    text-align: center;
    margin: 10px auto;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow:hidden;
    color:#454545;
    word-wrap:break-word;
    word-break:break-all;
    padding: 0 5px;
}
#area .active{
    background: linear-gradient(to right, #0498E2, #0498E2);
    -webkit-background-clip: text;
    color: transparent !important;
    font-weight: bold;
}