/* TMS Page Styles */

/* Hero Banner */
.tms-hero {
    width: 100%;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.tms-hero img {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tms-hero-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
}

.tms-hero-title {
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.tms-hero-subtitle {
    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Section 2: 什么是TMS */
.tms-intro {
    padding: 60px 0;
    background: #fff;
}

.tms-section-container {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.tms-intro-body {
    display: flex;
    align-items: center;
    gap: 48px;
}

.tms-intro-text {
    flex: 1;
    font-size: 22px;
    color: #333;
    line-height: 2;
}

.tms-intro-text p {
    margin-bottom: 16px;
}

.tms-intro-image {
    flex: 1;
    text-align: center;
}

.tms-intro-image img {
    width: 100%;
    display: block;
}

/* Generic sections */
.tms-section {
    padding: 0;
    width: 100%;
}

.tms-padded {
    padding: 60px 0;
}

.tms-bg-light {
    background: #fff;
}

.tms-full-img {
    width: 100%;
    display: block;
}

/* 内容区大图（tms5~tms8） */
.tms-content-img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* 标题图（tms2、tms4 等），跟 intro-tag 同量级，不拉伸 */
.tms-title-img {
    display: block;
    height: auto;
    /* width: 260px; */
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero */
    .tms-hero {
        height: 220px;
    }

    .tms-hero-content {
        left: 15px;
        bottom: 20px;
        right: 15px;
    }

    .tms-hero-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .tms-hero-subtitle {
        font-size: 13px;
    }

    /* 介绍区 */
    .tms-intro {
        padding: 30px 0;
    }

    .tms-intro-body {
        flex-direction: column;
        gap: 20px;
    }

    .tms-intro-text {
        font-size: 15px;
        line-height: 1.9;
    }

    /* 容器 */
    .tms-section-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 各 section */
    .tms-padded {
        padding: 24px 0;
    }

    /* 分割线 */
    .dt-divider {
        margin: 0 15px;
    }
}
