/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* 官方店铺样式 */
.official-stores {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.official-stores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.store-card {
    background: white;
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::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: left 0.5s ease;
}

.store-card:hover::before {
    left: 100%;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.store-icon {
    position: relative;
    display: inline-block;
}

.store-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.store-card:hover .store-icon::after {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,123,255,0.2) 0%, transparent 70%);
}

.store-features .badge {
    font-size: 0.75em;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    font-weight: 500;
}

.jd-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(199, 22, 34, 0.2));
}

.taobao-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(252, 136, 72, 0.2));
}

.store-card:hover .jd-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(199, 22, 34, 0.3));
}

.store-card:hover .taobao-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(252, 136, 72, 0.3));
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .nav-link i {
    margin-right: 5px;
    font-size: 0.9em;
    opacity: 0.7;
}

.navbar .nav-link:hover {
    color: #007bff !important;
    transform: translateY(-2px);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.tech-badge {
    font-size: 0.7em;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: top;
}

/* 主页横幅 */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 122, 255, 0.4)), url('../assets/momirt-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* 添加科技感网格背景 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    from { transform: translateY(0); }
    to { transform: translateY(30px); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* 特色功能卡片 */
.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.3);
}

.feature-card img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(0, 122, 255, 0.2));
    transition: transform 0.4s ease;
}

.feature-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #007AFF, #0056b3);
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004094);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.2);
}

/* 页脚样式 */
.footer {
    border-top: 1px solid #eee;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer a:hover {
    color: #007AFF;
}
/* 在原有style.css中添加以下样式 */

/* 商品卡片样式 */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 100%; /* 确保卡片高度一致 */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
    width: 100%;
    height: 400px; /* 增加图片高度 */
    object-fit: contain; /* 改为 contain 以保持图片比例 */
    background: #f8f9fa; /* 添加背景色 */
    padding: 20px; /* 添加内边距 */
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007AFF;
}

/* 服务卡片样式 */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.platform-icon img {
    transition: transform 0.3s ease;
}

.platform-icon:hover img {
    transform: scale(1.1);
}

/* 更新公司介绍部分 */
.company-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 122, 255, 0.05));
    transform: rotate(45deg);
}

/* 更新联系表单样式 */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #fff;
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.1);
    transform: translateY(-2px);
}

/* 更新按钮样式 */
.btn {
    border-radius: 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 添加科技感动画效果 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* 更新按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #007AFF, #0056b3);
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004094);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.2);
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* 更新特色功能样式 */
.feature-card-large {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.7)
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.feature-content {
    color: white;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.feature-card-large:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card-large:hover .feature-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 122, 255, 0.2),
        rgba(0, 122, 255, 0.8)
    );
}

.feature-card-large:hover .feature-content {
    transform: translateY(0);
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .feature-image {
        height: 400px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
}

/* 简介部分样式 */
.intro-section {
    padding-top: 80px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list i {
    margin-right: 10px;
}

/* 参数表格样式 */
.specs-section .table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* 平台图标样式 */
.platform-icons img {

    transition: transform 0.3s ease;
}

.platform-icons img:hover {
    transform: scale(1.1);
}

/* 展示轮播样式 */
.platform-showcase {
    background: #f8f9fa;
    padding: 60px 0;
}

.showcase-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.showcase-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.showcase-caption p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* 轮播控制样式 */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(0,0,0,0.2);
}

.carousel-indicators .active {
    background-color: #007AFF;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .showcase-card img {
        height: 300px;
    }
    
    .showcase-caption h5 {
        font-size: 1.2rem;
    }
    
    .showcase-caption p {
        font-size: 1rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/grid.png') repeat;
    opacity: 0.1;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    transform: rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: rotateY(0);
}

.floating-tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.tech-dots {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 3px);
    background-size: 20px 20px;
}

.tech-lines {
    position: absolute;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%);
    background-size: 20px 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, #dee2e6 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.tech-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    height: 480px;
    width: auto;
    object-fit: cover;
    max-height: 500px;
}

.tech-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.tech-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle at 4px 4px, #0d6efd 2px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.2;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tech-table td {
    border-left: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-table tr:hover {
    background-color: rgba(0,123,255,0.05);
}

.tech-table i {
    margin-right: 8px;
    font-size: 14px;
}

