body{

         .content-center {
            margin-top: 1vw;
            padding: 1vw 0vw 1vw 1.5vw;
            position: relative;
            /* display: none; */
        }
        .content-center-border {
            width: 94.8%;
            margin-left: 2vw;
            border: 0.1vw solid rgb(133, 6, 6);
        }
        .content-center-carousel-left {
            display: flex;
        }
        .carousel {
            position: relative;
            width: 50vw; /* 轮播图宽度 */
            height: 30vw; /* 轮播图高度 */
            margin: auto; /* 居中对齐 */
            cursor:pointer;
            overflow: hidden; /* 隐藏溢出内容 */
        }
        .content-center-carousel-right-img {
            width: 22vw;
            margin-left: 0.1vw;
        }
        .content-center-carousel-right-img img {
            width: 100%;
            height: 14.8vw;
            transform: translateY(0.1vw);
        }
        /* .content-center-carousel-right-img img:first-child {
            transform: translateY(0.1vw);
        } */
        .slides {
            display: flex; /* 使用 flexbox 布局 */
            transition: transform 0.5s ease; /* 动画效果 */

        }
        .slide {
            width: 100%; /* 每张幻灯片占满容器 */
            flex-shrink: 0; /* 防止缩小 */
            position: relative;
        }
        .slide img {
            width: 100%;
            height: 30vw; /* 轮播图高度 */
            display: block; /* 消除底部空隙 */
        }
        /* 隐藏的 radio 按钮 */
        input[type="radio"] {
            display: none;
        }
        /* 圆点指示器 */
        .indicators {
            position: absolute;
            top: 33vw;
            left: 21%;
            text-align: center;
        }
        .indicator {
            display: inline-block;
            width: 0.5vw;
            height: 0.5vw;
            background-color: #bbb;
            border-radius: 50%;
            margin: 0 0.5vw;
            cursor: pointer;
        }
        /* 激活指示器的样式 */
        input[type="radio"]:checked + .indicator {
            background-color: #717171;
        }
        .content-center-carousel {
            display: flex;
            margin-left: 2vw;
            margin-top: 1vw;
            padding: 0vw;
            padding-right: 3vw;
        }
        .content-center-carousel-right {
            padding-left: 7vw;
            flex: 1;
            box-sizing: border-box;
            font-size: 1vw;
            font-family: 微软雅黑;
            font-weight: 400;
            cursor:pointer;
            /* background-color: #fff; */
            border: 0.2vw solid #1d92ff;
            border-left: none;
            border-radius: 0 0.3vw 0.3vw 0 ;
        }
        .content-center-carousel-right-title {
        	margin-left:5vw;
            margin-top: 2.5vw;
            color: #000;
        }
        .content-center-carousel-right-title:hover {
            color: #409EFF;
        }
        .content-center-carousel-right-title:first-child {
            margin-top: 3vw;
        }
        .content-center-item {
            margin-top: 2vw;
            padding: 0 1vw 0 2vw;
        }
        .content-center-item:first-child {
            margin-top: 2vw;
        }
        .content-center-item-title {
            font-size: 1.3vw;
            font-family: 微软雅黑;
            font-weight: 600;
        }
        .content-center-item-title span {
            font-size: 0.7vw;
            color: #909399;
        }
        .content-center-item-box {
            display: flex;
            justify-content: space-between;
            margin-top: 0.8vw;
            padding-right: 2vw;
        }
        .content-center-item-box-item {
            width: 20.5vw;
            transition: all 0.3s ease;
            background-color: #fff;
        }
        .content-center-item-box-item:hover {
            cursor:pointer;
            box-shadow: 0 0 0.5vw #999;
            transform: translateY(-0.5vw);
        }
        .content-center-item-box-item img {
            width: 100%;
            height: 12vw;
        }
        .content-center-item-box-title {
            margin: 0.5vw 0.5vw 0.3vw 0.5vw;
            font-size: 1vw;
        }
        /* .content-center-item-box-title {
            margin: 0.5vw 0.5vw 1vw 0.5vw;
            font-size: 0.6vw;
        } */
        .content-center-bottom {
            display: flex;
            justify-content: space-between;
            margin-top: 2vw;
            padding: 0 3vw 0 2vw;
        }
        .content-center-bottom-item {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }
        .content-center-bottom-item-title {
            margin-bottom: 1vw;
            font-size: 1vw;
            font-family: 微软雅黑;
            font-weight: 600;
        }
        .content-center-bottom-img {
            width: 41vw;
            height: 10vw;
            transition: all 0.3s ease;
        }
        .content-center-bottom-img:hover {
            cursor:pointer;
            transform: scale(1.05);
        }
        .dialog {
            width: 40vw;
            height: 18.5vw;
            display: flex;
            flex-wrap: wrap; /* 允许换行 */
            position: absolute;
            top: 1%;
            left: 38%;
            z-index: 999;
            padding: 1vw;
            opacity: 0;
            transition: all 1s ease;
            overflow-y: auto;
            background-color: #fff;
        }
        .dialog-item {
            width: 23%;
            margin-right: 2%;
            transition: all 0.3s ease;
        }
        .dialog-item:nth-child(4n) {
            margin-right: 0;
        }
        .dialog-item:hover {
            cursor:pointer;
            box-shadow: 0 0 0.5vw #999;
            transform: translateY(-0.5vw);
        }
        .dialog-item img {
            width: 100%;
        }
        .dialog-item-title {
            text-align: center;
            font-size: 0.8vw;
        }
        .content-center-carousel-right-info-box {
            position: relative;
        }
        .content-center-carousel-right-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 0.5vw 0;
            background-color: rgba(0,0,0,0.3);
        }
        .content-center-carousel-right-info-title {
            font-size: 0.6vw;
            padding: 0 1vw;
            color: #2fa293;
        }
        .content-center-carousel-right-info-title:hover {
            color: #409EFF;
            cursor:pointer;
        }
        .content-center-carousel-right-info-text {
            margin-top: 1vw;
            font-size: 1vw;
            padding: 0 1vw;
            color: #fff;
        }
        .content-center-carousel-right-info-text:hover {
            color: #e7e6e6;
            cursor:pointer;
        }
        .slide-title {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 1vw;
            width: 100%;
            font-size: 1.5vw;
            font-family: 微软雅黑;
            font-weight: 300;
            background-color: rgba(0,0,0,0.3);
            color: #fff;
        }
        .slide-title:hover {
            cursor:pointer;
            color: #e7e6e6;
        }
        .login {
            width: 5vw;
            transform: translateY(0.4vw);
            margin-left: 1vw;
            cursor:pointer;
        }
        .bottom-box {
            display: flex;
            /* align-items: center; */
            text-align: center;
            padding: 1vw 0 8vw 34.5vw;
            background-color: #fff;
        }
        .bottom-info {
            margin-top: 1vw;
            font-size: 1vw;
            line-height: 1.5vw;
            color: #909399;
        }
        .beian-a {
            margin-left: 1vw;
            color: #909399;
        }
        .content-center-item-href {
            color: #000;
            text-decoration: none; /* 去除下划线 */
        }
        }