/* 未来科技风格CSS - 数字孪生城市界面增强版 */

: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));
  --card-shadow: 0 12px 35px rgba(0, 162, 255, 0.18);
  --hover-effect: 0 18px 45px rgba(0, 162, 255, 0.28);
}

.MainContainer{
padding-top:60px;
}


/* 布局样式 - 增强3D全息效果 */
.SideL {
  width: 23%;
  float: left;
  perspective: 1200px;
  transition: all 0.4s ease;
}

.SideC {
  width: 73%;
  float: left;
  padding-left: 2%;
  perspective: 1200px;
  transition: all 0.4s ease;
}

.SideR {
  width: 23%;
  float: right;
  perspective: 1200px;
  transition: all 0.4s ease;
}




.Clear {
  clear: both;
}

.mt10 {
  margin-top: 25px;
}

/* 响应式布局 */
@media (max-width: 1200px) {
  .SideL, .MainR, .SideC, .SideR {
    width: 100%;
    float: none;
    margin-bottom: 25px;
  }
}

/* 分类展示样式 - 未来科技风格 */
.ShowSorts {
  border: none;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 25px;
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
}

.ShowSorts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.ShowSorts:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.ShowSorts .head {
  height: auto;
  min-height: 60px;
  background: var(--cyber-gradient);
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ShowSorts .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.4), 
              transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

