#header .head{
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
}
.my-img{
    width: 24px;
    height: 24px;
}
.logo-img{
    height: 28px;
    display: flex;
    align-items: center;
}
.logo-img span{
    font-size: 18px;
    font-weight: bold;
}
.menu-img{
    width: 27px;
    height: 24px;
}
#footer{
    background: white;
    padding: 15px 12px;
    margin: 10px 0 50px 0;
}
#footer p{
    color: #999999;
    font-size: 12px;
    margin-bottom: 10px;
}

#footer-nav{
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
}
.footer-nav-content{
    background: white;
    display: flex;
    justify-content: space-around;
    box-shadow: 0px -4px 36px 0px rgba(204,204,204,0.20);
}
.footer-item{
    height: 50px;
    display: flex;
    align-items: center;
}
#footer-nav div img{
    width: 60px;
    height: 42px;
    line-height: 50px;
}

.no-data{
    margin: 36px 0;
    text-align: center;
}
.no-data img{
    width: 200px;
    height: 157px;
    margin-bottom: 20px;
}
.no-data p{
    color: #999999;
    font-size: 14px;
}

/*菜单*/
#menu{
    background: white;
    position: fixed;
    z-index: 10;
    top: 52px;
    height: 100%;
    left: 0;
    right: 0;
}
#menu .menu-ul{
    margin: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menu-ul .menu-li{
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: rgba(204,204,204,0.1);
    color: #9CA5C0;
    width: 48%;
    margin-bottom: 20px;
    margin-right: 2%;
}
.menu-ul .menu-li:nth-child(2n){
    margin-right: 0;
}
#menu .menu-ul .menu-li-active{
    background: #2b59ee;
    color: white;
}

.local-address{
    margin-top: 20px;
}
.local-icon{
    display: inline-block;
    width: 4px;
    height: 14px;
    background: #2B59EE;
    margin: 0 5px 2px 20px;
    vertical-align: middle;
}
.local-text{
    color: #9CA5C0;
    font-size: 14px;
}
.un-scroll{
    height: 100vh;
    overflow: hidden;
}

/*搜索*/
#search{
    background: #ffffff;
    position: fixed;
    height: 100vh;
    top: 0;
    z-index: 10;
}
#search .search-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}
.search-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border: 1px solid #2b59ee;
    border-radius: 21px;
    overflow: hidden;
}
.search-icon {
    width: 54px;
    height: 32px;
    background: #2b59ee;
    border-radius: 21px;
    color: #fff;
    line-height: 32px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.search-box input {
    flex: 1;
    padding: 3px 10px 3px 10px;
    background: none;

}

.search-head .cancel-text {
    color: #2B59EE;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;

}

.card-box {
    background: #f5f5f5;
    overflow: hidden;
}

.card {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0 10px 20px;
    margin: 10px;
}

.card-title {
    margin-bottom: 20px;
}

.card-title .title-text {
    display: inline-block;
    font-size: 14px;
    color: #333333;
    margin-right: 3px;
}

.card-title img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.card-li {
    float: left;
    color: #9CA5C0;
    margin: 0 40px 20px 0;
}