/* 增强的全局样式重置与基础设置 */
:root {
  --primary-color: #00a2ff;
  --secondary-color: #7e42ff;
  --accent-color: #00e5ff;
  --neon-blue: #00f3ff;
  --neon-purple: #bd00ff;
  --dark-bg: #0a0e17;
  --light-bg: rgba(255, 255, 255, 0.95);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --text-primary: #1a1a1a;
  --text-secondary: #4d4d4d;
  --glow-effect: 0 0 15px rgba(0, 243, 255, 0.5), 0 0 30px rgba(0, 162, 255, 0.3);
  --neon-border: 1px solid rgba(0, 243, 255, 0.5);
  --neon-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
  --cyber-gradient: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Exo 2', 'Rajdhani', 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 243, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(189, 0, 255, 0.1) 0%, transparent 20%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 0),
    linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05) 0);
  background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 0 0, 10px 10px;
  z-index: -1;
  opacity: 0.3;
}

/* 响应式容器 */
.TopNewsCont, .NewsMenu, .MainContainer1, .MainContainer2, .MainContainer3 {
  max-width: 1600px;
  margin: 0 auto 30px;
  width: 95%;
}

/* 顶部新闻容器 - 增强3D效果 */
.TopNewsCont {
  height: auto;
  min-height: 100px;
  margin-top:60px;
  overflow: visible;
  margin-bottom: 35px;
  background: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  padding: 20px;
  backdrop-filter: blur(12px) saturate(180%);
  border: var(--neon-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.TopNewsCont::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-blue));
  border-radius: 19px;
  z-index: -1;
  opacity: 0.7;
  filter: blur(10px);
  animation: border-glow 3s ease-in-out infinite alternate;
}

@keyframes border-glow {
  0% { opacity: 0.4; }
  100% { opacity: 0.8; }
}

.TopNewsCont:hover {
  box-shadow: 0 15px 50px rgba(0, 162, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-5px) rotateX(2deg);
}

.TopNewsCont .listpic {
  width: 100%;
  height: auto;
  overflow: visible;
  float: none;
  display: flex;
  align-items: center;
  position: relative;
}

.TopNewsCont .listpic .img {
  border: none;
  padding: 0;
  float: none;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 12px;
  transform: perspective(800px) rotateY(-8deg) translateZ(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.TopNewsCont .listpic .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(189, 0, 255, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.TopNewsCont .listpic .img:hover {
  transform: perspective(800px) rotateY(0deg) translateZ(30px) scale(1.05);
  box-shadow: var(--glow-effect), 0 15px 40px rgba(0, 0, 0, 0.25);
}

.TopNewsCont .listpic .img:hover::after {
  opacity: 1;
}

.TopNewsCont .listpic .img a {
  display: block;
  width: 150px;
  height: 90px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.TopNewsCont .listpic .img a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  z-index: 2;
}

.TopNewsCont .listpic .img a:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.TopNewsCont .listpic .img a:hover {
  box-shadow: var(--glow-effect);
}

.TopNewsCont .listpic .word {
  width: calc(100% - 170px);
  float: none;
  padding-left: 0;
  height: auto;
  overflow: visible;
  line-height: 1.6;
}

.TopNewsCont .listpic .word .t {
  height: auto;
  overflow: visible;
  margin-bottom: 10px;
}

.TopNewsCont .listpic .word .t a {
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 162, 255, 0.3);
  position: relative;
  display: inline-block;
}

.TopNewsCont .listpic .word .t a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-gradient);
  transition: width 0.4s ease;
}

.TopNewsCont .listpic .word .t a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 12px rgba(126, 66, 255, 0.5);
}

.TopNewsCont .listpic .word .t a:hover::after {
  width: 100%;
}