.ShowSorts .head .tag {
  text-align: center;
  padding: 0;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.ShowSorts .cont {
  padding: 25px;
}

.ShowSorts .cont dl {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.ShowSorts .cont dl:hover {
  background: rgba(0, 162, 255, 0.08);
  border-radius: 12px;
  padding-left: 15px;
  transform: translateZ(10px);
}

.ShowSorts .cont dl:first-child {
  border-top: none;
}

.ShowSorts .cont dl dt {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  padding: 0 20px 0 60px;
  margin-bottom: 15px;
}

.ShowSorts .cont dl dt a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
}

.ShowSorts .cont dl dt a:hover {
  color: var(--secondary-color);
  text-shadow: var(--neon-shadow);
  transform: translateX(5px);
}

.ShowSorts .cont dl dd {
  line-height: 1.6;
  padding: 0 15px 20px 60px;
  color: var(--text-secondary);
}

.ShowSorts .cont dl dd div {
  height: auto;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.ShowSorts .cont dl dd div:hover {
  transform: translateX(5px);
}

.ShowSorts .cont dl dd a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.ShowSorts .cont dl dd a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.ShowSorts .cont dl dd a:hover {
  color: var(--primary-color);
}

.ShowSorts .cont dl dd a:hover::before {
  width: 100%;
}

/* 图标样式替代 */
.ShowSorts .cont dl::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 35px;
  height: 35px;
  background: var(--cyber-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.ShowSorts .cont dl:hover::before {
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--glow-effect);
}

.ShowSorts .cont dl.dl1::before { content: '1'; }
.ShowSorts .cont dl.dl2::before { content: '2'; }
.ShowSorts .cont dl.dl3::before { content: '3'; }
.ShowSorts .cont dl.dl4::before { content: '4'; }
.ShowSorts .cont dl.dl5::before { content: '5'; }
.ShowSorts .cont dl.dl6::before { content: '6'; }
.ShowSorts .cont dl.dl7::before { content: '7'; }
.ShowSorts .cont dl.dl8::before { content: '8'; }
.ShowSorts .cont dl.dl9::before { content: '9'; }
.ShowSorts .cont dl.dl10::before { content: '10'; }
.ShowSorts .cont dl.dl11::before { content: '11'; }
.ShowSorts .cont dl.dl12::before { content: '12'; }

/* 侧边内容样式 */
.sidecont {
  border: none;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.sidecont::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.sidecont:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.sidecont .head {
  height: auto;
  overflow: hidden;
  background: none;
  margin-bottom: 20px;
  position: relative;
}

.sidecont .head::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyber-gradient);
  border-radius: 2px;
}

.sidecont .head .tag {
  float: none;
  padding: 0;
  background: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.sidecont .coupon {
  padding-top: 20px;
}

.sidecont .coupon div {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.sidecont .coupon div:last-child {
  border-bottom: none;
}

.sidecont .coupon div:hover {
  background: rgba(0, 162, 255, 0.08);
  padding-left: 15px;
  border-radius: 10px;
  transform: translateX(5px);
}

.sidecont .coupon div span {
  display: block;
  width: 35px;
  text-align: center;
  float: none;
  background: var(--cyber-gradient);
  color: white;
  border-radius: 50%;
  margin-right: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.sidecont .coupon div:hover span {
  transform: scale(1.1);
  box-shadow: var(--glow-effect);
}

.sidecont .coupon div.list1 span,
.sidecont .coupon div.list2 span,
.sidecont .coupon div.list3 span {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.sidecont .coupon div a {
  float: none;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.sidecont .coupon div a:hover {
  color: var(--primary-color);
}

.sidecont .coupon div em {
  float: none;
  font-style: normal;
  padding-right: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-left: 12px;
}

.sidecont .coupon div em font {
  color: var(--primary-color);
  font-weight: 700;
}

.sidecont .hyadcont {
  padding-top: 20px;
}

.sidecont .hyadcont .list {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  padding: 12px 0 12px 30px;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidecont .hyadcont .list:last-child {
  border-bottom: none;
}

.sidecont .hyadcont .list::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.sidecont .hyadcont .list:hover {
  padding-left: 35px;
  background: rgba(0, 162, 255, 0.08);
  border-radius: 10px;
}

.sidecont .hyadcont .list:hover::before {
  color: var(--secondary-color);
  left: 12px;
}

.sidecont .hyadcont .img {
  width: 100%;
  overflow: hidden;
  margin: 20px auto;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.sidecont .hyadcont .img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cyber-gradient);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.sidecont .hyadcont .img:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

.sidecont .hyadcont .img:hover::before {
  opacity: 0.1;
}

/* 保持容器样式 */
.HoldCont {
  height: auto;
  min-height: 400px;
  overflow: hidden;
}

/* 幻灯片容器样式 */
.SlideCont {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  perspective: 1200px;
  transition: all 0.5s ease;
}

.SlideCont:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-5px);
}

.slidePic {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.slidePic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
              rgba(0, 162, 255, 0.2) 0%, 
              rgba(126, 66, 255, 0.2) 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}

.SlideCont:hover .slidePic::before {
  opacity: 1;
}

.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) rotateY(5deg);
}

.slidePic li.cur {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  transform: translateZ(0) rotateY(0);
}

.slideTxt {
  cursor: pointer;
  height: 45px;
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slideTxt li {
  float: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateZ(15px);
  position: relative;
}

.slideTxt li::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--cyber-gradient);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.slideTxt li:hover::before {
  opacity: 1;
}

.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);
  font-size: 1.1rem;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.slideTxt li:hover {
  transform: scale(1.15) translateZ(25px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.slideTxt li:hover a {
  color: white;
}

.slideTxt .cur {
  background: var(--primary-color);
  transform: scale(1.25) translateZ(30px);
  box-shadow: var(--glow-effect);
}

.slideTxt .cur a:link, .slideTxt .cur a:visited, .slideTxt .cur a:hover {
  color: white;
  font-weight: 700;
}

/* 最佳公司样式 */
.BestCommany {
  height: auto;
  min-height: 240px;
  border: none;
  padding: 25px;
  overflow: hidden;
  margin-top: 25px;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.BestCommany::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.BestCommany:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.BestCommany .head {
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.BestCommany .head::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyber-gradient);
  border-radius: 2px;
}

.BestCommany .head .tag {
  float: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.BestCommany .head .more {
  float: none;
  line-height: 1.5;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

.BestCommany .head .more:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.BestCommany .cont {
  height: auto;
  padding-top: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.BestCommany .cont .list {
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 1.5;
  float: none;
  padding: 12px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(248, 248, 248, 0.7);
  border-radius: 10px;
  perspective: 600px;
  transform-style: preserve-3d;
}

.BestCommany .cont .list:hover {
  background: rgba(0, 162, 255, 0.1);
  padding-left: 15px;
  border-radius: 10px;
  transform: translateZ(10px);
}

.BestCommany .cont .list::before {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.BestCommany .cont .list:hover::before {
  color: var(--secondary-color);
  transform: scale(1.2);
}

.BestCommany .cont .list a {
  padding-left: 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  font-weight: 600;
}

.BestCommany .cont .list a:hover {
  color: var(--primary-color);
}

/* 动作容器样式 */
.ActionCont {
  height: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.ActionCont div {
  width: 100%;
  height: auto;
  overflow: hidden;
  float: none;
  perspective: 800px;
  transform-style: preserve-3d;
}

.ActionCont div span {
  display: block;
  width: 100%;
  height: auto;
  min-height: 60px;
  overflow: hidden;
  float: none;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ActionCont div span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
              rgba(255, 255, 255, 0.2) 0%, 
              transparent 100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.ActionCont div span:hover {
  transform: translateY(-8px) rotateX(10deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.ActionCont div span:hover::before {
  opacity: 1;
}

.ActionCont a:link, .ActionCont a:visited, .ActionCont a:hover {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.ActionCont div.but1 span { background: var(--cyber-gradient); }
.ActionCont div.but2 span { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); }
.ActionCont div.but3 span { background: linear-gradient(135deg, #00b4db, #0083b0); }
.ActionCont div.but4 span { background: linear-gradient(135deg, #ff6600, #ff3300); }

/* 新公司样式 */
.NewCommany {
  height: auto;
  min-height: 340px;
  overflow: hidden;
  border: none;
  padding: 25px;
  overflow: hidden;
  margin-top: 25px;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.NewCommany::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.NewCommany:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.NewCommany .head {
  height: auto;
  overflow: hidden;
  background: none;
  margin-bottom: 20px;
  position: relative;
}

.NewCommany .head::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyber-gradient);
  border-radius: 2px;
}

.NewCommany .head .tag {
  float: none;
  padding: 0;
  background: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.NewCommany .cont .list {
  height: auto;
  overflow: hidden;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  perspective: 600px;
  transform-style: preserve-3d;
}

.NewCommany .cont .list:last-child {
  border-bottom: none;
}

.NewCommany .cont .list:hover {
  background: rgba(0, 162, 255, 0.08);
  padding-left: 15px;
  border-radius: 10px;
  transform: translateZ(10px);
}

.NewCommany .cont .list span {
  display: block;
  width: 35px;
  float: none;
  text-align: center;
  color: white;
  background: var(--cyber-gradient);
  border-radius: 50%;
  margin-right: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.NewCommany .cont .list:hover span {
  transform: scale(1.1);
  box-shadow: var(--glow-effect);
}

/* 变化展示样式 */
.ChangeShow {
  height: auto;
  min-height: 450px;
  overflow: hidden;
  margin-top: 25px;
  border: none;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.ChangeShow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.ChangeShow:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.ChangeShow .head {
  height: auto;
  width: 100%;
  overflow: hidden;
  border: none;
  margin: 0 auto 25px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ChangeShow .head div {
  width: auto;
  height: auto;
  border: none;
  overflow: hidden;
  text-align: center;
  float: none;
  cursor: pointer;
  padding: 12px 24px;
  background: rgba(248, 248, 248, 0.7);
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
}

.ChangeShow .head div:hover {
  background: rgba(0, 162, 255, 0.1);
  transform: translateY(-3px);
}

.ChangeShow .head div.choose {
  background: var(--cyber-gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.ChangeShow .head .more {
  float: none;
  margin-left: auto;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 600;
}

.ChangeShow .head .more:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.ChangeShow .cont {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.ChangeShow .cont .listpic {
  width: 100%;
  height: auto;
  overflow: hidden;
  float: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 700px;
  transform-style: preserve-3d;
}

.ChangeShow .cont .listpic:hover {
  transform: translateY(-8px) rotateY(8deg) translateZ(15px);
}

.ChangeShow .cont .listpic div {
  width: 100%;
  margin: auto;
  text-align: center;
}

.ChangeShow .cont .listpic div.img {
  border: none;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.ChangeShow .cont .listpic:hover div.img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ChangeShow .cont .listpic div.img a {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.5s ease;
  position: relative;
}

.ChangeShow .cont .listpic div.img a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cyber-gradient);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.ChangeShow .cont .listpic div.img a:hover {
  transform: scale(1.08);
}

.ChangeShow .cont .listpic div.img a:hover::before {
  opacity: 0.2;
}

.ChangeShow .cont .listpic div.t {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  padding-top: 18px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* 点评或新闻样式 */
.dianpingornews {
  margin-top: 25px;
  height: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.dianpingornews .dianpingcont {
  width: 100%;
  height: auto;
  overflow: hidden;
  float: none;
}

.dianpingornews .newscont {
  width: 100%;
  height: auto;
  overflow: hidden;
  float: none;
}

.dianpingornews .sidecont {
  padding: 25px;
}

.dianpingornews .sidecont .cont {
  height: auto;
  overflow: hidden;
  padding-top: 20px;
}

.dianpingornews .sidecont .cont .listdianping {
  height: auto;
  min-height: 120px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.dianpingornews .sidecont .cont .listdianping:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dianpingornews .sidecont .cont .listdianping:hover {
  background: rgba(0, 162, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin: 0 -10px 20px -10px;
}


.dianpingornews .sidecont .cont .listdianping .t {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  color: var(--text-secondary);
  padding: 0 0 12px 0;
  background: none;
  display: flex;
  align-items: center;
}

.dianpingornews .sidecont .cont .listdianping .t::before {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1rem;
}

.dianpingornews .sidecont .cont .listdianping .t a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dianpingornews .sidecont .cont .listdianping .t a.b {
  font-weight: 700;
}

.dianpingornews .sidecont .cont .listdianping .t a:hover {
  color: var(--secondary-color);
}

.dianpingornews .sidecont .cont .listdianping .dp {
  height: auto;
  line-height: 1.5;
  padding: 0;
  overflow: hidden;
  margin-bottom: 12px;
  font-weight: 600;
}

.dianpingornews .sidecont .cont .listdianping .c {
  height: auto;
  line-height: 1.5;
  padding: 0;
  color: var(--text-secondary);
  overflow: hidden;
}

.dianpingornews .sidecont .cont .lista {
  height: auto;
  min-height: 140px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  transition: all 0.4s ease;
}

.dianpingornews .sidecont .cont .lista:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.dianpingornews .sidecont .cont .lista:hover {
  background: rgba(0, 162, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 0 -10px 20px -10px;
}

.dianpingornews .sidecont .cont .lista .img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  text-align: center;
  background: #fafafa;
  float: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.dianpingornews .sidecont .cont .lista:hover .img {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.dianpingornews .sidecont .cont .lista .word {
  width: auto;
  float: none;
  padding-left: 0;
  flex: 1;
}

.dianpingornews .sidecont .cont .lista .word .t {
  height: auto;
  overflow: hidden;
  line-height: 1.5;
  margin-bottom: 12px;
}

.dianpingornews .sidecont .cont .lista .word .t a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dianpingornews .sidecont .cont .lista .word .t a:hover {
  color: var(--secondary-color);
}

.dianpingornews .sidecont .cont .lista .word .c {
  height: auto;
  overflow: hidden;
  line-height: 1.6;
  color: var(--text-secondary);
  text-indent: 0;
}

.dianpingornews .sidecont .cont .listb {
  height: auto;
  line-height: 1.5;
  overflow: hidden;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.dianpingornews .sidecont .cont .listb:last-child {
  border-bottom: none;
}

.dianpingornews .sidecont .cont .listb:hover {
  background: rgba(0, 162, 255, 0.05);
  padding-left: 12px;
  border-radius: 8px;
}

/* 商店容器样式 */
.ShopCont {
  border: none;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  margin-top: 25px;
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
}

.ShopCont::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
              rgba(0, 162, 255, 0.05) 0%, 
              rgba(126, 66, 255, 0.05) 100%);
  z-index: -1;
  border-radius: 20px;
}

.ShopCont:hover {
  box-shadow: var(--hover-effect);
  transform: translateY(-8px) rotateX(5deg);
}

.ShopCont .head {
  height: auto;
  min-height: 60px;
  overflow: hidden;
  background: var(--cyber-gradient);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.ShopCont .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.4), 
              transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

.ShopCont .head .tag {
  float: none;
  padding: 0;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.ShopCont .head .more {
  width: auto;
  height: auto;
  float: none;
  background: none;
  color: white;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.ShopCont .head .more:hover {
  opacity: 0.8;
  transform: translateX(5px);
}

.ShopCont .cont {
  height: auto;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  padding: 25px;
}

#showup, #showdown {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

#showup:hover, #showdown:hover {
  background: var(--primary-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(-50%) scale(1.1);
}

#showup:hover::before, #showdown:hover::before {
  border-color: white;
}

#showup {
  left: 15px;
}

#showdown {
  right: 15px;
}

#showup::before {
  content: '';
  width: 16px;
  height: 16px;
  border-left: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.4s ease;
}

#showdown::before {
  content: '';
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  transform: rotate(-45deg);
  transition: all 0.4s ease;
}

#showup a, #showdown a {
  display: block;
  width: 100%;
  height: 100%;
}

.ShopCont .cont ul {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.ShopCont .cont ul li {
  width: 100%;
  height: auto;
  overflow: hidden;
  float: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 700px;
  transform-style: preserve-3d;
}

.ShopCont .cont ul li:hover {
  transform: translateY(-8px) rotateY(8deg) translateZ(15px);
}

.ShopCont .cont ul li div {
  width: 100%;
  margin: auto;
  text-align: center;
}

.ShopCont .cont ul li div.img {
  border: none;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.ShopCont .cont ul li:hover div.img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ShopCont .cont ul li div.img a {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.5s ease;
  position: relative;
}

.ShopCont .cont ul li div.img a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cyber-gradient);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.ShopCont .cont ul li div.img a:hover {
  transform: scale(1.08);
}

.ShopCont .cont ul li div.img a:hover::before {
  opacity: 0.2;
}

.ShopCont .cont ul li div.t {
  height: auto;
  line-height: 1.5;
  padding-top: 18px;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.1rem;
}

/* 动画效果 */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .dianpingornews {
    grid-template-columns: 1fr;
  }
  
  .ShopCont .cont ul {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 992px) {
  .BestCommany .cont {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .ActionCont {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .ChangeShow .cont {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .dianpingornews .sidecont .cont .lista {
    flex-direction: column;
  }
  
  .dianpingornews .sidecont .cont .lista .img {
    width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .ShopCont .cont ul {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .ChangeShow .head {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ChangeShow .head .more {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .ChangeShow .cont {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .ShopCont .cont ul {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 576px) {
  .ChangeShow .cont {
    grid-template-columns: 1fr;
  }
  
  .ShopCont .cont ul {
    grid-template-columns: 1fr;
  }
  
  .slideTxt {
    bottom: 15px;
    right: 15px;
  }
  
  .slideTxt li {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* 黑暗模式支持 */
@media (prefers-color-scheme: dark) {
  :root {
    --light-bg: rgba(26, 32, 54, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --card-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  }
  
  body {
    background-color: var(--dark-bg);
  }
  
  .ShowSorts .cont dl dd a,
  .sidecont .coupon div a,
  .BestCommany .cont .list a,
  .dianpingornews .sidecont .cont .listdianping .t a,
  .dianpingornews .sidecont .cont .lista .word .t a {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .ShowSorts .cont dl:hover,
  .sidecont .coupon div:hover,
  .BestCommany .cont .list:hover,
  .NewCommany .cont .list:hover,
  .dianpingornews .sidecont .cont .listdianping:hover,
  .dianpingornews .sidecont .cont .lista:hover,
  .dianpingornews .sidecont .cont .listb:hover {
    background: rgba(0, 162, 255, 0.1);
  }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}