/* 重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 头部标签样式 - 科技感字体与渐变 */
.head .tag {
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00aeff, #a200ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 主容器1 - 未来科技感面板 */
.maincontainer1 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .maincontainer1 {
        flex-direction: column;
        height: auto;
    }
    
    .maincontainer1 .sidcontL, 
    .maincontainer1 .sidcontC, 
    .maincontainer1 .sidcontR {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }
}

/* 侧边容器通用样式 */
.maincontainer1 .sidcontL, 
.maincontainer1 .sidcontR {
    width: 22%;
    min-height: 140px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(248, 248, 250, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.maincontainer1 .sidcontC {
    width: 54%;
    min-height: 140px;
    overflow: hidden;
    padding: 0 15px;
}

/* 头部导航项 - 3D效果按钮 */
.maincontainer1 .head {
    border: none;
    height: auto;
    width: 100%;
    float: none;
    display: flex;
    justify-content: space-around;
    background: transparent;
}

.maincontainer1 .head div {
    padding: 12px 15px;
    text-align: center;
    height: auto;
    background: linear-gradient(145deg, #f0f0f5, #e0e0ea);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
                -5px -5px 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin: 5px;
    flex-grow: 1;
    color: #3366cc;
    font-weight: 600;
}

.maincontainer1 .head div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.maincontainer1 .head div.choose {
    background: linear-gradient(145deg, #00aeff, #a200ff);
    color: white;
    box-shadow: 0 5px 15px rgba(162, 0, 255, 0.4);
}

/* 内容区域样式 */
.maincontainer1 .cont {
    width: 100%;
    padding: 15px;
    height: auto;
    overflow: hidden;
    line-height: 1.6;
    float: none;
}

.maincontainer1 .cont .list {
    padding-left: 0;
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
}

/* 链接样式 */
.maincontainer1 a:link, 
.maincontainer1 a:visited {
    color: #3366cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.maincontainer1 a:hover {
    color: #a200ff;
    text-shadow: 0 0 8px rgba(162, 0, 255, 0.4);
}

/* 中央区域文字和图片 */
.maincontainer1 .sidcontC .word {
    height: auto;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.maincontainer1 .sidcontC .word .list {
    width: 50%;
    height: auto;
    padding: 8px;
    line-height: 1.4;
    overflow: hidden;
    float: none;
}

@media (max-width: 480px) {
    .maincontainer1 .sidcontC .word .list {
        width: 100%;
    }
}

.maincontainer1 .sidcontC .img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 主容器2 - 未来科技感主内容区 */
.maincontainer2 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 侧边栏通用样式 */
.sideleft, .sidecenter, .sideright {
    height: auto;
    margin-bottom: 20px;
}

.sideleft {
    width: 22%;
}

.sidecenter {
    width: 48%;
    padding: 0 15px;
}

.sideright {
    width: 28%;
}

@media (max-width: 1024px) {
    .sideleft, .sidecenter, .sideright {
        width: 100%;
        float: none;
        padding: 0;
    }
}

/* 分类容器样式 - 未来科技感 */
.sortcont .head {
    height: auto;
    overflow: hidden;
    background: linear-gradient(90deg, #00aeff, #a200ff);
    border-radius: 10px 10px 0 0;
    padding: 15px;
}

.sortcont .head .tag {
    text-align: center;
    line-height: 1.4;
    color: #FFF;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sortcont .cont {
    border: none;
    border-bottom: 0;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sortcont .cont dl {
    position: relative;	
    z-index: 1000;
}

.sortcont .cont dl dt {
    height: auto;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(220, 221, 221, 0.5);
    padding: 15px 15px 15px 55px;
    line-height: 1.5;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(249, 250, 251, 0.8);
}

.sortcont .cont dl dt:hover {
    background: rgba(240, 245, 255, 0.9);
}

.sortcont .cont dl dt a {
    font-size: 1.2rem;
    color: #1E50A2;
    font-weight: 600;
}

#AllSorts1 {
    background: rgba(249, 250, 251, 0.8) url(sortbg1.gif) 15px top no-repeat;
}

.sortcont .cont dl dd {
    display: none;
}

.sortcont .cont dl.ck dt {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 10px rgba(0, 174, 255, 0.2);
}

.sortcont .cont dl.ck dd {
    display: block;
    position: absolute;
    width: auto;
    min-width: 200px;
    border: none;
    border-left: 0;
    top: 0;
    left: 100%;
    padding: 15px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 10px 10px 10px;
    z-index: 1001;
}

.sortcont .cont dl.ck dd div {
    height: auto;
    overflow: hidden;
    padding: 8px 15px;
    background: rgba(0, 174, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.sortcont .cont dl.ck dd div:hover {
    background: rgba(0, 174, 255, 0.2);
    transform: translateX(5px);
}

.sortcont .cont dl.ck dd div a {
    color: #1E50A2;
    font-weight: 500;
}

/* 侧边广告样式 */
.sideleftad1 {
    border: none;
    height: auto;
    margin-top: 20px;
    background: rgba(248, 250, 252, 0.8);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 15px;
}

.sideleftad1 .liatad {
    text-align: center;
    padding: 15px;
}

/* 幻灯片样式 - 3D效果 */
.ShowSlide {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #f0f0f5, #e0e0ea);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    perspective: 1000px;
}

.ShowSlide #bigimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.ShowSlide #bigimg:hover {
    transform: scale(1.03);
}

.ShowSlide .showlist {
    width: 90%;
    height: auto;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    left: 5%;
    bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
}

.ShowSlide .showlist div {
    width: 60px;
    height: 45px;
    padding: 3px;
    text-align: center;
    background: rgba(240, 240, 245, 0.9);
    border-radius: 5px;
    float: none;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ShowSlide .showlist div:hover {
    opacity: 0.9;
    transform: translateY(-5px);
}

.ShowSlide .showlist div.on {
    background: linear-gradient(145deg, #00aeff, #a200ff);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(162, 0, 255, 0.4);
}

/* 热点点评样式 */
.HotDianping {
    border: none;
    height: auto;
    padding: 20px;
    overflow: hidden;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(0, 174, 255, 0.1), rgba(162, 0, 255, 0.1));
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.HotDianping .cont1 {
    height: auto;
    overflow: hidden;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    padding: 15px 0;
}

.HotDianping .cont1 dt {
    height: auto;
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.HotDianping .cont1 dt a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fd0101;
    text-shadow: 0 2px 4px rgba(253, 1, 1, 0.2);
}

.HotDianping .cont1 dd {
    height: auto;
    line-height: 1.6;
    overflow: hidden;
    color: #444;
    text-indent: 0;
    padding: 0 15px;
}

.HotDianping .cont2 {
    padding-top: 15px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.HotDianping .cont2 .list {
    width: 50%;
    height: auto;
    overflow: hidden;
    line-height: 1.6;
    float: none;
    padding: 8px;
}

@media (max-width: 480px) {
    .HotDianping .cont2 .list {
        width: 100%;
    }
}

.HotDianping .cont2 .list a {
    padding-left: 8px;
    font-size: 1.1rem;
    color: #3366cc;
    transition: all 0.3s ease;
}

.HotDianping .cont2 .list a:hover {
    color: #a200ff;
}

.HotDianping .cont2 .list a.f {
    color: #1166BB;
    font-weight: 600;
}

/* 最新展示样式 */
.shownewest .head {
    position: relative;
    height: auto;
    background: linear-gradient(90deg, #00aeff, #a200ff);
    border-radius: 10px 10px 0 0;
    padding: 15px;
}

.shownewest .head .tag {
    width: auto;
    height: auto;
    line-height: 1.4;
    padding: 15px 0 15px 60px;
    position: static;
    background: url(new.gif) 15px center no-repeat;
    color: #FFF;
    font-size: 1.4rem;
}

.shownewest .head .more {
    float: right;
    width: auto;
    text-align: center;
    padding: 10px 20px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
}

.shownewest .head .more:hover {
    background: rgba(255, 255, 255, 0.3);
}

.shownewest .cont {
    border: none;
    border-top: 0;
    padding: 20px;
    height: auto;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-wrap: wrap;
}

.shownewest .cont .img {
    width: 40%;
    height: auto;
    overflow: hidden;
    float: none;
    padding: 10px;
}

.shownewest .cont .img .listpic {
    padding-bottom: 15px;
}

.shownewest .cont .img .listpic div {
    width: 100%;
    border: none;
    padding: 0;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.shownewest .cont .img .listpic div.pic a {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f0f5, #e0e0ea);
    transition: all 0.3s ease;
}

.shownewest .cont .img .listpic div.pic a:hover {
    transform: scale(1.05);
}

.shownewest .cont .img .listpic div.t {
    border: none;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.9);
    height: auto;
    line-height: 1.4;
    padding: 10px;
    overflow: hidden;
    font-weight: 600;
    color: #3366cc;
}

.shownewest .cont .word {
    width: 55%;
    float: none;
    line-height: 1.6;
    padding: 10px;
}

.shownewest .cont .word .list {
    height: auto;
    overflow: hidden;
    padding: 8px 0 8px 25px;
    background: url(pointer1.gif) 5px center no-repeat;
    margin-bottom: 8px;
}

.shownewest .cont .word .list a {
    font-size: 1.1rem;
    color: #3366cc;
    transition: all 0.3s ease;
}

.shownewest .cont .word .list a:hover {
    color: #a200ff;
}

/* 图文广告样式 */
.PicWordAd {
    height: auto;
    overflow: hidden;
    border: none;
    margin-top: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.PicWordAd .head {
    height: auto;
    overflow: hidden;
    line-height: 1.4;
    background: linear-gradient(90deg, #00aeff, #a200ff);
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.PicWordAd .head .tag {
    float: left;
    padding-left: 40px;
    background: url(tag1.gif) 15px center no-repeat;
    color: white;
    font-size: 1.2rem;
}

.PicWordAd .cont .word {
    padding: 20px;
    line-height: 1.6;
}

.PicWordAd .cont .word .list {
    height: auto;
    overflow: hidden;
    padding: 8px 0 8px 25px;
    background: url(pointer2.gif) 8px center no-repeat;
    margin-bottom: 8px;
}

.PicWordAd .cont .word .list span {
    color: #1166BB;
    font-weight: 500;
}

.PicWordAd .cont .word .list em {
    color: #f00;
    font-style: normal;
    font-weight: 600;
}

.PicWordAd .cont .img {
    text-align: center;
    width: 90%;
    height: auto;
    margin: 15px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .maincontainer1 .sidcontL, 
    .maincontainer1 .sidcontR {
        width: 48%;
    }
    
    .maincontainer1 .sidcontC {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    
    .sideleft, .sideright {
        width: 48%;
    }
    
    .sidecenter {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .maincontainer1 .sidcontL, 
    .maincontainer1 .sidcontR,
    .sideleft, 
    .sideright {
        width: 100%;
    }
    
    .sortcont .cont dl.ck dd {
        position: static;
        width: 100%;
        margin-top: 10px;
    }
}

/* 3D动画效果 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

/* 赛博朋克风格元素 */
.cyberpunk-border {
    position: relative;
}

.cyberpunk-border::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00cc, #00ccff, #00ffcc, #ffcc00);
    z-index: -1;
    border-radius: inherit;
    animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 未来科技感滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(240, 240, 245, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00aeff, #a200ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a200ff, #00aeff);
}
/*  - 未来科技风格CSS */
/* 编码：GBK */
/* 设计理念：赛博朋克+未来科技+三维效果 */

/* 重置与基础设置 - 未来科技风格 */
:root {
  --primary-color: #2ec7ff;
  --secondary-color: #6c42f5;
  --accent-color: #00e5ff;
  --neon-blue: #00f3ff;
  --neon-pink: #ff00ff;
  --neon-green: #37ff00;
  --light-bg: #f8faff;
  --dark-bg: #0a0a1a;
  --text-dark: #333;
  --text-light: #fff;
  --card-bg: rgba(255, 255, 255, 0.92);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --border-glow: rgba(46, 199, 255, 0.5);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(162, 0, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 70%, rgba(0, 243, 255, 0.05) 0%, transparent 20%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 通用样式 */
.cyber-border {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3), 
                inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.cyber-glow {
    text-shadow: 0 0 5px var(--neon-green), 
                 0 0 10px var(--neon-green),
                 0 0 15px var(--neon-green);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 主容器3样式 */
.maincontainer3 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#AllSorts2 {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#AllSorts2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.ShowChange {
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ShowChange:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ShowChange .head {
    height: 50px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

.ShowChange .head::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.ShowChange .head div {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: none !important;
}

.ShowChange .head div::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 16px;
    height: 16px;
    background: var(--text-light);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.ShowChange .head div:hover::before {
    transform: scale(1.2);
    background: var(--neon-green);
}

.ShowChange .head div.choose {
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.ShowChange .head div.more {
    margin-left: auto;
    padding: 0;
    width: 40px;
}

.ShowChange .head div.more::before {
    display: none;
}

.ShowChange .cont {
    padding: 20px;
}

.ShowChange .cont .sorts {
    padding: 15px;
    background: rgba(244, 247, 247, 0.5);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ShowChange .cont .sorts a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ShowChange .cont .sorts a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ShowChange .cont .sorts a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 102, 187, 0.3);
}

.ShowChange .cont .sorts a:hover::before {
    left: 100%;
}

.ShowChange .cont .titles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.ShowChange .cont .titles .list {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ShowChange .cont .titles .list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ShowChange .cont .titles .list:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ShowChange .cont .titles .list:hover::before {
    opacity: 1;
}

.ShowChange .cont .titles .list a {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ShowChange .cont .titles .list a:hover {
    color: var(--secondary-color);
}

.ShowChange .cont .titles .list a.f {
    color: var(--secondary-color);
    font-weight: 500;
}

.FeilieSideAd {
    width: 100%;
    height: auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.FeilieSideAd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--neon-blue));
}

/* 右侧内容区域 */
.RightSideCont {
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.RightSideCont:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.maincontainer3 .RightSideCont {
    height: auto;
}

.RightSideCont .head {
    height: 50px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.RightSideCont .head::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

.RightSideCont .head .tag {
    color: var(--text-light);
    font-weight: 500;
    padding-left: 30px;
    position: relative;
}

.RightSideCont .head .tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--text-light);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E");
}

.RightSideCont .head .more {
    margin-left: auto;
    color: var(--text-light);
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.RightSideCont .head .more:hover {
    opacity: 1;
}

.RightSideCont .continfo {
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.RightSideCont .continfo .listpic {
    width: 100%;
    height: auto;
    padding: 0;
    overflow: visible;
    float: none;
}

.RightSideCont .continfo .listpic div {
    width: 100%;
    margin: 0;
    text-align: center;
}

.RightSideCont .continfo .listpic div.pic {
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.RightSideCont .continfo .listpic div.pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.RightSideCont .continfo .listpic div.pic a {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.RightSideCont .continfo .listpic div.pic a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.RightSideCont .continfo .listpic div.pic:hover a::after {
    opacity: 1;
}

.RightSideCont .continfo .listpic div.t {
    height: auto;
    padding: 10px 0 0;
    line-height: 1.4;
}

.RightSideCont .continfo .listpic div.t a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.RightSideCont .continfo .listpic div.t a:hover {
    color: var(--secondary-color);
}

/* 主容器4样式 */
.maincontainer4 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#AllSorts3 {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#AllSorts3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.maincontainer4 .ShowChange {
    height: auto;
}

.ShowChange .hyimgs {
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 0;
    background: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.ShowChange .hyimgs .listpic {
    width: 100%;
    height: auto;
    overflow: visible;
    float: none;
}

.ShowChange .hyimgs .listpic div {
    width: 100%;
    margin: 0;
    text-align: center;
}

.ShowChange .hyimgs .listpic div.pic {
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ShowChange .hyimgs .listpic div.pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ShowChange .hyimgs .listpic div.pic a {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.ShowChange .hyimgs .listpic div.pic a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ShowChange .hyimgs .listpic div.pic:hover a::after {
    opacity: 1;
}

.ShowChange .hyimgs .listpic div.t {
    height: auto;
    padding: 10px 0 0;
    line-height: 1.4;
}

.ShowChange .hyimgs .listpic div.t a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ShowChange .hyimgs .listpic div.t a:hover {
    color: var(--secondary-color);
}

.ShowChange .hytitles {
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.ShowChange .hytitles .list {
    width: 100%;
    height: auto;
    padding: 10px 15px 10px 35px;
    line-height: 1.5;
    overflow: visible;
    float: none;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.ShowChange .hytitles .list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.ShowChange .hytitles .list:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.ShowChange .hytitles .list a {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ShowChange .hytitles .list a:hover {
    color: var(--secondary-color);
}

/* 右侧内容区域 - 主容器4 */
.maincontainer4 .RightSideCont {
    height: auto;
}

.RightSideCont .contcoupon .h {
    width: 100%;
    height: auto;
    margin: 20px 0 15px;
    display: flex;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 5px;
    position: relative;
}

.RightSideCont .contcoupon .h div {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

.RightSideCont .contcoupon .h div.choose {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(17, 102, 187, 0.3);
}

.RightSideCont .contcoupon .c {
    height: auto;
    width: 100%;
    padding: 0;
}

.RightSideCont .contcoupon .c .lista {
    padding: 15px;
    height: auto;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.RightSideCont .contcoupon .c .lista:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.RightSideCont .contcoupon .c .lista .pic {
    float: none;
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.RightSideCont .contcoupon .c .lista .pic a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.RightSideCont .contcoupon .c .lista .word {
    width: auto;
    float: none;
    padding: 0;
    line-height: 1.5;
    flex: 1;
}

.RightSideCont .contcoupon .c .lista .word div {
    height: auto;
    margin-bottom: 5px;
}

.RightSideCont .contcoupon .c .lista .word div a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.RightSideCont .contcoupon .c .lista .word div a:hover {
    color: var(--accent-color);
}

.RightSideCont .contcoupon .c .lista .word div strike {
    color: #999;
    font-size: 0.9em;
}

.RightSideCont .contcoupon .c .lista .word div span {
    color: #f60;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .maincontainer3, .maincontainer4 {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .ShowChange .cont .titles {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .ShowChange .hytitles {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .maincontainer3, .maincontainer4 {
        flex-direction: column;
    }
    
    .ShowChange .head {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }
    
    .ShowChange .head div {
        flex: 1 0 33%;
        margin-bottom: 5px;
    }
    
    .ShowChange .cont .sorts {
        justify-content: center;
    }
    
    .RightSideCont .continfo {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .ShowChange .hyimgs {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 576px) {
    .ShowChange .head div {
        flex: 1 0 50%;
    }
    
    .ShowChange .cont .titles {
        grid-template-columns: 1fr;
    }
    
    .RightSideCont .continfo {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .ShowChange .hyimgs {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .ShowChange .hytitles {
        grid-template-columns: 1fr;
    }
    
    .RightSideCont .contcoupon .c .lista {
        flex-direction: column;
        text-align: center;
    }
    
    .RightSideCont .contcoupon .c .lista .pic {
        width: 100%;
        height: 120px;
    }
}

/* 3D效果和动画 */
.ShowChange, .RightSideCont {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ShowChange .head div, .RightSideCont .head .tag {
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.ShowChange .head div:hover, .RightSideCont .head .tag:hover {
    transform: translateZ(10px);
}

/* 霓虹灯效果 */
.cyber-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 
                 0 0 10px var(--neon-blue),
                 0 0 15px var(--neon-blue),
                 0 0 20px var(--neon-blue);
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--neon-blue), 
                     0 0 10px var(--neon-blue),
                     0 0 15px var(--neon-blue),
                     0 0 20px var(--neon-blue);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* 悬浮效果 */
.hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 灯光效果 */
.light-beam {
    position: relative;
    overflow: hidden;
}

.light-beam::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: light-sweep 3s infinite;
}

@keyframes light-sweep {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}
/* 第十届杭州国际网红品牌博览会 - 未来科技风格CSS (第二部分) */
/* 编码：GBK */
/* 设计理念：赛博朋克+未来科技+三维效果 */

/* 主横幅样式 */
.MainBanner {
    margin: 30px auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.MainBanner::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--neon-blue));
    border-radius: 12px 12px 0 0;
}

/* 主容器5样式 */
.maincontainer5 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#AllSorts4 {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#AllSorts4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    width: 25px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.maincontainer5 .ShowChange {
    height: auto;
    flex: 1;
    min-width: 300px;
}

.ShowChange .shopimgs {
    width: 100%;
    height: auto;
    margin: 15px 0 5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    background: none;
}

.ShowChange .shopimgs .listpic {
    width: 100%;
    height: auto;
    overflow: visible;
    float: none;
}

.ShowChange .shopimgs .listpic div {
    width: 100%;
    margin: 0;
    text-align: center;
}

.ShowChange .shopimgs .listpic div.pic {
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ShowChange .shopimgs .listpic div.pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ShowChange .shopimgs .listpic div.pic a {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.ShowChange .shopimgs .listpic div.pic a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ShowChange .shopimgs .listpic div.pic:hover a::after {
    opacity: 1;
}

.ShowChange .shopimgs .listpic div.t,
.ShowChange .shopimgs .listpic div.p {
    height: auto;
    padding: 8px 0 0;
    line-height: 1.4;
    color: var(--text-dark);
    overflow: visible;
}

.ShowChange .shopimgs .listpic div.t {
    font-weight: 500;
}

.ShowChange .shopimgs .listpic div.p span {
    color: #FF5200;
    font-weight: bold;
    font-size: 14px;
}

.ShowChange .shoptitles {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.ShowChange .shoptitles .list {
    width: 100%;
    height: auto;
    padding: 10px 15px 10px 35px;
    line-height: 1.5;
    overflow: visible;
    float: none;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.ShowChange .shoptitles .list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.ShowChange .shoptitles .list:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.ShowChange .shoptitles .list a {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ShowChange .shoptitles .list a:hover {
    color: var(--secondary-color);
}

/* 右侧内容区域 - 主容器5 */
.maincontainer5 .RightSideCont {
    height: auto;
    flex: 1;
    min-width: 300px;
}

.RightSideCont .contshoptg {
    height: auto;
    width: 100%;
    padding: 20px;
    overflow: visible;
}

.showtging {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.showtging::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,0 L100,0 L100,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.showtging dt {
    height: auto;
    overflow: visible;
    display: flex;
    margin-bottom: 20px;
}

.showtging dt .p {
    width: 60%;
    float: none;
}

.showtging dt .p span {
    display: block;
    line-height: 1.5;
    text-align: right;
    padding-right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.showtging dt .p h3 {
    padding: 0;
    margin: 0;
    line-height: 1.2;
    text-align: right;
    padding-right: 15px;
    font-size: 26px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showtging dt .img {
    width: 40%;
    height: auto;
    overflow: hidden;
    float: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showtging dd {
    height: auto;
    overflow: visible;
    display: flex;
}

.showtging dd .act {
    width: 40%;
    height: auto;
    float: none;
}

.showtging dd .act h3 {
    line-height: 1.2;
    text-align: center;
    font-size: 20px;
    color: #FF2A00;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 42, 0, 0.5);
}

.showtging dd .act span {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #FF2A00, #FF5200);
    line-height: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 42, 0, 0.3);
    transition: all 0.3s ease;
}

.showtging dd .act span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 42, 0, 0.4);
}

.showtging dd .act span a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.showtging dd .act span a:hover {
    text-decoration: none;
}

.showtging dd .word {
    width: 60%;
    float: none;
    padding-left: 20px;
}

.showtging dd .word div {
    height: auto;
    overflow: visible;
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    padding-top: 0;
    margin-bottom: 10px;
}

.showtging dd .word p {
    padding: 0;
    margin: 0;
    height: auto;
    overflow: visible;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.shoptgAd {
    width: 100%;
    height: auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.shoptgAd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--neon-blue));
}

/* 主容器6样式 */
.maincontainer6 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.maincontainer6 .TgSideLeftAd {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    float: none;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
}

.maincontainer6 .ShowTgCont {
    border: none;
    width: 100%;
    height: auto;
    float: none;
    overflow: visible;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 2;
    min-width: 300px;
}

.maincontainer6 .ShowTgCont .head {
    width: 100%;
    height: auto;
    float: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    justify-content: center;
}

.maincontainer6 .ShowTgCont .head .tag {
    padding: 0;
    text-align: center;
    color: white;
    font-weight: 500;
}

.maincontainer6 .ShowTgCont .cont {
    float: none;
    height: auto;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.maincontainer6 .ShowTgCont .cont .listtg {
    width: 100%;
    height: auto;
    padding: 15px;
    overflow: visible;
    float: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.maincontainer6 .ShowTgCont .cont .listtg img {
	width: 100%;
}

.maincontainer6 .ShowTgCont .cont .listtg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.maincontainer6 .ShowTgCont .cont .listtg dt {
    float: none;
    border: none;
    padding: 0;
    background: transparent;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.maincontainer6 .ShowTgCont .cont .listtg dt a {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.maincontainer6 .ShowTgCont .cont .listtg dd {
    float: none;
    width: 100%;
    padding-left: 0;
    line-height: 1.5;
    color: var(--text-dark);
}

.maincontainer6 .ShowTgCont .cont .listtg dd div {
    height: auto;
    overflow: visible;
    margin-bottom: 5px;
}

.maincontainer6 .ShowTgCont .cont .listtg dd div a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.maincontainer6 .ShowTgCont .cont .listtg dd div a:hover {
    color: var(--accent-color);
}

.maincontainer6 .ShowTgCont .cont .listtg dd div span {
    color: #666;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .maincontainer5, .maincontainer6 {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .ShowChange .shopimgs {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .ShowChange .shoptitles {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .showtging dt, .showtging dd {
        flex-direction: column;
    }
    
    .showtging dt .p, .showtging dt .img, 
    .showtging dd .act, .showtging dd .word {
        width: 100%;
    }
    
    .showtging dd .word {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .maincontainer5, .maincontainer6 {
        flex-direction: column;
    }
    
    .ShowChange .shopimgs {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .ShowChange .shoptitles {
        grid-template-columns: 1fr;
    }
    
    .maincontainer6 .ShowTgCont .cont {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ShowChange .shopimgs {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
    
    .showtging {
        padding: 15px;
    }
    
    .showtging dt .p h3 {
        font-size: 20px;
    }
    
    .showtging dd .act h3 {
        font-size: 18px;
    }
}

/* 3D效果和动画 */
.MainBanner, .maincontainer5, .maincontainer6 {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ShowChange .shopimgs .listpic, 
.maincontainer6 .ShowTgCont .cont .listtg {
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ShowChange .shopimgs .listpic:hover, 
.maincontainer6 .ShowTgCont .cont .listtg:hover {
    transform: translateZ(10px);
}

/* 霓虹灯效果 */
.cyber-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 
                 0 0 10px var(--neon-blue),
                 0 0 15px var(--neon-blue),
                 0 0 20px var(--neon-blue);
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--neon-blue), 
                     0 0 10px var(--neon-blue),
                     0 0 15px var(--neon-blue),
                     0 0 20px var(--neon-blue);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* 灯光效果 */
.light-beam {
    position: relative;
    overflow: hidden;
}

.light-beam::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: light-sweep 3s infinite;
}

@keyframes light-sweep {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* 悬浮效果 */
.hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* 第十届杭州国际网红品牌博览会 - 未来科技风格CSS (第三部分) */
/* 编码：GBK */
/* 设计理念：赛博朋克+未来科技+三维效果 */

/* 主容器7样式 */
.maincontainer7 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#AllSorts5 {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#AllSorts5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.maincontainer7 .ShowChange {
    height: auto;
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.ShowChange .conthouse {
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.ShowChange .conthouse .listhou {
    width: 100%;
    height: auto;
    overflow: visible;
    float: none;
}

.ShowChange .conthouse .listhou div {
    width: 100%;
    margin: 0;
    text-align: center;
}

.ShowChange .conthouse .listhou div.pic {
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ShowChange .conthouse .listhou div.pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ShowChange .conthouse .listhou div.pic a {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.ShowChange .conthouse .listhou div.pic a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ShowChange .conthouse .listhou div.pic:hover a::after {
    opacity: 1;
}

.ShowChange .conthouse .listhou div.t {
    height: auto;
    padding: 10px 0 0;
    line-height: 1.4;
    overflow: visible;
    font-weight: 500;
    color: var(--text-dark);
}

.ShowChange .conthouse .listren {
    width: 100%;
    height: auto;
    overflow: visible;
    float: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.ShowChange .conthouse .listren dt {
    float: none;
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ShowChange .conthouse .listren dt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ShowChange .conthouse .listren dt a {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    text-align: center;
}

.ShowChange .conthouse .listren dd {
    float: none;
    width: 100%;
    padding: 10px 0 0;
    line-height: 1.5;
    color: var(--text-dark);
}

.ShowChange .conthouse .listren dd div {
    height: auto;
    overflow: visible;
    margin-bottom: 5px;
}

.ShowChange .conthouse .listren dd div.goto a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ShowChange .conthouse .listren dd div.goto a:hover {
    color: var(--accent-color);
}

.ActHohuse {
    border: none;
    height: auto;
    overflow: visible;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ActHohuse div {
    width: auto;
    text-align: center;
    padding: 50px 20px 15px;
    height: auto;
    border: none;
    border-radius: 8px;
    float: none;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 150px;
}

.ActHohuse div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.ActHohuse div::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
}

.ActHohuse div.list2::before {
    background: var(--accent-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
}

.ActHohuse div.list3::before {
    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 fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.92.66 1.97 1.64h1.84c-.05-1.54-1.2-2.65-3.05-2.88V5.5H11v1.47c-1.75.24-3.1 1.47-3.1 3.13 0 2.11 1.76 2.75 3.93 3.26 1.86.45 2.34 1.04 2.34 1.77 0 .77-.75 1.4-2.1 1.4-1.6 0-2.23-.72-2.3-1.64H8.3c.06 1.7 1.46 2.82 3.22 3.05V17h1.5v-1.49c1.75-.24 3.1-1.47 3.1-3.13 0-2.12-1.76-2.76-3.31-3.22z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.92.66 1.97 1.64h1.84c-.05-1.54-1.2-2.65-3.05-2.88V5.5H11v1.47c-1.75.24-3.1 1.47-3.1 3.13 0 2.11 1.76 2.75 3.93 3.26 1.86.45 2.34 1.04 2.34 1.77 0 .77-.75 1.4-2.1 1.4-1.6 0-2.23-.72-2.3-1.64H8.3c.06 1.7 1.46 2.82 3.22 3.05V17h1.5v-1.49c1.75-.24 3.1-1.47 3.1-3.13 0-2.12-1.76-2.76-3.31-3.22z'/%3E%3C/svg%3E");
}

.ActHohuse div a {
    font-size: 16px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ActHohuse div a:hover {
    color: var(--accent-color);
}

.ShowChange .conthouse2 {
    height: auto;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.ShowChange .conthouse2 .housetitles {
    width: 100%;
    height: auto;
    padding: 20px;
    float: none;
    border: none;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.ShowChange .conthouse2 .housetitles .list {
    height: auto;
    line-height: 1.6;
    overflow: visible;
    padding: 10px 15px 10px 35px;
    color: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
}

.ShowChange .conthouse2 .housetitles .list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.ShowChange .conthouse2 .housetitles .list:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.ShowChange .conthouse2 .housetitles .list span {
    padding: 0 5px;
    color: #F60;
    font-weight: 500;
}

.ShowChange .conthouse2 .houseimgs {
    width: 100%;
    float: none;
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
}

.ShowChange .conthouse2 .houseimgs .listhou {
    height: auto;
    overflow: visible;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.ShowChange .conthouse2 .houseimgs .listhou .pic {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ShowChange .conthouse2 .houseimgs .listhou .pic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.HouseRightAd {
    width: 100%;
    height: auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.HouseRightAd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--neon-blue));
}

/* 主容器8样式 */
.maincontainer8 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#AllSorts6 {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f5 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#AllSorts6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.1;
}

.maincontainer8 .ShowChange {
    height: auto;
    flex: 1;
    min-width: 300px;
}

.ShowChange .conthr {
    width: 100%;
    height: auto;
    margin: 0;
    overflow: visible;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.maincontainer8 .hrlist {
    height: auto;
    overflow: visible;
    line-height: 1.6;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    color: #777;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.maincontainer8 .hrlist:hover {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transform: translateX(5px);
}

.maincontainer8 .hrlist a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.maincontainer8 .hrlist a:hover {
    color: var(--accent-color);
}

.maincontainer8 .hrlist span {
    color: #f60;
    font-weight: 500;
}

.ShowChange .conthr .showren {
    width: 100%;
    height: auto;
    overflow: visible;
    float: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ShowChange .conthr .showren:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.ShowChange .conthr .showren dt {
    float: none;
    border: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.ShowChange .conthr .showren dt a {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    text-align: center;
}

.ShowChange .conthr .showren dd {
    float: none;
    width: 100%;
    padding: 0;
    line-height: 1.5;
    color: var(--text-dark);
}

.ShowChange .conthr .showren dd div {
    height: auto;
    overflow: visible;
    margin-bottom: 5px;
}

.ShowChange .conthr .showren dd div a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ShowChange .conthr .showren dd div a:hover {
    color: var(--accent-color);
}

.ShowChange .conthr .showren dd div span {
    color: #777;
    font-size: 0.9em;
}

/* 右侧内容区域 - 主容器8 */
.maincontainer8 .RightSideCont {
    height: auto;
    flex: 1;
    min-width: 300px;
}

.RightSideCont .conthr2 {
    width: 100%;
    height: auto;
    margin: 0;
    overflow: visible;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 照片区域 - 主容器8 */
.maincontainer8 .PhotoHr {
    width: 100%;
    height: auto;
    border: none;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    float: none;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.maincontainer8 .PhotoHr .head {
    width: 100%;
    height: auto;
    float: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    justify-content: center;
}

.maincontainer8 .PhotoHr .head .tag {
    padding: 0;
    text-align: center;
    color: white;
    font-weight: 500;
}

.maincontainer8 .PhotoHr .cont {
    float: none;
    height: auto;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.maincontainer8 .PhotoHr .cont a {
    float: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.maincontainer8 .PhotoHr .cont a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .maincontainer7, .maincontainer8 {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .ShowChange .conthouse {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .ShowChange .conthouse .listren {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .ShowChange .conthr {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 768px) {
    .maincontainer7, .maincontainer8 {
        flex-direction: column;
    }
    
    .ActHohuse {
        flex-direction: column;
    }
    
    .ActHohuse div {
        width: 100%;
    }
    
    .ShowChange .conthouse2 {
        flex-direction: column;
    }
    
    .ShowChange .conthr {
        grid-template-columns: 1fr;
    }
    
    .maincontainer8 .PhotoHr .cont {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

@media (max-width: 576px) {
    .ShowChange .conthouse {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 15px;
    }
    
    .ShowChange .conthouse .listren {
        grid-template-columns: 1fr;
    }
    
    .maincontainer8 .PhotoHr .cont {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 10px;
    }
}

/* 3D效果和动画 */
.maincontainer7, .maincontainer8 {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ShowChange .conthouse .listhou, 
.ShowChange .conthouse .listren dt,
.ShowChange .conthr .showren {
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ShowChange .conthouse .listhou:hover, 
.ShowChange .conthouse .listren dt:hover,
.ShowChange .conthr .showren:hover {
    transform: translateZ(10px);
}

/* 霓虹灯效果 */
.cyber-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 
                 0 0 10px var(--neon-blue),
                 0 0 15px var(--neon-blue),
                 0 0 20px var(--neon-blue);
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--neon-blue), 
                     0 0 10px var(--neon-blue),
                     0 0 15px var(--neon-blue),
                     0 0 20px var(--neon-blue);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* 灯光效果 */
.light-beam {
    position: relative;
    overflow: hidden;
}

.light-beam::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: light-sweep 3s infinite;
}

@keyframes light-sweep {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* 悬浮效果 */
.hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* 第十届杭州国际网红品牌博览会 - 未来科技风格CSS (第四部分) */
/* 编码：GBK */
/* 设计理念：赛博朋克+未来科技+三维效果 */

/* 主容器9样式 */
.maincontainer9 {
    max-width: 100%;
    margin: 20px auto;
    height: auto;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.maincontainer9 .BmContact {
    width: 100%;
    float: none;
    flex: 2;
    min-width: 300px;
}

.maincontainer9 .RightSideCont {
    height: auto;
    overflow: visible;
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.maincontainer9 .RightSideCont .head {
    padding: 15px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.maincontainer9 .RightSideCont .head .more1 {
    float: none;
    padding: 0;
    background: none;
    color: white;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.maincontainer9 .RightSideCont .head .more1:hover {
    opacity: 1;
}

.maincontainer9 .RightSideCont .head .more1 span {
    float: none;
    padding: 0;
    background: none;
}

.maincontainer9 .RightSideCont .conttel {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.maincontainer9 .RightSideCont .conttel .list {
    width: 100%;
    height: auto;
    overflow: visible;
    text-align: center;
    float: none;
}

.maincontainer9 .RightSideCont .conttel .list span {
    display: block;
    width: 100%;
    padding: 10px;
    height: auto;
    line-height: 1.4;
    border: none;
    border-bottom: 0;
    overflow: visible;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px 8px 0 0;
    font-weight: 500;
    color: var(--text-dark);
}

.maincontainer9 .RightSideCont .conttel .list a {
    display: block;
    width: 100%;
    padding: 10px;
    height: auto;
    line-height: 1.4;
    border: none;
    border-top: 0;
    overflow: visible;
    margin: 0;
    background: var(--secondary-color);
    border-radius: 0 0 8px 8px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.maincontainer9 .RightSideCont .conttel .list a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(162, 0, 255, 0.3);
}

.maincontainer9 .ShowSites {
    border: none;
    height: auto;
    overflow: visible;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
}

.ShowSites .head {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    float: none;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ShowSites .head a{
	color:#FFF
}
.ShowSites .head .tag {
    padding: 0;
    text-align: center;
    background: none;
    color: white;
    font-weight: 500;
}

.ShowSites .cont {
    width: 100%;
    height: auto;
    padding: 20px;
    float: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.ShowSites .cont a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 10px 10px;
    height: auto;
    line-height: 1.4;
    text-align: center;
    float: none;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
}

.ShowSites .cont a::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
}

.ShowSites .cont a.a2::before {
    background: var(--accent-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'/%3E%3C/svg%3E");
}

.ShowSites .cont a.a3::before {
    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 fill='currentColor' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E");
}

.ShowSites .cont a.a4::before {
    background: #FF5200;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.ShowSites .cont a.a5::before {
    background: #00BFFF;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
}

.ShowSites .cont a.a6::before {
    background: #9370DB;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z'/%3E%3C/svg%3E");
}

.ShowSites .cont a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

/* 友情链接样式 */
.FrendLink {
    margin-top: 30px;
    border: none;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px 20px;
}

.FrendLink .head {
    height: auto;
    overflow: visible;
    line-height: 1.5;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FrendLink .head .tag {
    float: none;
    padding: 0;
    background: none;
    color: white;
    font-weight: 500;
}

.FrendLink .head .more {
    float: none;
    padding: 0;
    background: none;
}

.FrendLink .head .more a {
    float: none;
    padding: 0;
    background: none;
    color: white;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.FrendLink .head .more a:hover {
    opacity: 1;
}

.FrendLink .cont {
    padding: 20px 0 0;
}

.FrendLink .cont .wordlink {
    border-top: 1px solid rgba(221, 221, 221, 0.5);
    margin-top: 15px;
    padding-top: 15px;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.FrendLink .cont .wordlink a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 14px;
}

.FrendLink .cont .wordlink a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 102, 187, 0.3);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .maincontainer9 {
        max-width: 100%;
        padding: 20px;
    }
    
    .FrendLink {
        max-width: 100%;
        margin: 30px 20px;
    }
}

@media (max-width: 992px) {
    .maincontainer9 .RightSideCont .conttel {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .ShowSites .cont {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
}

@media (max-width: 768px) {
    .maincontainer9 {
        flex-direction: column;
    }
    
    .maincontainer9 .RightSideCont .conttel {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .ShowSites .cont {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 10px;
    }
    
    .FrendLink .cont .wordlink {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .maincontainer9 .RightSideCont .conttel {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 10px;
    }
    
    .ShowSites .cont {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }
    
    .ShowSites .cont a {
        padding: 40px 5px 5px;
        font-size: 12px;
    }
    
    .ShowSites .cont a::before {
        width: 20px;
        height: 20px;
        top: 10px;
    }
    
    .FrendLink .cont .wordlink a {
        font-size: 12px;
        padding: 3px 8px;
    }
}

/* 3D效果和动画 */
.maincontainer9, .FrendLink {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.maincontainer9 .RightSideCont .conttel .list,
.ShowSites .cont a,
.FrendLink .cont .wordlink a {
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maincontainer9 .RightSideCont .conttel .list:hover,
.ShowSites .cont a:hover,
.FrendLink .cont .wordlink a:hover {
    transform: translateZ(10px);
}

/* 霓虹灯效果 */
.cyber-text {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue), 
                 0 0 10px var(--neon-blue),
                 0 0 15px var(--neon-blue),
                 0 0 20px var(--neon-blue);
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px var(--neon-blue), 
                     0 0 10px var(--neon-blue),
                     0 0 15px var(--neon-blue),
                     0 0 20px var(--neon-blue);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

/* 灯光效果 */
.light-beam {
    position: relative;
    overflow: hidden;
}

.light-beam::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: light-sweep 3s infinite;
}

@keyframes light-sweep {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* 悬浮效果 */
.hover-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 重置与基础设置 - 未来科技风格 */
:root {
  --primary-color: #2ec7ff;
  --secondary-color: #6c42f5;
  --accent-color: #00e5ff;
  --neon-blue: #00f3ff;
  --neon-pink: #ff00ff;
  --neon-green: #37ff00;
  --light-bg: #f8faff;
  --dark-bg: #0a0a1a;
  --text-dark: #333;
  --text-light: #fff;
  --card-bg: rgba(255, 255, 255, 0.92);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --border-glow: rgba(46, 199, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Exo 2', sans-serif;
}

body {
  background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(46, 199, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(108, 66, 245, 0.1) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* 通用样式 */
.cyber-border {
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(var(--card-bg), var(--card-bg)), 
                    linear-gradient(135deg, var(--neon-blue), var(--secondary-color));
}

.cyber-glow {
  text-shadow: 0 0 10px var(--neon-blue), 
               0 0 20px var(--neon-blue),
               0 0 30px rgba(0, 243, 255, 0.5);
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 主容器样式 */
.maincontainer1, .maincontainer2, .maincontainer3, 
.maincontainer4, .maincontainer5, .maincontainer6,
.maincontainer7, .maincontainer8, .maincontainer9 {
  max-width: 1400px;
  margin: 25px auto;
  padding: 20px;
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.maincontainer1::before, .maincontainer2::before, .maincontainer3::before,
.maincontainer4::before, .maincontainer5::before, .maincontainer6::before,
.maincontainer7::before, .maincontainer8::before, .maincontainer9::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 20px 20px 0 0;
}

/* 头部标签样式 - 科技感字体与渐变 */
.head .tag {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(46, 199, 255, 0.3);
  letter-spacing: 1px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .maincontainer1, .maincontainer2, .maincontainer3, 
  .maincontainer4, .maincontainer5, .maincontainer6,
  .maincontainer7, .maincontainer8, .maincontainer9 {
    margin: 15px;
    padding: 15px;
    border-radius: 15px;
  }
  
  .head .tag {
    font-size: 1.3rem;
  }
}

/* 侧边容器通用样式 */
.maincontainer1 .sidcontL, 
.maincontainer1 .sidcontR,
.maincontainer1 .sidcontC {
  border-radius: 15px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.maincontainer1 .sidcontL, 
.maincontainer1 .sidcontR {
  width: 22%;
  min-height: 140px;
}

.maincontainer1 .sidcontC {
  width: 54%;
  min-height: 140px;
  padding: 0 15px;
}

.maincontainer1 .sidcontL:hover, 
.maincontainer1 .sidcontR:hover,
.maincontainer1 .sidcontC:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* 头部导航项 - 3D效果按钮 */
.maincontainer1 .head {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: transparent;
  gap: 10px;
  margin-bottom: 15px;
}

.maincontainer1 .head div {
  padding: 15px 20px;
  text-align: center;
  background: linear-gradient(145deg, #f0f5ff, #e6f0ff);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 
    5px 5px 15px rgba(0, 0, 0, 0.1),
    -5px -5px 15px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  flex-grow: 1;
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.maincontainer1 .head div::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
}

.maincontainer1 .head div:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 5px 10px rgba(108, 66, 245, 0.2);
  color: var(--primary-color);
}

.maincontainer1 .head div:hover::before {
  left: 100%;
}

.maincontainer1 .head div.choose {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 
    0 5px 15px rgba(108, 66, 245, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 内容区域样式 */
.maincontainer1 .cont {
  padding: 20px;
  line-height: 1.7;
}

.maincontainer1 .cont .list {
  padding-left: 20px;
  margin-bottom: 15px;
  position: relative;
}

.maincontainer1 .cont .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* 链接样式 */
.maincontainer1 a:link, 
.maincontainer1 a:visited {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.maincontainer1 a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(46, 199, 255, 0.4);
}

.maincontainer1 a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.maincontainer1 a:hover::after {
  width: 100%;
}

/* 中央区域文字和图片 */
.maincontainer1 .sidcontC .word {
  display: flex;
  flex-wrap: wrap;
}

.maincontainer1 .sidcontC .word .list {
  width: 50%;
  padding: 12px;
  line-height: 1.5;
}

.maincontainer1 .sidcontC .img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.maincontainer1 .sidcontC .img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}



/* 侧边栏通用样式 */
.sideleft, .sidecenter, .sideright {
  border-radius: 15px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.sideleft:hover, .sidecenter:hover, .sideright:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.sideleft {
  width: 22%;
}

.sidecenter {
  width: 48%;
}

.sideright {
  width: 28%;
}

/* 分类容器样式 - 未来科技感 */
.sortcont {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sortcont .head {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  border-radius: 15px 15px 0 0;
  position: relative;
  overflow: hidden;
}

.sortcont .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.sortcont .head .tag {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.sortcont .cont {
  background: var(--card-bg);
  border-radius: 0 0 15px 15px;
  padding: 15px;
}

.sortcont .cont dl {
  position: relative;
}

.sortcont .cont dl dt {
  padding: 18px 15px 18px 55px;
  border-bottom: 1px solid rgba(220, 221, 221, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(249, 250, 251, 0.8);
  border-radius: 8px;
  margin-bottom: 8px;
}

.sortcont .cont dl dt:hover {
  background: rgba(240, 245, 255, 0.9);
  transform: translateX(5px);
}

.sortcont .cont dl dt a {
  color: var(--secondary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.sortcont .cont dl dt a:hover {
  color: var(--primary-color);
}

.sortcont .cont dl.ck dt {
  background: rgba(240, 248, 255, 0.9);
  box-shadow: 
    inset 0 0 10px rgba(46, 199, 255, 0.2),
    0 5px 15px rgba(46, 199, 255, 0.1);
}

.sortcont .cont dl.ck dd {
  display: block;
  position: absolute;
  min-width: 220px;
  top: 0;
  left: 100%;
  padding: 20px;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  border-radius: 0 15px 15px 15px;
  z-index: 1001;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sortcont .cont dl.ck dd div {
  padding: 12px 15px;
  background: rgba(46, 199, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sortcont .cont dl.ck dd div:hover {
  background: rgba(46, 199, 255, 0.2);
  transform: translateX(5px);
  border-left: 3px solid var(--primary-color);
}

.sortcont .cont dl.ck dd div a {
  color: var(--secondary-color);
  font-weight: 500;
}

/* 侧边广告样式 */
.sideleftad1 {
  border-radius: 15px;
  background: var(--glass-bg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-top: 20px;
  transition: all 0.4s ease;
}

.sideleftad1:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sideleftad1 .liatad {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f0f5ff, #e6f0ff);
  box-shadow: 
    inset 0 0 15px rgba(255, 255, 255, 0.6),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

/* 幻灯片样式 - 3D效果 */
.ShowSlide {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #f0f5ff, #e6f0ff);
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.7);
  perspective: 1000px;
}

.ShowSlide #bigimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ShowSlide #bigimg:hover {
  transform: scale(1.05);
}

.ShowSlide .showlist {
  width: 90%;
  height: auto;
  position: absolute;
  z-index: 100;
  left: 5%;
  bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ShowSlide .showlist div {
  width: 70px;
  height: 50px;
  padding: 4px;
  text-align: center;
  background: rgba(240, 245, 255, 0.9);
  border-radius: 8px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.ShowSlide .showlist div:hover {
  opacity: 0.9;
  transform: translateY(-5px) scale(1.05);
}

.ShowSlide .showlist div.on {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  opacity: 1;
  box-shadow: 0 8px 20px rgba(108, 66, 245, 0.4);
}

/* 热点点评样式 */
.HotDianping {
  border-radius: 20px;
  padding: 25px;
  overflow: hidden;
  margin-top: 25px;
  background: linear-gradient(135deg, rgba(46, 199, 255, 0.1), rgba(108, 66, 245, 0.1));
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
}

.HotDianping::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,0 L100,0 L100,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
}

.HotDianping .cont1 {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  padding: 20px 0;
  margin-bottom: 20px;
}

.HotDianping .cont1 dt {
  text-align: center;
  margin-bottom: 15px;
}

.HotDianping .cont1 dt a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff2a5f;
  text-shadow: 0 2px 8px rgba(255, 42, 95, 0.3);
}

.HotDianping .cont1 dd {
  color: #555;
  text-align: center;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.HotDianping .cont2 {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.HotDianping .cont2 .list {
  width: 50%;
  padding: 12px;
  line-height: 1.6;
}

.HotDianping .cont2 .list a {
  padding-left: 12px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
}

.HotDianping .cont2 .list a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.HotDianping .cont2 .list a:hover {
  color: var(--primary-color);
  padding-left: 18px;
}

.HotDianping .cont2 .list a:hover::before {
  left: 5px;
}

.HotDianping .cont2 .list a.f {
  color: var(--secondary-color);
  font-weight: 600;
}

/* 最新展示样式 */
.shownewest {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.shownewest .head {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.shownewest .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: shimmer 3s infinite linear;
}

.shownewest .head .tag {
  color: white;
  padding-left: 50px;
  position: relative;
  z-index: 1;
}

.shownewest .head .tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a1 1 0 0 1 2 0v3h14v-3a1 1 0 1 1 2 0zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm5-16a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h10z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4a1 1 0 0 1 2 0v3h14v-3a1 1 0 1 1 2 0zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm5-16a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h10z'/%3E%3C/svg%3E");
}

.shownewest .head .more {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 10px 20px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.shownewest .head .more:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.shownewest .cont {
  background: var(--card-bg);
  border-radius: 0 0 20px 20px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
}

.shownewest .cont .img {
  width: 40%;
  padding: 15px;
}

.shownewest .cont .img .listpic {
  padding-bottom: 20px;
}

.shownewest .cont .img .listpic div {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.shownewest .cont .img .listpic div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.shownewest .cont .img .listpic div.pic a {
  display: block;
  width: 100%;
  height: 150px;
  background: linear-gradient(145deg, #f0f5ff, #e6f0ff);
  transition: all 0.4s ease;
}

.shownewest .cont .img .listpic div.pic a:hover {
  transform: scale(1.05);
}

.shownewest .cont .img .listpic div.t {
  background: var(--card-bg);
  padding: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}

.shownewest .cont .word {
  width: 55%;
  padding: 15px;
}

.shownewest .cont .word .list {
  padding: 12px 0 12px 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232ec7ff' d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10S2 17.514 2 12 6.486 2 12 2zm0 2c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm-.707 5.293l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L13.586 12l-3.707-3.707a1 1 0 1 1 1.414-1.414z'/%3E%3C/svg%3E") 5px center no-repeat;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.shownewest .cont .word .list:hover {
  transform: translateX(5px);
}

.shownewest .cont .word .list a {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.shownewest .cont .word .list a:hover {
  color: var(--primary-color);
}

/* 图文广告样式 */
.PicWordAd {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 25px;
  background: var(--card-bg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.PicWordAd .head {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.PicWordAd .head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: shimmer 3s infinite linear;
}

.PicWordAd .head .tag {
  color: white;
  padding-left: 45px;
  position: relative;
  z-index: 1;
}

.PicWordAd .head .tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zM7 10h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E");
}

.PicWordAd .cont .word {
  padding: 25px;
}

.PicWordAd .cont .word .list {
  padding: 12px 0 12px 35px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232ec7ff' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.31-8.86c-1.77-.45-2.34-.94-2.34-1.67 0-.84.79-1.43 2.1-1.43 1.38 0 1.92.66 1.97 1.64h1.84c-.05-1.54-1.2-2.65-3.05-2.88V5.5H11v1.47c-1.75.24-3.1 1.47-3.1 3.13 0 2.11 1.76 2.75 3.93 3.26 1.86.45 2.34 1.04 2.34 1.77 0 .77-.75 1.4-2.1 1.4-1.6 0-2.23-.72-2.3-1.64H8.3c.06 1.7 1.46 2.82 3.22 3.05V17h1.5v-1.49c1.75-.24 3.1-1.47 3.1-3.13 0-2.12-1.76-2.76-3.31-3.22z'/%3E%3C/svg%3E") 10px center no-repeat;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.PicWordAd .cont .word .list:hover {
  transform: translateX(5px);
}

.PicWordAd .cont .word .list span {
  color: var(--secondary-color);
  font-weight: 500;
}

.PicWordAd .cont .word .list em {
  color: #ff2a5f;
  font-style: normal;
  font-weight: 600;
}

.PicWordAd .cont .img {
  width: 90%;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.PicWordAd .cont .img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .maincontainer1 .sidcontL, 
  .maincontainer1 .sidcontR {
    width: 48%;
  }
  
  .maincontainer1 .sidcontC {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  
  .sideleft, .sideright {
    width: 48%;
  }
  
  .sidecenter {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  
  .shownewest .cont .img,
  .shownewest .cont .word {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .maincontainer1 .sidcontL, 
  .maincontainer1 .sidcontR,
  .sideleft, 
  .sideright {
    width: 100%;
  }
  
  .sortcont .cont dl.ck dd {
    position: static;
    width: 100%;
    margin-top: 15px;
    border-radius: 0 0 15px 15px;
  }
  
  .HotDianping .cont2 .list {
    width: 100%;
  }
  
  .ShowSlide {
    height: 250px;
  }
  
  .ShowSlide .showlist div {
    width: 50px;
    height: 40px;
  }
}

/* 3D动画效果 */
@keyframes float {
  0% { transform: translateY(0px) rotateX(5deg); }
  50% { transform: translateY(-10px) rotateX(0deg); }
  100% { transform: translateY(0px) rotateX(5deg); }
}

.floating {
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* 赛博朋克风格元素 */
.cyberpunk-border {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green)) border-box;
  animation: border-pulse 3s infinite alternate;
}

@keyframes border-pulse {
  0% { box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); }
  50% { box-shadow: 0 0 15px var(--neon-pink), 0 0 20px var(--neon-pink); }
  100% { box-shadow: 0 0 10px var(--neon-green), 0 0 15px var(--neon-green); }
}

/* 未来科技感滚动条 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(240, 245, 255, 0.5);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

/* 数字城市全息效果 */
.hologram-effect {
  position: relative;
  overflow: hidden;
}

.hologram-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: hologram-sweep 3s infinite;
  z-index: 2;
}

@keyframes hologram-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* AI数字人特效 */
.ai-avatar {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 0 20px var(--neon-blue),
    0 0 40px var(--neon-blue),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  animation: ai-pulse 4s infinite alternate;
}

@keyframes ai-pulse {
  0% { box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), inset 0 0 20px rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-pink), inset 0 0 30px rgba(255, 255, 255, 0.7); }
  100% { box-shadow: 0 0 25px var(--neon-green), 0 0 50px var(--neon-green), inset 0 0 25px rgba(255, 255, 255, 0.6); }
}

/* VR三维场景效果 */
.vr-environment {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.vr-element {
  transform: translateZ(20px);
  transition: transform 0.5s ease;
}

.vr-element:hover {
  transform: translateZ(40px) rotateY(10deg);
}

/* 数字孪生城市网格 */
.digital-city-grid {
  background-image: 
    linear-gradient(rgba(46, 199, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 199, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
}

.digital-city-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

/* 智慧联盟数据流效果 */
.data-stream {
  position: relative;
  overflow: hidden;
}

.data-stream::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  animation: data-flow 2s infinite linear;
}

@keyframes data-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 响应式字体大小 */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 13px;
  }
}

/* 高性能动画优化 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}