*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;/*它表示文本内容不需要添加任何装饰效果*/
    /*因为每个浏览器中对html标签的默认外边距和内边距的值不同，
    为了达到让主流浏览器设置出来的布局显示相同，则需要把html
    中所有标签的padding,margin都设置为0；*/
    scrollbar-width: none;  
}


.about{
    width: 390px;
    margin: 0 auto;
    padding: 40px 0;

}
.content{
    padding: 12px;
}





.title{
    margin-bottom: 15px;
}
.title h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: #111;
}
.title p{
    font-size: 14px;
    color: #666;
}
.intro{
    font-size: 15px;
    line-height: 2em;
    margin-top: 30px;
}
.numbox{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 30px;
}
.item{
    width: 183px;
    text-align: center;
    padding: 12px 0;
}
.item h3{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative; /* 相对于这个元素进行定位 */  
    display: inline-block; /* 让h3元素内联显示，以便可以包含其他内联元素 */ 
}
.item p{
    font-size: 12px;
    color: #111;

}
.item span{
    font-size: 10px;
    position: absolute; /* 相对于最近的定位祖先元素进行定位 */  
    top: -0.1em; /* 将加号向上移动半行高 */  
    right: -1em; /* 将加号向右移动一些，以避免重叠 */  
    color: #111;
}



/*企业文化*/

.about_culture{
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    background: url(../images/aboutbg2.jpg);
}
.public_title{
    text-align: center;
    color: #fff;
}
.public_title h3{
    font-size: 24px;
    margin-bottom: 10px;

}
.public_title p{
    font-size: 14px;

}
.cul_box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.culture_item{
    color: #fff;
    padding: 12px;
    margin-bottom: 22px;
    letter-spacing: 0.0625rem;

}
.culture_item h4{
    margin-bottom: 8px;
    font-size: 14px;
}
.culture_item p{
    font-size: 12px;
    line-height: 18px;
}


/*管理团队*/
.about_team{
    width: 390px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;

}
.team_title{
    text-align: center;
    color: #111;
    margin-bottom: 40px;
}
.team_title h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.team_title p{
    font-size: 14px;
}

.textbx h4{
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
}
.textbx p{
    font-size: 15px;
    padding: 0 16px;
    color: #666;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-top: 20px;
    
}
.imgbx{
    width: 174px;
    margin: 0 auto;
} 

.cc{
    width: 322px;
    height: 440px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding-top: 30px;
    margin: 0 auto;
}


.swiper {
    width: 100%;
    height: 100%;
    
}
.swiper-wrapper{
    height: 480px;
}
.swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    z-index: 1;    
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    padding-top: 2px;
    
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}


/*合作伙伴*/
.about_partner{
    width: 390px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
}

.center{
    font-size: 14px;
}
.navlist{
    margin-bottom: 30px;
}
.navlist ul{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.navlist ul li{
    margin: 0 10px;
}

.listbox .list {  
    display: none; /* 隐藏所有list元素 */  
}  
  
.listbox .list.active {  
    display: grid; /* 显示带有active类的list元素，并应用网格布局 */  
    grid-template-columns: repeat(3, 1fr); /* 设置网格列 */  
}




.items{
    width: 117px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}
.items img{
    width: 106px;
    height: 55px;
}
.about_partner .center .navlist ul li.active span {
    color: #002b68;
}