/* 初始化样式 - 现代化重置 */
:root {
  --primary-color: #0061ff;
  --secondary-color: #00f7ff;
 --accent-color: #7d0ab9;
  --text-primary: #333333;
  --text-secondary: #666666;
  --bg-light: #f8f9fa;
  --bg-lighter: #ffffff;
  --gradient-primary: linear-gradient(145deg, #0061ff, #0040b3);
  --gradient-secondary: linear-gradient(45deg, #0061ff, #00f7ff, #7d0ab9);
  --shadow-3d: 0 4px 20px rgba(0, 97, 255, 0.15), 
              0 2px 10px rgba(0, 247, 255, 0.1),
              inset 0 -2px 5px rgba(0, 0, 0, 0.05);
  --neumorphic-shadow: 8px 8px 16px #d9d9d9, 
                      -8px -8px 16px #ffffff;
  --border-glow: 0 0 10px rgba(0, 247, 255, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, form, ul, li, p, dl, dd, dt, td, th, h3 {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 247, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(125, 10, 185, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

li, ul {
  list-style: none;
}

TD {
  color: var(--text-primary);
  vertical-align: top;
}

input, textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px 12px;
  background: var(--bg-lighter);
  transition: all 0.3s ease;
  box-shadow: inset 2px 2px 5px #d9d9d9, 
              inset -2px -2px 5px #ffffff;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(0, 247, 255, 0.2), 
              inset 2px 2px 5px #d9d9d9, 
              inset -2px -2px 5px #ffffff;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:link, a:visited {
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

a:active {
  color: var(--accent-color);
}

.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt10 {
  margin-top: 10px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

/* 顶部信息 - 科技感顶部栏 */
.TopContainer {
  height: 40px;
  	line-height:35px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 20px rgba(0, 97, 255, 0.1);
  padding: 0 20px;
  position: relative;
  z-index: 1000;
}

.TopContainer::after {
  
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.TopContainer a {
  color: var(--text-secondary);
  font-size: 13px;
}

.TopContainer .userinfos {
	float:left;
  display: flex;
  align-items: center;
  height: 40px;
}

.TopContainer .userinfos .showmsg {
  padding: 0;
  display: flex;
  align-items: center;
}

.TopContainer .userinfos span {
  display: inline-block;
  padding-right: 10px;
}

.TopContainer .userinfos em {
  color: var(--accent-color);
  font-style: normal;
  font-weight: bold;
}

.TopContainer .userinfos .input {
  padding-top: 0;
}

.TopContainer .userinfos .input input {
  width: 120px;
  height: 26px;
  border-radius: 13px;
}

.TopContainer .userinfos .sub {
  padding: 0 10px 0 5px;
}

.TopContainer .userinfos .sub input {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 13px;
  padding: 4px 12px;
  height: 26px;
  cursor: pointer;
  box-shadow: var(--shadow-3d);
  transition: all 0.3s ease;
}

.TopContainer .userinfos .sub input:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 97, 255, 0.3);
}

.TopContainer .userinfos .img {
  padding: 0 3px 0 5px;
}

.TopContainer .siteinfo {
	float:right;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.TopContainer .siteinfo a.wap {
  padding-left: 20px;
  position: relative;
}

.TopContainer .siteinfo a.wap::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.TopContainer .themelist {
	float:right;
  display: flex;
  margin-top:5px;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  margin-left: 15px;
}

.TopContainer .themelist div {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height:30px;
  text-align:center;
  margin: 0 3px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all 0.3s ease;
}

.TopContainer .themelist div:hover {
  transform: scale(1.2);
}

.TopContainer .themelist div a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.TopContainer .changecolor {
	float:right;
  margin-left: 15px;
}

/* Logo区域 - 未来科技感 */
.Logo_Ad_Info {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 20px auto;
  position: relative;
  display: flex;
  align-items: center;
  background:#FFF;
  flex-wrap: wrap;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow-3d);
}

@keyframes movingBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 1125px;
    }
}
@keyframes movingBackgroundm {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 675px;
    }
}
.Logo_Ad_Info .logo {
  padding-top: 0;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.Logo_Ad_Info .logo img {
	margin-left:20px;
  height: 66px;
  width: auto;
}

.Logo_Ad_Info .changecity {
  width: auto;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Logo_Ad_Info .changecity span {
  text-align: left;
}

.Logo_Ad_Info .changecity span.city {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Logo_Ad_Info .changecity span.city::after {
  
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.Logo_Ad_Info .changecity span.city a {
  margin: 0;
  display: inline-block;
  text-align: center;
  padding: 8px 16px;
  width: auto;
  height: auto;
  line-height: 1;
  overflow: visible;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 247, 255, 0.7);
  background: var(--gradient-primary);
  border: none;
  border-radius: 6px;
  box-shadow: var(--shadow-3d);
  transform: translateY(-4px);
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}

.Logo_Ad_Info .changecity span.city a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 97, 255, 0.3);
  text-shadow: 0 1px 5px rgba(0, 247, 255, 1);
}

.Logo_Ad_Info .changecity span.city a:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 97, 255, 0.2);
}

.Logo_Ad_Info .changecity span.city a::before {
  
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 8px;
  background: var(--gradient-secondary);
  background-size: 400% 400%;
  z-index: -1;
  animation: glowing 3s ease infinite;
  filter: blur(4px);
  opacity: 0.7;
}

.Logo_Ad_Info .changecity span.change {
  padding-top: 8px;
}

.Logo_Ad_Info .changecity span.change a {
  color: var(--text-secondary);
  font-size: 12px;
  position: relative;
}

.Logo_Ad_Info .changecity span.change a:hover {
  color: var(--primary-color);
}

.Logo_Ad_Info .Search {

  height: auto;
  background: none;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
margin-left:50%;
margin-right:30px;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  background: var(--bg-lighter);
  border-radius: 10px;
  box-shadow: var(--shadow-3d);
  padding: 10px;
}

.Logo_Ad_Info .Search .ListType {
  height: auto;
  overflow: hidden;
  padding-left: 0;
  line-height: 1;
  display: flex;
  margin-bottom: 8px;
}

.Logo_Ad_Info .Search .ListType li {
  padding: 6px 12px;
  text-align: center;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 15px;
  margin-right: 5px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.Logo_Ad_Info .Search .ListType li.ck {
  background: var(--gradient-primary);
  color: #FFF;
  box-shadow: var(--shadow-3d);
}

.Logo_Ad_Info .Search .keyword {
  float: none;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.Logo_Ad_Info .Search .keyword input {
  width: 100%;
  height: 36px;
  line-height: 36px;
  border: none;
  color: var(--text-primary);
  background: var(--bg-light);
  border-radius: 18px;
  padding: 0 15px;
  box-shadow: inset 3px 3px 5px #d9d9d9, 
              inset -3px -3px 5px #ffffff;
  transition: all 0.3s ease;
}

.Logo_Ad_Info .Search .keyword input:focus {
  box-shadow: inset 4px 4px 8px #d9d9d9, 
              inset -4px -4px 8px #ffffff,
              0 0 0 2px rgba(0, 247, 255, 0.2);
}

.Logo_Ad_Info .Search .subbutter {
  float: none;
  padding: 10px 0 0 0;
  text-align: right;
}

.Logo_Ad_Info .Search .subbutter input {
  background: var(--gradient-primary);
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  outline: none;
  border-radius: 18px;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: var(--shadow-3d);
  transition: all 0.3s ease;
}

.Logo_Ad_Info .Search .subbutter input:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 97, 255, 0.3);
}

/* 导航菜单 - 3D科技感 */
.MenuCont {
  clear: both;
  height: auto;
  margin: 20px auto;
  background: var(--gradient-primary);
  position: relative;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: var(--shadow-3d);
}

.MenuCont .ListMenu {
	background-image: url("../banner/witcpbanner2000.jpg");
    background-size: 2000px;
    background-repeat: repeat;
    background-position: 0 0;
    animation: movingBackground 15s linear infinite;
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.MenuCont .ListMenu dl {
  float: none;
  position: relative;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.MenuCont .ListMenu dl dt {
  height: 50px;
  float: none;
  padding-left: 0;
  background: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.MenuCont .ListMenu dl.no dt {
  background: none;
}

.MenuCont .ListMenu dl dt span {
  display: block;
  line-height: normal;
  padding: 10px 15px;
}

.MenuCont .ListMenu dl dt span a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.MenuCont .ListMenu dl dt span a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.MenuCont .ListMenu dl dt span a:hover::after {
  width: 100%;
}

.MenuCont .ListMenu dl.ck dt {
  background: none;
}

.MenuCont .ListMenu dl.ck dt span {
  background: none;
}

.MenuCont .ListMenu dl.ck dt span a {
  color: var(--secondary-color);
}

.MenuCont .ListMenu dl.over dt span a {
  color: var(--secondary-color);
}

.MenuCont .ListMenu dl dd {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-top: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
}

.MenuCont .ListMenu dl:hover dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.MenuCont .ListMenu dl dd span {
  display: none;
}

.MenuCont .ListMenu dl dd ul {
  background: none;
  padding-bottom: 0;
}

.MenuCont .ListMenu dl dd ul li {
  display: block;
  line-height: 40px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.MenuCont .ListMenu dl dd ul li:last-child {
  border-bottom: none;
}

.MenuCont .ListMenu dl dd ul li.over1 {
  background: none;
}

.MenuCont .ListMenu dl dd ul li.over1 a {
  color: var(--secondary-color);
  font-weight: bold;
}

.MenuCont .ListMenu dl dd ul li a {
  color: #fff;
  display: block;
  transition: all 0.3s ease;
}

.MenuCont .ListMenu dl dd ul li:hover {
  background: rgba(0, 97, 255, 0.2);
}

.MenuCont .ListMenu dl dd ul li:hover a {
  padding-left: 5px;
}
/* 二级导航菜单 - 科技感面板 */
.NavMenu {
  height: auto;
  overflow: hidden;
  background: var(--bg-lighter);
  border-radius: 10px;
  margin: 20px auto;
  box-shadow: var(--shadow-3d);
  padding: 15px;
}

.NavMenu a:link, .NavMenu a:visited, .NavMenu a:hover {
  color: var(--primary-color);
}

.ListNavMenu {
  height: auto;
  padding-top: 0;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.ListNavMenu table {
  height: auto;
  float: none;
  width: 100%;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  transition: all 0.3s ease;
}

.ListNavMenu table:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 97, 255, 0.2);
}

.ListNavMenu table th {
  width: auto;
  height: auto;
  padding: 15px;
  vertical-align: middle;
  background: var(--gradient-primary);
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-align: left;
  position: relative;
}

.ListNavMenu table th::after {
  
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.ListNavMenu table th.th2 {
  background: var(--gradient-secondary);
}

.ListNavMenu table th.th3 {
  background: linear-gradient(145deg, #7d0ab9, #5c0788);
}

.ListNavMenu table th.th4 {
  background: linear-gradient(145deg, #00b3ff, #0088cc);
}

.ListNavMenu table th.th5 {
  background: linear-gradient(145deg, #00ff95, #00cc76);
}

.ListNavMenu table td {
  padding: 15px;
  line-height: 1.6;
  background: var(--bg-lighter);
  border: none;
}

.ListNavMenu table td a {
  display: block;
  padding: 5px 0;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 15px;
}

.ListNavMenu table td a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--secondary-color);
  transition: all 0.2s ease;
}

.ListNavMenu table td a:hover {
  color: var(--secondary-color);
  padding-left: 20px;
}

/* 动画效果 */
@keyframes glowing {
  0% { background-position: 0% 50%; opacity: 0.7; }
  50% { background-position: 100% 50%; opacity: 0.9; }
  100% { background-position: 0% 50%; opacity: 0.7; }
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  50% { transform: translateY(-10px) rotate(10deg); opacity: 1; }
  100% { transform: translateY(-20px) rotate(20deg); opacity: 0; }
}

/* 响应式设计 */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
   .Logo_Ad_Info .Search {
    margin: 10px 0;
    width: 30%;
  }
}

@media (max-width: 768px) {
   .Logo_Ad_Info .Search {
    margin: 10px 0;
    width: 10%;
  }
}

@media (max-width: 480px) {
    .Logo_Ad_Info .Search {
    margin: 10px 0;
    width: 10%;
  }
}
/* 页面地图 - 科技感导航路径 */
.HearderSpac {
  clear: both;
  margin-top: 20px;
}

#nav_guide {
  width: 100%;
  clear: both;
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  margin: 15px auto 20px;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 102, 255, 0.15);
  background: var(--card-bg);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#nav_guide::before {
  margin-right: 8px;
  color: var(--cyber-blue);
}

#nav_guide a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  position: relative;
  padding: 0 5px;
}

#nav_guide a:hover {
  color: var(--cyber-blue);
}

#nav_guide a::after {
 
  margin-left: 8px;
  color: var(--cyber-purple);
  font-weight: bold;
}

#nav_guide a:last-child::after {
  
  margin-left: 0;
}

