/* 科技未来风格CSS重构 - 数字孪生城市主题增强版 */

:root {
  --primary-color: #00a2ff;
  --secondary-color: #7e42ff;
  --accent-color: #00f0ff;
  --dark-bg: #0a1126;
  --light-bg: rgba(255, 255, 255, 0.92);
  --card-bg: rgba(255, 255, 255, 0.85);
  --text-primary: #0a1126;
  --text-secondary: #4a5568;
  --glow-effect: 0 0 10px var(--primary-color), 0 0 20px rgba(0, 242, 255, 0.5);
  --neon-border: 1px solid rgba(0, 242, 255, 0.5);
  --gradient-bg: linear-gradient(135deg, #00a2ff 0%, #7e42ff 100%);
  --card-shadow: 0 10px 30px rgba(0, 162, 255, 0.15);
  --hover-effect: 0 15px 35px rgba(0, 162, 255, 0.25);
}

/* 头部标签样式 */
.head .tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.head .tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--gradient-bg);
}

/* ZX主内容容器 */
.ZXmaincont {
  margin: 1.5rem auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  perspective: 1000px;
}

.ZXmaincont .SideL {
  width: 34%;
  float: none;
  flex: 1 1 340px;
}

.ZXmaincont .SideC {
  width: 38%;
  float: none;
  flex: 1 1 380px;
  padding-left: 0;
  padding: 0 1rem;
}

.ZXmaincont .SideR {
  width: 24%;
  float: none;
  flex: 1 1 240px;
}

.ZXmaincont .MainL {
  width: 73%;
  float: none;
  flex: 1 1 730px;
}

