/* ========================================
   页面通用样式 - 合并 about.css + service.css + contact.css
   ======================================== */
.htmlbody-wrap{
    margin: 0 auto;
}
.htmlbody-wrap img{
    max-width: 100%;
}

/* ==================== 关于我们页面 ==================== */

/* 内容区域 */
.about-content {
    padding: 60px 0;
    background: #fff;
    min-height:800px;
}

.about-wrap {
    max-width: 900px;
    margin: 0 auto;
}

/* 文本区块 */
.about-content .text-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #eee;
}

.about-content .text-block:last-of-type {
    border-bottom: none;
}

.about-content .block-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.htmlbody-wrap .block-title i,.htmlbody-wrap .block-title em {
    color: #09b6aa;
    font-size: 20px;
}

.about-content .text-block p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

/* 企业文化盒子 */
.culture-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.culture-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.culture-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.culture-item .label {
    flex-shrink: 0;
    width: 60px;
    height: 28px;
    background: #09b6aa;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.culture-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* 服务宗旨 */
.service-block {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

/* ==================== 服务页面 ==================== */

/* 内容区域 */
.service-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* 服务盒子 */
.service-wrap {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.service-wrap .box-title {
    background: #09b6aa;
    color: #fff;
    padding: 20px 30px;
    font-size: 20px;
    margin: 0;
}

.service-wrap .box-body {
    padding: 30px;
    background: #fff;
}

.service-wrap .box-body h3 {
    font-size: 16px;
    color: #09b6aa;
    margin: 25px 0 10px;
    font-weight: 600;
}

.service-wrap .box-body h3:first-child {
    margin-top: 0;
}

.service-wrap .box-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.service-wrap .box-body strong {
    color: #333;
    font-weight: 600;
}

/* ==================== 联系我们页面 ==================== */

/* 内容区域 */
.contact-content {
    padding: 60px 0;
    background: #fff;
}

.contact-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* 联系区块 */
.contact-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dashed #eee;
}

.contact-content .block-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-content .block-title i {
    color: #09b6aa;
    font-size: 22px;
}

/* 联系列表 */
.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.contact-item {
    display: flex;
    font-size: 15px;
}

.contact-item .label {
    color: #999;
    flex-shrink: 0;
    width: 80px;
}

.contact-item .value {
    color: #333;
    font-weight: 500;
}

/* 银行信息 */
.bank-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    flex-wrap: wrap;
}

.bank-name {
    color: #09b6aa;
    font-weight: 600;
    min-width: 120px;
}

.bank-num {
    color: #333;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
}

.bank-user {
    color: #666;
}

/* ==================== 响应式 ==================== */

@media (max-width: 768px) {
    /* 关于我们 - 移动端 */
    .about-content {
        padding: 40px 0;
    }

    .about-content .text-block {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .culture-box {
        padding: 20px;
        margin: 30px 0;
    }

    .culture-item {
        flex-direction: column;
        gap: 10px;
    }

    .culture-item .label {
        width: 70px;
    }

    .service-block {
        padding: 20px;
    }

    /* 服务页面 - 移动端 */
    .service-content {
        padding: 40px 0;
    }
    
    .service-wrap .box-title {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .service-wrap .box-body {
        padding: 20px;
    }
    
    .service-wrap .box-body p {
        font-size: 14px;
    }

    /* 联系我们 - 移动端 */
    .contact-content {
        padding: 40px 0;
    }

    .contact-block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .contact-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bank-block {
        padding: 20px;
    }

    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .bank-name {
        min-width: auto;
    }
}
