/*
Theme Name: RuiXiang Tech
Theme URI: https://www.ruixiangtech.com/
Description: 睿象科技AI-GEO优化服务主题
Author: RuiXiang Tech
Author URI: https://www.ruixiangtech.com/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ruixiangtech
*/

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页头样式 */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    width: 200px;
    height: auto;
}

/* 导航菜单样式 */
.main-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav li a:hover {
    color: #1E88E5;
}

/* 当前活动菜单项样式 */
.main-nav li.current-menu-item a {
    color: #1E88E5;
    font-weight: 600;
    position: relative;
}

.main-nav li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1E88E5;
    border-radius: 1px;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero区样式 */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8) 0%, rgba(156, 39, 176, 0.8) 100%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background-color: #1E88E5;
    color: #fff;
    border: 2px solid #1E88E5;
}

.btn-primary:hover {
    background-color: #1565C0;
    border-color: #1565C0;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 服务模块样式 */
.services-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-desc {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border-bottom: 4px solid #1E88E5;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(30, 136, 229, 0.1), transparent 70%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1E88E5, #C0C0C0, #1E88E5);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(30, 136, 229, 0.25);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon,
.service-title,
.service-desc {
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.service-icon img {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.2) rotate(5deg);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-desc {
    color: #666;
}

/* 服务页面特定样式 */

/* 服务英雄区 */
.services-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f9fafb 0%, #e3f2fd 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    background-size: 600px 600px;
    animation: patternMove 20s ease-in-out infinite alternate;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* 服务概览 */
.services-overview {
    padding: 0px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1E88E5, #C0C0C0);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(156, 39, 176, 0.2));
}

.service-card .service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(34%) sepia(87%) saturate(2572%) hue-rotate(203deg) brightness(93%) contrast(86%);
}

.service-card-2 .service-icon img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(2878%) hue-rotate(270deg) brightness(103%) contrast(94%);
}

.service-card-3 .service-icon img {
    filter: brightness(0) saturate(100%) invert(40%) sepia(93%) saturate(1352%) hue-rotate(350deg) brightness(95%) contrast(86%);
}

.service-card .service-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #1E88E5;
}

.service-card-2:hover .service-title {
    color: #4682B4;
}

.service-card-3:hover .service-title {
    color: #00BCD4;
}