#nav_guide .t1 {
  float: left;
  padding: 0 8px 0 5px;
  color: var(--text-primary);
  font-weight: 600;
}

#nav_guide .t2 {
  float: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/*
* 响应式设计
*/
@media screen and (max-width: 1200px) {
  .MenuCont{
	  margin-left:15px;
	  margin-right:15px;
  }
  .MenuCont .ListMenu {
    justify-content: flex-start;
	background-image: url("../banner/witcpbanner1200.jpg");
	 background-size: 1200px;
	 animation: movingBackgroundm 15s linear infinite;
  }
  
  .MenuCont .ListMenu dl {
    flex: 0 0 20%;
  }
}

/*
*copyright样式 - 科技未来风格升级
*/
#copyright {
    clear: both;
    width: 100%;
    margin: 30px auto 0 auto;
    text-align: center;
    line-height: 24px;
    padding: 25px 0 35px 0;
    color: #718096;
    border-top: 1px solid rgba(66, 153, 225, 0.2);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 15px 15px;
    font-size: 14px;
}

#copyright::before {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4299e1, #6b46c1, transparent);
    animation: gradientMove 3s ease infinite;
}

.MainLeftTitle {
    clear: both;
    width: 100%;
    margin-top: 40px;
    position: relative;
    padding-bottom: 15px;
    /* 添加以下代码以清除内部浮动 */
    overflow: hidden;
}

