:root {
  --primary-color: #6e45e2;
  --secondary-color: #88d3ce;
  --accent-color: #ff4e78;
  --neon-blue: #00ccff;
  --neon-pink: #ff00cc;
  --glow-intensity: 0.6;
}

.show_type {
    height: 60px;
	margin-top:60px;
    overflow: visible;
    background: linear-gradient(135deg, 
        rgba(224, 224, 255, 0.9) 0%, 
        rgba(240, 240, 255, 0.95) 100%);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(100, 100, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 -8px 16px rgba(80, 80, 255, 0.15) inset;
    backdrop-filter: blur(15px);
    padding: 0 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.show_type::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--neon-pink), var(--primary-color), var(--secondary-color), var(--neon-pink));
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: gradientShift 8s ease infinite;
    opacity: 0.8;
    filter: blur(6px);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.show_type li {
    flex: 1;
    text-align: center;
    line-height: 60px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 800px;
    margin: 0 8px;
    z-index: 1;
}

.show_type li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18px;
    height: 24px;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(100, 100, 255, 0.7), 
        transparent);
}

.show_type li a {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.8px;
    position: relative;
    z-index: 2;
}

.show_type li:hover {
    transform: translateZ(20px) scale(1.08);
    background: rgba(200, 200, 255, 0.5);
    border-radius: 14px;
}

.show_type li.ck {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 
        0 8px 25px rgba(110, 69, 226, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    border-radius: 14px;
    transform: translateZ(25px) scale(1.08);
    animation: pulse 3s infinite, neonGlow 2s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(110, 69, 226, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.6) inset; }
    50% { box-shadow: 0 8px 35px rgba(110, 69, 226, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.8) inset; }
    100% { box-shadow: 0 8px 25px rgba(110, 69, 226, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.6) inset; }
}

@keyframes neonGlow {
    from {
        box-shadow: 0 0 5px rgba(110, 69, 226, 0.8),
                    0 0 10px rgba(110, 69, 226, 0.6),
                    0 0 15px rgba(110, 69, 226, 0.4);
    }
    to {
        box-shadow: 0 0 10px rgba(110, 69, 226, 1),
                    0 0 20px rgba(110, 69, 226, 0.8),
                    0 0 30px rgba(110, 69, 226, 0.6);
    }
}

.show_type li.ck a {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

#loading {
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 30px 0;
    position: relative;
}

#loading span {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 15px;
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.4);
}

.loading_span {
    display: block;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(110, 69, 226, 0.8);
    position: relative;
}

.loading_span::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid transparent;
    border-top: 3px solid var(--neon-pink);
    border-radius: 50%;
    animation: spinReverse 2.5s linear infinite;
    opacity: 0.8;
}

.loading_span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color),
                0 0 20px var(--primary-color);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-720deg); }
}

.MainContents {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 25px;
    overflow: hidden;
    position: relative;
}

.MainContents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(110, 69, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(136, 211, 206, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.ShowConts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin: 0;
}

#ShowAlls {
    padding: 0;
}

#ShowAlls .ListShop {
    height: 480px;
    border: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    backdrop-filter: blur(10px);
}

#ShowAlls .ListShop:hover {
    transform: translateY(-15px) rotateX(10deg) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(110, 69, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

#ShowAlls .ListShop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--neon-pink), var(--primary-color), var(--secondary-color), var(--neon-pink));
    background-size: 400% 400%;
    border-radius: 24px 24px 0 0;
    animation: gradientShift 6s ease infinite;
    z-index: 2;
}

#ShowAlls .ListShop::after {
    content: 'VR';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(5deg); }
    66% { transform: translateY(4px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

#ShowAlls .ListShop .title {
    padding: 25px 25px 15px;
    height: auto;
    min-height: 60px;
    overflow: hidden;
    line-height: 28px;
}

#ShowAlls .ListShop .title a {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#ShowAlls .ListShop .title a:hover {

    color: var(--primary-color);
    text-shadow: 0 0 12px rgba(110, 69, 226, 0.4);
    transform: translateZ(10px);
}