.service-card .service-desc {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* 服务详情部分 */
.service-detail-section {
    padding: 30px 0;
    background-color: #fff;
    position: relative;
}

.service-detail-alt {
    background-color: #f9fafb;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-left {
    position: relative;
}

.service-badge {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E88E5;
    background: rgba(30, 136, 229, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.service-features {
    margin-bottom: 40px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 35px;
}

.feature-icon {
    position: absolute;
    left: 0;
    top: 5px;
    color: #1E88E5;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E88E5, #C0C0C0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

.service-detail-right {
    position: relative;
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.service-detail-section:hover .service-image-wrapper {
    transform: translateY(-5px);
}

.service-detail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-section:hover .service-detail-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-metrics {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 5px;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 服务价值 */
.service-value {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.service-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(30, 136, 229, 0.05) 0%, transparent 50%);
    background-size: 800px 800px;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(156, 39, 176, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    color: #1E88E5;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(156, 39, 176, 0.2));
}

.value-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-item:hover h3 {
    color: #1E88E5;
}

.value-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* 客户评价 */
.service-testimonials {
    padding: 120px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(30, 136, 229, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    color: #03A9F4;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E88E5, #C0C0C0);
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: attr(data-initial);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-item:nth-child(1) .author-avatar::before {
    content: '张';
}

.testimonial-item:nth-child(2) .author-avatar::before {
    content: '李';
}

.author-info h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-alt .service-detail-wrapper {
        flex-direction: column-reverse;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .services-title {
        font-size: 2rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-section,
    .service-value,
    .service-testimonials,
    .services-overview {
        padding: 80px 0;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .service-metrics {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .value-item,
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

/* 市场趋势部分样式 */
.trends-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 60px;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 60px 0;
}

@media (max-width: 1200px) {
    .trends-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trends-grid {
        grid-template-columns: 1fr;
    }
}

.trend-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #1E88E5;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    text-align: center;
}

.trend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.trend-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1E88E5, #C0C0C0, #1E88E5);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trend-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(30, 136, 229, 0.2);
}

.trend-card:hover::before {
    opacity: 1;
}

.trend-card:hover::after {
    opacity: 1;
}

.trend-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.trend-card:hover .trend-icon {
    background: rgba(30, 136, 229, 0.2);
    transform: scale(1.1) translateZ(10px);
}

.trend-card-highlight .trend-icon {
    background: rgba(255, 255, 255, 0.2);
}

.trend-card-highlight:hover .trend-icon {
    background: rgba(255, 255, 255, 0.3);
}

.trend-card .trend-year,
.trend-card .trend-title,
.trend-card .trend-desc {
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.trend-card-highlight {
    background: linear-gradient(135deg, #1E88E5 0%, #C0C0C0 100%);
    border-color: #fff;
    color: #fff;
    transform: scale(1);
    border-left: 4px solid #fff;
}

.trend-card-highlight::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.trend-card-highlight:hover {
    transform: scale(1.05) translateY(-12px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(30, 136, 229, 0.3);
}

.trend-year {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E88E5;
}

.trend-card-highlight .trend-year {
    color: #fff;
}

.trend-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.trend-card-highlight .trend-title {
    color: #fff;
}

.trend-desc {
    color: #666;
    line-height: 1.6;
}

.trend-card-highlight .trend-desc {
    color: rgba(255, 255, 255, 0.9);
}

.trend-conclusion {
    text-align: center;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 10px;
    margin-top: 40px;
}

.trend-conclusion h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.trend-conclusion p {
    font-size: 1.2rem;
    color: #666;
}

/* AI搜索平台部分样式 */
.ai-platforms-section {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.ai-platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.ai-platforms-section .container {
    position: relative;
    z-index: 1;
}

/* AI用户数据滚动效果 */
.ai-users-marquee {
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 40px 0;
    margin: 50px 0;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.ai-users-marquee::before,
.ai-users-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ai-users-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}

.ai-users-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    gap: 40px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(30, 136, 229, 0.3);
}

.ai-platform-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.marquee-item:hover .ai-platform-logo {
    transform: scale(1.1) rotate(5deg);
}

.marquee-text {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-item:hover .marquee-text {
    color: #1E88E5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ai-platforms-highlights {
    margin: 60px 0;
}

.ai-highlight {
    text-align: center;
    margin-bottom: 60px;
}

.ai-highlight h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #1E88E5, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-highlight p {
    font-size: 1.2rem;
    color: #666;
}

.ai-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1100px) {
    .ai-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ai-stats-grid {
        grid-template-columns: 1fr;
    }
}

.ai-stat {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ai-stat::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
    transition: all 0.5s ease;
}

.ai-stat:hover::before {
    transform: translate(50%, -50%) scale(1.3);
    opacity: 0.2;
}

/* 为每个统计卡片添加独特颜色 */
.ai-stat-1 {
    border-top: 4px solid #1E88E5;
}

.ai-stat-1::before {
    background: radial-gradient(circle, #1E88E5 0%, transparent 70%);
}

.ai-stat-2 {
    border-top: 4px solid #4CAF50;
}

.ai-stat-2::before {
    background: radial-gradient(circle, #4CAF50 0%, transparent 70%);
}

.ai-stat-3 {
    border-top: 4px solid #03A9F4;
}

.ai-stat-3::before {
    background: radial-gradient(circle, #03A9F4 0%, transparent 70%);
}

.ai-stat-4 {
    border-top: 4px solid #4682B4;
}

.ai-stat-4::before {
    background: radial-gradient(circle, #4682B4 0%, transparent 70%);
}

/* 悬停效果 - 替代3D变换，使用不同的动画 */
.ai-stat:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ai-stat-1:hover {
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.2);
}

.ai-stat-2:hover {
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.ai-stat-3:hover {
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.2);
}

.ai-stat-4:hover {
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
}

.ai-stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-stat-1 .ai-stat-icon {
    background: rgba(30, 136, 229, 0.1);
}

.ai-stat-2 .ai-stat-icon {
    background: rgba(76, 175, 80, 0.1);
}

.ai-stat-3 .ai-stat-icon {
    background: rgba(255, 152, 0, 0.1);
}

.ai-stat-4 .ai-stat-icon {
    background: rgba(156, 39, 176, 0.1);
}

.ai-stat:hover .ai-stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.ai-stat h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ai-stat-1:hover h4 {
    color: #1E88E5;
}

.ai-stat-2:hover h4 {
    color: #4CAF50;
}

.ai-stat-3:hover h4 {
    color: #03A9F4;
}

.ai-stat-4:hover h4 {
    color: #4682B4;
}

.ai-stat p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.ai-trend {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.ai-trend h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.ai-trend p {
    font-size: 1.2rem;
    color: #666;
}

/* 产品介绍部分样式 */
.product-section {
    padding: 100px 0;
    background-color: #fff;
}

.product-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.product-highlights {
    margin-top: 60px;
}

.product-highlights h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.product-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.product-highlights li {
    font-size: 1.2rem;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.product-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1E88E5;
    font-weight: bold;
    font-size: 1.5rem;
}

/* 产品优势部分样式 */
.advantages-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.advantage-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid #1E88E5;
}

/* 为每个优势卡片添加独特的背景装饰 */
.advantage-card:nth-child(1) {
    border-left-color: #1E88E5;
}

.advantage-card:nth-child(2) {
    border-left-color: #4CAF50;
}

.advantage-card:nth-child(3) {
    border-left-color: #03A9F4;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(50%, -50%);
    transition: all 0.5s ease;
}

.advantage-card:nth-child(1)::before {
    background: radial-gradient(circle, #1E88E5 0%, transparent 70%);
}

.advantage-card:nth-child(2)::before {
    background: radial-gradient(circle, #4CAF50 0%, transparent 70%);
}

.advantage-card:nth-child(3)::before {
    background: radial-gradient(circle, #03A9F4 0%, transparent 70%);
}

/* 悬停效果 - 旋转和颜色变化，替代3D变换 */
.advantage-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.advantage-card:hover::before {
    transform: translate(50%, -50%) scale(1.5);
    opacity: 0.1;
}

.advantage-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card:nth-child(1) .advantage-icon {
    background: rgba(30, 136, 229, 0.1);
}

.advantage-card:nth-child(2) .advantage-icon {
    background: rgba(76, 175, 80, 0.1);
}

.advantage-card:nth-child(3) .advantage-icon {
    background: rgba(255, 152, 0, 0.1);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.2) rotate(360deg);
}

.advantage-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.advantage-card:nth-child(1):hover .advantage-title {
    color: #1E88E5;
}

.advantage-card:nth-child(2):hover .advantage-title {
    color: #4CAF50;
}

.advantage-card:nth-child(3):hover .advantage-title {
    color: #03A9F4;
}

.advantage-desc {
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
}

/* 服务模块样式 */
.services-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: #f9fafb;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid #1E88E5;
}

/* 为每个服务卡片添加独特的颜色 */
.service-card:nth-child(1) {
    border-bottom-color: #1E88E5;
}

.service-card:nth-child(2) {
    border-bottom-color: #4682B4;
}

.service-card:nth-child(3) {
    border-bottom-color: #00BCD4;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(30, 136, 229, 0.1), transparent);
    transition: height 0.5s ease;
    z-index: 0;
}

.service-card:nth-child(2)::before {
    background: linear-gradient(to top, rgba(156, 39, 176, 0.1), transparent);
}

.service-card:nth-child(3)::before {
    background: linear-gradient(to top, rgba(255, 87, 34, 0.1), transparent);
}

/* 悬停效果 - 滑动和阴影变化，替代3D变换 */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

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

.service-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:nth-child(1):hover .service-title {
    color: #1E88E5;
}

.service-card:nth-child(2):hover .service-title {
    color: #4682B4;
}

.service-card:nth-child(3):hover .service-title {
    color: #00BCD4;
}

.service-desc {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* 页脚样式 */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-slogan {
    color: #ccc;
    line-height: 1.6;
}

.footer-nav h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #1E88E5;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* 页面特定样式 */
.about-hero, .services-hero, .case-hero, .insights-hero, .contact-hero {
    padding: 160px 0 80px;
    text-align: center;
    background-color: #f9fafb;
}

.about-title, .services-title, .case-title, .insights-title, .contact-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-desc, .services-desc, .case-desc, .insights-desc, .contact-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 团队部分样式 */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-role {
    color: #1E88E5;
    font-weight: 500;
    margin-bottom: 10px;
}

/* 案例部分样式 */
.case-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #1E88E5;
    background: transparent;
    color: #1E88E5;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #1E88E5;
    color: #fff;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.case-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
}

.case-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0f5ff;
    color: #1E88E5;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* 洞察部分样式 */
.insights-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.article-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.article-img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.article-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.article-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-title a:hover {
    color: #1E88E5;
}

.article-excerpt {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-link {
    color: #1E88E5;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

/* 文章详情页面样式 */
.single-post-hero {
    background-color: #f9fafb;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.single-post-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.single-post-content {
    padding: 60px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.post-content h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #333;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #333;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-tags {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags span {
    color: #666;
    margin-right: 10px;
}

.post-tags a {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.post-tags a:hover {
    background-color: #1E88E5;
    color: #fff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.prev-post a,
.next-post a {
    color: #1E88E5;
    text-decoration: none;
}

.prev-post a:hover,
.next-post a:hover {
    text-decoration: underline;
}

.post-comments {
    margin-top: 40px;
}

.latest-posts-widget {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.latest-posts-widget h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
}

.latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-post-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.latest-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.latest-post-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

.latest-post-item a:hover {
    color: #1E88E5;
}

.latest-post-title {
    margin-bottom: 5px;
    font-weight: 500;
}

.latest-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* 联系部分样式 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    background-color: #1E88E5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #1565C0;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: #1E88E5;
}

.wechat-qr {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.show {
        display: flex;
    }
    
    .main-nav li {
        border-bottom: 1px solid #eee;
    }
    
    .main-nav li a {
        display: block;
    }
    
    /* 移动端当前活动菜单项样式 */
    .main-nav li.current-menu-item a {
        background-color: rgba(30, 136, 229, 0.1);
        color: #1E88E5;
        padding: 15px 20px;
    }
    
    .main-nav li.current-menu-item a::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn {
        margin: 10px 0;
    }
    
    .services-grid, .team-grid, .case-grid, .insights-grid {
        grid-template-columns: 1fr;
    }
    
    /* 文章页面响应式样式 */
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
