.show_type {
    height: 50px;
    overflow: hidden;
	margin-top:60px;
    background: linear-gradient(135deg, rgba(224, 224, 255, 0.8) 0%, rgba(240, 240, 255, 0.9) 100%);
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(100, 100, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 -6px 12px rgba(80, 80, 255, 0.15) inset;
    backdrop-filter: blur(12px);
    padding: 0 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.show_type:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00cc, #3333ff, #00ccff, #ff00cc);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: gradientShift 8s ease infinite;
    opacity: 0.7;
    filter: blur(4px);
}

@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: 50px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 600px;
    margin: 0 5px;
}

.show_type li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 15px;
    height: 20px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(100, 100, 255, 0.6), transparent);
}

.show_type li a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.show_type li:hover {
    transform: translateZ(15px) scale(1.05);
    background: rgba(200, 200, 255, 0.4);
    border-radius: 12px;
}

.show_type li.ck {
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    box-shadow: 
        0 6px 20px rgba(110, 69, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border-radius: 12px;
    transform: translateZ(20px) scale(1.05);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(110, 69, 226, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.5) inset; }
    50% { box-shadow: 0 6px 30px rgba(110, 69, 226, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.8) inset; }
    100% { box-shadow: 0 6px 20px rgba(110, 69, 226, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.5) inset; }
}

.show_type li.ck a {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

#loading {
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
}

.loading_span {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-top: 2px solid #6e45e2;
    border-right: 2px solid #88d3ce;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 15px rgba(110, 69, 226, 0.6);
    position: relative;
}

.loading_span:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-top: 2px solid #ff00cc;
    border-radius: 50%;
    animation: spinReverse 2s linear infinite;
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.MainContents {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 20px;
    overflow: hidden;
}

.ShowConts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 0;
}

#ShowAlls {
    padding: 0;
}

#ShowAlls .ListShop {
    height: 420px;
    border: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    backdrop-filter: blur(8px);
}

#ShowAlls .ListShop:hover {
    transform: translateY(-12px) rotateX(8deg) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(110, 69, 226, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

#ShowAlls .ListShop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff00cc, #6e45e2, #88d3ce, #ff00cc);
    background-size: 400% 400%;
    border-radius: 20px 20px 0 0;
    animation: gradientShift 6s ease infinite;
    z-index: 2;
}

#ShowAlls .ListShop:after {
    content: 'VR';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

#ShowAlls .ListShop .title {
    padding: 20px 20px 10px;
    height: auto;
    min-height: 50px;
    overflow: hidden;
    line-height: 26px;
}

#ShowAlls .ListShop .title a {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

#ShowAlls .ListShop .title a:hover {
    color: #6e45e2;
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.3);
}

#ShowAlls .ListShop .company {
    padding: 5px 20px;
    height: auto;
    min-height: 36px;
    overflow: hidden;
    line-height: 22px;
}

#ShowAlls .ListShop .company a {
    color: #6e45e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#ShowAlls .ListShop .company a:hover {
    text-shadow: 0 0 8px rgba(110, 69, 226, 0.4);
}

#ShowAlls .ListShop .img {
    width: 90%;
    height: 200px;
    padding-top: 10px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 15px;
    background: rgba(240, 240, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

#ShowAlls .ListShop:hover .img {
    transform: scale(1.05) translateZ(20px);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.2);
}

#ShowAlls .ListShop .img:before {
    content: 'VR预览';
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#ShowAlls .ListShop .img a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f0ff 0%, #e0e0ff 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

#ShowAlls .ListShop .img a:after {
    content: '👁️ 点击进入三维场景';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6e45e2;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#ShowAlls .ListShop .img a:hover:after {
    opacity: 1;
}

#ShowAlls .ListShop .img a:hover {
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.3);
}

#ShowAlls .ListShop .info {
    width: 90%;
    height: 36px;
    overflow: hidden;
    line-height: 36px;
    background: rgba(110, 69, 226, 0.12);
    position: absolute;
    left: 5%;
    top: 270px;
    z-index: 100;
    border-radius: 10px;
    color: #6e45e2;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(110, 69, 226, 0.2);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#ShowAlls .ListShop .info span {
    font-size: 13px;
    display: flex;
    align-items: center;
}

#ShowAlls .ListShop .info .hits em {
    font-weight: bold;
    color: #ff4e78;
    font-style: normal;
    text-shadow: 0 0 5px rgba(255, 78, 120, 0.4);
}

#ShowAlls .ListShop .mores {
    width: 90%;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

#ShowAlls .ListShop .mores .price {
    line-height: 1;
    color: #333;
    font-weight: 700;
    font-size: 20px;
}

#ShowAlls .ListShop .mores .price em {
    font-style: normal;
    font-size: 28px;
    color: #6e45e2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

#ShowAlls .ListShop .mores a {
    display: block;
    width: 120px;
    height: 40px;
    overflow: hidden;
    text-align: center;
    line-height: 40px;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    border-radius: 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(110, 69, 226, 0.4);
    position: relative;
    overflow: hidden;
}

#ShowAlls .ListShop .mores a:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

#ShowAlls .ListShop .mores a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 69, 226, 0.6);
}

#ShowAlls .ListShop .mores a:hover:before {
    left: 50%;
    top: 50%;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .MainContents {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .ShowConts {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .show_type {
        height: auto;
        flex-direction: column;
        border-radius: 12px;
        padding: 10px;
    }
    
    .show_type li {
        width: 100%;
        margin: 5px 0;
    }
    
    .show_type li:not(:last-child):after {
        display: none;
    }
    
    .ShowConts {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    #ShowAlls .ListShop {
        height: auto;
        min-height: 420px;
    }
    
    #ShowAlls .ListShop .img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .MainContents {
        padding: 15px 10px;
    }
    
    .ShowConts {
        grid-template-columns: 1fr;
    }
    
    #ShowAlls .ListShop .mores {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    #ShowAlls .ListShop .mores a {
        width: 100%;
    }
    
    .show_type:before {
        animation: none;
    }
}