#ShowAlls .ListShop .company {
    padding: 8px 25px;
    height: auto;
    min-height: 40px;
    overflow: hidden;
    line-height: 24px;
}

#ShowAlls .ListShop .company a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    text-shadow: 0 0 5px rgba(110, 69, 226, 0.2);
}

#ShowAlls .ListShop .company a:hover {
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
    transform: translateZ(5px);
}

#ShowAlls .ListShop .img {
    width: 90%;
    height: 220px;
    padding-top: 15px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 18px;
    background: rgba(240, 240, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

#ShowAlls .ListShop:hover .img {
    transform: scale(1.08) translateZ(25px);
    box-shadow: 0 12px 30px rgba(110, 69, 226, 0.25);
}

#ShowAlls .ListShop .img::before {
    content: 'VR预览';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#ShowAlls .ListShop .img a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #f0f0ff 0%, #e0e0ff 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.5s ease;
}

#ShowAlls .ListShop .img a::after {
    content: '👁️ 点击进入三维场景';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

#ShowAlls .ListShop .img a:hover::after {
    opacity: 1;
}

#ShowAlls .ListShop .img a:hover {
    box-shadow: 0 12px 30px rgba(110, 69, 226, 0.35);
}

#ShowAlls .ListShop .info {
    width: 90%;
    height: 40px;
    overflow: hidden;
    line-height: 40px;
    background: rgba(110, 69, 226, 0.15);
    position: absolute;
    left: 5%;
    top: 300px;
    z-index: 100;
    border-radius: 12px;
    color: var(--primary-color);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(110, 69, 226, 0.25);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

#ShowAlls .ListShop .info span {
    font-size: 14px;
    display: flex;
    align-items: center;
}

#ShowAlls .ListShop .info .hits em {
    font-weight: bold;
    color: var(--accent-color);
    font-style: normal;
    text-shadow: 0 0 8px rgba(255, 78, 120, 0.5);
}

#ShowAlls .ListShop .mores {
    width: 90%;
    height: 80px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}

#ShowAlls .ListShop .mores .price {
    line-height: 1;
    color: #333;
    font-weight: 800;
    font-size: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#ShowAlls .ListShop .mores .price em {
    font-style: normal;
    font-size: 32px;
    color: var(--primary-color);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#ShowAlls .ListShop .mores a {
    display: block;
    width: 140px;
    height: 45px;
    overflow: hidden;
    text-align: center;
    line-height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 22px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(110, 69, 226, 0.5);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#ShowAlls .ListShop .mores a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

#ShowAlls .ListShop .mores a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(110, 69, 226, 0.7);
}

#ShowAlls .ListShop .mores a:hover::before {
    left: 50%;
    top: 50%;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .MainContents {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .ShowConts {
        grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .show_type {
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 14px;
        padding: 15px;
    }
    
    .show_type li {
        width: calc(50% - 10px);
        margin: 5px;
    }
    
    .show_type li:not(:last-child)::after {
        display: none;
    }
    
    .ShowConts {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    #ShowAlls .ListShop {
        height: auto;
        min-height: 450px;
    }
    
    #ShowAlls .ListShop .img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .show_type {
        flex-direction: column;
    }
    
    .show_type li {
        width: 100%;
        margin: 8px 0;
    }
    
    .ShowConts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #ShowAlls .ListShop .mores {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 20px;
        text-align: center;
    }
    
    #ShowAlls .ListShop .mores a {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .MainContents {
        padding: 20px 15px;
    }
    
    .show_type::before {
        animation: none;
    }
    
    #ShowAlls .ListShop::after {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    #ShowAlls .ListShop .title {
        padding: 20px 20px 10px;
    }
    
    #ShowAlls .ListShop .title a {
        font-size: 18px;
    }
    
    #ShowAlls .ListShop .mores .price {
        font-size: 20px;
    }
    
    #ShowAlls .ListShop .mores .price em {
        font-size: 28px;
    }
}