	/* 容器及图片基础 */
	.myBanner {
	    position: relative;
	    width: 100%;
	    height: 100%;
	    overflow: hidden;
	}

	.myBanner .swiper-slide img {
	    display: block;
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}

	/* 自定义分页器容器 */
	.custom-pagination {
	    position: absolute;
	    bottom: 5%;
	    right: 8%;
	    display: flex;
	    align-items: center;
	    gap: 20px;
	    z-index: 10;
	}

	/* 小圆点样式 */
	.pagination-dot {
	    width: 26px;
	    height: 26px;
	    background-color: rgba(255, 255, 255, .65);
	    border-radius: 50%;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	}

	.pagination-dot.active {
	    background: #e61c37;
	}

	/* 暂停/播放按钮 */
	.btn-pause-play {
	    cursor: pointer;
	    display: flex;
	    align-items: center;
	}

	.sectop {
	    position: relative;
	}

	.sectop img {
	    display: block;
	}

	.sectop .secbg {
	    width: 100%;
	    height: 100%;
	}

	.sectop .text {
	    width: 100%;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%, -50%);
	    gap: 15px;
	}

	.sectop .text .atext {
	    font-size: 30px;
	    font-weight: 600;
	}

	.sectop .text .btext {
	    font-size: 18px;
	    font-weight: 400;
	}

	.sectop .text p {
	    line-height: 30px;
	}

	.lo-jie .list {
	    display: flex;
	}

	.lo-jie .list .item {
	    position: relative;
	    flex: 1 1 auto;
	    width: 16%;
	    transition: transform 0.35s cubic-bezier(0.45, 1.4, 0.6, 1), z-index 0.3s ease;
	    transform-origin: center center;
	}

	.lo-jie .list .item .img {
	    width: 100%;
	    display: block;
	}

	.lo-jie .list .item .img img {
	    width: 100%;
	}

	.lo-jie .list .item .text {
	    position: absolute;
	    bottom: 0;
	    color: #fff;
	    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	    backdrop-filter: blur(2px);
	    padding: 30px;
	    box-sizing: border-box;
	}

	.lo-jie .list .item .text .t-2 {
	    text-align: center;
	    margin-bottom: 25px;
	    font-weight: 300;
	}

	.lo-jie .list .item .text .hw {
	    max-height: 0;
	    overflow: hidden;
	}

	.lo-jie .list .item .text .hw .t-3 {
	    margin-bottom: 15px;
	    font-weight: 200;
	    font-size: 17px;
	}

	.lo-jie .list .item .text .hw .p-0 {
	    font-weight: 100;
	    font-size: 14px;
	}

	.lo-jie .list .item:hover {
	    transform: scale(1.2);
	    z-index: 20;
	}

	.lo-jie .list .item:hover .hw {
	    max-height: 100%;
	}

	.lo-jie .list .item:first-child {
	    transform-origin: left center;
	}

	.lo-jie .list .item:last-child {
	    transform-origin: right center;
	}

	.material {
	    width: 100%;
	    margin-top: 24px;
	    padding-top: 45px;
	    display: flex;
	    justify-content: space-between;
	}

	.material .news-card {
	    flex: 0 0 auto;
	    width: calc(25% - 24px);
	    height: 550px;
	    box-sizing: border-box;
	    margin-bottom: 40px;
	    box-shadow: 0px 0px 10px 0px #808080b9;
	    border-radius: 5px;
	    overflow: hidden;
	    background-color: rgba(84, 104, 196, 0.1);
	}

	.material .news-card a {
	    display: flex;
	    flex-direction: column;
	    height: 100%;
	}

	.material .news-card .news-pic {
	    width: 100%;
	    height: 50%;
	    position: relative;
	}

	.material .news-card .news-pic img {
	    position: absolute;
	    left: 0;
	    right: 0;
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}

	.material .news-card .cardbottom {
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    padding: 20px;
	    box-sizing: border-box;
	    flex: 1;
	    height: 50%;
	}

	.material .news-card .cardbottom .group .news-title {
	    font-size: 16px;
	    font-weight: bold;
	    height: 45px;
	    overflow: hidden;
	}

	.material .news-card .cardbottom .group .news-content {
	    color: #000;
	    font-size: 12px;
	    line-height: 20px;
	    height: 60px;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-line-clamp: 3;
	    -webkit-box-orient: vertical;
	    margin-top: 30px;
	}

	.material .news-card .news-tag {
	    color: #999;
	    font-size: 12px;
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    padding-bottom: 20px;
	    padding-left: 20px;
	    padding-right: 20px;
	    position: relative;
	}

	/* hover 状态 */

	.material .news-card:hover {
	    background: #e61c37;
	}

	.material .news-card:hover .news-pic {
	    overflow: hidden;
	}

	.material .news-card:hover .news-pic img {
	    transform: scale(1.1);
	    transition: 0.5s;
	}

	.material .news-card:hover .cardbottom .news-title {
	    color: #fff;
	}

	.material .news-card:hover .cardbottom .news-content {
	    color: #fff;
	}

	.material .news-card:hover .news-tag {
	    color: #fff;
	}

	.material .news-card:hover .news-tag .arrow svg path {
	    fill: #fff;
	}

	.material .news-card:hover .news-tag::before {
	    background: #fff;
	}

	.h_wisdomC {
	    padding-top: 45px;
	    margin-top: 24px;

	    .fold_wrap {
	        height: 640px;
	        display: flex;

	        li {
	            width: 20%;
	            height: 640px;
	            float: left;
	            transition: 0.5s ease-in-out;

	            a {
	                display: block;
	                height: 640px;
	                text-align: center;
	                position: relative;

	                .smallpic {
	                    width: 100%;
	                    height: 100%;
	                    display: none;
	                }

	                .tool {
	                    position: absolute;
	                    width: 100%;
	                    padding: 60px 20px;
	                    box-sizing: border-box;
	                    bottom: 0;
	                    left: 0;
	                    color: #fff;
	                    background-color: rgba(0, 0, 0, 0.3);
	                    display: flex;
	                    justify-content: space-between;
	                    z-index: 1;
	                    height: 100%;
	                    flex-direction: column;

	                    .foldtop {
	                        h5 {
	                            font-size: 24px;
	                            font-weight: bold;
	                            margin: 0;
	                        }

	                        p {
	                            font-size: 15px;
	                            color: rgba(255, 255, 255, 1);
	                            margin-top: 10px;
	                        }

	                        .summary {
	                            display: none;
	                            text-align: left;
	                            line-height: 30px;
	                            height: 150px;
	                            overflow: hidden;
	                            margin-top: 30px;
	                            text-shadow: 1px 1px 0 #af8080,
	                                /* 右下 */
	                                -1px -1px 0 #af8080,
	                                /* 左上 */
	                                1px -1px 0 #af8080,
	                                /* 右上 */
	                                -1px 1px 0 #af8080;
	                            /* 左下 */
	                        }
	                    }

	                    .more {
	                        font-size: 16px;
	                        display: flex;
	                        align-items: center;
	                        justify-content: center;

	                        img {
	                            width: 26px;
	                            height: 26px;
	                            margin-left: 6px;
	                        }
	                    }
	                }
	            }

	            .po1 {
	                background: url(/template/pc/skin/images/pro1.jpg) no-repeat center center;
	                background-size: cover;
	            }

	            .po2 {
	                background: url(/template/pc/skin/images/pro2.jpg) no-repeat center center;
	                background-size: cover;
	            }

	            .po3 {
	                background: url(/template/pc/skin/images/pro3.jpeg) no-repeat center center;
	                background-size: cover;
	            }

	            .po4 {
	                background: url(/template/pc/skin/images/pro4.jpg) no-repeat center center;
	                background-size: cover;
	            }

	            .po5 {
	                background: url(/template/pc/skin/images/pro5.jpg) no-repeat center center;
	                background-size: cover;
	            }
	        }

	        li:hover {
	            width: 55%;
	            transition: 0.5s ease-in-out;

	            a {
	                background: none;

	                .smallpic {
	                    display: block;
	                    transition: 0.3s;
	                }

	                .tool {
	                    background-color: rgba(230, 29, 55, 0.1);

	                    .foldtop {
	                        .summary {
	                            display: block;
	                        }
	                    }
	                }
	            }
	        }
	    }
	}

	.image-wrapper {
	    margin-top: 60px;
	    width: 100%;
	    position: relative;
	    box-sizing: border-box;
	}

	.image-wrapper img {
	    width: 100%;
	    height: 100%;
	}

	.article-container {
	    display: flex;
	    justify-content: space-between;
	    margin-bottom: 40px;
	    padding-top: 45px;
	    margin-top: 24px;
	}

	.article-container .artBanner {
	    width: calc(50% - 10px);
	    position: relative;
	    overflow: hidden;
	}

	.article-container .artBanner .inner {
	    position: relative;
	    padding-bottom: 60%;
	}

	.article-container .artBanner .pic {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	}

	.article-container .artBanner .pic img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    /* 保证图片不变形 */
	}

	.article-container .artBanner .text {
	    position: absolute;
	    left: 0;
	    bottom: -1px;
	    right: 0;
	    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
	    color: #fff;
	    display: block;
	    padding: 30px 30px 20px 30px;
	    font-size: 20px;
	}

	.article-container .list {
	    width: calc(50% - 10px);
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: space-between;
	}

	.article-container .list .item {
	    background: #fff;
	    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    width: calc(50% - 10px);
	    position: relative;
	    border-bottom: 4px solid #e61c37;
	}

	.article-container .list .item .text {
	    padding: 40px 30px;
	    position: relative;
	    box-sizing: border-box;
	}

	.article-container .list .item .date {
	    font-size: 14px;
	    color: #e61c37;
	    position: absolute;
	    bottom: 0;
	    right: 0;
	    padding: 20px;
	}

	.artBanner .swiper-button-next,
	.artBanner .swiper-button-prev {
	    color: #ffffff !important;
	    /* 缩小一下尺寸以适应文章框 */
	    transform: scale(0.7);
	    z-index: 15;
	}

	.matrix {
	    display: flex;
	    justify-content: space-between;
	    margin-top: 24px;
	    padding-top: 45px;
	}

	.matrix .list {
	    width: calc(72% - 10px);
	}

	.matrix .list ul {
	    display: flex;
	    flex-wrap: wrap;
	    margin: 0;
	    padding: 0;
	    list-style: none;
	}

	.matrix .list ul li {
	    width: 33.33%;
	    position: relative;
	    overflow: hidden;
	}

	.matrix .list ul li img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    transition: transform 0.3s;
	}

	.matrix .list ul li .tit {
	    position: absolute;
	    left: 0;
	    top: 0;
	    opacity: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(230, 29, 55, 0.7);
	    color: #fff;
	    font-size: 16px;
	    padding: 20px;
	    box-sizing: border-box;
	    transition: opacity 0.3s;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    text-align: center;
	}

	.matrix .list ul li:hover .tit {
	    opacity: 1;
	}

	.matrix .scroll {
	    width: 28%;
	}

	.matrix .scroll .swiper-container {
	    height: 100%;
	    width: 100%;
	}

	.matrix .scroll .swiper-slide {
	    height: 100%;
	    /* 确保slide也是100%高度 */
	}

	.matrix .scroll .img {
	    width: 100%;
	}

	.matrix .scroll .img img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}

	.matrix .scroll .txt {
	    display: flex;
	    flex-direction: column;
	    align-items: start;
	    background: linear-gradient(0deg, #e61c37 0, #c7374a 100%);
	    height: 60%;
	    color: #fff;
	    padding: 20px;
	    box-sizing: border-box;
	    width: 100%;
	    text-align: left;
	}

	.matrix .scroll .txt .num {
	    font-size: 48px;
	    font-weight: bold;
	    margin: 20px 0;
	}

	.matrix .scroll .txt .info {
	    font-size: 18px;
	    line-height: 1.4;
	    flex: 1;
	}

	.matrix .scroll .txt .info a,
	.matrix .scroll .txt .more a {
	    color: #fff;
	    text-decoration: none;
	}

	.matrix .scroll .txt .more {
	    margin-top: 15px;
	    display: inline-block;
	    width: fit-content;
	}

	.matrix .scroll .txt span {
	    font-size: 16px;
	}

	@media screen and (max-width: 1200px) {
		.matrix .scroll .txt .num {
			font-size: 35px;
			margin: 10px 0;
		}

		.matrix .scroll .txt .info {
			font-size: 14px;
		}

		.matrix .scroll .txt span {
			font-size: 12px;
		}

		.matrix .list ul li .tit {
			font-size: 12px;
		}
	}

	@media screen and (max-width: 1000px) {

		.matrix .scroll {
			display: none;
		}

		.matrix .list {
			width: 100%;
		}
	}
	/* 容器设置 */
	.brand-box {
	    width: 100%;
	    margin-top: 80px;
	}
	.brand-swiper {
		width: 100%;
		overflow: hidden;
		position: relative;
		padding-bottom: 30px;
	}
	.brand-swiper .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100px;
		transition: all 0.3s;
		margin-top: 0 !important;
	}
	
	.brand-link {
		width: 100%;
		height: 100%;
		text-decoration: none;
		padding: 15px;
	}
	.logo-container {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		transition: all 0.3s ease;
	}
	.logoimg {
		max-width: 80%;
		max-height: 70px;
		object-fit: contain;
		margin-bottom: 10px;
	}
	.overlay {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	    background: linear-gradient(135deg, #e61c37 0%, #c41230 100%);
		color: white;
		padding: 15px;
		height: 100%;
		transform: translateY(100%);
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 3;
	}
	.logo-container:hover .overlay {
		transform: translateY(0);
	}
	
	.item-name {
		font-size: 13px;
		color: #fff;
		text-align: center;
		margin: 0;
		line-height: 1.4;
		font-weight: 500;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.brand-swiper .swiper-pagination {
		bottom: 0px !important;
	}
	
	.brand-swiper .swiper-pagination-bullet {
		width: 30px;
		height: 3px;
		border-radius: 2px;
		background: #ddd;
		opacity: 1;
		transition: all 0.3s;
	}
	
	.brand-swiper .swiper-pagination-bullet-active {
		background: #e61c37;
		width: 40px;
	}