/* documents.css - 资料准备页面专属样式 */

/* 资料准备提醒 */
.reminder-section {
    background-color: #fff8f6;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
    border: 2px dashed #e74c3c;
}

.reminder-section h2 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* 资料分类导航 */
.documents-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 30px;
}

.doc-nav-item {
    padding: 12px 25px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doc-nav-item:hover,
.doc-nav-item.active {
    background-color: #1a5276;
    color: white;
    border-color: #1a5276;
}

/* 资料区块 */
.documents-section {
    margin-bottom: 60px;
    display: none;
}

.documents-section.active {
    display: block;
}

.documents-section h2 {
    color: #1a5276;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.documents-simple {
    max-width: 600px;
    margin: 0 auto;
}

.document-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
}

.document-card h3 {
    color: #1a5276;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.document-card h3 i {
    margin-right: 10px;
    color: #e74c3c;
}

.document-list {
    list-style-type: none;
    counter-reset: document-counter;
}

.document-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.document-list li:before {
    counter-increment: document-counter;
    content: counter(document-counter) ".";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    width: 20px;
}

/* 提示框样式 */
.tips-box,
.special-offer,
.expertise-box {
    background-color: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #2e86c1;
}

.tips-box h4,
.special-offer h4,
.expertise-box h4 {
    color: #1a5276;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tips-box h4 i,
.special-offer h4 i,
.expertise-box h4 i {
    margin-right: 10px;
    color: #e74c3c;
}

.special-offer {
    background-color: #fff8f6;
    border-left-color: #e74c3c;
}

.expertise-box {
    background-color: #f0f8f0;
    border-left-color: #28a745;
}

.contract-feature {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contract-feature p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contract-feature i {
    margin-right: 10px;
    color: #28a745;
}

/* 资料提交方式 */
.submission-methods {
    margin: 50px 0;
}

.submission-methods h2 {
    color: #1a5276;
    margin-bottom: 30px;
    text-align: center;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.method-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 40px;
    color: #2e86c1;
    margin-bottom: 15px;
}

.method-card h3 {
    color: #1a5276;
    margin-bottom: 10px;
}

/* 常见问题 */
.faq-section {
    margin: 50px 0;
}

.faq-section h2 {
    color: #1a5276;
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a5276;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 服务保障 */
.guarantee-section {
    margin: 50px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guarantee-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-item i {
    font-size: 40px;
    color: #2e86c1;
    margin-bottom: 15px;
}

.guarantee-item h3 {
    color: #1a5276;
    margin-bottom: 10px;
}

/* CTA区块 */
.cta-section {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: #2e86c1;
    color: white;
}

.cta-button.taobao {
    background-color: #ff4e00;
    color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .documents-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .doc-nav-item {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .method-cards {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        margin: 5px 0;
    }
    
    .documents-section h2 {
        font-size: 20px;
    }
}