body {
	min-width: 1200px;
	/* 核心：小于1200px不再缩小 */
	overflow-x: auto;
	/* 核心：宽度不够自动出横向滚动条 */
	margin: 0;
	padding: 0;
}

.wyz60_bm input {
	border: 1px solid #ccc;
	/* 默认灰色边框 */
	padding: 6px 10px;
	outline: none;
	/* 关键：去掉默认蓝色outline */
	
}

.wyz60_bm input:focus {
	border-color: #2196F3;
	/* 边框变蓝色 */
	/* 可选：加一点发光更明显 */
	box-shadow: 0 0 0 2px rgba(33, 150, 243, .2);
}

/* img {
	max-width: 100%;
	height: auto;
	display: block;
}
 */

.wyz60_bm {
	width: 100%;
	height: 668px;
	padding-top: 60px;
	background: linear-gradient(to bottom, #674ac1, #583cab);

}

.wyz60_bm_box {

	width: 1200px;
	height: 480px;
	margin: 0 auto;
	border-radius: 20px;
	background:
		linear-gradient(to right, #eae8f6, #8d79ce) padding-box,
		linear-gradient(135deg, #722ed1, #f1eef9) border-box;
	border: 4px solid transparent;

}

.wyz60_bm_l {
	float: left;
	padding: 79px 57px 0 57px;

}

.wyz60_bm_r {
	padding-top: 79px;
	float: left;
}

.wyz60_bm_r h1 {
	font-size: 40px;
	color: #341d77;
	padding-bottom: 20px;
}

.tabright input {
	width: 450px;
	height: 56px;
	border-radius: 10px;
	margin-top: 16px;
	border-color: #722ed1;
	font-size: 20px;
}

.tabright .layui-btn {
	width: 460px;
	height: 56px;
	font-size: 28px;
	border: 0;
	color: #fff;
	background: linear-gradient(to bottom, #db3c14, #ea9d59);
}

.wyz60_lb01 {
	width: 100%;
	height: 940px;
	background: url(../images/wyz6_0h.jpg)no-repeat;
	background-size: 100% 100%;
}

/* 外层容器 监听鼠标移入移出 */
.carousel-wrap {
	width: 1200px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	padding: 40px;
	background: linear-gradient(to right, #595eba, #662d8b);
}

/* 顶部选项卡 */
.tab-nav {
	display: flex;
	/*  background: linear-gradient(90deg, #5b52d1, #75288c); */
	padding: 0 0 20px 0;
	gap: 12px;
}

.tab-item {
	flex: 1;
	text-align: center;
	padding: 12px 0;
	background: #fff;
	color: #666;
	font-size: 28px;
	border-radius: 4px;
	cursor: pointer;
	user-select: none;
}

.tab-item.active {
	background: linear-gradient(to bottom, #3b2381, #6549c1);
	color: #fff;
}

/* 上方大图轮播容器 */
.carousel-container {
	position: relative;
	width: 100%;
	height: 568px;
	overflow: hidden;
}

.carousel-list {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}

.carousel-item {
	width: 1200px;
	height: 568px;
	flex-shrink: 0;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 左右箭头 */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	z-index: 10;
	transition: 0.2s;
	user-select: none;
}

.arrow:hover {
	background: rgba(0, 0, 0, 0.6);
}

.arrow:active {
	transform: translateY(-50%) scale(0.92);
	background: rgba(0, 0, 0, 0.8);
}

.prev {
	left: 15px;
}

.next {
	right: 15px;
}

/* 小圆点指示器 */
.dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
}

.dot.active {
	background: #fff;
}

/* 底部Logo同步轮播区域 */
.logo-carousel {
	width: 1200px;

	overflow: hidden;
	margin-top: 10px;
}

.logo-list {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}

.logo-item {
	width: 1200px;
	height: 120px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-item img {
	width: 100%;
	object-fit: contain;
}







/* 整体模块容器 */


.wyz60_qmsj {
	width: 100%;

	background-image: linear-gradient(180deg, #5a3fb0 0%, #361f77 100%);
}

.upgrade-section {

	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;

}

/* 标题 */
.section-title {
	font-size: 42px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

/* 卡片网格布局 */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 30px;
}

/* 产品卡片 */
.product-card {
	border-radius: 16px;
	overflow: hidden;
}

/* 卡片图片 */
.card-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 卡片底部栏 */
.card-footer {
	display: flex;
	align-items: center;
	background-image: linear-gradient(180deg, #3c2482 0%, #664ac1 100%);
	/* 卡片底部紫色 */
	padding: 4px 16px;
}

/* 免费升级标签 */
.upgrade-tag {
	color: #fff5b6;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	padding-right: 16px;
	border-right: 2px solid rgba(255, 255, 255, 0.3);
}

/* 卡片描述文字 */
.card-desc {
	text-align: center;
	width: 286px;
	color: #fff;
	font-size: 15px;
	line-height: 1.6;
	margin-left: 16px;
}

/* 底部备注文字 */
.note-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	text-align: right;
	margin-top: 10px;
}


/*轮播样式ʽ*/

.contents {
	width: 100%;
	height: 600px;
	background-image: linear-gradient(180deg, #6448bf 0%, #372078 100%);
}

.poster_box {
	padding: 30px 20px
}

.poster_box h2 {
	font-size: 30px;
	color: #015293;
	font-weight: bold;
	text-align: center;
}

.poster_box h3 {
	font-size: 16px;
	color: #015293;
	margin: 10px 0 35px;
	text-align: center;
}

.poster-main {
	position: relative;
	width: 100%;
	height: 340px !important;
	margin-left: auto;
	margin-right: auto;
}



.poster-main a,
.poster-main img {
	display: block;
	width: 100%;
	height: 100%;
}


.poster-main .poster-list {
	width: 1000px;
	height: 500px;
}

.poster-main .poster-list .poster-item {
	width: 200px;
	height: 500px;
	position: absolute;
	left: 0;
	top: 0;
}

.poster-main .poster-list .poster-item .item {
	position: relative;
	width: 100%;
	height: 100%
}

.poster-main .poster-btn {
	position: absolute;
	top: 70px;
	cursor: pointer;
	filter: opacity(.5) brightness(1);
}

.poster-main .poster-btn:hover {
	filter: opacity(1) brightness(2);
}

.poster-main .poster-prev-btn {
	left: 0;
	background: url(../images/wyz60_left.png) no-repeat center center;
}

.poster-main .poster-next-btn {
	right: 0;
	background: url(../images/wyz60_right.png) no-repeat center center;
}

.poster-item-title {
	background-color: #fff;

	color: #FFF;
	width: 100%;
	height: 60px;
	line-height: 52px;
	position: absolute;
	bottom: 0;
	text-indent: 29px
}

.lunbo_btn {
	height: 15px;
	width: 100%;
	margin: 0px auto;
	position: absolute;
	z-index: 3;
	text-align: center;
	bottom: -200px
}

.lunbo_btn li {
	width: 14px;
	height: 14px;
	display: inline-block;
	background-color: #b4b5b7;
	border-radius: 50%;
	margin: 0px 2px;
	cursor: pointer;
}

.lunbo_btn li.poster-btn-active {
	background-color: #0b518a;
}

.poster-item-title h3 {
	color: #000;
	float: left;
	font-size: 28px;
}

.poster-item-title p {
	float: left;
	color: #000;
	margin-left: -30px;
	font-size: 20px;
	margin-top: 6px;
}

.poster-item-title span {
	float: left;
	display: block;
	width: 2px;
	height: 30px;
	background-color: #000;
	margin: 18px;
}

.poster-list .poster-item-title p img {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.wyz60_bj02 {
	width: 100%;
	background-color: #372078;
	padding-bottom: 30px;
}

.wyz60_bj02 .layui-form {
	width: 1178px;
	margin: 0 auto;
}

.wyz60_bj02 .layui-form .offer_bm .tabright {
	float: left;
}

.wyz60_bj02 .layui-form .offer_bm .tabright input {
	width: 260px;
	margin-right: 18px;
	float: left;
	text-indent: 10px;
}

.wyz60_bm3 .wyz60_bm_l {
	padding-top: 34px;
	padding-right: 100px;
	padding-left: 54px;
}

.wyz60_bm3 {
	width: 100%;
	background-image: linear-gradient(180deg, #432B8D 0%, #351E76 100%);
}