/* 平台支持区域样式 */
.platform-support {
    overflow: hidden;
    padding: 60px 0;
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(13, 110, 253, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.platform-item {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    height: 120px; /* 减小整体高度 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:0;
}

.platform-img-wrapper {
    height: 80px; /* 统一图片容器高度 */
    width: 240px; /* 统一图片容器宽度 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.platform-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

/* 特殊处理某些需要调整的logo */
.platform-img-wrapper img[alt="Unity"],
.platform-img-wrapper img[alt="Blender"],
.platform-img-wrapper img[alt="Maya"] {
    max-width: 85%; /* 稍微缩小一些大logo */
}

.platform-img-wrapper img[alt="虚幻引擎"],
.platform-img-wrapper img[alt="Cinema4D"] {
    max-width: 70%; /* 更小一些的logo */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .platform-item {
        height: 120px;
    }
    
    .platform-img-wrapper {
        width: 180px;
        height: 60px;
    }
}

.platform-item p {
    margin-top: 1rem;
    font-weight: 500;
    color: #333;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.platform-item:hover p {
    opacity: 1;
    color: #007AFF;
}

/* 添加悬浮效果 */
.platform-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.platform-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}



.carousel-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image-container img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
.application-item {
    padding: 20px;
    transition: transform 0.3s ease;
}
.application-item:hover {
    transform: translateY(-10px);
}
.application-item img{
    height: 100px;
    width: auto;
}
.tech-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    margin: 10px auto;
    border-radius: 2px;
}
@media (max-width: 768px) {
    .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}



/* 服务页面特定样式 */
.service-intro {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 122, 255, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.5;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.1);
}

.service-card .list-unstyled li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card .fa-check-circle {
    font-size: 1.1rem;
}

.tech-showcase {
    position: relative;
    overflow: hidden;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 122, 255, 0.05));
    transform: rotate(45deg);
}

.tech-features {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 122, 255, 0.05);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    padding-top: 5px;
}

.tech-support .support-card {
    transition: all 0.3s ease;
}

.tech-support .support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.platform-icon {
    padding: 20px;
    transition: all 0.3s ease;
}

.platform-icon img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.platform-icon:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.platform-icon h5 {
    color: #333;
    margin-bottom: 5px;
}

.platform-icon p {
    color: #666;
    font-size: 0.9rem;
}


.service-carousel .carousel-image-container {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 比例，如果需要其他比例可以调整这个值 */
    background: #f8f9fa;
    overflow: hidden;
}

.service-carousel .carousel-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 改为 contain 以保持图片比例 */
}

/* 确保轮播图控制按钮位置正确 */
.service-carousel .carousel-control-prev,
.service-carousel .carousel-control-next {
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-carousel .carousel-image-container {
        padding-top: 75%; /* 在移动端可以使用不同的比例 */
    }
}

.product-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-card:hover {
    transform: translateY(-5px);
}
.badge-new, .badge-hot {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    color: white;
}
.badge-new {
    background: #2ecc71;
}
.badge-hot {
    background: #e74c3c;
}
.tech-specs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
}
.tech-specs span {
    font-size: 0.9em;
}
.price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2980b9;
}
.status {
    color: #7f8c8d;
    font-style: italic;
}
.category-filter .btn {
    margin: 0 5px;
}
.category-filter i {
    margin-right: 5px;
}

/* 商城页面特定样式 */
.shop-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.category-header {
    border-left: 4px solid #007AFF;
    padding-left: 15px;
    margin-top: 40px;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #333;
}

.badge {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
}

