.show_type {
    height: 40px;
	margin-top:60px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0ff 0%, #f0f0ff 100%);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(100, 100, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset,
                0 -4px 8px rgba(80, 80, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    padding: 0 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.show_type li {
    flex: 1;
    text-align: center;
    line-height: 40px;
    position: relative;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 500px;
}

.show_type li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    height: 20px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(100, 100, 255, 0.5), transparent);
}

.show_type li a {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.show_type li:hover {
    transform: translateZ(10px);
    background: rgba(200, 200, 255, 0.3);
}

.show_type li.ck {
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    box-shadow: 0 4px 12px rgba(110, 69, 226, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    border-radius: 8px;
    margin: 4px;
    transform: translateZ(15px);
}

.show_type li.ck a {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#loading {
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.loading_span {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-top: 2px solid #6e45e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.MainContents {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.ShowConts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 0;
}

#ShowAlls {
    padding: 0;
}

#ShowAlls .ListShop {
    height: 380px;
    border: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(5px);
}

#ShowAlls .ListShop:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(110, 69, 226, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

#ShowAlls .ListShop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    border-radius: 16px 16px 0 0;
}

#ShowAlls .ListShop .title {
    padding: 15px 15px 5px;
    height: auto;
    min-height: 40px;
    overflow: hidden;
    line-height: 24px;
}

#ShowAlls .ListShop .title a {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

#ShowAlls .ListShop .title a:hover {
    color: #6e45e2;
}

#ShowAlls .ListShop .company {
    padding: 5px 15px;
    height: auto;
    min-height: 32px;
    overflow: hidden;
    line-height: 20px;
}

#ShowAlls .ListShop .company a {
    color: #6e45e2;
    text-decoration: none;
    font-weight: 500;
}

#ShowAlls .ListShop .img {
    width: 90%;
    height: 180px;
    padding-top: 10px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 12px;
    background: rgba(240, 240, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#ShowAlls .ListShop .img:before {
    content: 'VR预览';
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(110, 69, 226, 0.8);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}

#ShowAlls .ListShop .img a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f0ff 0%, #e0e0ff 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

#ShowAlls .ListShop .img a:after {
    content: '👁️ 点击进入VR场景';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6e45e2;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#ShowAlls .ListShop .img a:hover:after {
    opacity: 1;
}

#ShowAlls .ListShop .info {
    width: 90%;
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    background: rgba(110, 69, 226, 0.1);
    position: absolute;
    left: 5%;
    top: 245px;
    z-index: 100;
    border-radius: 8px;
    color: #6e45e2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(110, 69, 226, 0.2);
}

#ShowAlls .ListShop .info span {
    float: left;
    padding: 0 12px;
    font-size: 12px;
}

#ShowAlls .ListShop .info .hits {
    float: right;
}

#ShowAlls .ListShop .info .hits em {
    font-weight: bold;
    color: #ff4e78;
    font-style: normal;
}

#ShowAlls .ListShop .mores {
    width: 90%;
    height: 60px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ShowAlls .ListShop .mores .price {
    line-height: 1;
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

#ShowAlls .ListShop .mores .price em {
    font-style: normal;
    font-size: 24px;
    color: #6e45e2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#ShowAlls .ListShop .mores a {
    display: block;
    width: 110px;
    height: 36px;
    overflow: hidden;
    text-align: center;
    line-height: 36px;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    border-radius: 18px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(110, 69, 226, 0.3);
}

#ShowAlls .ListShop .mores a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(110, 69, 226, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .show_type {
        height: auto;
        flex-direction: column;
        border-radius: 8px;
    }
    
    .show_type li {
        width: 100%;
    }
    
    .show_type li:not(:last-child):after {
        display: none;
    }
    
    .ShowConts {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    #ShowAlls .ListShop {
        height: auto;
        min-height: 380px;
    }
}

@media (max-width: 480px) {
    .MainContents {
        padding: 10px;
    }
    
    .ShowConts {
        grid-template-columns: 1fr;
    }
    
    #ShowAlls .ListShop .mores {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }
    
    #ShowAlls .ListShop .mores a {
        width: 100%;
    }
}