
/* 添加 banner 样式 */
.banner {
    background-color: #f4f4f4;
    padding: 0;
    height: 380px;
    background-image: url('/static/index/img/banner-about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}
.banner .container .title{
    font-size: 32px;
    height: 100px;
    letter-spacing: 2px;
    margin-right: 100px
}
.banner .container .title span{
    position: relative;
}
.banner .container .title span::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    border-bottom: 5px solid #FFEF39;
}
.banner .container .title2{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}
.banner .container .title2 span{
    font-size: 40px;
    font-weight: 600;
    color: #FFEF39;
}

/* 公司简介 */

/* 添加公司简介部分的样式 */
.company-intro {
    background-color: #F9FBFF;
    padding: 20px 0;
}

.company-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.company-intro h3 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #000000;
    font-family: Source Han Sans CN;
    font-weight: bold;
}

.intro-content {
    display: flex;
    justify-content: space-evenly;
    margin: 80px 0px 30px;
}

.text-intro {
    max-width: 450px;
    min-width: 400px;
    padding-right: 20px;
}
.text-intro p{
    text-indent: 30px;
    line-height: 30px;
    
}
.image-intro{
    position: relative;
    display: inline-block;
    min-width: 400px;
}

.blue-box-right {
    width: 130px;
    height: 136px;
    background-color: #B43033;
    position: absolute;
}
.blue-box-left {
    width: 70px;
    height: 40px;
    background-color: #E92323;
    position: absolute;
}
.top-right {
    top: -45px;
    right: -45px;
}

.bottom-left {
    bottom: -11px;
    left: -22px;
}

.image-intro img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: auto;
    position: inherit;
    z-index: 99;
}

/* 联系我们 */

/* 添加联系我们部分的样式 */
.contact-section {
    background-color: #B43033;
    padding: 50px 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}
.contact-section .contact-title{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}
.contact-section .contact-info {
    width: 330px;
    height: 120px;
    line-height: 25px;
    padding: 20px 50px 20px 30px;
    background: #fff;
    margin-top: 100px;
    margin-right: -50px;
    z-index: 9;
    box-shadow: 0px 4px 8px 0px rgba(11,48,157,0.3);
}

.contact-image img {
    max-width: 100%;
    height: auto;
}

.contact-section-wap{
    display: none;
}

/* 添加联系我们部分的样式 */
.contact-section-wap {
    background-color: #B43033;
}

.contact-section-wap .container {
    margin: 0 auto;
    padding: 0 1.2083rem 1.25rem;
}
.contact-section-wap .contact-title{
    font-size: 1.3333rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
    padding:1.6667rem 0 1.5rem ;
}
.contact-section-wap .contact-info {
    line-height: 1.875rem;
    z-index: 9;
    color: #ffffff;
    font-size: 1rem;
}

.contact-section-wap .contact-info .contact-info-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.contact-section-wap .contact-info .contact-info-item .label {
    width:5rem;
}
.contact-section-wap .contact-info .contact-info-item .con {
    width: calc(100% - 5rem);
}

.contact-section-wap .contact-image img {
    margin-top: 1.25rem;
    max-width: 100%;
    height: auto;
}

/* 响应式设计 - 断点1024px */
@media (max-width: 1024px) {

}

/* 响应式设计 - 断点768px */
@media (max-width: 768px) {
    .banner{
        height: 260px;
    }
    .company-intro .container{
        padding: 10px 20px;
    }
    .company-intro h3{
        font-size: 34px;
        margin-bottom: 15px;
    }
    .text-intro{
        min-width: 300px
    }
    .image-intro{
        min-width: 380px;
    }
    .contact-section{
        padding: 30px 0;
        margin-bottom: 5rem;
    }
}

/* 响应式设计 - 断点480px */
@media (max-width: 480px) {
     .banner {
        height: 11rem;
        background-image: url('/static/index_wap/img/banner-about.png');
    }
    .company-intro .container{
        padding: 0px 10px;
    }
    .company-intro h3{
        font-size: 28px;
        margin-bottom: 15px;
    }

    .intro-content{
        margin: 30px 0px 30px;
        flex-wrap: wrap;
    }
    .text-intro{
        min-width: 100%;
        max-width: 100%;
        padding-right: 0px;
    }
    .image-intro{
        min-width: 100%;
        max-width: 100%;
    }
    .contact-section{
        display: none;
    }
    .contact-section-wap{
        display: block;
        margin-bottom: 5rem;
    }
}
/* 响应式设计 - 断点425px */
@media (max-width: 425px) {
     .banner {
        height: 11rem;
        background-image: url('/static/index_wap/img/banner-about.png');
    }
    .company-intro .container{
        padding: 0px 10px;
    }
    .company-intro h3{
        font-size: 28px;
        margin-bottom: 15px;
    }

    .intro-content{
        margin: 30px 0px 30px;
        flex-wrap: wrap;
    }
    .text-intro{
        min-width: 100%;
        max-width: 100%;
        padding-right: 0px;
    }
    .image-intro{
        min-width: 100%;
        max-width: 100%;
    }
    .contact-section{
        display: none;
    }
    .contact-section-wap{
        display: block;
        margin-bottom: 5rem;
    }
}
/* 响应式设计 - 断点375px */
@media (max-width: 375px) {
    .banner {
        height: 11rem;
        background-image: url('/static/index_wap/img/banner-about.png');
    }
    .company-intro .container{
        padding: 0px 10px;
    }
    .company-intro h3{
        font-size: 28px;
        margin-bottom: 15px;
    }

    .intro-content{
        margin: 30px 0px 30px;
        flex-wrap: wrap;
    }
    .text-intro{
        min-width: 100%;
        max-width: 100%;
        padding-right: 0px;
    }
    .image-intro{
        min-width: 100%;
        max-width: 100%;
    }
    .contact-section{
        display: none;
    }
    .contact-section-wap{
        display: block;
        margin-bottom: 5rem;
    }
}

/* 响应式设计 - 断点320px */
@media (max-width: 320px) {
    
}
