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

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* 防止水平滚动 */
}

/* 使用CSS变量统一管理颜色和常用值 */
:root {
    --primary-color: #007bff;
    --primary-gradient: linear-gradient(135deg, #0062ff, #2d8eff, #00a1ff);
    --text-primary: #333;
    --text-secondary: #666;
    --white: #fff;
    --section-width: 1300px;
    --border-radius: 16px;
    --transition-normal: all 0.3s ease;
    --animation-duration: 0.3s;
    --animation-timing: ease;
}

/* 主要内容区域样式 */
.main-content {
    width: 100%;
    background: #fff;
    margin-top: 0;
    position: relative;
    z-index: 9;
    padding-top: 0;
}

/* 白色背景区块 */
.white-section {
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

/* 入驻流程区域的白色背景区块特殊处理 */
.section-3.section-container {
    width: 1300px;
    margin: 0 auto;
    padding: 40px 0 40px; /* 增加顶部内边距到80px */
}

.section-3 {
    width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 浅蓝色背景区块 */
.blue-section {
    width: 100%;
    background: #f5f9ff;
    padding: 20px 0; /* 减小内边距 */
}

.section-2 {
    width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 内容容器通用样式 */
.section-container {
    width: var(--section-width);
    margin: 0 auto;
    padding: 0;
}

section h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

/* 移除原有的箭头按钮 */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* 分页器样式 */
.swiper-pagination {
    position: absolute;
    bottom: 80px !important;
    left: 15% !important;
    width: auto !important;
    text-align: left;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 6px !important;
    opacity: 0.7;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

/* LOGO区域样式 */
.logo {
    display: flex;
    align-items: center;
    margin-left: 0; /* 移除负margin */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

/* 分隔线样式 */
.logo-divider {
    height: 16px;
    width: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 12px;
    transition: background 0.3s ease;
}

/* 文字样式 */
.logo-text {
    font-size: 12px;
    color: #007bff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid hsla(224, 98%, 63%, 0.4);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

/* 文字悬停效果 */
.logo-text:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

/* 滚动时的样式变化 */
.navbar.scrolled .logo-text,
.navbar:hover .logo-text {
    color: #007bff;
    border-color: rgba(0, 123, 255, 0.3);
    background: transparent;
}

.navbar.scrolled .logo-text:hover,
.navbar:hover .logo-text:hover {
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

/* 添加光效动画 */
.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.logo-text:hover::before {
    left: 100%;
}

/* 滚动时的样式变化 */
.navbar.scrolled .logo-divider,
.navbar:hover .logo-divider {
    background: rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* 默认显示白色LOGO */
.light-logo {
    opacity: 1;
    position: absolute;
}

.dark-logo {
    opacity: 0;
}

/* 滚动时切换LOGO */
.navbar.scrolled .light-logo,
.navbar:hover .light-logo {
    opacity: 0;
}

.navbar.scrolled .dark-logo,
.navbar:hover .dark-logo {
    opacity: 1;
}

/* 用户菜单样式 */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.user-btn {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.menu-icon {
    margin-right: 8px;
    opacity: 1;
    transition: transform 0.3s ease;
}

/* 登录按钮特殊样式 */
.login-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.login-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

/* 订单查询按钮特殊样式 */
.order-btn {
    background: linear-gradient(135deg, #0062ff, #2d8eff, #00a1ff); /* 更丰富的蓝色渐变 */
    border: none;
    color: #fff !important; /* 确保颜色始终为白色 */
    box-shadow: 0 2px 8px rgba(0, 98, 255, 0.3);
}

.order-btn:hover {
    background: linear-gradient(135deg, #0057e5, #1c7eff, #008fee);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 98, 255, 0.4);
}

/* 按钮悬停图标效果 */
.user-btn:hover .menu-icon {
    transform: scale(1.1);
}

/* 滚动或导航栏悬停时的按钮样式保持原色 */
.navbar.scrolled .login-btn,
.navbar:hover .login-btn {
    background: transparent;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .order-btn,
.navbar:hover .order-btn {
    background: linear-gradient(135deg, #0062ff, #2d8eff, #00a1ff);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 98, 255, 0.3);
}

/* 数据统计区域样式 */
.stats-container {
    width: 100%;
    background: transparent;
    padding: 0;
    margin-top: -40px;
    margin-bottom: 0; /* 移除底部间距 */
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    width: 1300px;
    margin: 0 auto;
    padding: 15px 60px; /* 减小上下内边距 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('../images/index/back-0.png') no-repeat center;
    background-size: 100% 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite; /* 恢复浮动动画 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 恢复浮动动画 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 悬停效果 */
.stats-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

/* 调整数据项样式 */
.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 30px;
    will-change: transform;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 15px;
    color: #666;
    margin-top: 4px;
}

/* 添加图标旋转动画 */
@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: iconRotate 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* 悬停时停止摆动，改为旋转效果 */
.stat-item:hover .stat-icon {
    animation: none;
    transform: rotate(10deg);
}

/* 添加数字跳动动画 */
@keyframes numberBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* 直播营销区域样式 */
.section-2 {
    background: #f5f9ff;  /* 浅蓝色背景 */
    border-radius: 20px;
    max-width: 1300px;
    box-shadow: none;
    padding: 40px 0;
}

.section-2 .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-2 h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;  /* 减小标题和副标题的间距 */
    border: none;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;  /* 减小下划线的距离 */
}

/* 添加标题装饰 */
.section-2 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00a1ff);
    border-radius: 3px;
}

/* 副标题样式优化 */
.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.8;
    position: relative;
    padding: 0 30px;
}

/* 添加两侧装饰 */
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.3));
    border-radius: 2px;
}

.section-subtitle::before {
    left: -20px;
    transform: rotate(-45deg);
}

.section-subtitle::after {
    right: -20px;
    transform: rotate(45deg);
}

/* 添加渐变文字效果 */
.section-subtitle {
    background: linear-gradient(90deg, #666, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* 添加标题区域的动画效果 */
.section-2 .section-header {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 功能特点区域 */
.live-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.15);
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* 内容展示区域 */
.live-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

/* 图片区域样式 */
.live-image {
    flex: 0 0 40%;
    max-width: 450px;
    min-width: 300px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0 auto;
}

/* 添加浮动动画 */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px) rotate(1deg);
    }
    50% {
        transform: translateY(0) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(1deg);
    }
}

.live-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(0, 161, 255, 0.1));
    border-radius: 12px;
    z-index: -1;
    transition: all 0.3s ease;
    animation: glowEffect 3s ease-in-out infinite alternate;
}

/* 添加光晕动画 */
@keyframes glowEffect {
    from {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
    }
    to {
        box-shadow: 0 0 40px rgba(0, 123, 255, 0.4);
    }
}

.live-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    transition: all 0.5s ease;
    transform: translateZ(0);
    animation: pulseEffect 3s ease-in-out infinite;
}

/* 添加脉冲动画 */
@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1) translateZ(0);
    }
    50% {
        transform: scale(1.02) translateZ(20px);
    }
}

