:root {
    --primary: #FF6B00;
    --primary-light: #4dc6ac;
    --primary-dark: #FF8C00;
    --secondary: #29b6f6;
    --accent: #ff9800;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* banner区域样式 */
.support-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.support-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.support-categories {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
}

/* 服务分类区域样式 */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 40px 30px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.category-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.category-card p {
    margin-bottom: 25px;
    font-size: 1rem;
}

/* 常见问题解答区域样式 */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    /*display: flex;
		justify-content: space-between;*/
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    /*max-height: 0;*/
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.support-contact {
    padding: 80px 0;
    background: white;
}

.contact-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.contact-button:hover {
    color: white;
    transform: translateY(-3px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #FF6B00 100%);
}

.contact-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
}

/* 添加按钮悬停时的微光效果 */
.contact-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-button:hover::after {
    left: 100%;
}

/* 不同场景下的按钮变体 */
.support-hero .contact-button {
    background: white;
    color: var(--primary);
}

.category-card .contact-button {
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 10px;
}

/* 使用操作内容区域样式 */
.opt-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    min-height: 600px;
}

.opt-header {
    margin-bottom: 40px;
    text-align: center;
}

.opt-header h1 {
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.opt-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.opt-header p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
}

.opt-list {
    display: grid;
    gap: 25px;
}

.opt-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
}

.opt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.opt-image {
    width: 250px;
    object-fit: contain;
}

.opt-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opt-date {
    color: #777;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.opt-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.opt-title:hover {
    color: var(--primary-dark);
}

.opt-excerpt {
    color: #555;
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.opt-meta {
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    float: right;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 响应式设计 - 平板设备调整高度*/
@media (max-width: 992px) {
    .opt-item {
        flex-direction: column;
    }

    .opt-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .support-hero h1 {
        font-size: 2rem;
    }

    .support-hero p {
        font-size: 1.1rem;
    }

    .faq-question {
        gap: 10px;
    }

    .opt-header h1 {
        font-size: 1.8rem;
    }

    .opt-header p {
        font-size: 1.1rem;
    }

    .opt-content {
        padding: 15px;
    }

    .opt-title {
        font-size: 1.4rem;
    }

    .opt-excerpt {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .image-overlay {
        padding: 20px;
    }

    .image-overlay h3 {
        font-size: 1.3rem;
    }
}