.section{
    width: 100%;
    background: #fff;
    overflow: hidden;
}
.section .warp{
    margin: 0 0 139px 0;
    display: flex;
    flex-direction: column;
}
.section .warp .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 87%;
}
.section .title{
    margin-left: 50px;
    /*width: 20%;*/
    /*width: 247px;*/
    /*margin: 480px 0 0 0;*/
    /*font-size: 42px;*/
    /*font-family: Source Han Sans CN;*/
    /*font-weight: 500;*/
    /*color: #202020;*/
    /*white-space: nowrap;*/
}
.section .title img{
    /*display: block;*/
    /*margin: 0 0 15px 0;*/
}
.section .title .headline{
    display: flex;
}
.section .title .headline .text{
    margin: 0 100px 0 0;
}
.section .title .headline span{
    font-size: 35px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #202020;
}
.section .title .headline p{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #202020;
    white-space: nowrap;
    margin: 25px 0 0 0;
}
.section .title .display{
    margin: 50px 0 0 0;
}
.section .title .display .list:not(:last-child){
    margin: 0 0 25px 0;
}
.section .title .display .list .iconfont{
    width: fit-content;
    color: #AC0D14;
    font-size: 24px;
    margin: 0 0 19px 0;
}
.section .title .display .list p{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #313131;
    line-height: 28px;
}
.section .content{
    width: 78%;
}

.section .content .map{
    width: 100%;
    height: 664px;
    position: relative;
}
.section .content .map .background{
    width: 100%;
    height: 100%;
}
.section .content .map .positioning{
    position: absolute;
    top: 28%;
    left: 53%;
}
.section .content .map .positioning .joke{
    animation: 2s top_move linear infinite;
    width: 75px;
    height: 75px;
    background: #FFFFFF;
    box-shadow: 13px 6px 70px 0px rgba(60,60,60,0.1400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section .message{
    width: 87%;
    margin: 90px 0 0 150px;
}
.section .message .headline{
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #202020;
    white-space: nowrap;
    margin: 0 105px 0 0;
    min-width: 179px;
    cursor: pointer;
}
.section .message .display{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 140px;
}
.section .message .item{
    display: flex;
}
.section .message .item:not(:last-child) {
    margin: 0 0 40px 0;
}
.section .message .display .list:nth-child(3){
    position: relative;
    left: -140px;
}
.section .message .display .list:first-child{
    cursor: pointer;
}

.section .message .display .list .iconfont {
    width: fit-content;
    color: #AC0D14;
    font-size: 24px;
    margin: 0 0 19px 0;
}
.section .message .display .list p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #313131;
    line-height: 28px;
}
.section .message .display .list:first-child p{
    width: 318px;

}
@keyframes top_move {
    0%{
        transform: translate3d(0,-10px,0);
    }
    50%{
        transform: translate3d(0,0px,0);
    }
    100%{
        transform: translate3d(0,-10px,0);
    }
}
.section .content .map .positioning .joke:after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
}
.section .content .map .item{
    display: none;
    height: 100%;
    width: 100%;
}
.section .content .map .item.on{
    display: block;
}
.section .content .map .item_3 .positioning{
    top: 31%;
    left: 46.5%;
}
.section .content .map .item_4 .positioning{
    top: 34%;
    left: 46.5%;
}
.section .content .map .positioning:before{
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 6px;
    background: #AC0D14;
    opacity: 0.22;
    border-radius: 50%;
}
.section .content .map .positioning img{
    width: 40px;
}
.section .content .information{
    margin: 90px 0 0 154px;
    display: flex;
    align-items: center;
}
.section .content .information .item{
    margin: 0 192px 0 0;
}
.section .content .information .item .iconfont{
    width: fit-content;
    color: #AC0D14;
    font-size: 24px;
    margin: 0 0 19px 0;
}
.section .content .information .item p{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #313131;
}
.section .content .information .item:nth-child(2) .iconfont{
    transform: scale(0.9);
}
.section .content .information .item:nth-child(3) .iconfont{
    transform: scale(1.3);
}
@media screen and (max-height: 1920px) {
    .section .content {
        width: 75%;
    }
}
@media screen and (max-width: 1856px) {
    .section .warp .content{
        width: 74%;
    }
    .section .content .information .item {
        margin: 0 146px 0 0;
    }
    .section .content .map{
        width: 100%;
    }
    .section .content .information .item p{
        font-size: 16px;
    }
}
@media screen and (max-width: 1792px) {

}
@media screen and (max-width: 1680px) {
    .section .warp .flex,.section .message{
        width: 90%;
    }
    .section .message .display .list:not(:last-child) {
        margin: 0 112px 0 0;
    }
}
@media screen and (max-width: 1666px) {
    .section .message .display .list:nth-child(3) {
        position: relative;
        left: -92px;
    }
    .section .message .display {
        grid-gap: 1px;
    }
}

@media screen and (max-height: 1611px) {
    .section .warp .content {
        width: 72%;
    }
}
@media screen and (max-height: 1500px) {
    .section .warp .content {
        width: 70%;
    }
}
@media screen and (max-width: 1485px) {
    .section .message .display .list:nth-child(3) {
        position: relative;
        left: -53px;
    }
}
@media screen and (max-width: 1440px) {
    .section .content .information .item {
        margin: 0 92px 0 0;
    }
    .section .content .information{
        margin: 90px 0 0 100px;
    }
}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1372px) {
    .section .warp .content {
        width: 68%;
    }
}
@media screen and (max-width: 1300px) {
    .section .warp .content {
        width: 65%;
    }
}
@media screen and (max-width: 1190px) {
    .section .warp .content {
        width: 62%;
    }
}
@media screen and (max-width: 1025px) {
    .section .message .display{
        grid-template-columns: repeat(1,1fr);
    }
    .section .message .display .list:nth-child(3) {
        left: 0;
    }
    .section .warp{
        width: 90%;
        flex-direction: column;
        margin: auto;
    }
    .section .title {
        margin: 44px 0 30px 0;
        font-size: 28px;
    }
    .section .warp .content{
        width: 100%;
    }
    .section .content .map{
        height: 327px;
    }
    .section .content .information{
        margin: 50px 0 0 0;
        flex-direction: column;
        align-items: unset;
    }
    .section .content .information .item p{
        font-size: 14px;
        line-height: 25px;
    }
    .section .content .information .item .iconfont{
        margin: 0 0 15px 0;
    }
    .section .content .information .item{
        margin: 0 0 40px 0;
    }
    .section .warp{
        align-items: unset;
        flex-direction: column;
    }
    .section .warp .flex{
        flex-direction: column-reverse;
        margin: 20px 0 0 0;
        align-items: unset;
    }
    .section .warp .flex, .section .message{
        width: 100%;
    }
    .section .message{
        margin: 0 0 33px 0;
    }
    .section .message .item,.section .message .display{
        flex-direction: column;
    }
    .section .message .display .list .iconfont {
        margin: 0 0 10px 0;
    }
    .section .message .display .list{
        margin: 20px 0 0 0!important;
    }
}
