/* 联系我们页面样式 */
.contact-page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 15px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #28a745;
}

.section-content {
    line-height: 1.8;
    color: #555;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

/* 主要用途网格 */
.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.purpose-item {
    text-align: center;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-5px);
    border-color: #28a745;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.purpose-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.purpose-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.purpose-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Telegram 联系方式 */
.telegram-contact {
    text-align: center;
    margin: 30px 0;
}

.telegram-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

.telegram-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    color: white;
}

.telegram-btn-large i {
    font-size: 28px;
}

.contact-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-note i {
    color: #f39c12;
    font-size: 20px;
}

/* 注意事项列表 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.notice-icon {
    font-size: 24px;
    color: #28a745;
    margin-top: 5px;
}

.notice-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.notice-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 特别提示 */
.warning-section {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
}

.warning-section .section-title {
    color: #856404;
    border-bottom-color: #f39c12;
}

.warning-section .section-title i {
    color: #f39c12;
}

.warning-box {
    background: #fff8e1;
    border: 2px solid #ffd54f;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #856404;
}

.warning-box i {
    font-size: 32px;
    color: #f39c12;
}

.warning-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* 快速链接 */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    padding: 25px 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-link-item:hover {
    transform: translateY(-3px);
    border-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.quick-link-item i {
    font-size: 32px;
    color: #28a745;
}

.quick-link-item span {
    font-weight: 600;
    font-size: 16px;
}

/* 侧边栏样式 */
.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-method i {
    font-size: 24px;
    color: #28a745;
    width: 30px;
}

.contact-method strong {
    color: #333;
    font-size: 14px;
}

.contact-method p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.service-time p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
}

.service-time i {
    color: #28a745;
    width: 20px;
}

/* 联系流程 */
.contact-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .purposes-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-btn-large {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .notice-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
} 