.container{
    width: 100%;
    margin: 0 auto;
}
.container .banner{
    width: 100%;
    height: 500px;
}
.container .banner img{
    width: 100%;
    height: 100%;
}

/* 介绍 */
.container .about{
    width: 100%;
    padding: 20px 0;
    background-image: url(../images/about/introduce-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
}
.container .about .introduce{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.8);
    border-radius: 20px 20px 0 0;
    padding: 30px 0;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}
.container .about .introduce .left{
    width: 619px;
    padding: 30px;
}
.container .about .introduce .left div{
    display: flex;
    align-items: end;
    margin-bottom: 30px;
}
.container .about .introduce .left div span{
    font-weight: 500;
    font-size: 26px;
    color: #353958;
    margin-left: -20px;
}
.container .about .introduce .left img{
    width: 140px;
}
.container .about .introduce .left p{
    font-weight: 500;
    font-size: 14px;
    color: #353958;
    line-height: 41px;
}
.container .about .introduce .right{
    width: 441px;
    height: 383px;
    padding: 30px;
}
.container .about .introduce .right img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.container .about .about-bottom{
    width: 100%;
    height: 141px;
    background-color: #1D76FF;
    position: absolute;
    bottom: -80px;
    left: 0;
}
.container .about .about-bottom .list{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.container .about .about-bottom .list .item {
    display: flex;
}
.container .about .about-bottom .list .item img{
    width: 52px;
    height: 52px;
    margin-right: 20px;
}
.container .about .about-bottom .list .item div p{
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}
.container .about .about-bottom .list .item div span{
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

/* 资质荣誉 */
.container .qualifications{
    width: 100%;
    padding: 50px 0;
    background-image: url(../images/about/honor-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 80px;
}
.container .qualifications .title{
    text-align: center;
}
.container .qualifications .title h1{
    font-weight: 500;
    font-size: 42px;
    color: #010203;
}
.container .qualifications .title h1 span{
    font-weight: 500;
    font-size: 20px;
    color: #010203;
}
.container .qualifications .list{
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.container .qualifications .list .item{
    width: 386px;
    height: 423px;
    background: #FFFFFF;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.container .qualifications .list .item div{
    width: 90%;
    border-radius: 20px;
    background-color: #e9edf6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 30px auto;
}
.container .qualifications .list .item div img{
    width: 312px;
    height: 270px;
    display: block;
}
.container .qualifications .list .item p{
    font-weight: 500;
    font-size: 24px;
    color: #4C5069;
}

/* 联系我们 */
.container .contact{
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    background-image: url(../images/about/contact-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 50px;
}
.container .contact .title{
    width: 100%;
}
.container .contact .title h1{
    font-weight: 800;
    font-size: 48px;
    color: #3862F9;
    margin-bottom: 30px;
}
.container .contact .title p{
    font-weight: 500;
    font-size: 42px;
    color: #0F1217;
}
.container .contact .content{
    width: 100%;
    margin-top: 60px;
    height: 289px;
    background: #ffffff;
    border-radius: 21px;
    border: 3px solid #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container .contact .content .left{
    width: 70%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}
.container .contact .content .left div{
    width: 48%;
    display: flex;
    align-items: center;
}
.container .contact .content .left div:nth-child(1),
.container .contact .content .left div:nth-child(2){
    margin-bottom: 50px;
}
.container .contact .content .left div img{
    width: 44px;
    height: 44px;
    margin-right: 10px;
}
.container .contact .content .left div p{
    font-weight: 500;
    font-size: 18px;
    color: #0F1217;
}
.container .contact .content .right img{
    width: 178px;
    height: 179px;
    margin-right: 20px;
}

/* 移动端 */
@media screen and (max-width: 768px) {
    /* banner */
    .container-move{
        width: 100%;
        margin: 0 auto;
    }
    .container-move .banner{
        width: 100%;
        height: 170px;
        background-image: url(../images/about/banner-move-bg.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .container-move .banner div{
        text-align: center;
    }
    .container-move .banner div h1{
        font-size: 14px;
        font-weight: 500;
        color: #FFFFFF;
    }
    .container-move .banner div span{
        font-size: 10px;
        font-weight: 100;
        color: #FFFFFF;
    }
    .container-move .about-move{
        width: 100%;
        background-image: url(../images/about/introduce-bg.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 10px 0;
        padding-bottom: 0;
    }
    .container-move .about-move .introduce-move{
        width: 90%;
        margin: 0 auto;
        background-color: rgba(255,255,255,0.8);
        margin-top: 30px;
        padding: 20px 0;
        padding-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    .container-move .about-move .introduce-move div{
        display: flex;
        align-items: start;
        padding: 0 20px;
    }
    .container-move .about-move .introduce-move div img{
        width: 70px;
        margin-right: 5px;
    }
    .container-move .about-move .introduce-move div span{
        font-size: 18px;
        color: #3D3D3D;
        font-weight: 500;
    }
    .container-move .about-move .introduce-move p{
        font-weight: 400;
        font-size: 10px;
        line-height: 20px;
        color: #3D3D3D;
        padding: 0 20px;
    }
    .container-move .about-move .about-bottom{
        width: 100%;
        background-color: #1D76FF;
        padding-top: 30px;
        padding-bottom: 10px;
        margin-top: -20px;
        position: relative;
        z-index: 1;
    }
    .container-move .about-move .about-bottom .list{
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .container-move .about-move .about-bottom .list .item{
        line-height: 10px;
    }
    .container-move .about-move .about-bottom .list .item:nth-child(2){
        margin-left: -40px;
    }
    .container-move .about-move .about-bottom .list .item img{
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    .container-move .about-move .about-bottom .list .item div{
        display: flex;
        align-items: center;
    }
    .container-move .about-move .about-bottom .list .item div p{
        font-weight: 500;
        font-size: 10px;
        color: #FFFFFF;
    }
    .container-move .about-move .about-bottom .list .item span{
        font-weight: 500;
        font-size: 8px;
        color: #FFFFFF;
    }

    /* 资质荣誉 */
    .container-move .qualifications-move{
        width: 100%;
        padding: 30px 0;
        background-image: url(../images/about/honor-bg.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .container-move .qualifications-move h1{
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
    }
    .container-move .qualifications-move .list{
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .container-move .qualifications-move .list .item{
        width: 48%;
        background: #FFFFFF;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: center;
        padding-bottom: 10px;
    }
    .container-move .qualifications-move .list .item div{
        width: 90%;
        border-radius: 10px;
        background-color: #e9edf6;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        margin: 20px auto;
        margin-bottom: 0;
    }
    .container-move .qualifications-move .list .item div img{
        width: 90%;
        height: 90%;
    }
    .container-move .qualifications-move .list .item p{
        font-weight: 500;
        font-size: 12px;
        color: #4C5069;
        margin-top: 10px;
    }

    /* 联系我们 */
    .container-move .contact{
        width: 90%;
        margin: 0 auto;
        padding: 50px 0;
        background-image: url(../images/about/contact-bg.png);
        background-repeat: no-repeat;
        background-size: 100%;
    }
    .container-move .contact .title{
        width: 100%;
    }
    .container-move .contact .title h1{
        font-weight: 800;
        font-size: 24px;
        color: #3862F9;
        margin-bottom: 20px;
    }
    .container-move .contact .title p{
        font-weight: 500;
        font-size: 24px;
        color: #0F1217;
    }
    .container-move .contact .content{
        width: 100%;
        margin-top: 40px;
        background: #ffffff;
        border-radius: 21px;
        border: 2px solid #666666;
        position: relative;
    }
    .container-move .contact .content .left{
        padding: 20px 5px;
    }
    .container-move .contact .content .left div{
        width: 100%;
        display: flex;
        align-items: center;
        margin: 30px 0;
    }
    .container-move .contact .content .left div img{
        width: 26px;
        height: 26px;
        margin-right: 10px;
    }
    .container-move .contact .content .left div p{
        font-size: 16px;
        font-weight: 400;
        color: #3D3D3D;
    }
    .container-move .contact .content .right {
        border: 1px solid #3D3D3D;
        position: absolute;
        top: 20px;
        right: 10px;
        width: 66px;
        height: 66px;
        border-radius: 5px;
    }
    .container-move .contact .content .right img{
        width: 100%;
    }
}