/* 方案G - 渐变流体风 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 波浪背景 */
.waves {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23667eea' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
}

.wave1 { animation: wave 10s linear infinite; opacity: 0.8; }
.wave2 { animation: wave 15s linear infinite reverse; opacity: 0.5; bottom: 20px; }
.wave3 { animation: wave 20s linear infinite; opacity: 0.3; bottom: 40px; }

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 头部 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 100;
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

.btn-login {
    padding: 10px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* 主内容 */
.main {
    position: relative;
    z-index: 1;
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: #667eea;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    padding: 16px 36px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* 统计 */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* 区块 */
.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 卡片流 */
.card-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flow-card {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s;
}

.flow-card:hover {
    transform: translateY(-10px);
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.flow-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.flow-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* 解决方案 */
.solution-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-item {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.gradient-1 { background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3)); }
.gradient-2 { background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3)); }
.gradient-3 { background: linear-gradient(135deg, rgba(67, 233, 123, 0.3), rgba(56, 249, 215, 0.3)); }
.gradient-4 { background: linear-gradient(135deg, rgba(250, 112, 154, 0.3), rgba(254, 225, 64, 0.3)); }

.solution-item:hover {
    transform: scale(1.02);
}

.solution-item .num {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
}

.solution-item h3 {
    font-size: 22px;
    margin: 10px 0;
}

.solution-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* 流程 */
.process-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.timeline-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-item .num {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
}

/* 联系 */
.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-item .label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    width: 40px;
}

.info-item .value {
    font-size: 16px;
}

.contact-qr {
    text-align: center;
}

.contact-qr img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.contact-qr span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer a {
    color: rgba(255,255,255,0.7);
}

/* 页面Hero */
.page-hero {
    text-align: center;
    padding: 100px 0 60px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

/* 内容区块 */
.content-section {
    margin-bottom: 60px;
}

.content-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.content-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.stats-section .stats {
    margin-bottom: 0;
}

/* 产品卡片 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.product-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓ ';
    color: #667eea;
}

/* 政策列表 */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header-inline h2 {
    margin: 0;
    font-size: 28px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header-inline .source {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.policy-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.policy-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}

.policy-date {
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.policy-date .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.policy-date .month {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.policy-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.policy-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 8px;
}

.read-more {
    font-size: 13px;
    color: #667eea;
}

/* 政策详情页 */
.detail-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.back-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.detail-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.policy-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.policy-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #fff;
}

.policy-content h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: rgba(255,255,255,0.9);
}

.policy-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 2;
}

.policy-footer {
    margin-top: 40px;
    text-align: center;
}

/* 联系页面 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-card p {
    font-size: 16px;
}

.qr-section {
    display: flex;
    justify-content: center;
}

.qr-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.qr-card img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.qr-card p {
    color: rgba(255,255,255,0.7);
}

.service-time {
    display: flex;
    justify-content: center;
}

.time-card {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.time-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.time-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-card p {
    color: rgba(255,255,255,0.6);
}

/* 响应式 */
@media (max-width: 1024px) {
    .stats, .card-flow, .solution-list { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
}

/* 兼职扫码模块 */
.parttime {
    text-align: center;
    padding: 60px 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.parttime-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.parttime-qr {
    display: inline-block;
    text-align: center;
}

.parttime-qr img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.parttime-qr span {
    display: block;
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
}

/* 留资表单 */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.form-group .required {
    color: #f093fb;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 42px; }
    .page-hero h1 { font-size: 36px; }
    .main { padding: 100px 20px 40px; }
    .stats, .card-flow, .solution-list, .product-grid { grid-template-columns: 1fr; }
    .process-timeline { flex-direction: column; }
    .contact-grid { flex-direction: column; text-align: center; }
    .info-item { flex-direction: column; gap: 4px; }
    .hero-btns { flex-direction: column; }
    .policy-item { flex-direction: column; text-align: center; }
    .contact-form { padding: 24px; }
    .parttime { padding: 40px 20px; }
    .parttime-qr img { width: 150px; height: 150px; }
    .support-main { flex-direction: column; }
    .support-qr-wrapper { margin-top: 30px; }
    .parttime-grid { grid-template-columns: 1fr 1fr; }
    .promise-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== 客服咨询页面样式 ========== */

/* 扫码咨询核心模块 */
.support-hero {
    padding: 60px 0;
}

.support-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.support-info {
    flex: 1;
}

.support-info h2 {
    text-align: left;
    margin-bottom: 16px;
}

.support-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.feature-icon {
    font-size: 16px;
}

.support-qr-wrapper {
    flex-shrink: 0;
}

.support-qr-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.support-qr-card img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.support-qr-card p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.qr-tip {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* 兼职模块 */
.parttime-section {
    padding: 60px 0;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    margin-top: -20px;
}

.parttime-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.parttime-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.parttime-card:hover {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.parttime-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.parttime-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.parttime-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.parttime-qr-center {
    display: flex;
    justify-content: center;
}

.parttime-qr-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 24px;
    border: 2px solid rgba(102, 126, 234, 0.4);
}

.parttime-qr-box img {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.parttime-qr-box p {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
}

/* 服务承诺 */
.promise-section {
    padding: 60px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promise-item {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.promise-item:hover {
    transform: scale(1.03);
}

.promise-num {
    font-size: 42px;
    font-weight: 700;
    opacity: 0.4;
}

.promise-item h3 {
    font-size: 20px;
    margin: 10px 0;
}

.promise-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* 常见问题 */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-q, .faq-a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq-q {
    margin-bottom: 16px;
}

.q-icon, .a-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.q-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.a-icon {
    background: rgba(67, 233, 123, 0.2);
    color: #43e97b;
}

.faq-q span:last-child {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.faq-a span:last-child {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* 服务时间 */
.service-hours {
    padding: 60px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hours-card.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-color: rgba(102, 126, 234, 0.3);
}

.hours-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.hours-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hours-card p {
    color: rgba(255,255,255,0.6);
}

.hours-detail {
    margin-top: 12px;
    font-size: 14px;
}

/* CTA */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 30px;
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* 客服链接卡片 */
.support-link {
    text-decoration: none;
    display: inline-block;
}

.support-link-card {
    text-align: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.support-link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.support-link-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.support-link-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.support-link-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.link-arrow {
    font-size: 24px;
    color: #667eea;
}