.section{
    width: 100%;
    overflow: hidden;
}
.section .warp{
    margin: 94px 0 0 0;
    display: flex;
}
.section .warp .map{
    width: 50%;
    height: 986px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section .warp .map .map_background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section .warp .map .text{
    text-align: center;

}
.section .warp .map .text span{
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #3B4048;
    margin: 13px 0 0 0;
    display: block;
    background: #fff;
    height: 68px;
    text-align: left;
    text-indent: 50px;
    padding: 0 67px 0 0;
}
.section .warp .map .text span:nth-child(2) {
    line-height: 100px;
}
.section .warp .map .text span:nth-child(3) {
    margin: 0;
    font-size: 14px;
    padding-top: 0;
    font-weight: normal;
    line-height: 36px;
}
.section .warp .map .text .positioning {
    position: relative;
}
.section .warp .map .text .positioning:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 7px;
    background: #84463A;
    opacity: 0.21;
    border-radius: 50%;
}
.section .warp .map .text .positioning img{
    animation: 2s top_move linear infinite;
}
.BMapLabel {
    background: unset!important;
    border: none!important;
}
@keyframes top_move {
    0% {
        transform: translate3d(0,-10px,0);
    }

    50% {
        transform: translate3d(0,0,0);
    }
    100% {
        transform: translate3d(0,-10px,0);
    }
}
.section .warp .content{
    margin: 168px 0 0 91px;
}
.section .warp .content .headline{
    font-size: 34px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #2B2B2B;
    margin: 0 0 63px 0;
}
.section .warp .content .select{
    display: flex;
    align-items: center;
}
.section .warp .content .select .list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 17px 0;
    width: 246px;
    border-bottom: 1px solid #EFEFEF;
    margin: 0 40px 0 0;
    cursor: pointer;
    position: relative;
    min-height: 37px;
}

.section .warp .content .select .list select{
    border: none;
    appearance: none;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #2B2B2B;
    position: absolute;
    top: -9px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0 19px;
}
.section .warp .content .select .list p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #2B2B2B;
}
.section .warp .content .select .list .iconfont{
    font-size: 12px;
    color: #000;
    transform: rotate(-90deg);
    position: absolute;
    right: 19px;
    z-index: 1;
    pointer-events: none;
}
.section .warp .content .select .list .city-list,.section .warp .content .select .list .province-list{
    width: 100%;
    height: 300px;
    position: absolute;
    top: 40px;
    transform: translateX(-20px);
    border: 1px #000 solid;
    display: none;
    background-color: #fff;
    z-index: 10;
}

.section .warp .content .select .list .city-list ul li{
    padding-left: 5px;
}
.section .warp .content .select .list .city-list ul li:hover,.section .warp .content .select .list .province-list ul li:hover{
    background-color:#ccc;
}
.section .warp .content .select .list .city-list.active,.section .warp .content .select .list .province-list.active{
    display: block;
}
.section .warp .content .select .search{
    margin: 0 0 0 20px;
    width: 138px;
    height: 46px;
    background: #84463A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
}
.section .warp .content .stores{
    margin: 77px 0 0 0;
    width: 736px;
    height: 459px;
    padding: 0 20px 0 0 ;
}

.section .warp .content .stores .scrollbar-thumb{
    width: 3px!important;
}

.section .warp .content .stores .scrollbar-track {
    background-color: transparent !important;
    right: 0 !important;
}

.section .warp .content .stores .item{
    width: 100%;
    padding: 44px 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(235, 235, 235, 1);
    cursor: pointer;
    position: relative;
    transition: 0.65s;
}
.section .warp .content .stores .item:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #F6F4F1,rgba(0,0,0,0));
    transition: 0.65s;
    opacity: 0;
}
.section .warp .content .stores .item:hover{
    border-bottom: 1px solid transparent;
}
.section .warp .content .stores .item:hover:after{
    opacity: 1;
}
.section .warp .content .stores .item .text .introduce{
    display: flex;
    align-items: center;
    margin: 0 0 18px 0;
}
.section .warp .content .stores .item .text .introduce img{
    width: 23px;
    margin: 0 17px 0 0;
}
.section .warp .content .stores .item .text .introduce span{
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #2D2D2D;
}
.section .warp .content .stores .item .text p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #4D4C4C;
}
.section .warp .content .stores .item .icon-qianwang{
    color: rgba(132, 70, 58, 1);
    font-size: 21px;
    transform: rotateX(180deg);
    opacity: 0;
    transition: 0.6s;
}
.section .warp .content .stores .item:hover .icon-qianwang{
    opacity: 1;
}

@media screen and (max-width: 1856px) {

}
@media screen and (max-width: 1792px) {

}
@media screen and (max-width: 1680px) {
    .section .warp .content{
        width: 50%;
    }
    .section .warp .content {
        margin: 5% 0 0 2%;
    }
}
@media screen and (max-width: 1600px) {

}
@media screen and (max-width: 1440px) {
    .section .warp .content .select .list{
        width: 23%;
    }
    .section .warp .content .select .search{
        width: 18%;
    }
    .section .warp .content .stores .item{
        width: 88%;
    }
    .section .warp .content .headline{
        font-size: 33px;
    }
}
@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1366px) {

}
@media screen and (max-width: 1025px) {
    .section .warp {
        margin: 70px 0 0 0;
        flex-direction: column;
    }
    .section .warp .map{
        width: 100%;
        height: 500px;
    }
    .section .warp .content{
        width: 90%;
        margin: 50px auto;
    }
    .section .warp .content .headline {
        font-size: 28px;
        margin: 0 0 44px 0;
    }

    .section .warp .content .select{
        flex-direction: column;
        align-items: unset;
    }
    .section .warp .content .select .list{
        width: 100%;
        margin: 0 0 20px 0;
    }
    .section .warp .content .select .search{
        width: 100%;
        margin: 20px 0 0 0;
    }
    .section .warp .content .stores{
        width: 100%;
        height: auto;
    }
    .section .warp .content .stores .item{
        width: 100%;
        padding: 0 0 30px 0;
        margin: 0 0 30px 0;
    }
    .section .warp .content .stores .item .text .introduce span{
        font-size: 18px;
    }
    .section .warp .content .stores .item .text p{
        font-size: 12px;
        width: 88%;
    }
    .section .warp .content .stores .item .text .introduce img {
        width: 18px;
    }
    .section .warp .content .stores .item:hover:after{
        opacity: 0!important;
    }
    .section .warp .content .stores .item .icon-qianwang {
        opacity: 1;
    }
}
