/* ========================================
   内页通用样式
   ======================================== */

/* 页面头部 */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--miwhite) 0%, var(--zhuking-light) 100%);
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--mohei);
    margin-bottom: 20px;
    text-align: center;
}

.page-header p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 内容区块 */
.content-block {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-block h2 {
    font-size: 1.8rem;
    color: var(--mohei);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--zhuking);
}

.content-block p {
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 16px;
}

/* 服务详情列表 */
.service-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-detail-item {
    background: var(--miwhite);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--zhuking);
}

.service-detail-item h3 {
    font-size: 1.3rem;
    color: var(--mohei);
    margin-bottom: 12px;
}

.service-detail-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* 流程步骤 */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--zhuking);
    color: var(--miwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--mohei);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 价格表格 */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--zhuking);
    color: var(--miwhite);
    font-weight: 600;
}

.pricing-table tr:hover {
    background: var(--miwhite);
}

/* 联系表单 */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--mohei);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--zhuking);
    box-shadow: 0 0 0 3px rgba(93, 139, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* 团队网格 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 1.3rem;
    color: var(--mohei);
    margin-bottom: 8px;
}

.team-position {
    color: var(--zhuking);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ 列表 */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--mohei);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question::before {
    content: 'Q';
    width: 30px;
    height: 30px;
    background: var(--zhuking);
    color: var(--miwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 42px;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 24px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }
}
