html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #DBE8FB, #FEEFF4);
            /* background-color: #F5F5F5; */
        }


        .el-carousel__button {
            width: 8px;
            height: 8px;
            border-radius: 25px;
        }

        .interval {
            margin: 0 10rem 0 10rem;
        }

        .app {
            width: 100%;

        }

        body html {
            height: 100%;

        }

        .divWhite {
            width: 1200px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 20px;
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
        }

        .footer {
            height: 100px;
            width: 100%;
            background-color: #ddd;
            position: fixed;
            bottom: 0;
        }

        .bot {
            margin-top: 4rem;
            color: #ffffff;
        }

        .el-pager li.active {
            color: #65bc7b;
            cursor: default;
        }

        /* 页码数字hover变色 */
        .el-pagination .el-pager li:not(.disabled):not(.active):hover {
            color: #65bc7b;
            /* 自定义hover文字色 */
        }

        /* 激活页码的hover（可选，默认已高亮） */
        .el-pagination .el-pager li.active:hover {
            color: #65bc7b;
        }

        /* 上一页/下一页按钮hover */
        .el-pagination .btn-prev:hover,
        .el-pagination .btn-next:hover {
            color: #67c23a;
        }

        /* 禁用状态的上一页/下一页（hover不变色） */
        .el-pagination .btn-prev.disabled:hover,
        .el-pagination .btn-next.disabled:hover {
            color: #ccc;
            cursor: not-allowed;
        }

        .nav {
            position: relative;
            padding: 10px 0;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            font-family: Source Han Sans CN;
            letter-spacing: 2px;
            margin-right: 30px;
            cursor: pointer;
        }

        .nav:hover {
            color: #65bc7b;
        }

        .borbot {
            color: #65bc7b;
        }

        /* .borbot::before {
            content: "";
            display: block;
            width: 38px;
            height: 3px;
            background: #FD8DEB;
            border-radius: 2px;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%);
        } */

        .text-hover {
            cursor: pointer;
            color: #0a0808;
            transition: color 0.3s ease;
        }

        .text-hover:hover {
            color: #65bc7b;
        }

        .text-hover-hs {
            cursor: pointer;
            color: #7D7D7D;
            transition: color 0.3s ease;
        }

        .text-hover-hs:hover {
            color: #65bc7b;
        }

        .videoType {
            color: #ffffff;
            background: #65bc7b;
            display: inline-block;
            padding: 0.15em 0.65em;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .videoType:hover {
            color: #ffffff;
            background: #000000;
            display: inline-block;
            padding: 0.15em 0.65em;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .Reply {
            color: #ffffff;
            background: #000000;
            display: inline-block;
            padding: 0.15em 0.65em;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .Reply:hover {
            color: #ffffff;
            background: #65bc7b;
            display: inline-block;
            padding: 0.15em 0.65em;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        a {
            text-decoration: none;
            color: #000;
        }

        .main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 50px;
        }


        .search-input {
            width: 100%;
            border: 2px solid #ffffff;
            padding: 7px 10px;
            background: #000000;
            border-radius: 200px 200px 200px 200px;
            display: flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-size: 1rem;
            color: #ffffff;
            font-weight: 700;
        }

        .search-input:focus {
            border-color: #ffffff;
            box-shadow: 0 2px 15px rgba(26, 58, 143, 0.15);
        }

        input {
            outline: none;
            border: none;
            color: rgb(255, 255, 255);
            background-color: #FFFFFF;
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .tabs-item {
            padding: 10px 20px;
            background: #F3F3F3;
            color: #969696;
            font-size: 0.9rem;
            border-radius: 120px 120px 120px 120px;
            margin: 0 10px 10px 0;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
        }

        .tabs-item:hover {
            background: #036CDD;
            color: #FFFFFF;
        }

        .active {
            background: #036CDD;
            color: #FFFFFF;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 40px 0 20px;
            position: relative;
            padding-left: 15px;
            color: #036CDD;
        }

        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 70%;
            width: 4px;
            background-color: #ff6b35;
            border-radius: 2px;
        }

        .big-banner-box {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .big-banner {
            position: relative;
            background: #F6F6F6;
            padding: 20px;
            border-radius: 30px 30px 30px 30px;
            border: 2px solid #fff;
        }

        .big-banner:hover {
            background: #EEF4F8;
            border: 2px solid #036CDD;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform: translateY(-5px);
        }

        .big-banner-btn {
            position: absolute;
            right: 1rem;
            top: 1.5rem;
            background: #036CDD;
            border-radius: 120px 120px 120px 120px;
            padding: 10px 40px;
            color: #fff;
            font-size: 1rem;
        }

        .big-banner:hover .big-banner-btn {
            background-color: #036CDD;
        }

        @media (min-width: 1200px) {
            /* img { */
            /* width: 70%; */
            /* } */

            .el-carousel__container {
                height: 660px;
            }

            .lxwm {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .big-title {
                font-size: 40px;
                font-weight: bold;
            }

            .big-top {
                margin-top: 5rem;
            }

            .big-img {
                width: 70%;
            }
        }

        @media (max-width: 768px) {
            img {
                width: 100%;
            }

            .el-carousel__container {
                height: 166px;
            }

            .big-title {
                font-size: 20px;
                font-weight: bold;
            }

            .small-right {
                margin-right: 20px;
            }

            .tabs {
                justify-content: flex-start;
            }
        }

        .swiper-pagination-bullet-active {
            background: #fff;
            opacity: var(--swiper-pagination-bullet-opacity, 1);
        }

        .swiper-button-next,
        .swiper-button-prev {
            align-items: center;
            color: #F9F8FA;
            cursor: pointer;
            display: flex;
            height: 20px;
            justify-content: center;
            position: absolute;
            width: 20px;
            z-index: 10;
        }

        .swiper-horizontal {

            &.swiper-rtl .swiper-button-next,
            &.swiper-rtl~.swiper-button-next,
            &~.swiper-button-prev,
            .swiper-button-prev {
                left: var(--swiper-navigation-sides-offset, 10px);
                right: auto;
                color: #000;
            }
        }

        .swiper-horizontal {

            &.swiper-rtl .swiper-button-prev,
            &.swiper-rtl~.swiper-button-prev,
            &~.swiper-button-next,
            .swiper-button-next {
                left: auto;
                right: var(--swiper-navigation-sides-offset, 10px);
            }
        }

        .swiper-horizontal>.swiper-pagination-bullets,
        .swiper-pagination-bullets.swiper-pagination-horizontal,
        .swiper-pagination-custom,
        .swiper-pagination-fraction {
            bottom: var(--swiper-pagination-bottom, 8px);
            left: 89%;
            top: var(--swiper-pagination-top, auto);
            width: 10%;
            height: 7%;
        }

        /* ------------ 横杠分页器核心样式 ------------ */
        /* 隐藏默认圆点，重置分页器容器样式 */
        .swiper-pagination {
            /* 横向排列 */
            justify-content: center;
            /* 水平居中 */
            gap: 20px;
            /* 横杠之间的间距 */

        }

        /* 未激活的横杠样式 */
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            /* 轻微圆角，可选 */
            background: rgba(255, 255, 255, 0.5);
            /* 未激活颜色（半透明白） */
            opacity: 1;
            /* 取消默认透明度 */
            transition: all 0.3s ease;
            /* 过渡动画，更流畅 */
        }

        /* 激活的横杠样式 */
        .swiper-pagination-bullet-active {
            width: 10px;
            height: 10px;
            /* 激活态宽度（可略宽，突出显示） */
            background: #ffffff;
            /* 激活颜色（纯白） */
        }


        .p {
            background: none !important;
        }

        .imgStyle {
            @media (min-width: 1200px) {
                img {
                    width: auto !important;
                }
            }
        }

        .txTitle {
            display: block;
            font-size: 0.875rem;
            letter-spacing: 0.077em;
            line-height: 1.5;
            margin-bottom: 0.5em;
            text-transform: uppercase;
            color: rgb(112 108 108);
        }

        .inputClass {
            color: rgb(112 108 108);
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: 8px;
        }

        .inputClass:focus {
            border: 2.25px #101010 solid;
        }

        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px 20px;
            border-radius: 4px;
            z-index: 9999;
            font-size: 14px;
        }

        .fade-enter-active,
        .fade-leave-active {
            transition: opacity 0.3s;
        }

        .fade-enter,
        .fade-leave-to {
            opacity: 0;
        }

/* 如需多行显示，替换为以下样式（兼容移动端/现代浏览器） */
        .text-limit {
            width: 100%;
            display: -webkit-box;
            -webkit-line-clamp: 2;  
            -webkit-box-orient: vertical;
            overflow: hidden;
        }