/*关于分类*/
.about-cate {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    height: 60px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    width: 1200px;
    margin: 0 auto;
}

.about-cate li {
    font-size: 16px;
    border-right: 2px solid var(--color-border);
    line-height: 1;
    padding: 0 30px;
}

.about-cate li:last-child {
    border-right: none;
}

.about-cate li a {
    position: relative;
}

.about-cate li a:hover {
    color: #f44;
}

.about-cate li.on a:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 3px;
    background: #f44;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/*关于我们，公共布局样式*/
.about-box {
}

.about-section {
    padding: 60px 0;
}

.about-section .head {
    text-align: center;
    padding: 0 100px;
}

.about-section .head .title {
    font-size: 34px;
    font-weight: 600;
    color: #333;
}

.about-section .head .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    line-height: 30px;
}

.about-section .body {
    margin-top: 40px;
}

/*公司简介*/
.about-profile {
}

.about-profile .body {
    display: flex;
}

.about-profile .body .img {
    width: 400px;
}

.about-profile .body .img img {
    width: 100%;
}

.about-profile .body .content {
    flex: 1;
    margin-left: 40px;
    font-size: 15px;
    color: #333;
    line-height: 33px;
}

.about-profile .body .content p {
    text-indent: 2em;
    margin-bottom: 20px;
}

/*企业文化*/
.about-culture {
    background: #F9FAFF;
}

.about-culture .body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 30px;
}

.about-culture .item {
    padding: 15px;
    width: 33.33%;
}

.about-culture .item .item-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /*上对齐，图标离上面的高度保持一致，兼容下面1、2行文字的情况*/
    align-items: center;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #E1E6F0;
    height: 100%;
}

.about-culture .item img {
    width: 100px;
    height: auto;
    display: block;
}

.about-culture .item h2 {
    font-size: 26px;
    color: #333;
    margin-top: 15px;
}

.about-culture .item p {
    font-size: 15px;
    line-height: 25px;
    color: #666;
    margin-top: 18px;
}
/*联系我们*/
.about-contact .body {
    margin-top: 20px;
}

.about-contact .info {
    width: 100%;
    padding-bottom: 10px;
}

.about-contact .info p {
    padding-bottom: 12px;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
}

.about-contact p.name {
    font-weight: 600;
    font-size: 22px;
    color: #333;
}

.about-contact .iconfont {
    font-size: 20px;
    color: #666;
    margin-right: 10px;
}

.about-contact .map {
    width: 100%;
    height: 400px;
}
