/* 全局样式重置 */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: "Microsoft Yahei", sans-serif;*/
}

body {
	background-color: #f5f5f5;
	color: #333;
}


/* 顶部导航栏 - 保持不变 */

.header {
	background-color: #1a202c;
	color: white;
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.header h1 {
	font-size: 28px;
	margin-bottom: 10px;
	color: #fff;
}

.header p {
	font-size: 14px;
	color: #ccc;
	margin-bottom: 15px;
}

.header-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.header-btn {
	padding: 8px 12px;
	border-radius: 4px;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.aliyun-btn {
	background: linear-gradient(to right, #6a5af9, #d66efd);
}

.same-btn {
	background-color: #4a5568;
}

.same-btn:hover {
	background: linear-gradient(to right, #6a5af9, #d66efd);
}


/* 全局容器：跑马灯及以下所有模块统一宽度1400px 居中自适应 */

.global-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}


/* 跑马灯公告栏 */

.notice-container {
	background: linear-gradient(to right, #0b92ce, #229cd9);
	color: white;
	padding: 12px 16px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: 20px 0 30px;
	overflow: hidden;
	position: relative;
}

.notice-content {
	display: flex;
	align-items: center;
}

.notice-tag {
	background: white;
	color: #ef4444;
	padding: 2px 8px;
	border-radius: 999px;
	font-weight: bold;
	font-size: 12px;
	margin-right: 12px;
	white-space: nowrap;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 4px;
}

.marquee-wrapper {
	overflow: hidden;
	flex-grow: 1;
}

.marquee-text {
	white-space: nowrap;
	font-size: 14px;
	animation: marquee 25s linear infinite;
	will-change: transform;
}

@keyframes marquee {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.marquee-text:hover {
	animation-play-state: paused;
}

@media (min-width: 640px) {
	.notice-container {
		padding: 16px 20px;
	}
	.notice-tag {
		font-size: 14px;
		padding: 4px 12px;
		margin-right: 16px;
	}
	.marquee-text {
		font-size: 16px;
	}
}


/* 温馨提示 - 基准间距模板 */

.tips-box {
	background-color: white;
	margin: 0 auto 30px;
	padding: 15px;
	border-left: 4px solid #4299e1;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tips-box h3 {
	font-size: 16px;
	margin-bottom: 8px;
	color: #2d3748;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tips-box p {
	font-size: 14px;
	color: #4a5568;
	line-height: 1.6;
	padding-left: 24px;
	word-break: break-all;
}

p {
	margin: 5px;
}


/* 通用标题样式 - 修正间距，统一留白 */

.section-title {
	text-align: center;
	font-size: 24px;
	color: #9f7aea;
	margin: 60px 0 30px;
	font-weight: 600;
}


/* 平台特色 - 铺满容器宽度，左右对齐tips */

.features {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	margin: 0 auto 30px;
}

.feature-card {
	background-color: white;
	flex: 1;
	min-width: 300px;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 20px;
}

.icon-server {
	background-color: #e8f4f8;
	color: #4299e1;
}

.icon-security {
	background-color: #f0f8fb;
	color: #38b2ac;
}

.icon-download {
	background-color: #fdf2f8;
	color: #9f7aea;
}

.feature-card h4 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #2d3748;
}

.feature-card p {
	font-size: 14px;
	color: #718096;
	line-height: 1.5;
	word-break: break-all;
}


/* 合作模式 - 铺满容器宽度，统一底部间距 */

.cooperation {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	margin: 0 auto 30px;
}

.coop-card {
	background-color: white;
	flex: 1;
	min-width: 400px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.coop-card-header {
	padding: 15px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mode1-header {
	background: linear-gradient(to right, #6a5af9, #805ad5);
}

.mode2-header {
	background: linear-gradient(to right, #e53e3e, #d53f8c);
}

.coop-card-subtitle {
	padding: 18px 15px;
	background-color: #f7f3ff;
	color: #4a5568;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	word-break: break-all;
	margin: 15px;
	border-radius: 12px;
}

.coop-card-content {
	padding: 20px 15px;
}

.coop-card-content h5 {
	font-size: 16px;
	margin-bottom: 15px;
	color: #2d3748;
	padding: 0 10px;
}

.coop-card-content ul {
	list-style: none;
	margin-bottom: 20px;
}

.coop-card-content li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #4a5568;
	padding-left: 20px;
	position: relative;
	word-break: break-all;
}

.coop-card-content li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #48bb78;
	position: absolute;
	left: 0;
	font-size: 12px;
	top: 2px;
}


/* 修复移动端按钮变形问题 */

.get-contact-btn {
	width: 60%;
	padding: 12px 8px;
	background-color: white;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	color: #4a5568;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	white-space: normal;
	margin: 20px auto;
}

.get-contact-btn:hover {
	background-color: #f7f3ff;
}


/* 赞助支持 - 核心修改区域 */

.sponsor {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	/* 固定间隔3rem */
	flex-wrap: nowrap;
	/* 桌面强制不换行，保持一排 */
	margin: 0 auto 40px;
}


/* 左侧赞助模块固定40%宽度 */

.sponsor-card:first-child {
	width: 40%;
}


/* 右侧佣金模块固定60%宽度 */

.sponsor-card:last-child {
	width: 60%;
}

.sponsor-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 20px;
}

.sponsor-card h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #2d3748;
}

.sponsor-method {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.sponsor-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.icon-sponsor {
	background-color: #e8f4f8;
	color: #4299e1;
}

.icon-sign {
	background-color: #f5fafe;
	color: #718096;
}

.icon-promote {
	background-color: #fef7fb;
	color: #ed8936;
}

.sponsor-method h5 {
	font-size: 15px;
	color: #4a5568;
	margin-bottom: 8px;
}

.sponsor-method p {
	font-size: 13px;
	color: #718096;
	padding-left: 0;
	word-break: break-all;
}

.commission-card {
	background-color: #fef7fb;
}


/* 佣金模块 改为图三样式 */

.commission-desc {
	background-color: #fff;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 15px;
}

.commission-desc p {
	font-size: 14px;
	color: #4a5568;
	margin-bottom: 10px;
	padding: 12px 14px 12px 24px;
	position: relative;
	background: #f9f4f8;
	border-radius: 6px;
	word-break: break-all;
}

.commission-desc p:last-child {
	margin-bottom: 0;
	background: #f4f6ff;
}

.commission-desc p::before {
	content: "";
	width: 4px;
	height: 100%;
	background: #e53e3e;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 0 4px 4px 0;
}

.commission-desc p:last-child::before {
	background: #3182ce;
}

.commission-advantage {
	/* 新增：和截图一致的浅粉渐变圆角容器 */
	background: linear-gradient(90deg, #f3e8f8, #ffe9f3);
	border-radius: 12px;
	padding: 20px 24px;
	margin-top: 12px;
}

.commission-advantage h5 {
	font-size: 18px;
	color: #2d3748;
	margin-bottom: 15px;
	font-weight: 600;
}

.commission-advantage ul,
ol,
li {
	margin: 0;
	padding-left: 0;
}

.commission-advantage ul {
	list-style: none;
}

.commission-advantage li {
	font-size: 16px;
	color: #222;
	margin-bottom: 12px;
	padding-left: 22px;
	position: relative;
	word-break: break-all;
}

.commission-advantage li:last-child {
	margin-bottom: 0;
}

.commission-advantage li::before {
	content: "\f005";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #ffc107;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
}

.coop-card-content ul,
ol,
dl {
	padding-left: 10px;
}


/* 弹窗遮罩 */

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 999;
}


/* 弹窗内容 */

.modal-content {
	background-color: white;
	width: 100%;
	max-width: 400px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	border: none;
	background: transparent;
	color: #718096;
	cursor: pointer;
	font-size: 16px;
}

.modal-header {
	background: linear-gradient(to right, #fff, #fff);
	color: #0056FF;
	padding: 16px 20px;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}


/*.modal-body {*/


/*	padding: 20px;*/


/*}*/

.contact-item {
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
}

.contact-qq {
	background-color: #f0f8fb;
}

.contact-email {
	background-color: #f0fdf4;
}

.contact-note {
	background-color: #fffbeb;
}

.contact-item h5 {
	font-size: 14px;
	color: #4a5568;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.contact-item p {
	font-size: 16px;
	color: #3182ce;
	font-weight: 600;
	padding-left: 22px;
	word-break: break-all;
}

.contact-email p {
	color: #38a169;
}

.contact-note p {
	font-size: 14px;
	color: #dd6b20;
	font-weight: normal;
}

.modal-footer {
	padding: 0 0 20px;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.modal-btn {
	padding: 8px 20px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.close-btn {
	background-color: #e2e8f0;
	color: #4a5568;
}

.consult-btn {
	background: linear-gradient(to right, #6a5af9, #d66efd);
	color: white;
}


/* 移动端适配媒体查询 */

@media screen and (max-width: 768px) {
	.header {
		padding: 30px 0;
	}
	.header h1 {
		font-size: 22px;
	}
	.section-title {
		font-size: 20px;
		margin: 40px 0 15px;
	}
	.features,
	.cooperation {
		gap: 1.5rem;
	}
	.feature-card,
	.coop-card {
		min-width: 100%;
	}
	/* 手机端赞助模块改为换行，各占100% */
	.sponsor {
		flex-wrap: wrap;
		gap: 1.5rem;
	}
	.sponsor-card:first-child,
	.sponsor-card:last-child {
		width: 100%;
	}
	.coop-card-header {
		font-size: 16px;
	}
	.commission-desc p {
		font-size: 13px;
		padding: 10px 10px 10px 20px;
	}
}

.font-bold {
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.75rem;
	color: #0056FF;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.ys {
	color: #fff;
}

.site-content {
	padding: 0px;
}

.term-bar {
	display: none;
}


/*.lang__4 {*/


/*	display: none;*/


/*}*/