* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", sans-serif;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	font-size: 14px;
}

body {
	background-color: #fff;
	color: #333;
}

/* 悬浮导航栏*/
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #191919;
	z-index: 7000;
	padding: 0 20px;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo {
	flex-shrink: 0;
}

/* 导航容器 - 右对齐核心样式 */
.nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-left: 20px;
}

/* 导航容器 - 登陆用户 */
.nav-right .login-user{
	background-color: #fff;
	color: #000;
	border: none;
	padding: 0 12px;
	border-radius: 4px 0 0 4px;
	font-size: 12px;
	height: 32px;
	line-height: 32px;
	transition: background-color 0.3s;

}


/* 移动端导航呼出按钮 */
.mobile-nav-btn {
	display: none;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 6999;
}


.mobile-nav-btn span {
	display: block;
	width: 28px;
	height: 3px;
	background-color: #fff;
	margin: 6px auto;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* 导航展开时按钮样式变化 */
.mobile-nav-btn.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mobile-nav-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-nav-btn.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* PC端导航菜单 - 右对齐 */
.nav-menu {
	display: flex;
	list-style: none;
	margin-right: 20px; /* 与登录按钮保持间距 */
}

.nav-menu li {
	margin-left: 30px;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: #ff6600;
}

/* 移动端导航菜单样式 */
.mobile-nav-menu {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background-color: #191919;
	padding: 20px;
	display: none;
	flex-direction: column;
	border-top: 1px solid #333;
	z-index: 6998;
}

.mobile-nav-menu.active {
	display: flex;
}

.mobile-nav-menu li {
	list-style: none;
	margin: 10px 0;
	padding: 5px 0;
	border-bottom: 1px solid #333;
}

.mobile-nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	display: block;
}

.mobile-nav-menu a:hover {
	color: #ff6600;
}

/* 登录按钮通用样式 */
.login-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	transition: background-color 0.3s;
	margin: 0;
}

.login-btn:hover {
	background-color: #e55a00;
}

/* 退出按钮通用样式 */
.out-btn {
	background-color: #cb1a02;
	color: #fff;
	border: none;
	padding: 6px 12px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	font-size: 15px;
	transition: background-color 0.3s;
	margin: 0;
}

.out-btn:hover {
	background-color: #e71f05;
}

/* 移动端登录按钮样式 */
.mobile-login-btn {
	display: none;
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
	margin-top: 15px;
	width: 100%;
}

/* 移动端登录用户盒子 */
.mobile-user {
	display: flex;
	width: 100%;
	display: none;
}

/* 移动端登陆用户样式 */
.mobile-login-user {
	background-color: #fff;
	color: #000;
	border: none;
	padding: 10px 20px;
	border-radius: 4px 0 0 4px;
	font-size: 18px;
	margin-top: 15px;
	width: calc(100% - 140px); 
}

/* 移动端退出按钮样式 */
.mobile-out-btn {
	background-color: #cb1a02;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	font-size: 18px;
	margin-top: 15px;
	width: 140px;
}


/* 顶部介绍 */
.intro {
	margin-top: 80px;
	background-image: url("../images/bg.jpg");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 100%;
	padding: 60px 20px;

}

.intro-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.intro-text {
	flex: 1;
	min-width: 300px;
	padding-right: 40px;
}

.intro-text h1 {
	font-size: 32px;
	color: #191919;
	margin-bottom: 20px;
}

.intro-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 30px;
}

.download-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
}

.download-btn:hover {
	background-color: #e55a00;
}

.intro-img {
	flex: 1;
	text-align: right;
}

.intro-img img {
	border-radius: 5px;
}

/* 广告 */
.banner {
	max-width: 1200px;
	margin: 30px auto;
	margin-bottom: 0px;
	overflow: hidden;
	position: relative;
	background-color: #fafafa;
}

