/* Added about us style for 'langwu' on 2025-02-12 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body{background: #f5f5f5;}
h1,h2,h3,h4,h5,h6{font-family: 'MB';}
.page_focus .bg{height: 800px;}
.about-us{font-family: 'Montserrat', sans-serif;padding-top:90px;}
.about-us .one{margin-top: 20px;}
.about-us .one .right{display: flex;align-items: center;height: 100%;}
.about-us .one .content{padding-left:30px;}
.about-us .one .content-1{margin:0 auto;width: 600px;padding:80px 0;}
.about-us .one .content-2{margin:0 auto;width: 600px;padding-bottom: 120px;}
.about-us .two{color:#FFFFFF;margin-top:80px;}
.about-us .two .bg{background: #000;border-radius: 5px;margin: 0;padding: 60px 0;}
.about-us .two .bg .title{text-align: center;width: 100%;margin-bottom: 30px;margin-left: -56px;}
.about-us .two .bg .title .t1{}
.about-us .two .bg .title .t2{padding-left: 207px;}
.about-us .two .bg .title .t3{padding-left: 316px;}
/*客户滚动动画*/
.customer-container{
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
            90deg,transparent,#fff 20%,#fff 80%,transparent
    );
}
.customer-container .customer span{
    display: inline-flex;
    margin: 20px 60px;
    letter-spacing: .2em;
    /* background: #333; */
    color: #FFFFFF;
    padding:5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}
.customer-container .customer {
    white-space: nowrap;
    animation: animate var(--t) linear infinite;
}
.customer-container .customer:nth-child(2){
    animation: animate2 var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
}
@keyframes animate {
    from {
        transform: translate(100%);
    }
    to {
        transform: translate(-100%);
    }
}
@keyframes animate2 {
    from {
        transform: translate(0);
    }
    to {
        transform: translate(-200%);
    }
}
.about-us .three{margin-top:100px;}
.about-us .three .info{margin:20px 0 20px 0;}
.about-us .three .icon{text-align: center;display: flex;gap: 80px;justify-content: center;}
.about-us .four{margin-top:120px;color: rgba(37, 73, 216, 1);font-family: 'Quicksand';}
.about-us .five{background: rgba(37, 40, 61, 1);color:#FFFFFF;margin-top:120px;padding: 60px 0;}

.contact-us{margin-top:210px;}
.contact-us .info-box{background: #e9e8e1;border-radius: 5px;display: flex;justify-content: space-between;padding: 30px;align-items: center;}
.contact-us .info-box .text-box:last-child{
    width: 33.33%;
}
.contact-us .top{margin-bottom: 30px;text-align: center;}
.contact-us .top .title{margin-bottom: 15px;}
.contact-us .text-box{

}
.contact-us .text-box ul{display: grid;gap:20px;}
.contact-us .form-box{width: 600px;margin:0 auto;padding-top: 120px;}
.contact-us .form-box .title{margin-bottom: 30px;text-align: center;}
@media (max-width: 768px) {
    .flex-mobile{display: grid;/*flex-direction: column;*/}
    .about-us .four .content-box{width: 100%;}
    .about-us .five .team-list{display: grid;}
}