
/* 添加 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;
}