.banner a,
.banner a:link,   /* 未访问链接 */
.banner a:visited,/* 已访问链接 */
.banner a:hover,  /* 鼠标悬浮 */
.banner a:active  /* 点击状态 */
{
	text-decoration: none !important; /* !important 确保覆盖默认样式 */
	color: inherit; /* 取消默认蓝色，继承父元素颜色 */
}

.banner_img {
	display: block;
	max-width: 100%;
	display: inline-block;
	vertical-align: middle;
	margin-top: 1px;
	height: auto;
	position: relative;
}

/* 移动端广告文字样式（默认隐藏） */
.banner_text {
	color: #8d3800;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	padding: 5px 20px;
	text-align: center;

}

.banner_text:hover {
	color: #fff; /* hover时文字变色 */
	background-color: #ff6600; /* 轻微背景变化 */
	transition: all 0.3s ease; /* 过渡动画 */
}

/* 服务栏目容器 */
.service-section {
	padding: 60px 0 20px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.service-section h2 {
	font-size: 28px;
	color: #191919;
	margin-bottom: 30px;
	border-left: 4px solid #ff6600;
	padding-left: 15px;
	margin-left: 0;
}

/* 服务卡片容器 */
.service-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	width: 100%;
}
/* 服务卡片基础样式 */
.service-card {
	flex: 1;
	min-width: 280px;
	max-width: 384px;
	background: white;
	border-radius: 8px;
	padding: 30px 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* 卡片图标容器 */
.card-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 30px;
	background-color: #e8f4fd;
	color: #3498db;
}
/* 卡片标题 */
.service-card h3 {
	font-size: 20px;
	color: #2c3e50;
	margin: 0 0 15px 0;
	font-weight: 600;
}
/* 卡片描述 */
.service-card p {
	font-size: 14px;
	color: #7f8c8d;
	line-height: 1.7;
	margin: 0;
}
/* 卡片悬停装饰圆 */
.hover-circle {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	opacity: 0.05;
	border-radius: 50%;
	transition: all 0.3s ease;
	background-color: #3498db;
}
/* 卡片悬停效果 */
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.service-card:hover .hover-circle {
	transform: scale(3);
}

/* 本站软件 */
.software_i {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0;
	width: 100%;
}

.software_i h2 {
	font-size: 28px;
	color: #191919;
	margin-bottom: 30px;
	border-left: 4px solid #ff6600;
	padding-left: 15px;
	margin-left: 0;
}

.software-list_i {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	width: 100%;
}

.software-item_i {
	border: 1px solid #eee;
	padding: 20px;
}

.software-item_i h3 {
	font-size: 20px;
	color: #191919;
	margin-bottom: 10px;
}

.software-item_i p {
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
}