/* 悬停效果 */
.live-image:hover {
    animation-play-state: paused;
}

.live-image:hover img {
    animation-play-state: paused;
    transform: translateZ(30px) rotateY(-8deg);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
}

.live-image:hover::before {
    transform: translateZ(15px) scale(1.08);
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), rgba(0, 161, 255, 0.2));
    animation-play-state: paused;
}

/* 文字内容区域 */
.live-info {
    flex: 0 0 50%;
    max-width: 550px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.live-info h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

.live-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #007bff, #00a1ff);
    border-radius: 2px;
}

.live-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.live-info li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.live-info li:nth-child(1) { animation-delay: 0.4s; }
.live-info li:nth-child(2) { animation-delay: 0.6s; }
.live-info li:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.live-info li:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.15);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    background: linear-gradient(45deg, #007bff, #00a1ff);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 1s;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.learn-more:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* 入驻流程区域样式 */
.process-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-item {
    text-align: center;

    position: relative;
    transition: all 0.3s ease;
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 图标背景效果 */
.process-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #fff 0%, #f5f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.process-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(0, 123, 255, 0.1), rgba(0, 161, 255, 0.1));
    border-radius: 20px;
    transform: rotate(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* 图标样式 */
.process-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 123, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 序号样式 */
.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: linear-gradient(45deg, #007bff, #00a1ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
    z-index: 3;
    transition: all 0.4s ease;
}

/* 悬停效果 */
.process-item:hover .process-icon::before {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.process-item:hover .process-icon::after {
    transform: rotate(0deg) scale(1.15);
    opacity: 0.8;
}

.process-item:hover .process-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 123, 255, 0.3));
}

.process-item:hover .process-number {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

/* 连接线样式 */
.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.3), transparent);
    z-index: 0;
}

/* 文字样式 */
.process-item h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.process-item:hover h3 {
    color: #007bff;
}

