/* ===== 首页专用样式 ===== */
.gsxq-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #212121 100%);
    color: #fff;
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gsxq-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.gsxq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.gsxq-hero-title {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 20px;
    letter-spacing: 2px;
}
.gsxq-hero-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
    font-weight: 300;
}
.gsxq-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.gsxq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
}
.gsxq-btn-primary {
    background: #fff;
    color: #212121;
}
.gsxq-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.gsxq-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.gsxq-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.gsxq-btn-large {
    padding: 16px 48px;
    font-size: 16px;
}

/* 通用区块 */
.gsxq-section {
    padding: 60px 0;
}
.gsxq-section:nth-child(even) {
    background: #fafafa;
}

/* 统一容器：与全局保持一致 */
.gsxq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.gsxq-section-title {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 15px;
    letter-spacing: 2px;
    color: #212121;
}
.gsxq-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 15px;
}
.gsxq-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.gsxq-section-more {
    color: #212121;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #212121;
    transition: opacity 0.2s;
}
.gsxq-section-more:hover {
    opacity: 0.7;
}

/* 服务卡片 */
.gsxq-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.gsxq-service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 35px 30px;
    transition: all 0.3s;
    position: relative;
}
.gsxq-service-card:hover {
    border-color: #212121;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.gsxq-service-icon {
    font-size: 36px;
    margin-bottom: 20px;
}
.gsxq-service-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #212121;
}
.gsxq-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.gsxq-service-price {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #d63638;
    margin-bottom: 15px;
}
.gsxq-service-link {
    font-size: 13px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.gsxq-service-link:hover {
    color: #666;
}
.gsxq-service-highlight {
    border-color: #212121;
    background: #fafafa;
}

/* CTA */
.gsxq-cta-section {
    padding: 40px 0;
}
.gsxq-cta-box {
    background: #212121;
    color: #fff;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.gsxq-cta-box h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 15px;
    letter-spacing: 2px;
}
.gsxq-cta-box p {
    opacity: 0.85;
    margin-bottom: 30px;
    font-size: 15px;
}

/* 文章网格增强 */
.gsxq-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gsxq-post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gsxq-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gsxq-post-thumb {
    display: block;
    height: 180px;
    overflow: hidden;
}
.gsxq-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gsxq-post-card:hover .gsxq-post-thumb img {
    transform: scale(1.05);
}
.gsxq-post-body {
    padding: 20px;
}
.gsxq-post-body h2 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.gsxq-post-body h2 a {
    color: #212121;
    text-decoration: none;
}
.gsxq-post-body h2 a:hover {
    color: #666;
}
.gsxq-post-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.gsxq-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 响应式 */
@media (max-width: 768px) {
    .gsxq-hero { padding: 60px 0 50px; }
    .gsxq-hero-title { font-size: 28px; }
    .gsxq-hero-subtitle { font-size: 15px; }
    .gsxq-section { padding: 40px 0; }
    .gsxq-services-grid { grid-template-columns: 1fr; }
    .gsxq-section-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    .gsxq-cta-box { padding: 40px 24px; }
    .gsxq-container { padding: 0 20px; }
}