﻿.ts-serivers-nav-placeholder {
    height: 85px; /* 设置为导航栏的实际高度 */
    width: 100%;
    background: transparent;
}


/* 所有自定义样式以 ts-serivers- 开头，区分其他页面 */
.ts-serivers-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* 装饰背景元素 */
.ts-serivers-bg-accent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

    .ts-serivers-bg-accent::before {
        content: "⚡";
        font-size: 40vw;
        position: absolute;
        bottom: -10vh;
        right: -10vw;
        opacity: 0.03;
        font-family: monospace;
        transform: rotate(-8deg);
    }

    .ts-serivers-bg-accent::after {
        content: "🇯🇵🇨🇳";
        font-size: 22vw;
        position: absolute;
        top: 10vh;
        left: -5vw;
        opacity: 0.025;
        letter-spacing: 2rem;
        white-space: nowrap;
    }

/* 卡片 / 模块通用 */
.ts-serivers-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

    .ts-serivers-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.96);
    }

/* 标题体系 */
.ts-serivers-hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 45%, #b22234 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ts-serivers-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    border-left: 6px solid #c0392b;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.ts-serivers-subhead {
    font-size: 1.2rem;
    color: #2c3e50;
    max-width: 85%;
    border-bottom: 1px dashed #cbd5e1;
    display: inline-block;
    padding-bottom: 0.25rem;
}

/* 网格系统 */
.ts-serivers-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.ts-serivers-grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0 2.8rem;
}

/* 服务卡片内部 */
.ts-serivers-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.ts-serivers-service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #b22234;
}

.ts-serivers-service-list {
    list-style: none;
    margin-top: 1rem;
}

    .ts-serivers-service-list li {
        margin-bottom: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.4rem;
        font-size: 1.5rem;
        color: #1e293b;
    }

        .ts-serivers-service-list li strong {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .ts-serivers-service-list li::before {
            content: "✓";
            color: #2c7a4d;
            font-weight: bold;
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-right: 0.2rem;
        }

/* 高亮区块 */
.ts-serivers-why-item {
    background: #ffffffcc;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.ts-serivers-why-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #c0392b;
    margin-bottom: 0.5rem;
}

.ts-serivers-why-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* CTA 区域 */
.ts-serivers-cta {
    text-align: center;
    background: linear-gradient(105deg, #0f172a 0%, #1e2a3a 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: 2.5rem;
    color: white;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
}

    .ts-serivers-cta p {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
        opacity: 0.9;
    }

.ts-serivers-btn {
    display: inline-block;
    background: #e67e22;
    background: linear-gradient(95deg, #d35400, #e67e22);
    color: white;
    font-weight: 800;
    padding: 0.9rem 2.7rem;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 1.5rem;
    transition: 0.2s;
    box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

    .ts-serivers-btn:hover {
        background: linear-gradient(95deg, #b83e00, #cf711f);
        transform: scale(1.02);
        box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.3);
    }


/* 适应性 */
@media (max-width: 740px) {
    .ts-serivers-container {
        padding: 1.5rem 1.2rem;
    }

    .ts-serivers-hero-title {
        margin-top: 0.5rem;
    }

    .ts-serivers-subhead {
        max-width: 100%;
    }

    .ts-serivers-section-title {
        font-size: 1.5rem;
    }
}

/* 引言作者 */
.ts-serivers-quote {
    font-style: normal;
    background: #fef9e6;
    padding: 1rem 1.8rem;
    border-radius: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #e67e22;
    color: #2d3e50;
}
