/* 重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: #333;
    overflow-x: hidden;
}

/* 导航栏样式 - 未来科技感 */
.show_type {
    height: 60px;
	margin-top:60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
    max-width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.show_type::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ff6b9d, #ff9f6b, #6bbdff, #6bffc2);
    background-size: 400% 400%;
    border-radius: 14px;
    animation: gradientBG 8s ease infinite;
    opacity: 0.7;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.show_type li {
    list-style: none;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.show_type li a {
    display: block;
    font-size: 16px;
    color: #4a5568;
    text-decoration: none;
    padding: 18px 0;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.show_type li:hover {
    transform: translateY(-2px) translateZ(10px);
}

.show_type li.ck {
    background: none;
    font-weight: bold;
}

.show_type li.ck a {
    color: #4299e1;
    text-shadow: 0 0 10px rgba(66, 153, 225, 0.5);
}

.show_type li.ck::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #9f7aea);
    border-radius: 3px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* 加载动画 - 现代CSS动画 */
#loading {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 20px 0;
}

.loading_span {
    display: block;
    width: 40px;
    height: 40px;
    background: none;
    position: relative;
}

.loading_span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #4299e1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading_span::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 3px solid transparent;
    border-bottom: 3px solid #9f7aea;
    border-radius: 50%;
    animation: spinReverse 1.5s linear infinite;
}

@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: 20px;
    overflow: hidden;
}

.ShowConts {
    width: 100%;
    margin: 0;
}

/* 产品/服务列表 - 3D卡片效果 */
#ShowAlls {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 0;
}

#ShowAlls .ListShop {
    width: 100%;
    height: auto;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
}

#ShowAlls .ListShop:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05);
}

#ShowAlls .ListShop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4299e1, #9f7aea, #4299e1);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

#ShowAlls .ListShop .title {
    padding: 20px 20px 10px;
    height: auto;
    min-height: 60px;
}

#ShowAlls .ListShop .title a {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

#ShowAlls .ListShop .title a:hover {
    color: #4299e1;
}

#ShowAlls .ListShop .company {
    padding: 0 20px 15px;
    height: auto;
    min-height: 40px;
}

#ShowAlls .ListShop .company a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

#ShowAlls .ListShop .company a:hover {
    color: #4299e1;
}

#ShowAlls .ListShop .img {
    width: 90%;
    height: 220px;
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e0);
    display: flex;
    justify-content: center;
    align-items: center;
}

#ShowAlls .ListShop .img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(66, 153, 225, 0.2), rgba(159, 122, 234, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

#ShowAlls .ListShop:hover .img::before {
    opacity: 1;
}

#ShowAlls .ListShop .img a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

#ShowAlls .ListShop .img a::after {
    content: 'VR预览';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

#ShowAlls .ListShop:hover .img a::after {
    opacity: 1;
}

#ShowAlls .ListShop .info {
    width: 90%;
    height: auto;
    min-height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    position: absolute;
    left: 5%;
    top: auto;
    bottom: 100px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    color: #fff;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#ShowAlls .ListShop:hover .info {
    opacity: 1;
    transform: translateY(0);
}

#ShowAlls .ListShop .info span {
    padding: 0;
    font-size: 14px;
}

#ShowAlls .ListShop .info .hits em {
    color: #63b3ed;
    font-weight: bold;
}

#ShowAlls .ListShop .mores {
    width: 90%;
    height: auto;
    padding: 15px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ShowAlls .ListShop .mores .price {
    float: none;
    padding: 0;
    color: #2d3748;
    font-size: 18px;
    font-weight: bold;
}

#ShowAlls .ListShop .mores .price em {
    font-size: 24px;
    color: #4299e1;
}

#ShowAlls .ListShop .mores a {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: linear-gradient(90deg, #4299e1, #9f7aea);
    border-radius: 25px;
    text-align: center;
    line-height: normal;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(66, 153, 225, 0.3);
    float: none;
    margin: 0;
}

#ShowAlls .ListShop .mores a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(66, 153, 225, 0.4);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .MainContents {
        padding: 15px;
    }
    
    #ShowAlls {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .show_type {
        height: auto;
        flex-direction: column;
        padding: 10px;
    }
    
    .show_type li {
        width: 100%;
        margin: 5px 0;
    }
    
    #ShowAlls {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #ShowAlls .ListShop {
        min-height: 350px;
    }
    
    #ShowAlls .ListShop .img {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .MainContents {
        padding: 10px;
    }
    
    #ShowAlls .ListShop {
        min-height: 320px;
    }
    
    #ShowAlls .ListShop .img {
        height: 150px;
    }
    
    #ShowAlls .ListShop .mores {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #ShowAlls .ListShop .mores a {
        align-self: flex-end;
    }
}

/* 添加一些全局动画效果 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* 添加科技感边框效果 */
.cyber-border {
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.cyber-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #ff9f6b, #6bbdff, #6bffc2);
    z-index: -1;
    border-radius: inherit;
    animation: borderAnimation 3s linear infinite;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}