: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);
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);
  }
  
  /* 基础重置与全局样式 */
  html {
	color: var(--dark-color);
	background: var(--light-color);
	scroll-behavior: smooth;
  }
  
  #warp, #wrap {
	margin: 0 auto;
	width: 100%;
	position: relative;
  }
  
  #Head {
	background: #FFF;
	z-index: 9999;
	position: relative;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-bottom: 1px solid var(--glass-border);
  }
  
  #fbxcontainer, .hezuoBox {
	width: 100%;
	margin: 0 auto;
	position: relative;
  }
  
  #body {
	font: 100 16px 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	position: relative;
	width: 100%;
	margin: 0 auto;
	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-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;
  }
  
  /* 顶部导航区域 */
  #headerTopArea {
	height: 40px;
	background: var(--glass-bg);
	border-bottom: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	padding: 0 20px;
  }
  
  #headerTopArea .headerTop {
	width: 100% !important;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
  }
  
  #headerTopArea .headerTopLeft {
	float: left;
	align-items: center;
  }
  
  #headerTopArea .loginArea {
	float: left;
  }
  
  #headerTopArea .loginArea span {
	color: var(--accent-color);
  }
  
  #headerTopArea .loginArea a:link,
  #headerTopArea .loginArea a:visited,
  #headerTopArea .loginArea a:hover {
	color: var(--dark-color);
	margin: 0 10px;
  }
  
  #headerTopArea #myVancl {
	width: auto !important;
	height: 30px;
	line-height: 30px;
	margin: 0 10px;
	padding: 0 10px;
	position: relative;
	cursor: pointer;
	border-radius: 15px;
	transition: all 0.3s ease;
  }
  
  #headerTopArea #myVancl:hover {
	background: var(--glass-bg);
  }
  
  #headerTopArea .headerTopRight {
	float: right;
	display: flex;
	align-items: center;
  }
  
  #headerTopArea .headerTopRight a {
	margin: 0 10px;
  }
  
  #headerTopArea #shoppingCarNone {
	width: auto;
	height: 30px;
	line-height: 30px;
	margin: 0 10px;
	padding: 0 15px;
	position: relative;
	z-index: 9999;
	border-radius: 15px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
  }
  
  #headerTopArea #shoppingCarNone:hover {
	background: var(--glass-bg);
  }
  
  #headerTopArea #shoppingCarNone p {
	padding: 0;
	background: none;
	display: flex;
	align-items: center;
  }
  
  #headerTopArea #shoppingCarNone p span {
	margin: 0 5px;
	color: var(--accent-color);
	font-weight: bold;
  }
  
  #headerTopArea .hotLine {
	color: var(--accent-color);
	display: flex;
	align-items: center;
	font-family: Tahoma;
  }
  
  #headerTopArea .hotLine strong {
	margin: 0 4px;
	font-weight: bold;
  }
  
  #headerTopArea .hotLine span {
	margin-left: 15px;
  }
  
  #headerTopArea .hotLine span a:link,
  .hotLine span a:visited {
	color: var(--dark-color);
  }
  
  #headerTopArea .hotLine span a:hover {
	color: var(--accent-color);
  }
  
  /* Logo区域 */
  #logoArea {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
  }
  
  #logoArea .logoTag {
	background:url(../logo.png) no-repeat ;
	width: 200px;
	height: 75px;
	margin-left: 20px;
	float: left;
	display: flex;
	align-items: center;
	overflow: hidden;
  }
  
  #logoArea .logoTag a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-weight: bold;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-align: center;
	line-height: 60px;
  }
  #logoArea .logort img{float: right;display:inline; margin-right: 20px; }
  #logoArea .searchBarArea {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  #logoArea .search {
	width: 100%;
	height: 50px;
	margin: 10px 0;
	display: flex;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--box-shadow-3d);
  }
  
  #logoArea .searchText {
	width: 70%;
	height: 50px;
	line-height: 50px;
	border: none;
	padding: 0 20px;
	font-size: 16px;
	background: var(--glass-bg);
	
	-webkit-
	color: var(--dark-color);
  }
  
  #logoArea .searchBtn {
	width: 30%;
	height: 50px;
	background: var(--gradient);
	border: none;
	cursor: pointer;
	color: white;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s ease;
  }
  
  #logoArea .searchBtn:hover {
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-2px);
  }
  
  #logoArea .searchWords {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  }
  
  #logoArea .searchWords a {
	margin: 0 10px;
	color: var(--dark-color);
  }
  
  #logoArea .searchWords a:hover {
	color: var(--accent-color);
  }
  
  #logoArea .subServiceArea {
	width: auto;
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
  }
  
  #logoArea .subService {
	display: flex;
	list-style: none;
  }
  
  #logoArea .subService li {
	margin: 0 10px;
  }
  
  #logoArea .subService li a {
	color: var(--dark-color);
  }
  
  #logoArea .subService li a:hover {
	color: var(--accent-color);
  }
  
  /* 主导航 */
  #mainNav {
	width: 100%;
	height: auto;
	clear: both;
	background: var(--gradient);
	z-index: 100001;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--box-shadow-3d);
	margin: 20px 0;
  }
  
  #tacb {
	font-size: 16px;
	height: 50px;
	margin: 0 auto;
	z-index: 1000;
	width: 100%;
	position: relative;
  }
  
  #tacb ul {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	list-style: none;
  }
  
  #tacb ul a {
	text-decoration: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: white;
	padding: 0 20px;
	line-height: 50px;
	transition: all 0.3s ease;
	position: relative;
  }
  
  #tacb ul a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: white;
	transition: all 0.3s ease;
	transform: translateX(-50%);
  }
  
  #tacb ul a:hover::after {
	width: 80%;
  }
  
  .nowtab {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 16px;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 12px 12px 0 0;
  }
  
  /* 搜索区域 */
  #searchbar {
	background: var(--glass-bg);
	
	-webkit-
	height: 60px;
	padding: 10px;
	width: 100% !important;
	margin: 20px auto;
	border-radius: 12px;
	display: flex;
	align-items: center;
	box-shadow: var(--box-shadow-3d);
  }
  
  .searchboder {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--dark-color);
	font-size: 16px;
	height: 40px;
	padding: 0 20px;
	width: 70%;
	border-radius: 20px 0 0 20px;
  }
  
  .searchbtn, .searchbtn1 {
	background: var(--gradient);
	border: none;
	color: white;
	cursor: pointer;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	width: 30%;
	border-radius: 0 20px 20px 0;
	transition: all 0.3s ease;
  }
  
  .searchbtn:hover, .searchbtn1:hover {
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-2px);
  }
  
  .hotsearch {
	display: flex;
	align-items: center;
	margin-left: 20px;
  }
  
  .hotpic {
	display: none;
  }
  
  .hottext {
	display: flex;
	flex-wrap: wrap;
  }
  
  .hottext a {
	margin: 0 10px;
	color: var(--dark-color);
  }
  
  .hottext a:hover {
	color: var(--accent-color);
  }
  
  /* 产品展示区域 */
  .goods {
	width: 100%;
	margin: 20px auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
  }
  
  .good-title {
	width: 100%;
	margin: 20px auto;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .goodl {
	width: auto;
	text-align: left;
  }
  
  .goodr {
	width: auto;
	text-align: right;
  }
  
  .goodr a, .goodr2 a {
	color: var(--dark-color);
  }
  
  .goodr2 {
	text-align: left;
  }
  
  /* 页脚区域 */
  .footter {
	border-top: 5px solid var(--dark-color);
	width: 100%;
	text-align: left;
	overflow: hidden;
	display: block;
	margin: 40px auto 0;
	padding: 20px 0;
	background: var(--glass-bg);
  }
  
  .footdd {
	width: 100%;
	padding: 20px 0;
  }
  
  .footterarea {
	margin: 10px;
	width: 20px;
	display: block;
	float: left;
	height: 20px;
	background: var(--gradient);
	border-radius: 50%;
  }
  
  .sy11_help_bg {
	height: auto;
	margin-top: 20px;
	clear: both;
  }
  
  .sy11_help {
	width: 100%;
	border: 1px solid var(--glass-border);
	overflow: hidden;
	clear: both;
	border-radius: 12px;
	background: var(--glass-bg);
	
	-webkit-
  }
  
  .sy11_help_l {
	width: 100%;
	padding-top: 30px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
  }
  
  .sy11_help_l ul {
	width: 200px;
	height: auto;
	overflow: hidden;
	padding: 0 20px;
	margin-bottom: 20px;
  }
  
  .sy11_help_l ul li {
	background: none;
	text-indent: 0;
	overflow: hidden;
	line-height: 30px;
	width: 100%;
	padding-left: 0;
	color: var(--dark-color);
  }
  
  .sy11_help_l ul p {
	height: auto;
	margin-bottom: 15px;
	line-height: 24px;
	text-indent: 0;
	padding-left: 0;
	font-size: 18px;
	color: var(--dark-color);
	font-weight: bold;
  }
  
  .sy11_chengnuo {
	margin-top: 20px;
	text-align: center;
  }
  
  .end {
	width: 100%;
	text-align: center;
	margin-top: 20px;
  }
  
  .end1 {
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }
  
  .end1 ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
  }
  
  .end1 li {
	width: 150px;
	padding: 10px;
	height: auto;
	margin: 10px;
	text-align: center;
	border-radius: 12px;
	background: var(--glass-bg);
	
	-webkit-
	transition: all 0.3s ease;
  }
  
  .end1 li:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
  }
  
  .end_menu {
	width: 100%;
	margin-top: 30px;
  }
  
  .end_menu ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
  }
  
  .end_menu li {
	width: auto;
	float: none;
	line-height: 30px;
	text-align: center;
	color: var(--dark-color);
	margin: 0 15px;
  }
  
  .end_menu li a {
	color: var(--dark-color) !important;
  }
  
  .end_menu li a:hover {
	color: var(--accent-color) !important;
  }
  
  /* 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;
	}
	
	#logoArea .searchBarArea {
	  width: 70%;
	}
	
	.goods {
	  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
  }
  
  @media (max-width: 768px) {
	.container {
	  max-width: 720px;
	}
	
	#logoArea {
	  flex-direction: column;
	  align-items: center;
	}
	
	#logoArea .logoTag {
	  margin-bottom: 20px; 
	}
	#logoArea .searchBarArea {
	  width: 100%;
	}
	
	#tacb ul {
	  flex-wrap: wrap;
	}
	
	#tacb ul a {
	  padding: 0 10px;
	  font-size: 14px;
	}
	
	.goods {
	  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	  gap: 15px;
	}
  }
  
  @media (max-width: 576px) {
	.container {
	  max-width: 100%;
	  padding: 0 10px;
	}
	
	#headerTopArea {
	  height: auto;
	  flex-direction: column;
	  padding: 10px;
	}
	
	#headerTopArea .headerTop {
	  flex-direction: column;
	  height: auto;
	}
	
	#headerTopArea .headerTopLeft,
	#headerTopArea .headerTopRight {
	  width: 100%;
	  justify-content: center;
	  margin: 10px 0;
	}
	
	#logoArea .search {
	  flex-direction: column;
	  height: auto;
	}
	
	#logoArea .searchText {
	  width: 100%;
	  border-radius: 20px 20px 0 0;
	}
	
	#logoArea .searchBtn {
	  width: 100%;
	  border-radius: 0 0 20px 20px;
	}
	
	.goods {
	  grid-template-columns: 1fr;
	}
	
	.end1 li {
	  width: 100%;
	  margin: 5px 0;
	}
  }
  
  /* 滚动条美化 */
  ::-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);
  }