/* 为什么选择趣玩互联样式 */
.section-3 .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-3 h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border: none;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

/* 添加新的装饰效果 */
.section-3 h2::before,
.section-3 h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid #007bff;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    animation: circleExpand 1.5s ease-out infinite alternate;
}

.section-3 h2::before {
    left: -20px;
    border-color: #007bff transparent transparent #007bff;
    animation-delay: 0s;
}

.section-3 h2::after {
    right: -20px;
    border-color: transparent #007bff #007bff transparent;
    animation-delay: 0.75s;
}

@keyframes circleExpand {
    from {
        transform: translateY(-50%) scale(0);
        opacity: 0.8;
    }
    to {
        transform: translateY(-50%) scale(1);
        opacity: 0;
    }
}

/* 添加文字发光效果 */
.section-3 h2 {
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    }
}

/* 副标题样式 */
.section-3 .section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 0.8s ease forwards 0.3s;
}

@keyframes subtitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 添加装饰性波浪线 */
.section-3 .section-subtitle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

/* 其他区域样式 */
.section-4,
.section-5,
.section-6 {
    padding: 40px 0;
}

/* 添加动画效果 */
.process-item {
    opacity: 0;
    transform: translateY(20px);
    animation: processItemFadeIn 0.5s ease forwards;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }
.process-item:nth-child(5) { animation-delay: 0.5s; }
.process-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes processItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 添加浏览器前缀 */
.element {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 使用@supports检测特性支持 */
@supports (backdrop-filter: blur(8px)) {
    .glass-effect {
        backdrop-filter: blur(8px);
        background: rgba(255, 255, 255, 0.1);
    }
}

.button {
  color: var(--text-primary);
  transition: var(--transition-normal);
}

/* 使用CSS变量控制动画时间 */
.animated-element {
  transition: all var(--animation-duration) var(--animation-timing);
}

.notice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.notice-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 238, 243, 0.6);
    position: relative;
    overflow: hidden;
}

.notice-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(24, 144, 255, 0.1);
}

.notice-item:hover::after {
    opacity: 1;
}

.notice-content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.notice-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 144, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.notice-item:hover .notice-icon {
    background: rgba(24, 144, 255, 0.1);
}

.notice-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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

.notice-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.notice-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
    position: relative;
}

.header-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.header-left h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #1890ff, #52c41a);
    border-radius: 2px;
}

.view-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(24, 144, 255, 0.05);
}

.view-more:hover {
    background: rgba(24, 144, 255, 0.1);
    transform: translateX(5px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    background: url('../images/index/arrow-right.png') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.view-more:hover .arrow-icon {
    transform: translateX(3px);
}

.section-1.section-container {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.03),
        0 5px 12px rgba(0, 0, 0, 0.02),
        inset 0 -2px 5px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 238, 243, 0.6);
}

.section-1.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(24, 144, 255, 0.03) 0%,
            rgba(82, 196, 26, 0.03) 50%,
            rgba(250, 140, 22, 0.03) 100%);
    pointer-events: none;
    opacity: 0.6;
}

.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.corner-top-left {
    top: 0;
    left: 0;
    border-top: 2px solid #1890ff;
    border-left: 2px solid #1890ff;
    border-top-left-radius: 12px;
}

.corner-top-right {
    top: 0;
    right: 0;
    border-top: 2px solid #52c41a;
    border-right: 2px solid #52c41a;
    border-top-right-radius: 12px;
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #52c41a;
    border-left: 2px solid #52c41a;
    border-bottom-left-radius: 12px;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #fa8c16;
    border-right: 2px solid #fa8c16;
    border-bottom-right-radius: 12px;
}

.section-1.section-container:hover {
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.05),
        0 6px 16px rgba(0, 0, 0, 0.03),
        inset 0 -2px 5px rgba(255, 255, 255, 0.8);
}

.section-1.section-container:hover .corner {
    width: 45px;
    height: 45px;
    opacity: 0.9;
}

@keyframes borderFlow {
    0% {
        border-color: #1890ff;
    }
    33% {
        border-color: #52c41a;
    }
    66% {
        border-color: #fa8c16;
    }
    100% {
        border-color: #1890ff;
    }
}

.corner {
    animation: borderFlow 6s linear infinite;
}

.white-section .section-1.section-container {
    background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 1400px) {
    .section-1.section-container {
        border-radius: 20px;
    }
    
    .corner {
        width: 35px;
        height: 35px;
    }
}