﻿/* 顶部图片 Banner */
.touch-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* 按钮区域 */
.touch-tabs-wrapper {
    position: relative;
}

/* 按钮行 */
.touch-tabs {
    display: flex;
    justify-content: center; /* 水平居中所有 tab */
    flex-wrap: wrap; /* 可选：如果 tab 太多，可以换行显示 */
    width: 100%; /* 占满容器宽度 */
}

.touch-tab {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column; /* 垂直排列内容 */
    align-items: center; /* 内容垂直居中 */
    justify-content: center; /* 水平居中 */
    background: white;
    box-sizing: border-box;
    min-width: 150px; /* 可根据实际调整最小宽度 */
    max-width: 200px; /* 控制最大宽度，便于换行 */
}

    .touch-tab img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        margin-bottom: 0.5rem; /* 图片与文字之间的间距 */
    }

    .touch-tab span {
        font-size: 1rem;
        color: #333;
        white-space: normal; /* 允许换行 */
        text-align: center; /* 居中显示文字 */
    }

    .touch-tab.active {
        background-color: red;
        border-color: red;
        color: white;
    }

        .touch-tab.active span {
            color: white;
        }

/* 横线分隔 */
.touch-tab-divider {
    height: 1px;
    background-color: #ccc;
    width: 100%;
}

/* 内容区域 */
.touch-content {
    padding: 1rem 1rem;
    margin: 0 auto;
}

/* 内容隐藏用 */
.touch-section {
    font-size: 1.1rem;
    line-height: 1.8;
}

.d-none {
    display: none;
}

/* 红色大标题 */
.section-red-title {
    font-size: 2rem;
    color: red;
}

/* 视频模块整体容器 */
.general-module {
    padding: 1rem 0;
}

/* 图标+标题一行 */
.general-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.general-title {
    font-size: 1.25rem;
    color: #000;
    margin: 0;
}

/* 内容区域：文字 + 图片 */
.general-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.general-text {
    flex: 1 1 0;
}

    .general-text p {
        line-height: 1.6;
        color: #555;
    }

.general-image {
    flex: 0 0 auto;
    text-align: right;
    max-width: 100%;
}

    .general-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
    }

@media (max-width: 768px) {
    .touch-tab {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .section-red-title {
        font-size: 1.5rem;
    }

    .general-title {
        font-size: 1.1rem;
    }

    .general-text p {
        font-size: 0.9rem;
    }

    .general-content {
        flex-direction: column-reverse; /* 在移动端将图片放在文字上方 */
    }

    .general-image {
        width: 100%;
        text-align: center; /* 图片居中 */
    }
}