.MainLeftTitle::after {
    
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, transparent);
    border-radius: 3px;
}

.flink {
    clear: both;
	
}

.flink li {
    float: left;
    line-height: 28px;
    margin: 5px;
    transition: all 0.3s ease;
}

.flink li a {
    white-space: nowrap;
    padding: 5px 12px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 16px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.flink li a:hover {
    background: rgba(66, 153, 225, 0.2);
    color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 153, 225, 0.2);
}

.nlink {
    clear: both;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	    position: relative;
    padding-bottom: 15px;
    /* 添加以下代码以清除内部浮动 */
    overflow: hidden;
}

.nlink li {
    float: left;
    line-height: 28px;
    margin: 5px;
}

.nlink li b {
    color: #2d3748;
    font-weight: 600;
}

.nlink li a {
    white-space: nowrap;
    padding: 5px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nlink li a:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

.nowclass, .nowclass:hover, .nowclass:link, .nowclass:visited {
    background: linear-gradient(145deg, #38a169, #2f855a);
    color: #fff;
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(56, 161, 105, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.MainLeftTitle b a, .MainLeftTitle b a:link, .MainLeftTitle b a:hover, .MainLeftTitle b a:visited {
    color: #2f855a;
    text-shadow: 0 0 8px rgba(47, 133, 90, 0.3);
}

.main {
    width: 100%;
    margin-top: 20px;
}

.centercontent, .rightcontent {
    width: 100%;
    float: left;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.centercontent:hover, .rightcontent:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.rightcontent {
    float: right;
    margin-top: 20px;
}

.centercontent .head, .centercontent h1, .rightcontent .head, .rightcontent h1 {
    clear: both;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    padding-left: 20px;
    background: linear-gradient(145deg, #4299e1, #3182ce);
    border-left: 4px solid #2b6cb0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.goodspiclist {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.goodspiclist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.goodspiclist ul li {
    float: left;
    width: 23%;
    margin: 15px 1%;
    height: 460px;
    display: block;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.goodspiclist ul li img{
	width: 100%;
	height: 430px;
}

.goodspiclist ul li:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.goodspiclist ul li::before {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
}

.rightcontent div {
    padding-left: 15px;
    padding-right: 15px;
}

.goodshotlist {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.goodshotlist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.goodshotlist ul li {
    float: left;
    width: 23%;
    margin-left: 1%;
    height: 460px;
    margin-top: 15px;
    display: block;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.goodshotlist ul li img{
	width: 100%;
	height: 430px;
}


.goodspiclist ul li {
    float: left;
    width: 23%;
    margin: 15px 1%;
    height: 460px;
    display: block;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}


.goodshotlist ul li:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.titlehotlist {
    width: 100%;
    margin: 0 auto;
    clear: both;
    padding: 15px;
}

.titlehotlist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.titlehotlist ul li {
    float: left;
    width: 23%;
    margin-left: 1%;
    height: 80px;
    margin-top: 15px;
    display: block;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titlehotlist ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.contentcs {
    clear: both;
    padding: 15px;
}

.contentcs ul {
    clear: both;
    display: flex;
    flex-wrap: wrap;
}

.contentcs ul li {
    line-height: 35px;
    font-size: 15px;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 23%;
    margin: 5px 1%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contentcs ul li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contentcs ul li.picsp {
    width: 100%;
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

.contentcs ul li.picsp img {
    width: 100%;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.contentcs ul li.picsp img:hover {
    transform: scale(1.02);
}

.contentcs ul li.price {
    display: none;
}

.contentcs ul li.shopsp {
    float: right;
    text-align: center;
    display: none;
}

.contentcs ul li.shopsp .listpic {
    padding-top: 15px;
}

.contentcs ul li.gocart {
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

.contentcs ul li a {
    font-size: 15px;
    color: #4a5568;
    font-weight: 500;
}

.contentcs ul li a:hover {
    color: #3182ce;
}

.gotoads {
    clear: both;
    padding: 20px;
    border-bottom: 1px dashed rgba(66, 153, 225, 0.5);
    border-top: 1px dashed rgba(66, 153, 225, 0.5);
    min-height: 100px;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.attributes {
    clear: both;
    z-index: 100001;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    width: 100%;

    padding-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.clickstyle {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    min-height: 80px;
    display: block;
    line-height: 80px;
    clear: both;
    color: #2d3748;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Orbitron', '微软雅黑', sans-serif;
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.9));
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    position: relative;
}

.clickstyle::before {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4299e1, #6b46c1, transparent);
    animation: gradientMove 3s ease infinite;
}

.clickstyle a {
    color: #3182ce;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Orbitron', '微软雅黑', sans-serif;
    text-shadow: 0 0 12px rgba(49, 130, 206, 0.4);
    transition: all 0.4s ease;
}

.clickstyle a:hover {
    color: #2b6cb0;
    text-shadow: 0 0 15px rgba(43, 108, 176, 0.6);
    transform: translateY(-3px);
}

.attributes ul {
    clear: both;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.attributes ul li {
    width: 30%;
    float: left;
    line-height: 35px;
    border: 1px solid rgba(66, 153, 225, 0.3);
    margin-top: 15px;
    margin-left: 2.5%;
    padding-left: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.attributes ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(66, 153, 225, 0.5);
}

.gocart a {
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
    width: 150px;
    float: left;
    text-align: center;
    background: linear-gradient(145deg, #e53e3e, #c53030);
    color: #fff;
    font-size: 16px;
    margin: 15px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
    transition: all 0.4s ease;
    font-weight: 600;
}

.gocart a:hover {
    background: linear-gradient(145deg, #c53030, #9b2c2c);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.4);
}

.attributes .keyclass {
    overflow: hidden;
    padding-right: 10px;
    width: 100%;
    height: auto;
    min-height: 100px;
}

.attributes .keyclassa {
    width: 70%;
    float: left;
    height: 35px;
    line-height: 35px;
}

.attributes .keyclassa a {
    float: left;
    padding-right: 10px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.attributes .keyclassa a:hover {
    color: #3182ce;
    text-decoration: underline;
}

.attributes .keyclassname {
    width: 30%;
    float: left;
    color: #2d3748;
    font-weight: 600;
}

.shoppiclist {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.shoppiclist ul {
    display: flex;
    flex-wrap: wrap;
}

.shoppiclist ul li.list-item {
    float: left;
    width: 100%;
    margin: 15px 0;
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.shoppiclist ul li.list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.shoppiclist ul li.list-img {
    float: left;
    width: 120px;
    height: 120px;
    margin: 15px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.shoppiclist ul li.list-info {
    float: right;
    width: calc(100% - 180px);
    height: auto;
    min-height: 120px;
    padding: 15px;
}

.shoppiclist ul li h4 {
    height: 30px;
    line-height: 30px;
    display: block;
    margin: 0;
    padding: 0;
}

.shoppiclist ul li h4 .shop-name {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 0 5px rgba(47, 133, 90, 0.3);
}

.shoppiclist ul li p.shop-info {
    margin: 0;
    padding: 0;
    line-height: 24px;
    color: #718096;
}

.shoppiclist ul li .pro-sale-num {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
    color: #4a5568;
    font-weight: 500;
}

.shoppiclist ul li em, .good-com, .shop-info-list {
    color: #38a169;
    font-weight: 600;
    padding-left: 8px;
    padding-right: 8px;
}

.shoppiclist ul li .valuation {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
    color: #4a5568;
    font-weight: 500;
}

.shoppiclist ul li.shop-products {
    width: calc(100% - 30px);
    margin: 15px;
    display: block;
    overflow: hidden;
}

.shoppiclist ul li .shop-products-container {
    margin: 15px;
}

.shoppiclist ul li .one-product {
    float: left;
    width: 23%;
    height: 250px;
    display: block;
    margin: 1%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.shoppiclist ul li .one-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.shoppiclist ul li .one-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.shoppiclist ul li .one-product:hover img {
    transform: scale(1.05);
}

.shoppiclist ul li .one-product .price-wrap {
    font-size: 16px;
    color: #e53e3e;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 5px rgba(229, 62, 62, 0.3);
}

.desccontent {
    clear: both;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.desc {
    margin-left: 0;
}

.desc img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#page {
    line-height: 35px;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

#page a {
    padding: 8px 16px;
    display: inline-block;
    margin: 0 5px;
    background: rgba(66, 153, 225, 0.1);
    color: #4a5568;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#page a:hover {
    background: rgba(66, 153, 225, 0.2);
    color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.2);
}

.right-shop-info {
    margin: 15px;
    margin-left: 0;
    border: 1px solid rgba(66, 153, 225, 0.3);
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.right-shop-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.right-shop-info .info-img {
    text-align: center;
    margin-bottom: 15px;
}

.right-shop-info .list-info {
    text-align: center;
    line-height: 28px;
    margin: 0;
    padding: 0;
}

.right-shop-info .list-info h4 {
    line-height: 32px;
    margin: 0;
    padding: 0;
    color: #2d3748;
    font-weight: 700;
}

.right-shop-info .list-info .shop-info {
    margin: 0;
    padding: 0;
    color: #718096;
}

.right-shop-info .list-info .main-cat {
    height: 24px;
    overflow: hidden;
    color: #4a5568;
}

.right-shop-info .list-info .pro-sale-num {
    color: #4a5568;
}

.right-shop-info .list-info .pro-sale-num em {
    padding-left: 8px;
    padding-right: 8px;
    color: #e53e3e;
    font-weight: 600;
}

.right-shop-info .list-info .pro-sale-num .info-sale {
    color: #4a5568;
}

.right-shop-info .list-info .pro-sale-num .info-sum {
    color: #4a5568;
}

.right-shop-info .list-info .valuation {
    color: #4a5568;
}

.right-shop-products {
    margin: 15px;
    margin-left: 0;
    border: 1px solid rgba(66, 153, 225, 0.3);
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.right-shop-products:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.right-shop-products .one-product {
    clear: both;
    text-align: left;
    margin: 15px 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.right-shop-products .product-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.right-shop-products .price-wrap {
    position: static;
    margin-top: 0;
    margin-left: 0;
    color: #e53e3e;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.right-shop-products .price-wrap-shade {
    display: none;
}

.goodspiclist .other, .goodshotlist .other {
    display: none;
}

.soadssp {
    display: none;
}

.souadssp {
    clear: both;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.price {
    display: none;
}

/****************************************************
*PageLink - 科技未来风格升级
*/
.PageLink {
    margin-top: 30px;
    border: 1px solid rgba(66, 153, 225, 0.3);
    width: 100%;
    clear: both;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.PageLink:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.PageLink .head {
    height: 45px;
    overflow: hidden;
    line-height: 45px;
    background: linear-gradient(145deg, #4299e1, #3182ce);
    padding: 0 20px 0 20px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.PageLink .head .tag {
    float: left;
    padding-left: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" 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" y2="7"></line></svg>') left 14px no-repeat;
    font-weight: 600;
}

.PageLink .head .more {
    float: right;
    padding-left: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" 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 8px no-repeat;
}

.PageLink .head .more a {
    float: left;
    padding-right: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" 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>') right 8px no-repeat;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.PageLink .head .more a:hover {
    color: #ebf8ff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.PageLink .cont {
    padding: 20px;
}

.PageLink .cont .wordlink {
    border-top: 1px solid rgba(66, 153, 225, 0.3);
    margin-top: 15px;
    padding-top: 15px;
    line-height: 24px;
}

.nomask {
}

.picsp img, .desc img {
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    transition: all 0.5s ease;
}

.picsp img:hover, .desc img:hover {
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.global_banner_mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.global_banner_mask p {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: auto;
    margin-top: 0;
    width: 90%;
    max-width: 600px;
    height: auto;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(66, 153, 225, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.global_banner_mask p img {
    float: none;
    max-width: 100%;
    border-radius: 12px;
}

.global_banner_mask .mswx {
    width: 100%;
    margin: auto;
    text-align: center;
}

.global_banner_mask-btn_close {
    position: absolute;
    left: auto;
    right: 20px;
    top: 20px;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.global_banner_mask-btn_close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.global_banner_mask-btn_close:before, .global_banner_mask-btn_close:after {
    
    position: absolute;
    left: 19px;
    top: 10px;
    width: 2px;
    height: 20px;
    background-color: #fff;
}

.global_banner_mask-btn_close:before {
    transform: rotate(45deg);
}

.global_banner_mask-btn_close:after {
    transform: rotate(-45deg);
}

.packetPopupsp {
    background: linear-gradient(145deg, #667eea, #764ba2);
    width: 90%;
    max-width: 400px;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-top: 0;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title_red_packet {
    margin-top: 20px;
    height: auto;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.goto_videocard {
    height: auto;
    color: #fff;
    font-size: 16px;
    margin: 20px 0;
}

.goto_videocard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goto_videocard ul li {
    height: auto;
    line-height: 40px;
    text-align: center;
    margin: 10px 0;
}

.goto_videocard ul li a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    outline: none;
    color: #000;
    background-color: rgba(255, 218, 140, 0.9);
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.4s ease;
}

.goto_videocard ul li a:hover, .goto_videocard ul li a:focus {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    background-color: rgba(255, 218, 140, 1);
}

.price_red_packet {
    margin-top: 20px;
    height: auto;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.goto_shopping {
    margin-top: 30px;
    height: auto;
    font-size: 16px;
    text-align: center;
}

.goto_shopping a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    outline: none;
    color: #c75f04;
    background: #fed888;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.4s ease;
    font-weight: 600;
}

.goto_shopping a:hover, .goto_shopping a:focus {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    background: #ffd166;
}

.global_banner_mask-btn_close1 {
    position: absolute;
    left: auto;
    right: 20px;
    top: 20px;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.global_banner_mask-btn_close1:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.global_banner_mask-btn_close1:before, .global_banner_mask-btn_close1:after {
    
    position: absolute;
    left: 19px;
    top: 10px;
    width: 2px;
    height: 20px;
    background-color: #fff;
}

.global_banner_mask-btn_close1:before {
    transform: rotate(45deg);
}

.global_banner_mask-btn_close1:after {
    transform: rotate(-45deg);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .goodspiclist ul li, 
    .goodshotlist ul li,
    .titlehotlist ul li {
        width: 31%;
        margin: 15px 1%;
    }
    
    .shoppiclist ul li .one-product {
        width: 31%;
        margin: 1%;
    }
    
    .contentcs ul li {
        width: 31%;
        margin: 1%;
    }
}

@media screen and (max-width: 992px) {
    .goodspiclist ul li, 
    .goodshotlist ul li,
    .titlehotlist ul li {
        width: 48%;
        margin: 15px 1%;
    }
    
    .shoppiclist ul li .one-product {
        width: 48%;
        margin: 1%;
    }
    
    .contentcs ul li {
        width: 48%;
        margin: 1%;
    }
    
    .attributes ul li {
        width: 47%;
        margin-left: 1.5%;
    }
}

@media screen and (max-width: 768px) {
    .goodspiclist ul li, 
    .goodshotlist ul li,
    .titlehotlist ul li {
        width: 100%;
        margin: 10px 0;
    }
    
    .shoppiclist ul li .one-product {
        width: 100%;
        margin: 10px 0;
    }
    
    .contentcs ul li {
        width: 100%;
        margin: 10px 0;
    }
    
    .attributes ul li {
        width: 100%;
        margin-left: 0;
    }
    
    .shoppiclist ul li.list-img {
        width: 100px;
        height: 100px;
    }
    
    .shoppiclist ul li.list-info {
        width: calc(100% - 140px);
    }
    
    .centercontent .head, .centercontent h1, .rightcontent .head, .rightcontent h1 {
        font-size: 16px;
        line-height: 35px;
    }
    
    .clickstyle {
        font-size: 22px;
        line-height: 60px;
        min-height: 60px;
    }
    
    .clickstyle a {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .shoppiclist ul li.list-img {
        float: none;
        width: 100%;
        height: auto;
        margin: 10px 0;
        text-align: center;
    }
    
    .shoppiclist ul li.list-info {
        float: none;
        width: 100%;
        padding: 10px;
    }
    
    .gocart a {
        width: 100%;
        margin: 10px 0;
    }
    
    .flink li, .nlink li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    
    .PageLink .head {
        height: auto;
        line-height: 1.5;
        padding: 15px;
    }
    
    .PageLink .head .tag,
    .PageLink .head .more {
        float: none;
        text-align: center;
        margin: 5px 0;
    }
}