.TopNewsCont .listpic .word .c {
  height: auto;
  overflow: visible;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* 资讯导航 - 增强赛博朋克效果 */
.NewsMenu {
  height: auto;
  min-height: 100px;
  overflow: visible;
  background: linear-gradient(135deg, var(--light-bg), rgba(245, 247, 250, 0.9));
  margin-bottom: 35px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  border: var(--neon-border);
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.NewsMenu::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-blue));
  background-size: 400% 400%;
  border-radius: 18px;
  animation: gradientShift 8s ease infinite, pulse 4s infinite alternate;
  opacity: 0.7;
  filter: blur(8px);
}

.NewsMenu::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.NewsMenu dl {
  width: 100%;
  height: auto;
  overflow: visible;
  padding: 15px 0 0;
  float: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  perspective: 1000px;
}

.NewsMenu dl dt, .NewsMenu dl dd {
  width: auto;
  height: auto;
  overflow: visible;
  text-align: center;
  line-height: 1.5;
  float: none;
  margin: 0 12px 15px;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(10px);
}

.NewsMenu dl dt::before, .NewsMenu dl dd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyber-gradient);
  opacity: 0;
  transition: all 0.4s ease;
}

.NewsMenu dl dt::after, .NewsMenu dl dd::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cyber-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.NewsMenu dl dt:hover, .NewsMenu dl dd:hover {
  transform: translateY(-5px) translateZ(20px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), var(--neon-shadow);
  color: white;
}

.NewsMenu dl dt:hover::before, .NewsMenu dl dd:hover::before {
  opacity: 1;
  height: 100%;
}

.NewsMenu dl dt:hover::after, .NewsMenu dl dd:hover::after {
  opacity: 1;
}