.ZXmaincont1 {
  height: auto;
  min-height: 390px;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ZXmaincont1 .SideL {
  border: none;
  width: 100%;
  height: auto;
  overflow: visible;
  flex: 1 1 338px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.ZXmaincont1 .SideL:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: var(--hover-effect);
}

.SlideCont {
  height: auto;
  min-height: 270px;
  padding-top: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

/* 热点资讯样式 */
.HotZXs {
  clear: both;
  width: 100%;
  margin: 1.5rem auto;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1rem;
  transition: all 0.3s ease;
}

.HotZXs:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.HotZXs .head {
  height: auto;
  overflow: visible;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  margin-bottom: 1rem;
}

.HotZXs .head .tag {
  float: none;
  padding: 0;
  line-height: 1.5;
  background: transparent;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.HotZXs .head .more {
  float: none;
  padding: 0;
  background: transparent;
  line-height: 1.5;
}

.HotZXs .head .more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.HotZXs .head .more a::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.HotZXs .head .more a:hover {
  color: var(--secondary-color);
}

.HotZXs .head .more a:hover::after {
  transform: translateX(3px);
}

.HotZXs .cont {
  height: auto;
  overflow: visible;
}

.HotZXs .cont .list {
  height: auto;
  width: 100%;
  line-height: 2;
  overflow: hidden;
  float: none;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.HotZXs .cont .list:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateX(5px);
}

.HotZXs .cont .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--glow-effect);
}

.HotZXs .cont .list a {
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.HotZXs .cont .list a:hover {
  color: var(--primary-color);
}

/* 中心资讯样式 */
.CenterZX {
  clear: both;
  position: relative;
  padding-top: 0;
  margin: 1.5rem 0;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.CenterZX:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.CenterZX .head {
  height: auto;
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  background: transparent;
  width: 100%;
  padding: 1.5rem 1.5rem 0;
}

.CenterZX .head .tag {
  display: block;
  color: var(--primary-color);
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  width: 100%;
}

.CenterZX .cont {
  border: none;
  height: auto;
  overflow: visible;
  padding: 1rem 1.5rem 1.5rem;
}

.CenterZX .cont .cont1 {
  width: 100%;
  height: auto;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  padding-bottom: 1.5rem;
}

.CenterZX .cont .cont1 dl {
  height: auto;
  overflow: visible;
}

.CenterZX .cont .cont1 dl dt {
  height: auto;
  text-align: left;
  line-height: 1.5;
  overflow: visible;
  margin-bottom: 0.5rem;
}

.CenterZX .cont .cont1 dl dt a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.CenterZX .cont .cont1 dl dt a:hover {
  color: var(--secondary-color);
}

.CenterZX .cont .cont1 dl dd {
  height: auto;
  overflow: visible;
  line-height: 1.6;
  text-indent: 0;
  color: var(--text-secondary);
}

.CenterZX .cont .cont2 {
  width: 100%;
  height: auto;
  margin: 0;
  overflow: visible;
}

.CenterZX .cont .cont2 .list {
  height: auto;
  line-height: 2;
  overflow: hidden;
  padding-left: 1rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.CenterZX .cont .cont2 .list:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateX(5px);
}

.CenterZX .cont .cont2 .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--glow-effect);
}

.CenterZX .cont .cont2 .list a {
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.CenterZX .cont .cont2 .list a:hover {
  color: var(--primary-color);
}

/* 文章资讯内容样式 */
.AtcZxCont {
  height: auto;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.AtcZxCont dl {
  height: auto;
  overflow: visible;
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 200px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1rem;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.AtcZxCont dl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  opacity: 0.1;
  z-index: -1;
}

.AtcZxCont dl:hover {
  transform: translateY(-5px) rotateY(5deg);
  box-shadow: var(--hover-effect);
}

.AtcZxCont dl dt, .AtcZxCont dl dd {
  width: 100%;
  height: auto;
  background: transparent !important;
  float: none;
}

.AtcZxCont dl a {
  display: block;
  padding: 0;
  line-height: 1.5;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.AtcZxCont dl a:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05);
}

/* 侧边栏内容样式 */
.sidecont {
  border: none;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.sidecont:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.sidecont .head {
  height: auto;
  overflow: visible;
  line-height: 1.5;
  background: transparent;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidecont .head .tag {
  float: none;
  padding-left: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.sidecont .head .more {
  float: none;
  padding-right: 0;
  background: transparent;
}

.sidecont .head .more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.sidecont .head .more a::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.sidecont .head .more a:hover {
  color: var(--secondary-color);
}

.sidecont .head .more a:hover::after {
  transform: translateX(3px);
}

.Hotgz .cont {
  padding: 1rem;
  height: auto;
  overflow: visible;
}

.Hotgz .cont .list {
  height: auto;
  line-height: 2;
  overflow: hidden;
  padding-left: 1rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.Hotgz .cont .list:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateX(5px);
}

.Hotgz .cont .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--glow-effect);
}

.Hotgz .cont .list a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.Hotgz .cont .list a:hover {
  color: var(--primary-color);
}

.RightAd {
  width: 100%;
  height: auto;
  min-height: 140px;
  overflow: hidden;
  text-align: center;
  margin-top: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.RightAd:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

/* ZX主内容2样式 */
.ZXmaincont2 {
  height: auto;
  overflow: visible;
  margin: 2rem 0;
}

.NewestZb {
  position: relative;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.NewestZb:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.NewestZb .head .tag, .ZXmaincont3 .head .tag {
  height: auto;
  background: transparent;
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  width: 100%;
}

.NewestZb .head .tag {
  top: auto !important;
}

.NewestZb .head .tag span, .ZXmaincont3 .head .tag span {
  display: inline;
  float: none;
  height: auto;
  padding-right: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.NewestZb .cont {
  padding: 0;
  height: auto;
  overflow: visible;
}

.NewestZb .cont ul {
  height: auto;
  line-height: 2.5;
  overflow: hidden;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 162, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.NewestZb .cont ul:hover {
  background: rgba(0, 162, 255, 0.05);
}

.NewestZb .cont ul:last-child {
  border-bottom: none;
}

.NewestZb .cont ul a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.NewestZb .cont ul a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.NewestZb .cont ul.list1, .NewestZb .cont ul.list3, .NewestZb .cont ul.list5, .NewestZb .cont ul.list7, .NewestZb .cont ul.list9 {
  background: rgba(0, 162, 255, 0.03);
}

.NewestZb .cont ul li {
  float: none;
  flex: 1 1 auto;
  padding: 0 0.5rem;
}

.NewestZb .cont ul li.li0 {
  width: auto;
  flex: 0 0 100px;
  font-weight: 600;
  color: var(--primary-color);
}

.NewestZb .cont ul li.li1 {
  width: auto;
  flex: 1 1 250px;
  padding: 0 0.5rem;
}

.NewestZb .cont ul li.li2 {
  width: auto;
  flex: 0 0 80px;
  text-align: center;
}

.NewestZb .cont ul li.li3 {
  width: auto;
  flex: 1 1 150px;
  padding: 0 0.5rem;
}

.NewestZb .cont ul li.li4 {
  width: auto;
  flex: 0 0 80px;
  float: none;
  text-align: right;
  color: var(--accent-color);
  font-weight: 600;
}

.NewestZs .cont {
  padding: 1rem 0 0 0;
  height: auto;
  overflow: visible;
}

.NewestZs .cont .listpic {
  width: 100%;
  height: auto;
  overflow: visible;
  float: none;
  margin-bottom: 1.5rem;
  background: var(--light-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1rem;
  transition: all 0.3s ease;
}

.NewestZs .cont .listpic:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.NewestZs .cont .listpic div {
  width: 100%;
  margin: 0;
}

.NewestZs .cont .listpic div.img {
  border: 1px solid rgba(0, 162, 255, 0.2);
  padding: 0.5rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 0.75rem;
}

.NewestZs .cont .listpic div.img span {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
}

.NewestZs .cont .listpic div.img span a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-left: 0;
  background: var(--gradient-bg);
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.NewestZs .cont .listpic div.t {
  text-align: center;
  padding: 0;
  height: auto;
  line-height: 1.5;
  overflow: visible;
  font-weight: 600;
  color: var(--primary-color);
}

.NewestZs .cont .listpic div.t a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.NewestZs .cont .listpic div.t a:hover {
  color: var(--secondary-color);
}

/* ZX主内容3样式 */
.ZXmaincont3 {
  clear: both;
  margin-top: 2rem;
  height: auto;
  position: relative;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  overflow: hidden;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ZXmaincont3:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.ZXmaincont3 .cont {
  padding: 1rem 0 0 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ZXmaincont3 .cont .listpic {
  width: 100%;
  height: auto;
  padding-top: 0;
  overflow: visible;
  float: none;
  background: transparent;
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 180px;
  background: var(--light-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1rem;
  transition: all 0.3s ease;
}

.ZXmaincont3 .cont .listpic:hover {
  transform: translateY(-5px) rotateY(5deg);
  box-shadow: var(--hover-effect);
}

.ZXmaincont3 .cont .listpic .img {
  width: 100%;
  height: 120px;
  text-align: center;
  margin: 0 auto 0.75rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.ZXmaincont3 .cont .listpic .t {
  width: 100%;
  padding: 0;
  line-height: 1.5;
  height: auto;
  overflow: visible;
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}

.ZXmaincont3 .cont .listpic .t a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ZXmaincont3 .cont .listpic .t a:hover {
  color: var(--secondary-color);
}

.MainBanner {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 2rem;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.MainBanner:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

/* ZX主内容4样式 */
.ZXmaincont4 {
  height: auto;
  margin-top: 2rem;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.DisgnEr {
  width: 100%;
  height: auto;
  float: none;
  background: transparent;
  flex: 1 1 410px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.DisgnEr:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.DisgnEr .head {
  height: auto;
  padding-right: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.DisgnEr .head .tag {
  float: none;
  padding: 0;
  line-height: 1.5;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.DisgnEr .head .more {
  float: none;
  padding: 0;
  background: transparent;
  line-height: 1.5;
}

.DisgnEr .head .more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.DisgnEr .head .more a::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.DisgnEr .head .more a:hover {
  color: var(--secondary-color);
}

.DisgnEr .head .more a:hover::after {
  transform: translateX(3px);
}

.DisgnEr .cont {
  width: 100%;
  height: auto;
  overflow: visible;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.DisgnEr .cont dl {
  width: 100%;
  height: auto;
  overflow: visible;
  float: none;
  padding-left: 0;
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 180px;
  background: var(--light-bg);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.DisgnEr .cont dl:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.DisgnEr .cont dl dt {
  float: none;
  border: 1px solid rgba(0, 162, 255, 0.2);
  padding: 0.25rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background: white;
}

.DisgnEr .cont dl dt span {
  display: block;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 4px;
}

.DisgnEr .cont dl dt span a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-left: 0;
  background: var(--gradient-bg);
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.DisgnEr .cont dl dd {
  width: 100%;
  float: none;
  padding-left: 0;
}

.DisgnEr .cont dl dd div {
  height: auto;
  line-height: 1.5;
  overflow: visible;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.DisgnEr .cont dl dd div a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.DisgnEr .cont dl dd div a:hover {
  color: var(--secondary-color);
}

.DisgnEr .cont dl dd div span {
  font-weight: normal;
  color: var(--text-secondary);
  display: block;
  font-size: 0.9rem;
}

.ZxSchool {
  width: 100%;
  height: auto;
  float: none;
  flex: 1 1 560px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ZxSchool:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.ZxSchool .head {
  height: auto;
  background: transparent;
  padding-right: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ZxSchool .head .tag {
  float: none;
  padding: 0;
  line-height: 1.5;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  background: transparent;
}

.ZxSchool .head .more {
  float: none;
  padding: 0;
  background: transparent;
  line-height: 1.5;
}

.ZxSchool .head .more a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.ZxSchool .head .more a::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.ZxSchool .head .more a:hover {
  color: var(--secondary-color);
}

.ZxSchool .head .more a:hover::after {
  transform: translateX(3px);
}

.ZxSchool .cont {
  border: none;
  border-top: 0;
  padding: 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ZxSchool .cont dl {
  width: 100%;
  height: auto;
  padding-left: 0;
  overflow: visible;
  float: none;
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 160px;
  background: var(--light-bg);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.ZxSchool .cont dl:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ZxSchool .cont dl dt {
  height: auto;
  line-height: 1.5;
  overflow: visible;
  padding-left: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: transparent !important;
  text-align: center;
}

.ZxSchool .cont dl dd .list {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  padding-left: 0.75rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.ZxSchool .cont dl dd .list::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.ZxSchool .cont dl dd .list a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.ZxSchool .cont dl dd .list a:hover {
  color: var(--primary-color);
}

/* ZX主内容5样式 */
.ZXmaincont5 {
  height: auto;
  overflow: visible;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.HotShopTz {
  flex: 1 1 65%;
  min-width: 300px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.HotShopTz:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.HotShopTz .cont {
  padding: 0;
  height: auto;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.HotShopTz .cont .listpic {
  width: 100%;
  height: auto;
  overflow: visible;
  float: none;
  flex: 1 1 calc(25% - 1rem);
  min-width: 140px;
  background: var(--light-bg);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.HotShopTz .cont .listpic:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.HotShopTz .cont .listpic div {
  width: 100%;
  margin: 0;
}

.HotShopTz .cont .listpic div.img {
  border: 1px solid rgba(0, 162, 255, 0.2);
  padding: 0.25rem;
  border-radius: 6px;
  background: white;
  margin-bottom: 0.5rem;
}

.HotShopTz .cont .listpic div.img span {
  display: block;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
}

.HotShopTz .cont .listpic div.img span a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-left: 0;
  background: var(--gradient-bg);
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HotShopTz .cont .listpic div.t {
  padding-top: 0;
  height: auto;
  line-height: 1.4;
  overflow: visible;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.HotShopTz .cont .listpic div.t a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.HotShopTz .cont .listpic div.t a:hover {
  color: var(--secondary-color);
}

.HotShopTz .cont .listpic div.pric {
  height: auto;
  line-height: 1.5;
  overflow: visible;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-align: center;
}

.HotShopTz .cont .listpic div.pric span {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.NewestCoupon {
  flex: 1 1 30%;
  min-width: 250px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.NewestCoupon:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-effect);
}

.NewestCoupon .cont {
  padding: 0;
  height: auto;
  overflow: visible;
}

.NewestCoupon .cont div {
  height: auto;
  line-height: 2;
  overflow: hidden;
  padding-left: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.NewestCoupon .cont div:hover {
  background: rgba(0, 162, 255, 0.05);
  transform: translateX(5px);
}

.NewestCoupon .cont div span {
  display: block;
  float: none;
  width: auto;
  text-align: center;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.NewestCoupon .cont div.list1, .NewestCoupon .cont div.list2, .NewestCoupon .cont div.list3 {
  background: rgba(0, 162, 255, 0.05);
}

.NewestCoupon .cont div a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.NewestCoupon .cont div a:hover {
  color: var(--primary-color);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .ZXmaincont .SideL,
  .ZXmaincont .SideC,
  .ZXmaincont .SideR,
  .ZXmaincont .MainL {
    flex: 1 1 100%;
  }
  
  .ZXmaincont1 .SideL {
    flex: 1 1 100%;
  }
  
  .DisgnEr,
  .ZxSchool {
    flex: 1 1 100%;
  }
  
  .HotShopTz,
  .NewestCoupon {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .ZXmaincont {
    gap: 1rem;
  }
  
  .ZXmaincont1 {
    flex-direction: column;
  }
  
  .AtcZxCont dl {
    flex: 1 1 100%;
  }
  
  .NewestZb .cont ul li.li0,
  .NewestZb .cont ul li.li1,
  .NewestZb .cont ul li.li2,
  .NewestZb .cont ul li.li3,
  .NewestZb .cont ul li.li4 {
    flex: 1 1 100%;
    text-align: left;
    padding: 0;
  }
  
  .ZXmaincont3 .cont .listpic {
    flex: 1 1 100%;
  }
  
  .DisgnEr .cont dl {
    flex: 1 1 100%;
  }
  
  .ZxSchool .cont dl {
    flex: 1 1 100%;
  }
  
  .HotShopTz .cont .listpic {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

/* 动画效果 */
@keyframes glow {
  0% { box-shadow: 0 0 5px var(--primary-color); }
  50% { box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--accent-color); }
  100% { box-shadow: 0 0 5px var(--primary-color); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.glow-animation {
  animation: glow 2s infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* 3D效果增强 */
.perspective-effect {
  transform: perspective(1000px) rotateX(5deg);
  transition: transform 0.5s ease;
}

.perspective-effect:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 162, 255, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* 选择文本样式 */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* 焦点样式 */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #004cff;
    --secondary-color: #5200ff;
    --accent-color: #00c3ff;
    --light-bg: #ffffff;
    --text-primary: #000000;
    --text-secondary: #333333;
  }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 黑暗模式支持 */
@media (prefers-color-scheme: dark) {
  :root {
    --light-bg: rgba(26, 32, 54, 0.92);
    --card-bg: rgba(26, 32, 54, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  body {
    background-color: #0a1126;
  }
}