
/* clear */

/* 白色背景的联系信息区域 */
.footer-contact-wrapper {
    background: #fff;
    padding: 40px 0;
}

.footer-contact-wrapper .footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    color: #8e8e8e;
    font-size: 14px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-contact-wrapper .footer-contact__info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-wrapper .footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact-wrapper .footer-info-item i {
    font-size: 20px;
    color: #236ffb;
    margin-top: 4px;
    min-width: 24px;
    text-align: center;
}

.footer-contact-wrapper .footer-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-wrapper .footer-info-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.footer-contact-wrapper .footer-info-content span {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.footer-contact-wrapper .footer-contact__qrcode {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-contact-wrapper .qrcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-wrapper .qrcode-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
    background: #fff;
}

.footer-contact-wrapper .qrcode-wrapper span {
    display: block;
    color: #666;
    font-size: 13px;
}

/* 联系我们页面样式优化 - 简洁版 */
.page_contact .col.editor_wrapper.col-33 p {
    margin: 10px 0;
    line-height: 1.8;
}

.page_contact .qrcode-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page_contact .qrcode-wrapper img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 8px;
}

.page_contact .qrcode-wrapper span {
    display: block;
    color: #666;
    font-size: 13px;
}

#mcontact #contactinfo p {
    margin: 12px 0;
    line-height: 1.8;
    color: #333;
}

#mcontact #contactinfo p span {
    color: #666;
    margin-right: 8px;
}

#mcontact .qrcode-wrapper {
    margin-top: 20px;
    text-align: center;
}

#mcontact .qrcode-wrapper img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 8px;
}

#mcontact .qrcode-wrapper span {
    display: block;
    color: #666;
    font-size: 13px;
}

/* 优化信息卡片间距 */
.page_contact .col_space {
    width: 20px !important;
}

/* 首页公司简介三段式亮点 */
.feature-highlights {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-highlight {
    flex: 1;
    min-width: 240px;
    text-align: center;
    color: #444;
    padding: 0 10px;
}

.feature-highlight__badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
}

.feature-highlight.step-1 .feature-highlight__badge {
    background: radial-gradient(circle at 30% 30%, #ffe7a1, #f4a51f);
}

.feature-highlight.step-2 .feature-highlight__badge {
    background: radial-gradient(circle at 30% 30%, #ffb4b4, #ff6c6c);
}

.feature-highlight.step-3 .feature-highlight__badge {
    background: radial-gradient(circle at 30% 30%, #7fb1ff, #2a6dfd);
}

.feature-highlight.step-4 .feature-highlight__badge {
    background: radial-gradient(circle at 30% 30%, #6ff5c0, #16b585);
}

.feature-highlight__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.feature-highlight__desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-highlights {
        padding: 30px 20px;
        gap: 20px;
    }

    .feature-highlight__badge {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }
}