.badge-new, .badge-hot {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.badge-hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.tech-specs {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.tech-specs i {
    color: #007AFF;
    margin-right: 5px;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.tech-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    margin: 0 auto;
    border-radius: 2px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .tech-specs {
        flex-direction: column;
        gap: 5px;
    }
}

/* 虚拟人IP创建流程样式 */
.virtual-ip-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.virtual-ip-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        linear-gradient(rgba(0, 122, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    pointer-events: none;
}

.process-timeline {
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007AFF, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    z-index: 3;
}

.step-image-wrapper {
    position: relative;
    margin: 30px auto 20px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.step-image-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
    transform: scale(1.05);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 122, 255, 0.05) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.step-image-wrapper:hover .tech-overlay {
    opacity: 1;
}

.step-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #007AFF, #00d4ff, #007AFF);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.step-image-wrapper:hover::before {
    opacity: 1;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007AFF, #00d4ff);
    transition: all 0.4s ease;
}

.process-step:hover .step-title::after {
    width: 60px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-connector {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #007AFF, transparent);
    z-index: 1;
}

.step-connector::before {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #007AFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

/* 隐藏最后一个连接线 */
.process-step:last-child .step-connector {
    display: none;
}

.process-flow-line {
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #007AFF 25%, 
        #00d4ff  50%, 
        #007AFF 75%, 
        transparent 100%
    );
    transform: translateY(-50%);
    z-index: 1;
}

.process-flow-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 22px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 10px,
        rgba(0, 122, 255, 0.1) 10px,
        rgba(0, 122, 255, 0.1) 20px
    );
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .process-step {
        margin-bottom: 40px;
    }
    
    .step-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-flow-line {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .step-image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

/* 零基础虚拟直播样式 */
.virtual-live-stream {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.virtual-live-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        linear-gradient(rgba(0, 122, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    pointer-events: none;
}

.live-stream-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.live-stream-image-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
    transform: translateY(-5px);
}

.live-stream-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.live-stream-image-wrapper:hover .live-stream-image {
    transform: scale(1.02);
}

.live-stream-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #007AFF, #00d4ff, #007AFF);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.live-stream-image-wrapper:hover::before {
    opacity: 1;
}

.live-stream-features {
    position: relative;
    z-index: 2;
}

.feature-step {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #007AFF, #00d4ff);
    transition: all 0.4s ease;
    z-index: 0;
}

.feature-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.15);
}

.feature-step:hover::before {
    width: 4px;
}

.feature-step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007AFF, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    margin-right: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-step:hover .feature-step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.feature-step-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.feature-step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007AFF, #00d4ff);
    transition: all 0.4s ease;
}

.feature-step:hover .feature-step-title::after {
    width: 60px;
}

.feature-step-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .live-stream-image-wrapper {
        margin-bottom: 30px;
    }
    
    .feature-step {
        padding: 15px;
    }
    
    .feature-step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .feature-step-title {
        font-size: 1.1rem;
    }
    
    .feature-step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-step {
        padding: 12px;
    }
    
    .feature-step-number {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 12px;
    }
    
    .feature-step-title {
        font-size: 1rem;
    }
    
    .feature-step-description {
        font-size: 0.85rem;
    }
}

/* MotmirtCare服务样式 */
.motmirt-care {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.motmirt-care::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(0, 122, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 122, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.care-service-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.care-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(0, 122, 255, 0.01) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.care-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.15);
}

.care-service-card:hover::before {
    opacity: 1;
}

.care-service-card .card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007AFF, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #007AFF, #00d4ff, #007AFF);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.care-service-card:hover .service-icon {
    transform: scale(1.1);
}

.care-service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.care-service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007AFF, #00d4ff);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.care-service-card:hover .service-title::after {
    width: 50px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .care-service-card .card-body {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .care-service-card .card-body {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}

/* SuitePro高级功能样式 */
.suitepro-features {
    background: #f8f9fa;
    overflow: hidden;
}

.suitepro-features .bg-pattern {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,123,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.suitepro-features .tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,123,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0,123,255,0.05) 0%, transparent 50%);
}

.suitepro-features .feature-card {
    border: 1px solid rgba(0,123,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.suitepro-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.suitepro-features .tech-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.6;
}

.suitepro-features .feature-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.suitepro-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
    transition: left 0.5s ease;
}

.suitepro-features .feature-item:hover::before {
    left: 100%;
}

.suitepro-features .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0,123,255,0.05);
    box-shadow: 0 10px 30px rgba(0,123,255,0.2);
}

.suitepro-features .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,123,255,0.25);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.suitepro-features .feature-icon i {
    font-size: 1.4rem;
    color: white;
    line-height: 1;
}

.suitepro-features .feature-content h5 {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.suitepro-features .feature-content p {
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .suitepro-features .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .suitepro-features .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 10px;
    }
    
    .suitepro-features .feature-icon i {
        font-size: 1.2rem;
    }
    
    .suitepro-features .feature-content h5 {
        font-size: 1.1rem;
    }
}