.searchbox {
	width:500px; float:left; margin-left:20px;
}

        /* 顶部导航样式 */
        .navtop {
            width: 100%;
            margin: 15px auto;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            float: left;
            width: 300px;
            margin-top: 0;
            overflow: hidden;
        }

        .logo a {
            display: block;
            width: 100%;
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
            letter-spacing: 1px;
        }

        .searchbox {
            width: 500px;
            float: left;
            margin-left: 20px;
            position: relative;
        }

        .s-nav {
            position: relative;
            font-size: 14px;
            z-index: 2;
            width: 100%;
            height: 40px;
            line-height: 40px;
            display: flex;
            margin-bottom: 10px;
        }

        .s-nav .y, .s-nav .n {
            display: block;
            width: 80px;
            height: 35px;
            text-align: center;
            font-weight: bold;
            line-height: 35px;
            margin-right: 10px;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .s-nav .y {
            background: var(--gradient);
            color: white;
            box-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
        }

        .s-nav .n {
            background: var(--glass-bg);
            
            color: var(--cyber-blue);
            border: 1px solid var(--glass-border);
        }

        .s-nav a.y:hover, .s-nav a.n:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
        }

        .searchbox .box {
            width: 100%;
            height: 50px;
            position: relative;
            display: flex;
            border-radius: 12px;
            overflow: hidden;
            background: var(--glass-bg);
            
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .box-middle {
            display: block;
            flex: 1;
            height: 50px;
            padding-top: 3px;
        }

        .box .s-txt {
            height: 44px;
            width: 100%;
            float: left;
            border: 0;
			color: var(--cyber-blue);
            padding-left: 20px;
            font-size: 16px;
            padding-top: 0px;
            background: transparent;
            outline: none;
        }

        .box .s-txt::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .sbutton {
			content:"搜索";
            border: none;
            line-height: 50px;
            width: 100px;
            background: var(--gradient);
            height: 50px;
            cursor: pointer;
            color: white;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .sbutton:hover {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
        }

        .s-hot {
            font-size: 14px;
            margin-top: 10px;
            margin-left: 5px;
            height: 25px;
            line-height: 25px;
            display: flex;
            align-items: center;
        }

        .s-hot a {
            margin-left: 10px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .s-hot a:hover {
            color: var(--cyber-blue);
            text-shadow: 0 0 5px var(--cyber-blue);
        }

        /* 主导航样式 */
        #tab {
            background: var(--glass-bg);
            
            font-size: 16px;
            height: 60px;
            width: 100%;
            margin: 20px auto;
            border-radius: 12px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--box-shadow-3d);
        }

        #tab a {
            text-decoration: none;
            cursor: pointer;
            font-size: 16px;
            margin-right: 30px;
            color: white;
            font-weight: 500;
            position: relative;
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        #tab a:hover {
            color: var(--cyber-blue);
        }

        #tab a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        #tab a:hover::after {
            width: 100%;
        }

        /* 顶部用户导航 */
        ul.top_nav {
            margin: 0;
            padding: 0;
            float: right;
            display: flex;
        }

        .top_nav li {
            float: left;
            display: inline;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0 15px;
            height: 30px;
            line-height: 30px;
        }

        .top_nav .first {
            border-left: none;
        }

        .top_nav a {
            display: block;
            text-align: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .top_nav a:hover {
            color: var(--cyber-blue);
            text-shadow: 0 0 5px var(--cyber-blue);
        }

        /* 3D效果和动画 */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 5px var(--primary); }
            50% { box-shadow: 0 0 20px var(--secondary), 0 0 30px var(--accent); }
        }

        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

        .glow-animation {
            animation: glow 2s ease-in-out infinite;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                padding: 0 15px;
            }
            
            .searchbox {
                width: 400px;
            }
        }

        @media (max-width: 992px) {
            .navtop {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .searchbox {
                width: 100%;
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            ul.top_nav {
                width: 100%;
                justify-content: space-around;
            }
            
            #tab {
                overflow-x: auto;
                white-space: nowrap;
            }
        }

        @media (max-width: 768px) {
            .logo a {
                font-size: 24px;
            }
            
            .s-nav .y, .s-nav .n {
                width: 70px;
                font-size: 12px;
            }
            
            .top_nav li {
                padding: 0 10px;
            }
            
            .top_nav a {
                font-size: 12px;
            }
            
            #tab a {
                font-size: 14px;
                margin-right: 15px;
            }
        }

        @media (max-width: 576px) {
            .logo {
                width: 100%;
                text-align: center;
            }
            
            .s-nav {
                justify-content: center;
            }
            
            .top_nav li {
                padding: 0 5px;
            }
            
            .top_nav a {
                font-size: 11px;
            }
            
            #tab {
                height: auto;
                padding: 10px;
                flex-wrap: wrap;
            }
            
            #tab a {
                margin: 5px 10px;
            }
        }

        /* 高级3D效果 */
        .cyber-card {
            background: var(--glass-bg);
            
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--box-shadow-3d);
            
            
        }

        .cyber-card:hover {
            transform: translateY(-5px) rotateX(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        /* 赛博朋克元素 */
        .cyber-line {
            height: 2px;
            background: var(--gradient);
            box-shadow: var(--neon-glow);
            margin: 15px 0;
            position: relative;
            overflow: hidden;
        }

        .cyber-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            animation: cyber-line 2s infinite linear;
        }

        @keyframes cyber-line {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* AI数字人区域 */
        .ai-assistant {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 0 20px rgba(58, 134, 255, 0.7);
            cursor: pointer;
            z-index: 1000;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .ai-assistant:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(58, 134, 255, 0.9);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(58, 134, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
        }

/* 主导航样式 - 现代科技风格 */
.nobgtab {
	background: var(--glass-bg) !important;
	
	float: left;
	line-height: 50px;
	text-align: center;
	width: 120px;
	border-radius: 8px 8px 0 0;
	margin-right: 5px;
	border: 1px solid var(--glass-border);
	border-bottom: none;
	color: var(--cyber-blue);
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nobgtab:hover {
	background: var(--gradient) !important;
	color: white;
	box-shadow: 0 0 15px rgba(58, 134, 255, 0.5);
}

.daohx {
	height: 60px;
	background: var(--glass-bg);
	
	clear: both;
	z-index: 100001;
	position: relative;
	margin-top: 20px;
	width: 100%;
	left: 0;
	border-radius: 12px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--box-shadow-3d);
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.daohx ul {
	margin: 0 auto;
	width: 100%;
	clear: both;
	display: flex;
	justify-content: space-between;
}

.daohx li {
	float: left;
	text-align: center;
	color: var(--light) !important;
	line-height: 60px;
	padding: 0 15px;
	position: relative;
}

.daohx li a {
	padding: 0 15px;
	text-align: center;
	line-height: 60px;
	color: var(--cyber-blue) !important;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.daohx li a:hover {
	color: var(--cyber-pink) !important;
	text-shadow: 0 0 10px var(--cyber-pink);
}

.daohx li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient);
	transition: width 0.3s ease;
}

.daohx li a:hover::after {
	width: 100%;
}

.daohxx, .daohxt, .daohsx {
	height: 60px !important;
	background: var(--glass-bg);
	
	width: 100%;
	float: left;
	clear: both;
	z-index: 100;
	position: relative;
	margin-top: 20px;
	border-radius: 12px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--box-shadow-3d);
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.daohxx ul, .daohxt ul, .daohsx ul {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.daohxx li, .daohxt li, .daohsx li {
	width: auto !important;
	float: left;
	text-align: center;
	color: var(--light) !important;
}

.daohxx li a, .daohxt li a, .daohsx li a {
	width: auto !important;
	float: left;
	text-align: center;
	line-height: 60px;
	color: var(--light) !important;
	font-size: 16px !important;
	font-weight: 500;
	text-decoration: none;
	padding: 0 15px;
	transition: all 0.3s ease;
}

.daohxx li a:hover, .daohxt li a:hover, .daohsx li a:hover {
	color: var(--cyber-blue) !important;
	text-shadow: 0 0 10px var(--cyber-blue);
}

/* 特定宽度调整 */
.daohxt .famous a { width: 100px; }
.daohxt .fandi a { width: 100px; }
.daohxt .famzhe a { width: 120px; }
.daohxt .famzhes a { width: 90px; }
.daohxt .taob a { width: 100px; }
.daohxt .taopi a { width: 90px; }
.daohxt .dianq a { width: 100px; }
.daohxt .famxie a { width: 100px; }
.daohxt .yund a { width: 100px; }
.daohxt .meir a { width: 100px; }
.daohxt .home a { width: 100px; }
.daohxt .xiangg a { width: 100px; }
.daohxt .taiwan a { width: 100px; }

.daohxt .fammore {
	float: right;
	z-index: 1000000000;
	padding: 0;
}

.daohxt .fammore a {
	padding: 0 20px !important;
	line-height: 60px !important;
	background: var(--gradient);
	border-radius: 8px;
	color: white !important;
	font-weight: bold;
}

.daohxt .fammore a:hover {
	background: var(--accent);
	box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

/* 推荐区域 */
.tuijian {
	margin: 30px auto;
	width: 100%;
	background: var(--glass-bg);
	
	height: 200px;
	overflow: hidden;
	margin-top: 30px;
	border-radius: 16px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--box-shadow-3d);
	position: relative;
}

.tuijian_text {
	width: 100%;
	position: absolute;
	padding: 20px;
}

.tuijian_text ul {
	float: right;
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: space-around;
}

.tuijian_text li {
	width: 150px;
	float: left;
	height: 60px;
	background: var(--gradient);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tuijian_text li:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	background: var(--accent);
}

/* 3D效果和动画 */
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes glow {
	0%, 100% { box-shadow: 0 0 5px var(--primary); }
	50% { box-shadow: 0 0 20px var(--secondary), 0 0 30px var(--accent); }
}

.float-animation {
	animation: float 5s ease-in-out infinite;
}

.glow-animation {
	animation: glow 2s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.container {
		padding: 0 15px;
	}
	
	.daohx li a {
		padding: 0 10px;
		font-size: 14px;
	}
	
	.daohxx li a, .daohxt li a, .daohsx li a {
		padding: 0 10px;
		font-size: 14px !important;
	}
}

@media (max-width: 992px) {
	.daohx ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.daohx li {
		padding: 0 10px;
	}
	
	.daohxx ul, .daohxt ul, .daohsx ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.tuijian_text ul {
		flex-wrap: wrap;
	}
	
	.tuijian_text li {
		margin: 10px;
	}
}

@media (max-width: 768px) {
	.nobgtab {
		width: 100px;
		font-size: 14px;
	}
	
	.daohx {
		height: auto;
		padding: 10px;
	}
	
	.daohx ul {
		flex-direction: column;
	}
	
	.daohx li {
		width: 100%;
		line-height: 40px;
		padding: 0;
	}
	
	.daohxx, .daohxt, .daohsx {
		height: auto !important;
		padding: 10px;
	}
	
	.daohxx ul, .daohxt ul, .daohsx ul {
		flex-direction: column;
	}
	
	.daohxx li, .daohxt li, .daohsx li {
		width: 100% !important;
		line-height: 40px;
	}
	
	.tuijian {
		height: auto;
	}
	
	.tuijian_text ul {
		flex-direction: column;
		align-items: center;
	}
	
	.tuijian_text li {
		width: 80%;
		margin: 10px 0;
	}
}

@media (max-width: 576px) {
	.nobgtab {
		width: 80px;
		font-size: 12px;
		line-height: 40px;
	}
	
	.daohx li a {
		font-size: 14px;
		padding: 0 5px;
	}
	
	.daohxt .fammore a {
		padding: 0 10px !important;
		font-size: 12px !important;
	}
	
	.tuijian_text li {
		width: 90%;
		height: 50px;
		font-size: 14px;
	}
}

/* 高级3D效果 */
.cyber-card {
	background: var(--glass-bg);
	
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 20px;
	box-shadow: var(--box-shadow-3d);
	
	
}

.cyber-card:hover {
	transform: translateY(-5px) rotateX(5deg);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 赛博朋克元素 */
.cyber-line {
	height: 2px;
	background: var(--gradient);
	box-shadow: var(--neon-glow);
	margin: 15px 0;
	position: relative;
	overflow: hidden;
}

.cyber-line::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	animation: cyber-line 2s infinite linear;
}

@keyframes cyber-line {
	0% { left: -100%; }
	100% { left: 100%; }
}

/* AI数字人区域 */
.ai-assistant {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	box-shadow: 0 0 20px rgba(58, 134, 255, 0.7);
	cursor: pointer;
	z-index: 1000;
	animation: pulse 2s infinite;
	transition: all 0.3s ease;
}

.ai-assistant:hover {
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(58, 134, 255, 0.9);
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(58, 134, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
}

/* 标题样式 */
.section-title {
	font-size: 28px;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
	margin: 30px 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--glass-border);
}