/* 详情按钮通用样式 */
.detail-btn {
	background-color: #ff6600;
	text-decoration: none;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.detail-btn:hover {
	background-color: #e55a00;
}


/* 底部 */
/* 底部容器样式 */
footer {
	background-color: #191919;
	color: #fff;
	padding: 40px 20px 20px;
	margin-top: 50px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

/* LOGO区域 */
.footer-logo {
	flex: 1;
	min-width: 250px;
}

.footer-logo img {
	margin-bottom: 15px;
}

.footer-logo p {
	color: #999;
	font-size: 14px;
	line-height: 1.6;
}

.footer-logo a {
	color: #999;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.3s;
	display: inline-block;
}

.footer-logo a:hover {
	color: #ff6600;
}

/* 联系方式区域 */
.footer-contact {
	flex: 1;
	min-width: 250px;
}

/* 统一标题样式（仅联系方式和链接区域） */
.footer-contact h3,
.footer-links h3 {
	font-size: 16px;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
}

/* 联系方式和链接区域添加下划线 */
.footer-contact h3::after,
.footer-links h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #ff6600;
}

.contact-list {
	list-style: none;
}

.contact-list li {
	margin-bottom: 12px;
	color: #999;
	font-size: 14px;
	display: flex;
	align-items: center;
}

/* 链接区域 - 列布局 */
.footer-links {
	flex: 1;
	min-width: 250px;
}

.links-list {
	list-style: none;
	columns: 2;
	column-gap: 20px;
}

.links-list li {
	margin-bottom: 6px;
	break-inside: avoid;
}

.links-list a {
	color: #999;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
	display: inline-block;
}

.links-list a:hover {
	color: #ff6600;
}

/* 二维码区域 - PC端右对齐，无文字 */
.footer-qrcode {
	flex: 1;
	min-width: 200px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.qrcode-img {
	max-width: 160px;
	height: auto;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.qrcode-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 传奇引擎页面 */
.category {
	max-width: 1200px;
	margin: 40px auto;
	padding: 80px 20px 0 20px;
}

.category h2 {
	font-size: 28px;
	color: #191919;
	margin-bottom: 30px;
	border-left: 4px solid #ff6600;
	padding-left: 15px;
}

.category .titdesc{
	color: #666666;
	padding-top: 3px;
	font-weight: normal;
}

.category .titdesc span{
	color: #ff6600;
	padding-left:5px;
}

.engine-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
}

.engine-item {
	border: 1px solid #eee;
	padding: 25px;
}

.engine-item .namebox {
	width: 100%;
	height: 65px;
	display: flex;
}

.engine-item .namebox .m2icon{
	width: 55px;
}

.engine-item .namebox .m2text{
	padding-left: 10px;
}
.engine-item .namebox .m2text h3 {
	font-size: 20px;
	color: #191919;
	padding-bottom: 4px;
}

.engine-item .namebox .m2text span {
	color: #666;
	font-size: 14px;
	display: block;
}

.engine-item p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.official-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.official-btn:hover {
	background-color: #e55a00;
}

/* 传奇周边软件页面 */
.category-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.category-tab {
	background-color: #191919;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
}

.category-tab.active {
	background-color: #ff6600;
	text-decoration: none;
}

.category-tab:hover {
	background-color: #e55a00;
	text-decoration: none;
}

.software-list {
	display: none;
}

.software-list.active {
	display: block;
}

.software-item {
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	padding: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.software-img {
	flex: 0 0 150px;
	margin-right: 20px;
	text-align: center;
}

.software-img img {
	width: 150px;
	height: 110px;
}

.software-info {
	flex: 1;
	min-width: 250px;
}

.software-info h3 {
	font-size: 18px;
	color: #191919;
	margin-bottom: 10px;
}

.suggest{
	font-size: 12px;
	color: #fff;
	background-color: red;
	margin-left: 5px;
	border-radius: 4px;
	padding: 1px 4px;
}

.software-info p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

/* 页码样式 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	gap: 8px;
}

.pagination-btn {
	background-color: #191919;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 16px;
	text-decoration: none;
}

.prohibit-btn {
	background-color: #999999;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 16px;
	text-decoration: none;
}

.pagination-btn:hover {
	background-color: #333;
}

.pagination-btn.active {
	background-color: #ff6600;
}

.pagination-btn:disabled {
	background-color: #999;
	cursor: not-allowed;
}


/* 传奇相关技术文章页面 */
.article-list-container {
	width: 100%;
}

.article-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	gap: 25px;
	width: 100%;
}

.article-page {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	gap: 25px;
	width: 100%;
	display: none;
}

.article-page.active {
	display: grid !important;
}

.article-item {
	border: 1px solid #eee;
	padding: 25px;
	transition: box-shadow 0.3s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.article-item:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.article-item .date {
	color: #999;
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}

.article-item h3 {
	font-size: 18px;
	color: #191919;
	margin-bottom: 15px;
	line-height: 1.4;
}

.article-item p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.read-btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	align-self: flex-start;
	text-decoration: none;
}

.read-btn:hover {
	background-color: #e55a00;
}

/* 文章阅读界面 */
.article-container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 20px;
}

.article-header {
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.article-title {
	font-size: 28px;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.3;
}

.article-meta {
	color: #999;
	font-size: 14px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.article-meta span {
	margin-right: 20px;
}

.article-content {
	background-color: #fff;
	border: 1px solid #f1f1f1;
	padding: 30px;
}

.article-content img {
	max-width: 100%;
}

/* 相关推荐 */
.related-articles {
	margin-top: 30px;
	background-color: #fff;
	border: 1px solid #f1f1f1;
	padding: 20px;
}

.related-articles h2 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #2c3e50;
	border-left: 4px solid #ff6600;
	padding-left: 10px;
}

.related-list {
	list-style: none;
}

.related-list li {
	padding: 10px 0;
	border-bottom: 1px dashed #eee;
}

.add-date{
	padding: 0 15px;
	color: #999;
	font-size: 12px;
}

.related-list li a {
	color: #3498db;
	text-decoration: none;
}

.related-list li a:hover {
	color: #2980b9;
	text-decoration: underline;
}

/* 软件下载页面 */
.software-container-down {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.software-info-down {
	flex: 1;
	min-width: 300px;
	background-color: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.software-icon-down {
	width: 98px;
	height: 98px;
	border: 1px solid #666666;
	padding: 8px;
	border-radius: 12px;
	margin: 0 auto 20px;
	display: flex;
}

.software-name-down {
	font-size: 24px;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 10px;
}

.software-version-down {
	text-align: center;
	color: #999;
	font-size: 14px;
	margin-bottom: 25px;
}

.download-btn-down {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: #e74c3c;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	font-size: 18px;
	margin-bottom: 20px;
	transition: background-color 0.3s;
}

.download-btn-down:hover {
	background-color: #c0392b;
}

.download-sub-btn-down {
	display: block;
	width: 100%;
	padding: 12px;
	background-color: #fff;
	color: #3498db;
	border: 1px solid #3498db;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	margin-bottom: 10px;
	font-size: 14px;
}

.download-sub-btn-down:hover {
	background-color: #f8fbff;
}

.software-meta-down {
	margin-top: 30px;
}

.software-meta-down h3 {
	font-size: 16px;
	color: #2c3e50;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.meta-list-down {
	list-style: none;
}

.meta-list-down li {
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
	display: flex;
	justify-content: space-between;
}

.meta-list-down li span:first-child {
	color: #666;
}

.software-detail-down {
	flex: 2;
	min-width: 600px;
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-title-down {
	font-size: 18px;
	color: #2c3e50;
	margin-bottom: 20px;
	border-left: 4px solid #ff6600;
	padding-left: 10px;
}

.detail-content-down img {
	max-width: 100%;
}

/* 会员中心 */
.member-center {
	max-width: 1200px;
	margin: 40px auto;
	padding: 80px 20px 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.member-sidebar {
	flex: 1;
	min-width: 260px;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	padding: 25px;
}

.member-info {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.member-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #79afff;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: #fff;
}

.member-name {
	font-size: 20px;
	color: #191919;
	margin-bottom: 8px;
}

.member-date {
	color: #666666;
	font-size: 14px;
}

.member-nav {
	list-style: none;
}

.member-nav li {
	margin-bottom: 8px;
}

.member-nav a {
	display: block;
	padding: 12px 15px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	border-left: 3px solid transparent;
	transition: all 0.3s;
}

.member-nav a:hover, .member-nav a.active {
	background-color: #fff;
	color: #ff6600;
	border-left-color: #ff6600;
}

.member-nav i {
	margin-right: 10px;
	font-style: normal;
}

.member-content {
	flex: 3;
	min-width: 700px;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	padding: 25px;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.member-content h2 {
	font-size: 24px;
	color: #191919;
	margin-bottom: 25px;
	border-left: 4px solid #ff6600;
	padding-left: 15px;
}

/* 通用表单样式 */
.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #191919;
}

.form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 16px;
	background-color: #fff;
	transition: border-color 0.3s;
}

.form-ban {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 16px;
}

.form-input:focus {
	border-color: #ff6600;
}

/* 通用按钮 */
.btn {
	background-color: #ff6600;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}

.btn:hover {
	background-color: #e55a00;
}

.btn-gopay{
	color: #ff6600;
	text-decoration: none;
	transition: background-color 0.3s;
}

.btn-gopay:hover {
	color: #e55a00;
}

.btn-outline {
	background-color: transparent;
	color: #ff6600;
	border: 1px solid #ff6600;
}

.btn-outline:hover {
	background-color: #fff5ee;
}

/* 充值金币模块 */
.recharge-options {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 15px;
	margin: 20px 0 30px;
}

.recharge-item {
	padding: 20px 15px;
	border: 1px solid #eee;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	background-color: #fff;
}

.recharge-item:hover, .recharge-item.active {
	border-color: #ff6600;
	background-color: #fff5ee;
}

.recharge-amount {
	font-size: 18px;
	font-weight: bold;
	color: #191919;
	margin-bottom: 5px;
}

.recharge-gold {
	font-size: 14px;
	color: #666;
}

/* 表格样式 */
.data-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	background-color: #fff;
}

.data-table th, .data-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.data-table th {
	background-color: #f9f9f9;
	color: #191919;
	font-weight: 500;
}

.data-table tr:hover {
	background-color: #fff5ee;
}

.flow-type {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
}

.flow-in {
	background-color: #f0fff0;
	color: #2e8b57;
}

.flow-out {
	background-color: #fff0f0;
	color: #dc143c;
}

/* 金币余额模块 */
.balance-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 4px;
	margin-bottom: 30px;
	border: 1px solid #eee;
}

.balance-num {
	font-size: 48px;
	font-weight: bold;
	color: #ff6600;
	margin: 10px 0;
}

.balance-desc {
	color: #666;
	line-height: 1.6;
	margin-top: 20px;
}

/* 软件授权模块 */
.auth-tips {
	color: #666;
	margin-bottom: 20px;
	padding: 10px;
	background-color: #fff;
	border-left: 3px solid #ff6600;
}

/* 详情页导航栏*/
.show-breadcrumb {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	margin-top: 80px;
	font-size: 14px;
	color: #666;
}
.show-breadcrumb-container {
	background-color: #f8f9fa;
	border-bottom: 1px solid #eee;
}
.show-breadcrumb a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}
.show-breadcrumb a:hover {
	color: #ff6600;
}
.show-breadcrumb span.show-separator {
	margin: 0 8px;
	color: #999;
}
.show-breadcrumb .show-current {
	color: #999;
	cursor: default;
}
.show-breadcrumb .show-right {
    float: right;
    margin-right: 0;
	color: #ff6600;
	text-decoration: none;
	transition: color 0.3s;
	font-weight: bold;
}
.show-breadcrumb .show-right:hover {
	color: #e55a00;
}

.ali{
	pointer-events: none;
	position: absolute;
	opacity: 0;
}

.ali + label:before{
	content: '';
	background: url(/images/alipay0.png) no-repeat;
	background-size: contain;
	width: 120px;
	height: 40px;
	display: inline-block;
	position: relative;
}
.ali:checked + label:before{
	background: url(/images/alipay1.png) no-repeat;
	background-size: contain;
	width: 120px;
	height: 40px;
}

/* 响应式适配 */
@media (max-width: 768px) {
	/* 导航适配 */
	.nav-menu {
		display: none;
	}

	.login-btn {
		display: none;
	}

	.login-user {
		display: none;
	}
	
	.out-btn {
		display: none;
	}

	.mobile-user {
		display: block;
		display: flex;
	}

	.mobile-nav-btn {
		display: block;
	}

	.mobile-login-btn {
		display: block;
	}
	/* 顶部介绍适配 */
	.intro-container {
		display: block;
	}
	.intro-text {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.intro-text h1 {
		font-size: 28px;
	}

	.intro-img {
		text-align: center;
	}
	.intro-img img{
		width: 100%;
		height: auto;
	}
	/* 本站软件适配 */
	.software_i {
		padding: 30px 20px;
	}
	.service-section{
		padding-left: 20px;
		padding-right: 20px;
	}
	.software-list_i {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	/* 首页广告适配 */
	.banner{
		margin-top: 0px;
	}
	.banner_img {
		display: none; /* 隐藏图片 */
	}
	.banner_text {
		display: flex; /* 显示文字 */
		font-size: 18px; /* 移动端文字大小 */
	}
	
	/* 分类适配 */
	.category-tabs {
		display: block;
	}
	.category-tab {
		display: block;
		width: 100%;
		margin-bottom:5px;
		text-align: center;
	}

	/* 传奇软件列表适配 */
	.software-item {
		flex-direction: column;
	}

	.software-img {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.software-img img {
		width: auto;
		max-width: 100%;
		height: auto;
	}

	/* 分页适配 */
	.pagination {
		flex-wrap: wrap;
		gap: 5px;
	}

	.pagination-btn {
		padding: 6px 12px;
		font-size: 14px;
	}

	.prohibit-btn {
		padding: 6px 12px;
		font-size: 14px;
	}

	/* 文章列表适配 */
	.article-list,
	.article-page {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}

	.article-item {
		padding: 20px;
	}

	.article-title {
		font-size: 22px;
	}

	.article-header, .article-content {
		padding: 20px;
	}

	/* 软件下载适配 */
	.software-info-down, .software-detail-down {
		padding: 20px;
	}

	.software-name-down {
		font-size: 20px;
	}

	/* 会员中心适配 */
	.member-content {
		padding: 15px;
	}

	.balance-num {
		font-size: 36px;
	}

	/* 表格适配 */
	.data-table th, .data-table td {
		padding: 10px 8px;
		font-size: 14px;
	}
	.show-breadcrumb {
		padding: 12px 15px;
		font-size: 13px;
	}
	/* 卡片容器适配 */
	.service-cards {
		gap: 20px; /* 移动端减小间距 */
	}
	/* 强制移动端单行显示 */
	.service-card {
		flex: 0 0 calc(100% - 10px) !important; /* 强制宽度，减去左右边距 */
		max-width: calc(100% - 10px) !important;
		min-width: 280px;
		margin: 0 10px; /* 左右留边距，避免贴边 */
	}
	/* 底部适配移动设备 */
	.footer-container {
		flex-direction: column;
		gap: 40px;
		align-items: center;
		text-align: center;
	}
	.footer-logo,
	.footer-contact,
	.footer-links,
	.footer-qrcode {
		min-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	/* 移动端链接区域改为1列 */
	.links-list {
		columns: 1;
		width: 100%;
		max-width: 200px;
		text-align: center;
	}
	/* 移动端标题下划线居中 */
	.footer-contact h3::after,
	.footer-links h3::after {
		left: 50%;
		transform: translateX(-50%);
	}
	/* 移动端联系方式列表项居中 */
	.contact-list li {
		justify-content: center;
	}
	/* 移动端二维码区域居中 */
	.footer-qrcode {
		justify-content: center;
	}

	/* 表格自适应 */
	.data-table thead {
		display: none;
	}
	.data-table tr {
		display: block;
		margin-bottom: 16px;
		border: 1px solid #ebeef5;
	}
	.data-table td {
		display: block;
		padding: 12px 16px;
		text-align: right;
		border-bottom: 1px solid #f0f2f5;
	}
	.data-table td:last-child {
		border-bottom: none;
	}
	.data-table td::before {
		content: attr(data-label);
		float: left;
		font-weight: 600;
		color: #333;
	}
 	/* 自适应表格类结束 */       

}

@media (min-width: 769px) {
	/* 大屏PC端强制无内边距 */
	.software, .update {
		padding: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.software h2, .update h2 {
		margin-left: 0 !important;
	}
}

@media (max-width: 992px) {
	/* 软件下载页面适配 */
	.software-container-down {
		flex-direction: column;
	}

	.software-info-down, .software-detail-down {
		min-width: 100%;
	}

	/* 会员中心适配 */
	.member-center {
		flex-direction: column;
	}

	.member-sidebar, .member-content {
		min-width: 100%;
	}
}