.NewsMenu dl dt {
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 三栏布局增强 */
.SideL, .SideC, .SideR {
  width: 100%;
  float: none;
  background: none;
  margin-bottom: 35px;
  perspective: 1000px;
}

@media (min-width: 992px) {
  .SideL, .SideC, .SideR {
    width: 32%;
    float: left;
    margin-right: 2%;
    transition: transform 0.5s ease;
  }

  .SideL:hover, .SideC:hover, .SideR:hover {
    transform: translateY(-5px) rotateY(2deg);
  }

  .SideR {
    margin-right: 0;
    float: right;
  }
}

/* 第一栏增强 */
.MainContainer1 {
  height: auto;
  overflow: visible;
  margin-bottom: 35px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 35px;
  perspective: 1000px;
}

@media (min-width: 992px) {
  .MainContainer1 {
    flex-direction: row;
  }
}

.sidecont1 {
  background: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(180%);
  border: var(--neon-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1;
  transform-style: preserve-3d;
  position: relative;
}

.sidecont1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 4s linear infinite;
  z-index: 2;
}

.sidecont1:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 15px 50px rgba(0, 162, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.sidecont1 .head {
  height: auto;
  min-height: 60px;
  overflow: visible;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 15px 20px;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.sidecont1 .head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.sidecont1 .head .tag {
  float: none;
  padding: 0;
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidecont1 .todaytz {
  height: auto;
  overflow: visible;
  padding: 20px;
  background: none;
}

.sidecont1 .todaytz .listpic {
  height: auto;
  min-height: 110px;
  overflow: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  perspective: 800px;
}

.sidecont1 .todaytz .listpic:hover {
  background: rgba(0, 162, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  transform: translateZ(10px);
}

.sidecont1 .todaytz .listpic .img {
  width: 110px;
  height: 85px;
  overflow: hidden;
  float: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(600px) rotateY(-8deg);
}

.sidecont1 .todaytz .listpic .img:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

.sidecont1 .todaytz .listpic .word {
  float: none;
  width: calc(100% - 125px);
  padding-left: 20px;
  line-height: 1.6;
}

.sidecont1 .todaytz .listpic .word .t {
  height: auto;
  overflow: visible;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidecont1 .todaytz .listpic .word .t a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.sidecont1 .todaytz .listpic .word .t a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
}

.sidecont1 .todaytz .listpic .word .m {
  height: auto;
  overflow: visible;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.sidecont1 .todaytz .list {
  height: auto;
  min-height: 45px;
  line-height: 1.6;
  overflow: visible;
  padding: 12px 0 12px 35px;
  background: none;
  position: relative;
  transition: all 0.4s ease;
  border-left: 3px solid transparent;
}

.sidecont1 .todaytz .list::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.8rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sidecont1 .todaytz .list:hover {
  padding-left: 40px;
  background: rgba(0, 162, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.sidecont1 .todaytz .list:hover::before {
  opacity: 1;
  left: 15px;
  color: var(--secondary-color);
}

.sidecont1 .todaytz .list5 {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 20px;
  padding-top: 20px;
  background: none;
}

.sidecont1 .todaytz .list a {
  font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.sidecont1 .todaytz .list a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

.sidecont1 .focusnews {
  height: auto;
  overflow: visible;
  padding: 25px;
  background: rgba(248, 248, 248, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

/* 幻灯片样式增强 */
.slidescont {
  height: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto 25px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.slidePic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.slidePic li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s ease, opacity 1s ease;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateZ(-100px);
}

.slidePic li.cur {
  display: block;
  opacity: 1;
  transform: translateZ(0);
}

.slideTxt {
  cursor: pointer;
  height: 35px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slideTxt li {
  float: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: translateZ(10px);
}

.slideTxt li a.hidefocus {
  outline: none;
}

.slideTxt li a.hidefocus::-moz-focus-inner {
  border: none;
}

.slideTxt li a:link, .slideTxt li a:visited, .slideTxt li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slideTxt .cur {
  background: var(--primary-color);
  transform: scale(1.3) translateZ(20px);
  box-shadow: 0 0 15px var(--primary-color);
}

.slideTxt .cur a:link, .slideTxt .cur a:visited, .slideTxt .cur a:hover {
  color: white;
  font-weight: 700;
}

.sidecont1 .focusnews .headlines {
  height: auto;
  min-height: 120px;
  overflow: visible;
  margin-top: 25px;
  background: none;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transform-style: preserve-3d;
}

.sidecont1 .focusnews .headlines::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--cyber-gradient);
  border-radius: 5px 0 0 5px;
}

.sidecont1 .focusnews .headlines .t {
  height: auto;
  overflow: visible;
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.sidecont1 .focusnews .headlines .t a {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

.sidecont1 .focusnews .headlines .t a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
}

.sidecont1 .focusnews .headlines .c {
  height: auto;
  overflow: visible;
  line-height: 1.7;
  color: var(--text-secondary);
  text-indent: 0;
  font-size: 1rem;
}

.sidecont1 .hotnews {
  height: auto;
  overflow: visible;
  padding: 20px;
  background: none;
}

.sidecont1 .hotnews .cca {
  padding-top: 0;
}

.sidecont1 .hotnews .cca .listpic {
  height: auto;
  min-height: 110px;
  overflow: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  perspective: 800px;
}

.sidecont1 .hotnews .cca .listpic:hover {
  background: rgba(0, 162, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  transform: translateZ(10px);
}

.sidecont1 .hotnews .cca .listpic .num {
  width: 35px;
  height: 35px;
  padding: 0;
  float: none;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateZ(15px);
}

.sidecont1 .hotnews .cca .listpic .num2 {
  background: linear-gradient(135deg, #7e42ff, #00a2ff);
}

.sidecont1 .hotnews .cca .listpic .img {
  width: 110px;
  height: 85px;
  overflow: hidden;
  float: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(600px) rotateY(-8deg);
}

.sidecont1 .hotnews .cca .listpic .img:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

.sidecont1 .hotnews .cca .listpic .word {
  width: calc(100% - 160px);
  height: auto;
  overflow: visible;
  padding-left: 20px;
  float: none;
  line-height: 1.6;
}

.sidecont1 .hotnews .cca .listpic .word .t {
  height: auto;
  margin-bottom: 8px;
  overflow: visible;
  font-weight: 700;
}

.sidecont1 .hotnews .cca .listpic .word .m {
  height: auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.sidecont1 .hotnews .ccb div {
  height: auto;
  min-height: 45px;
  line-height: 1.6;
  overflow: visible;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  perspective: 800px;
}

.sidecont1 .hotnews .ccb div:hover {
  background: rgba(0, 162, 255, 0.05);
  border-radius: 8px;
  padding-left: 15px;
  transform: translateZ(10px);
}

.sidecont1 .hotnews .ccb div span {
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  float: none;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transform: translateZ(15px);
  transition: all 0.3s ease;
}

.sidecont1 .hotnews .ccb div.list1 span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.sidecont1 .hotnews .ccb div a {
  float: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.sidecont1 .hotnews .ccb div a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

/* 横幅广告增强 */
.MainBanner {
  width: 100%;
  max-width: 1600px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  background: var(--light-bg);
  padding: 20px;
  backdrop-filter: blur(12px) saturate(180%);
  border: var(--neon-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
}

.MainBanner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-blue));
  border-radius: 19px;
  z-index: -1;
  opacity: 0.7;
  filter: blur(10px);
  animation: border-glow 3s ease-in-out infinite alternate;
}

.MainBanner:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 15px 50px rgba(0, 162, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

/* 第二栏增强 */
.MainContainer2 {
  height: auto;
  overflow: visible;
  margin-bottom: 35px;
  border: none;
  background: var(--light-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  border: var(--neon-border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
}

.MainContainer2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 4s linear infinite;
  z-index: 2;
}

.MainContainer2:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 15px 50px rgba(0, 162, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.MainContainer2 .head {
  height: auto;
  min-height: 70px;
  overflow: visible;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: relative;
}

.MainContainer2 .head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.MainContainer2 .head .tag {
  float: none;
  padding: 0;
  background: none;
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.MainContainer2 .head .more {
  float: none;
  padding: 0;
  background: none;
  line-height: 1.5;
}

.MainContainer2 .head .more a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.MainContainer2 .head .more a:hover {
  opacity: 1;
  text-decoration: underline;
}

.MainContainer2 .cont {
  height: auto;
  min-height: 250px;
  overflow: visible;
  position: relative;
  padding: 25px;
}

#showup, #showdown {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

#showup {
  left: 15px;
}

#showdown {
  right: 15px;
}

#showup:hover, #showdown:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--primary-color);
  transform: translateY(-50%) scale(1.15) translateZ(20px);
}

.MainContainer2 .cont .up, .MainContainer2 .cont .down {
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E") no-repeat center;
}

.MainContainer2 .cont .down {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E") no-repeat center;
}

.MainContainer2 .cont .up0, .MainContainer2 .cont .down0 {
  opacity: 0.5;
  cursor: not-allowed;
}

#ShowList {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  perspective: 1000px;
}

#ShowList li {
  width: 180px;
  height: auto;
  overflow: visible;
  float: none;
  background: none;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  perspective: 500px;
  transform-style: preserve-3d;
}

#ShowList li:hover {
  transform: translateY(-10px) rotateY(8deg) translateZ(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

#ShowList li div {
  width: 100%;
  margin: 0;
  overflow: visible;
  text-align: center;
}

#ShowList li div.img {
  height: 150px;
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  transform: translateZ(10px);
}

#ShowList li div.img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 162, 255, 0.15), rgba(126, 66, 255, 0.15));
  opacity: 0;
  transition: all 0.4s ease;
}

#ShowList li:hover div.img::after {
  opacity: 1;
}

#ShowList li div.t {
  height: auto;
  min-height: 60px;
  padding: 15px;
  background: white;
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateZ(5px);
}

#ShowList li div.t a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

#ShowList li div.t a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* 第三栏增强 */
.MainContainer3 {
  height: auto;
  overflow: visible;
  margin-bottom: 35px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 35px;
  perspective: 1000px;
}

@media (min-width: 992px) {
  .MainContainer3 {
    flex-direction: row;
  }
}

.sidecont1 .Holiday {
  height: auto;
  overflow: visible;
  padding: 0;
  background: none;
}

.sidecont1 .head1 {
  height: auto;
  min-height: 60px;
  overflow: visible;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 0;
  display: flex;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.sidecont1 .head1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.sidecont1 .head1 div {
  float: none;
  height: auto;
  min-height: 60px;
  padding: 0 25px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: white;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.sidecont1 .head1 div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: white;
  transition: all 0.4s ease;
}

.sidecont1 .head1 div:hover::after, .sidecont1 .head1 div.choose::after {
  width: 80%;
}

.sidecont1 .head1 div.choose {
  background: rgba(255, 255, 255, 0.2);
  transform: translateZ(10px);
}

.sidecont1 .head1 div span {
  float: none;
  padding: 0;
  line-height: 1.5;
  font-size: 1.1rem;
}

.sidecont1 .head1 div.choose span {
  background: none;
}

.sidecont1 .couponcont {
  height: auto;
  overflow: visible;
  padding: 25px;
  background: rgba(248, 248, 248, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
  border-radius: 0 0 12px 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidecont1 .community {
  height: auto;
  overflow: visible;
  padding: 20px;
  background: none;
}

.sidecont1 .lista, .sidecont1 .cc1 {
  height: auto;
  overflow: visible;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 800px;
  transform-style: preserve-3d;
}

.sidecont1 .lista:hover, .sidecont1 .cc1:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateY(-5px) translateZ(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sidecont1 .lista .t {
  height: auto;
  overflow: visible;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sidecont1 .lista .img {
  float: none;
  border: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(600px) rotateY(-8deg);
}

.sidecont1 .lista .img:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

.sidecont1 .lista .c {
  width: 100%;
  float: none;
  padding: 20px 0 0;
  height: auto;
  line-height: 1.7;
  overflow: visible;
  color: var(--text-secondary);
  text-indent: 0;
  font-size: 1rem;
}

.sidecont1 .lista .img a {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.sidecont1 .lista .t a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidecont1 .lista .t a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
}

.sidecont1 .listb {
  height: auto;
  min-height: 45px;
  overflow: visible;
  line-height: 1.6;
  padding: 12px 0 12px 40px;
  background: none;
  position: relative;
  transition: all 0.4s ease;
  border-radius: 8px;
  perspective: 800px;
}

.sidecont1 .listb::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sidecont1 .listb:hover {
  background: rgba(0, 162, 255, 0.05);
  padding-left: 45px;
  transform: translateZ(10px);
}

.sidecont1 .listb:hover::before {
  opacity: 1;
  left: 20px;
  color: var(--secondary-color);
}

.sidecont1 .listb a {
  font-size: 1.05rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidecont1 .listb a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

.sidecont1 .listb a.f {
  color: var(--primary-color);
  padding-right: 8px;
  font-weight: 700;
}

.sidecont1 .listc {
  width: 100%;
  height: auto;
  overflow: visible;
  float: none;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 600px;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .sidecont1 .listc {
    width: calc(50% - 15px);
    float: left;
    margin-right: 30px;
  }

  .sidecont1 .listc:nth-child(2n) {
    margin-right: 0;
  }
}

.sidecont1 .listc:hover {
  transform: translateY(-8px) rotateY(5deg) translateZ(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

.sidecont1 .listc div {
  width: 100%;
  margin: 0;
  text-align: center;
}

.sidecont1 .listc div.img {
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateZ(10px);
}

.sidecont1 .listc div.img a {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.sidecont1 .listc div.img a:hover {
  transform: scale(1.08);
}

.sidecont1 .listc div.t {
  height: auto;
  min-height: 60px;
  line-height: 1.6;
  padding: 15px 0 0;
  overflow: visible;
}

.sidecont1 .listc div.t a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.sidecont1 .listc div.t a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.sidecont1 .listd {
  height: auto;
  min-height: 45px;
  overflow: visible;
  line-height: 1.6;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: all 0.4s ease;
  perspective: 800px;
}

.sidecont1 .listd:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateX(8px) translateZ(10px);
}

.sidecont1 .listd span {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  float: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  font-size: 0.9rem;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateZ(15px);
}

.sidecont1 .listd a {
  float: none;
  font-size: 1.05rem;
  padding-left: 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.sidecont1 .listd a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

.sidecont1 .listd em {
  float: none;
  font-style: normal;
  color: var(--text-secondary);
  padding-right: 0;
  font-size: 0.95rem;
}

.bottomdiv {
  clear: both;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 35px auto;
  width: 95%;
  max-width: 1600px;
}

/* 增强的响应式设计 */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .SideL, .SideC, .SideR {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  .MainContainer1, .MainContainer3 {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .TopNewsCont .listpic {
    flex-direction: column;
  }

  .TopNewsCont .listpic .img {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .TopNewsCont .listpic .img a {
    width: 100%;
    height: 180px;
  }

  .TopNewsCont .listpic .word {
    width: 100%;
  }

  .NewsMenu dl dt, .NewsMenu dl dd {
    margin: 0 8px 12px;
    padding: 8px 16px;
  }

  .sidecont1 .todaytz .listpic {
    flex-direction: column;
  }

  .sidecont1 .todaytz .listpic .img {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .sidecont1 .todaytz .listpic .img a {
    width: 100%;
    height: 150px;
  }

  .sidecont1 .todaytz .listpic .word {
    width: 100%;
    padding-left: 0;
  }

  .sidecont1 .hotnews .cca .listpic {
    flex-direction: column;
  }

  .sidecont1 .hotnews .cca .listpic .num {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .sidecont1 .hotnews .cca .listpic .img {
    width: 100%;
    margin-bottom: 20px;
  }

  .sidecont1 .hotnews .cca .listpic .img a {
    width: 100%;
    height: 150px;
  }

  .sidecont1 .hotnews .cca .listpic .word {
    width: 100%;
    padding-left: 0;
  }

  #ShowList li {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  #ShowList li {
    width: 100%;
  }

  .sidecont1 .head1 {
    flex-direction: column;
  }

  .sidecont1 .head1 div {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sidecont1 .head1 div:last-child {
    border-bottom: none;
  }

  .sidecont1 .listc {
    width: 100%;
    margin-right: 0;
  }
}

/* 增强的动画效果 */
@keyframes float {
  0% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(2deg); }
  100% { transform: translateY(0px) rotateX(0deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 162, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 162, 255, 0); }
}

@keyframes hologram {
  0% { opacity: 0.7; transform: translateY(0) skew(0deg, 0deg); }
  25% { opacity: 0.8; transform: translateY(-2px) skew(1deg, -1deg); }
  50% { opacity: 0.9; transform: translateY(0) skew(0deg, 0deg); }
  75% { opacity: 0.8; transform: translateY(2px) skew(-1deg, 1deg); }
  100% { opacity: 0.7; transform: translateY(0) skew(0deg, 0deg); }
}

/* 添加微妙的全局动画 */
.TopNewsCont, .NewsMenu, .sidecont1, .MainContainer2, .MainBanner {
  animation: float 8s ease-in-out infinite, hologram 12s ease-in-out infinite;
}

.sidecont1 .todaytz .list:hover,
.sidecont1 .hotnews .ccb div:hover,
.sidecont1 .listb:hover,
.sidecont1 .listd:hover {
  animation: pulse 2s infinite;
}

/* 增强的滚动条美化 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(245, 247, 250, 0.5);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--cyber-gradient);
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
}

/* 增强的选择文本样式 */
::selection {
  background: var(--primary-color);
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
  text-shadow: none;
}

/* 增强的焦点样式 */
a:focus, button:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
  box-shadow: 0 0 15px var(--accent-color);
}

/* 减少运动偏好 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 添加自定义光标效果 */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="%2300a2ff" opacity="0.7"/></svg>') 12 12, auto;
}

a, button, .NewsMenu dl dt, .NewsMenu dl dd {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%2300a2ff" opacity="0.5"/><circle cx="12" cy="12" r="4" fill="%2300a2ff"/></svg>') 12 12, pointer;
}

/* 添加加载动画 */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

body.loading::after {
  opacity: 1;
}

/* 添加数字粒子背景效果 */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  color: rgba(0, 162, 255, 0.3);
  font-size: 12px;
  animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}