:root {
	--primary-color: #3a86ff;
	--secondary-color: #8338ec;
	--accent-color: #ff006e;
	--light-color: #f8f9fa;
	--dark-color: #212529;
	--success-color: #2ec4b6;
	--gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	--neon-glow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color);
	--box-shadow-3d: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	--box-shadow-hover: 0 14px 28px rgba(58, 134, 255, 0.25), 0 10px 10px rgba(58, 134, 255, 0.22);
  }
  
  /* 基础重置与全局样式 */
  html {
	color: var(--dark-color);
	background: var(--light-color);
	scroll-behavior: smooth;
  }
  
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, p, th, td {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-size: 16px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--dark-color);
	line-height: 1.6;
	background: var(--light-color);
	overflow-x: hidden;
  }
  
  /* 响应式容器 */
  .container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
  }
  
  /* 3D标题效果 */
  h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
  }
  
  h1::after, h2::after, h3::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gradient);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease;
  }
  
  h1:hover::after, h2:hover::after, h3:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }
  
  /* 链接样式 - 未来科技感 */
  a:link, a:visited {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
  }
  
  a:hover {
	color: var(--accent-color);
	text-shadow: var(--neon-glow);
  }
  
  a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--gradient);
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease;
  }
  
  a:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }
  
  /* 空白间距类 - 保留但优化 */
  .blank0, .blank5, .blank8, .blank10, .blank12, .blank15, .blank20, .blank25, .blank35 {
	clear: both;
	display: block;
	font-size: 1px;
	overflow: hidden;
  }
  
  .blank0 { height: 0; }
  .blank5 { height: 5px; }
  .blank8 { height: 8px; }
  .blank10 { height: 10px; }
  .blank12 { height: 12px; }
  .blank15 { height: 15px; }
  .blank20 { height: 20px; }
  .blank25 { height: 25px; }
  .blank35 { height: 35px; }
  
  /* 分页样式 - 未来科技感 */
  .megas512 {
	padding: 15px 3px;
	margin: 20px 0;
	text-align: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	clear: both;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: var(--box-shadow-3d);
  }
  
  .megas512 a {
	border: none;
	padding: 10px 15px;
	color: var(--dark-color);
	margin-right: 5px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
  }
  
  .megas512 a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	opacity: 0.2;
	transition: all 0.4s ease;
	z-index: -1;
  }
  
  .megas512 a:hover {
	color: #fff;
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-3px);
  }
  
  .megas512 a:hover::before {
	left: 0;
  }
  
  .megas512 a:active {
	transform: translateY(1px);
	box-shadow: 0 2px 4px rgba(58, 134, 255, 0.2);
  }
  
  .megas512 span.current {
	padding: 10px 15px;
	font-weight: bold;
	color: #fff;
	margin-right: 5px;
	border-radius: 8px;
	background: var(--gradient);
	box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
  }
  
  .megas512 span.disabled {
	padding: 10px 15px;
	color: #ccc;
	margin-right: 5px;
	border-radius: 8px;
	background: rgba(200, 200, 200, 0.2);
  }
  
  /* 模态框样式 - 未来科技感 */
  .jumpbox {
	font-weight: bold;
	z-index: 9999;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: fixed;
	width: 90%;
	max-width: 600px;
	display: none;
	text-align: left;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .jumpbox .top_left, .jumpbox .top_center, .jumpbox .top_right,
  .jumpbox .middle_left, .jumpbox .middle_right,
  .jumpbox .end_left, .jumpbox .end_center, .jumpbox .end_right {
	display: none;
  }
  
  .jumpbox .middle_center {
	width: 100%;
	height: auto;
	padding: 30px;
	position: relative;
	background: transparent;
  }
  
  .jumpbox .middle_center p {
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 1.6;
	color: var(--dark-color);
  }
  
  .jumpbox .middle_center .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
  }
  
  .jumpbox .middle_center .close a {
	display: block;
	width: 30px;
	height: 30px;
	background: var(--gradient);
	border-radius: 50%;
	position: relative;
	transition: all 0.3s ease;
  }
  
  .jumpbox .middle_center .close a::before,
  .jumpbox .middle_center .close a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60%;
	height: 2px;
	background: white;
	transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .jumpbox .middle_center .close a::after {
	transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .jumpbox .middle_center .close a:hover {
	transform: rotate(90deg);
	box-shadow: 0 0 10px var(--accent-color);
  }
  
  .jumpbox .middle_center .contain {
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  }
  
  .jumpbox .middle_center .contain .pic {
	margin-right: 20px;
	float: none;
	border: none;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: var(--box-shadow-3d);
	transition: all 0.3s ease;
  }
  
  .jumpbox .middle_center .contain .pic:hover {
	transform: scale(1.05) rotate(2deg);
  }
  
  .jumpbox .middle_center .contain .pic img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	display: block;
  }
  
  .jumpbox .middle_center .contain .fan {
	display: none;
  }
  
  .jumpbox .middle_center .contain .detail {
	float: none;
	font-size: 18px;
	font-weight: bold;
	flex: 1;
	min-width: 200px;
	line-height: 1.5;
	padding-top: 0;
  }
  
  .jumpbox .middle_center .contain .detail span {
	color: var(--accent-color);
	text-shadow: 0 0 5px rgba(255, 0, 110, 0.3);
  }
  
  .jumpbox .middle_center .help {
	clear: both;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 30px;
	margin: 20px 0;
	padding-bottom: 10px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .jumpbox .middle_center .help a {
	color: var(--primary-color);
	transition: all 0.3s ease;
  }
  
  .jumpbox .middle_center .help a:hover {
	color: var(--accent-color);
	text-shadow: var(--neon-glow);
  }
  
  .jumpbox .middle_center .login, .jumpbox .middle_center .reg_quk {
	float: none;
	width: 100%;
	margin: 15px 0;
	color: var(--dark-color);
	line-height: 1.6;
  }
  
  .jumpbox .middle_center .reg_quk span, .jumpbox .middle_center .login span {
	color: var(--accent-color);
  }
  
  .jumpbox .middle_center .login strong, .jumpbox .middle_center .reg_quk strong {
	color: var(--dark-color);
  }
  
  .jumpbox .middle_center .login .text, .jumpbox .middle_center .reg_quk .text {
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
	padding: 10px 15px;
	width: 100%;
	margin: 8px 0;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
  }
  
  .jumpbox .middle_center .login .text:focus, .jumpbox .middle_center .reg_quk .text:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(58, 134, 255, 0.3);
  }
  
  .jumpbox .middle_center .reg_quk .gray {
	color: #999;
	font-size: 14px;
  }
  
  .jumpbox .middle_center .login .smt, .jumpbox .middle_center .reg_quk .smt {
	background: var(--gradient);
	color: #fff;
	font-weight: bold;
	margin: 10px 0;
	width: 100%;
	height: 45px;
	border: none;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
  }
  
  .jumpbox .middle_center .login .smt:hover, .jumpbox .middle_center .reg_quk .smt:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(58, 134, 255, 0.5);
  }
  
  .jumpbox .middle_center .login .smt:active, .jumpbox .middle_center .reg_quk .smt:active {
	transform: translateY(1px);
  }
  
  .jumpbox .middle_center .reg_quk font {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-top: 10px;
	display: block;
  }
  
  /* 页面链接区块样式 */
  .PageLink {
	margin-top: 30px;
	width: 100%;
	border: none;
	margin: 20px auto;
	clear: both;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--box-shadow-3d);
	transition: all 0.3s ease;
  }
  
  .PageLink:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
  }
  
  .PageLink .head {
	height: auto;
	overflow: hidden;
	line-height: 1.5;
	padding: 20px;
	background: var(--gradient);
	color: white;
  }
  
  .PageLink .head .tag {
	float: left;
	padding-left: 30px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7.01" y2="7"></line></svg>') left center no-repeat;
	font-weight: bold;
	font-size: 18px;
  }
  
  .PageLink .head .more {
	float: right;
	padding-left: 25px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>') left center no-repeat;
  }
  
  .PageLink .head .more a {
	float: left;
	padding-right: 0;
	background: none;
	color: white;
  }
  
  .PageLink .cont {
	padding: 20px;
  }
  
  .PageLink .cont .wordlink {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: 15px;
	padding-top: 15px;
	line-height: 1.6;
  }
  
  /* 热门商品列表 */
  .titlehotlist {
	width: 100%;
	margin: 30px auto;
	clear: both;
  }
  
  .titlehotlist ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	padding: 0;
  }
  
  .titlehotlist ul li {
	float: none;
	width: 100%;
	margin-left: 0;
	height: auto;
	margin-top: 0;
	display: block;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	box-shadow: var(--box-shadow-3d);
	transition: all 0.3s ease;
	position: relative;
  }
  
  .titlehotlist ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	opacity: 0;
	z-index: 1;
	transition: all 0.3s ease;
  }
  
  .titlehotlist ul li:hover {
	transform: translateY(-5px) rotate(1deg);
	box-shadow: var(--box-shadow-hover);
  }
  
  .titlehotlist ul li:hover::before {
	opacity: 0.1;
  }
  
  .titlehotlist ul li img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: all 0.5s ease;
  }
  
  .titlehotlist ul li:hover img {
	transform: scale(1.05);
  }
  
  .titlehotlist ul li .product-info {
	padding: 15px;
	position: relative;
	z-index: 2;
  }
  
  .titlehotlist ul li .product-name {
	font-weight: bold;
	margin-bottom: 8px;
	color: var(--dark-color);
  }
  
  .titlehotlist ul li .product-price {
	color: var(--accent-color);
	font-weight: bold;
	font-size: 18px;
  }
  
  /* 3D效果和动画 */
  @keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
  }
  
  @keyframes glow {
	0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
	50% { box-shadow: 0 0 20px var(--secondary-color), 0 0 30px var(--accent-color); }
  }
  
  .float-animation {
	animation: float 5s ease-in-out infinite;
  }
  
  .glow-animation {
	animation: glow 2s ease-in-out infinite;
  }
  
  /* 响应式设计 */
  @media (max-width: 1200px) {
	.container {
	  max-width: 1140px;
	}
  }
  
  @media (max-width: 992px) {
	.container {
	  max-width: 960px;
	}
	
	.titlehotlist ul {
	  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
  }
  
  @media (max-width: 768px) {
	.container {
	  max-width: 720px;
	}
	
	.titlehotlist ul {
	  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	  gap: 15px;
	}
	
	.jumpbox {
	  width: 95%;
	  padding: 15px;
	}
	
	.jumpbox .middle_center {
	  padding: 20px;
	}
	
	.jumpbox .middle_center .contain {
	  flex-direction: column;
	  text-align: center;
	}
	
	.jumpbox .middle_center .contain .pic {
	  margin-right: 0;
	  margin-bottom: 15px;
	}
  }
  
  @media (max-width: 576px) {
	.container {
	  max-width: 100%;
	  padding: 0 10px;
	}
	
	.titlehotlist ul {
	  grid-template-columns: 1fr;
	}
	
	.PageLink .head {
	  padding: 15px;
	}
	
	.PageLink .head .tag {
	  float: none;
	  margin-bottom: 10px;
	}
	
	.PageLink .head .more {
	  float: none;
	}
	
	.megas512 a {
	  padding: 8px 12px;
	  font-size: 12px;
	}
  }
  
  /* 滚动条美化 */
  ::-webkit-scrollbar {
	width: 8px;
  }
  
  ::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
	background: var(--gradient);
	border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
  }