/* 关于我们 升级版样式 */
.all {
    width: 1200px;
    margin: 0 auto;
}

/* 公司简介 - 叠在banner图上 */
.about-intro {
    position: relative;
    margin-top: -30px; /* 向上移动，叠在banner上 */
    z-index: 10;
    background: #fff;
    border-radius: 40px;
}

.section-title {
    font-size: 26px;
    line-height: 1;
    color: #111;
    margin: 20px 0 24px;
    position: relative;
    display: inline-block;
    padding: 20px 30px 14px;
    border-radius: 8px 8px 0 0;
}

.section-title:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 66px;
    height: 6px;
    background: #ff6a00;
    border-radius: 6px;
}

/* 公司简介内容区域 */
.about-intro .intro-wrap {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.intro-wrap .intro-media {
    width: 50%;
}

.intro-wrap .intro-content {
    width: 50%;
}

.intro-wrap .intro-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.intro-name {
    font-size: 20px;
    color: #ff6a00;
    margin: 6px 0 12px;
}

.intro-content p {
    font-size: 14px;
    color: #555;
    line-height: 28px;
    margin-bottom: 8px;
}

.about-stats {
    background: #f7f7f7;
    border-radius: 8px;
    margin: 22px 0 0;
    padding: 18px 10px;
}

.stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.stats-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.stats-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #ddd;
}

.stats-item strong {
    display: block;
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 6px;
    font-weight: bold;
}

.stats-item span {
    font-size: 13px;
    color: #888;
}

/* 公司文化 */
.about-culture .culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 28px;
}

.culture-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    padding: 18px 20px;
}

.culture-card .card-head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.culture-card .card-tag {
    display: inline-block;
    padding: 15px 90px 15px 15px;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to right, #FF5722, rgba(255, 255, 255, 0));
    color: #000;
    border-radius: 8px;
}

.culture-card .card-body p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 26px;
}

.culture-slogan {
    margin-top: 18px;
    font-size: 13px;
    color: #666;
}

/* 公司优势 */
.adv-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.adv-item {
    float: left;
    width: 25%;
    text-align: center;
    padding: 16px 10px;
}

.adv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #fff1e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.adv-item h4 {
    font-size: 16px;
    color: #333;
    margin: 6px 0;
}

.adv-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* 工作标准 - 横排流程 */
.workflow-canvas.horizontal {
    background: #fafafa;
    border-radius: 12px;
    padding: 24px 16px;
    margin-top: 6px;
}

.workflow-horizontal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.workflow-horizontal:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ff6a00 0,
        #ff6a00 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.wf-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    max-width: 140px;
}

.wf-step .wf-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border: 3px solid #ff6a00;
    border-radius: 50%;
    background: #fff;
    color: #ff6a00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.wf-step .wf-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.wf-step .wf-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.wf-step .wf-text {
    text-align: center;
}

.wf-step .wf-text span {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 2px;
}

.wf-step .wf-text em {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: #888;
}

/* 企业荣誉 */
.honor-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    list-style: none;
    margin: 10px 0 30px;
    padding: 0;
}

.honor-list li {
    font-size: 13px;
    color: #666;
    position: relative;
    padding-left: 14px;
}

.honor-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #ff6a00;
    border-radius: 50%;
}

/* 通用清除浮动 */
.clear:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* 简单响应式 */
@media (max-width:1280px) {
    .all {
        width: 94%;
    }
}

@media (max-width:768px) {
    .stats-item {
        width: 33%;
    }

    .adv-item {
        width: 50%;
    }

    .about-culture .culture-grid {
        grid-template-columns: 1fr;
    }

    .workflow-horizontal {
        flex-wrap: wrap;
        gap: 20px;
    }

    .wf-step {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .all {
        width: 100%;
        padding: 0 20px;
    }
    
    .about-intro {
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .about-intro {
        margin-top: -60px;
    }
    
    .intro-wrap {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-wrap .intro-media,
    .intro-wrap .intro-content {
        width: 100%;
    }
    
    .section-title {
        font-size: 22px;
        padding: 15px 20px 10px;
    }
    
    .stats-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-item:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-intro {
        margin-top: -40px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 12px 15px 8px;
    }
    
    .intro-wrap {
        padding: 20px;
    }
    
    .intro-name {
        font-size: 18px;
    }
    
    .stats-item strong {
        font-size: 24px;
    }
}