/* 首页专用样式 */

.hero-swiper {
    height: calc(100vh - 80px);
    /* 100vh减去头部高度80px */
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: none;
    /* 隐藏遮罩层 */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    display: none;
    /* 隐藏文字内容 */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-btn {
    background-color: #ea9427;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 148, 39, 0.3);
}

.hero-btn:hover {
    background-color: #d18419;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 148, 39, 0.4);
    color: white;
    text-decoration: none;
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 15px;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.video-modal-title {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.video-modal-close {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    line-height: 0.8;
    position: relative;
    top: -1px;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transform: scale(1.1);
}

.video-modal-body {
    padding: 0;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* 播放按钮样式 */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    background: rgba(234, 148, 39, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(234, 148, 39, 0.4);
}

.play-button:hover {
    background: rgba(234, 148, 39, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(234, 148, 39, 0.6);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

@media screen and (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* 解决方案卡片样式已移至 solution-cards.css */

/* Swiper导航按钮样式 */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(234, 148, 39, 0.8);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 12px;
    }
}

/* Swiper分页器样式 */
.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #ea9427;
    transform: scale(1.2);
}

/* 全球资源网络赋能模块样式 */
.hover\:scale-102:hover {
    transform: scale(1.02);
}

/* 全球数据展示模块样式 */
.region-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.region-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.region-info {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.region-info.active {
    display: block;
    opacity: 1;
}

.country-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.country-item:hover .w-16 {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.country-item.clicked {
    transform: scale(0.95);
    opacity: 0.8;
}

/* 地区导航按钮样式 */
.region-nav-btn {
    padding-left: 0;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 8px 8px 0;
}

.region-nav-btn.active {
    background-color: transparent !important;
    background-image: none !important;
    color: #000000 !important;
    font-weight: bold;
    border: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0;
}

.region-nav-btn.active span {
    background: none !important;
}

/* 技术展示网格模块样式 */
.tech-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card .bg-white {
    position: relative;
    overflow: hidden;
}

.tech-card .bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.tech-card:hover .bg-white::before {
    left: 100%;
}

/* 图标区域动画 */
.tech-card .bg-gradient-to-br {
    position: relative;
    overflow: hidden;
}

.tech-card:hover .bg-gradient-to-br {
    transform: scale(1.05);
}

/* SVG图标动画 */
.tech-card svg {
    transition: all 0.3s ease;
}

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

/* 装饰性动画点 */
.tech-card .animate-pulse {
    animation: techPulse 2s ease-in-out infinite;
}

@keyframes techPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* 内容区域动画 */
.tech-card p {
    transition: all 0.3s ease;
}

.tech-card:hover p {
    color: #374151;
    transform: translateY(-2px);
}

/* 标题动画 */
.tech-card h3 {
    transition: all 0.3s ease;
    position: relative;
}

.tech-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tech-card:hover h3::after {
    width: 60%;
}

/* 技术展示网格响应式设计 */
@media (max-width: 1024px) {
    .tech-card .bg-gradient-to-br {
        height: 12rem;
    }

    .tech-card h3 {
        font-size: 1.125rem;
    }

    .tech-card p {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .tech-card .bg-gradient-to-br {
        height: 10rem;
    }

    .tech-card .p-6 {
        padding: 1rem;
    }

    .tech-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .tech-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .tech-card .bg-gradient-to-br {
        height: 8rem;
    }

    .tech-card .w-20 {
        width: 3rem;
        height: 3rem;
    }

    .tech-card svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .tech-card .p-6 {
        padding: 0.75rem;
    }

    .tech-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .tech-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* 装饰性动画 */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tech-swiper .absolute.top-4.right-4 {
    animation: float 3s ease-in-out infinite;
}

/* 渐变背景动画 */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-gradient-to-br {
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-swiper {
        height: calc(100vh - 80px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tech-swiper .swiper-slide h3 {
        font-size: 1.5rem;
    }
}

/* AI工具Tab模块样式 */
.ai-tools-section {
    background-color: #f9fafb;
}

.ai-tool-content {
    display: none;
    transition: opacity 0.3s ease;
}

.ai-tool-content.active {
    display: flex;
}

.ai-tool-description {
    display: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.ai-tool-description.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 客户评价轮播模块样式 */
.testimonials-swiper {
    padding-bottom: 50px;
}

.testimonials-swiper.swiper {
    overflow: visible;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.testimonials-swiper .swiper-button-next {
    right: -20px;
}

.testimonials-swiper .swiper-button-prev {
    left: -20px;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: rgba(234, 148, 39, 0.8);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(234, 148, 39, 0.4);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #0008;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0 !important;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #ea9427;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(234, 148, 39, 0.4);
}

/* AI工具响应式设计 */
@media (max-width: 768px) {
    .ai-tools-section .flex {
        flex-direction: column;
    }

    .ai-tools-section .w-1\/2 {
        width: 100%;
    }

    .ai-tools-section .w-1\/2:first-child {
        margin-bottom: 2rem;
    }

    .ai-tool-content-wrapper {
        min-height: 300px;
    }
}

/* 合作客户跑马灯动画样式 */
.marquee-container {
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    will-change: transform;
    transition: animation-play-state 0.3s ease;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused !important;
}

/* 向左滚动动画 - 无缝滚动 */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 向右滚动动画 - 无缝滚动 */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 第一行 - 慢速向左滚动 (25秒) */
.marquee-left.row-1 {
    animation: scrollLeft 25s linear infinite;
}

/* 第二行 - 中速向右滚动 (18秒) */
.marquee-right.row-2 {
    animation: scrollRight 18s linear infinite;
}

/* 第三行 - 快速向左滚动 (15秒) */
.marquee-left.row-3 {
    animation: scrollLeft 15s linear infinite;
}

/* 默认样式作为备用 */
.marquee-left {
    animation: scrollLeft 20s linear infinite;
}

.marquee-right {
    animation: scrollRight 20s linear infinite;
}

/* 客户logo卡片悬停效果 */
.marquee-content .logo-card {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.marquee-content .logo-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* 渐变遮罩层优化 */
.marquee-container .bg-gradient-to-r,
.marquee-container .bg-gradient-to-l {
    opacity: 0.9;
}

/* 合作客户模块响应式设计 */
@media (max-width: 768px) {
    .marquee-content .logo-card {
        width: 128px !important;
        height: 80px !important;
        padding: 0.75rem !important;
    }

    .marquee-content {
        gap: 1.5rem !important;
    }

    /* 缩小渐变遮罩宽度 */
    .marquee-container .w-32 {
        width: 4rem !important;
    }
}

@media (max-width: 480px) {
    .marquee-content .logo-card {
        width: 112px !important;
        height: 70px !important;
        padding: 0.5rem !important;
    }

    .marquee-content {
        gap: 1rem !important;
    }

    /* 进一步缩小渐变遮罩宽度 */
    .marquee-container .w-32 {
        width: 3rem !important;
    }
}

/* ================ 大模块进入动画样式 ================ */

/* 基础动画样式 */
.section-animate-enter {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease-out;
}

.section-animate-enter.active {
    opacity: 1;
    transform: translateY(0);
}

/* 确保动画期间的性能优化 */
.section-animate-enter,
.card-animate-enter {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 卡片交错动画样式 */
.card-animate-enter {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 0.6s ease-out;
}

.card-animate-enter.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 防止动画过程中的闪烁 */
.hero-section,
.solutions-section,
.features-section,
.global-resources-section,
.global-data-section,
.tech-section,
.ai-tools-section,
.global-layout-section,
.testimonials-section,
.customer-services-section,
.trade-news-section,
.clients-section,
.contact-section {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* 动画完成后清理will-change以提升性能 */
.animation-complete {
    will-change: auto;
}

/* 特殊的3D变换效果增强 */
.tech-swiper .swiper-slide,
.global-layout-swiper .swiper-slide,
.overseas-layout-swiper .swiper-slide {
    transform-style: preserve-3d;
}

/* 3D变换容器 */
.section-3d-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 渐变背景动画 */
@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background-size: 200% 200%;
    animation: backgroundShift 15s ease-in-out infinite;
}

/* 脉冲动画效果 */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* 移动端动画优化 */
@media (max-width: 768px) {
    .section-animate-enter {
        transform: translateY(30px);
    }

    .card-animate-enter {
        transform: translateY(40px) scale(0.95);
    }

    /* 减少3D效果在移动端的使用 */
    .section-3d-effect {
        perspective: 500px;
    }
}

/* 低性能设备优化 */
@media (max-width: 480px) {

    .section-animate-enter,
    .card-animate-enter {
        will-change: opacity;
        transform: none;
        transition: opacity 0.3s ease-out;
    }

    .section-3d-effect {
        transform-style: flat;
        perspective: none;
    }
}

/* 减少动画效果的媒体查询（用户偏好） */
@media (prefers-reduced-motion: reduce) {

    .section-animate-enter,
    .card-animate-enter {
        transition: opacity 0.3s ease-out;
        transform: none;
    }

    .animated-gradient,
    .pulse-animation {
        animation: none;
    }

    .section-3d-effect {
        transform-style: flat;
        perspective: none;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {

    .section-animate-enter,
    .card-animate-enter {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================ 产品功能轮播样式 ================ */

/* 产品功能轮播导航按钮样式 */
.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
    color: white;
    background: #ea9427;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 148, 39, 0.3);
    border: none;
    outline: none;
}

.features-swiper .swiper-button-next:hover,
.features-swiper .swiper-button-prev:hover {
    background: #d18419;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(234, 148, 39, 0.5);
}

.features-swiper .swiper-button-next::after,
.features-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* 产品功能轮播分页器样式 */
.features-swiper .swiper-pagination {
    bottom: -50px;
    text-align: center;
}

.features-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
    cursor: pointer;
}

.features-swiper .swiper-pagination-bullet:hover {
    background: #fbbf24;
    transform: scale(1.1);
}

.features-swiper .swiper-pagination-bullet-active {
    background: #ea9427;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(234, 148, 39, 0.4);
}

/* 产品功能轮播容器样式 */
.features-swiper {
    padding-bottom: 60px;
    overflow: hidden;
}

/* 移动端产品功能轮播优化 */
@media (max-width: 768px) {

    .features-swiper .swiper-button-next,
    .features-swiper .swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .features-swiper .swiper-button-next::after,
    .features-swiper .swiper-button-prev::after {
        font-size: 14px;
    }

    .features-swiper .swiper-pagination {
        bottom: -40px;
    }

    .features-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* ================ 资源网络Tab模块样式 ================ */

/* Tab导航按钮样式 */
.resource-tab-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resource-tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.resource-tab-btn.active {
    color: #eab308 !important;
    background-color: white !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.2) !important;
    transform: translateY(-2px);
}

/* Tab内容区域样式 */
.resource-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    border-radius: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
}

.resource-tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

/* Tab容器需要相对定位 */
.resource-tab-container {
    position: relative;
    min-height: 300px;
}

/* 淡入向上动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab内容卡片样式重置 */
.resource-tab-content .bg-white {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-tab-content .bg-white:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
}

/* 图标容器动画 */
.resource-tab-content .w-20 {
    transition: all 0.3s ease;
}

.resource-tab-content .bg-white:hover .w-20 {
    transform: scale(1.1) rotate(5deg);
}

/* 按钮悬停效果 */
.resource-tab-content .bg-orange-400 {
    position: relative;
    overflow: hidden;
}

.resource-tab-content .bg-orange-400::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.resource-tab-content .bg-orange-400:hover::before {
    left: 100%;
}

/* 右侧图片容器样式 */
.resource-tab-content .w-1\/3 .bg-white {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.resource-tab-content .w-1\/3 img {
    transition: all 0.3s ease;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-tab-content .w-1\/3:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .resource-tab-content {
        position: static;
        display: none;
    }

    .resource-tab-content.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 2;
    }


    .resource-tab-content .flex {
        flex-direction: column;
    }

    .resource-tab-content .w-2\/3,
    .resource-tab-content .w-1\/3 {
        width: 100%;
    }

    .resource-tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .resource-tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .resource-tab-content .p-8 {
        padding: 1.5rem;
    }

    .resource-tab-content .text-2xl {
        font-size: 1.5rem;
    }

    .resource-tab-content .text-lg {
        font-size: 1rem;
    }
}

/* 客户评价轮播按钮响应式样式 */
@media (max-width: 768px) {
    .testimonials-swiper .swiper-button-next {
        right: 5px;
    }

    .testimonials-swiper .swiper-button-prev {
        left: 5px;
    }

    /* 移动端轮播内容调整 */
    .testimonials-swiper .swiper-slide .flex {
        flex-direction: column;
        height: auto;
    }

    .testimonials-swiper .swiper-slide .w-1\/2 {
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .testimonials-swiper .swiper-slide .w-1\/2:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    }

    .testimonials-swiper .swiper-button-next {
        right: 2px;
    }

    .testimonials-swiper .swiper-button-prev {
        left: 2px;
    }

    .testimonials-swiper .swiper-button-next::after,
    .testimonials-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .testimonials-swiper .swiper-button-next:hover,
    .testimonials-swiper .swiper-button-prev:hover {
        box-shadow: 0 4px 15px rgba(234, 148, 39, 0.4);
    }

    /* 超小屏幕内容调整 */
    .testimonials-swiper .swiper-slide .px-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* 国家国旗展示区域样式 */
.countries-container {
    scrollbar-width: thin;
    scrollbar-color: #ea9427 #f3f4f6;
}

.countries-container::-webkit-scrollbar {
    width: 8px;
}

.countries-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.countries-container::-webkit-scrollbar-thumb {
    background: #ea9427;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.countries-container::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

.country-item {
    transition: all 0.3s ease;
}

.country-item:hover {
    transform: translateY(-2px);
}

/* 响应式国旗网格 */
@media (max-width: 1200px) {
    .countries-container .grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

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

    .countries-container {
        max-height: 80vh;
    }
}

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

    .country-item .w-20 {
        width: 3rem;
    }

    .country-item .h-14 {
        height: 2.5rem;
    }
}

/* 移动端Tab内容区域样式 */
.region-content-mobile {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.region-content-mobile.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.region-info-mobile {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.region-info-mobile.active {
    display: block;
    opacity: 1;
}

.region-nav-btn-mobile {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.region-nav-btn-mobile.active {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #000000 !important;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.region-nav-btn-mobile:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

/* 移动端国旗容器滚动条样式 */
.countries-container-mobile::-webkit-scrollbar {
    width: 4px;
}

.countries-container-mobile::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.countries-container-mobile::-webkit-scrollbar-thumb {
    background: rgba(234, 148, 39, 0.6);
    border-radius: 2px;
}

.countries-container-mobile::-webkit-scrollbar-thumb:hover {
    background: rgba(234, 148, 39, 0.8);
}

/* ================ Footer手风琴效果样式 ================ */

/* 手风琴项目容器 */
.footer-accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* 手风琴标题区域 */
.footer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.25rem;
}

.footer-accordion-header:hover .footer-accordion-icon {
    transform: scale(1.1);
}

/* 手风琴图标 */
.footer-accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.footer-accordion-icon.rotate {
    transform: rotate(180deg);
}

/* 手风琴内容区域 */
.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion-content.active {
    max-height: 300px;
    padding: 0.5rem 1rem 1rem 1rem;
}

/* 手风琴内容列表样式 */
.footer-accordion-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-accordion-content li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.footer-accordion-content.active li {
    opacity: 1;
    transform: translateY(0);
}

.footer-accordion-content.active li:nth-child(1) {
    transition-delay: 0.05s;
}

.footer-accordion-content.active li:nth-child(2) {
    transition-delay: 0.1s;
}

.footer-accordion-content.active li:nth-child(3) {
    transition-delay: 0.15s;
}

.footer-accordion-content.active li:nth-child(4) {
    transition-delay: 0.2s;
}

.footer-accordion-content.active li:nth-child(5) {
    transition-delay: 0.25s;
}

.footer-accordion-content.active li:nth-child(6) {
    transition-delay: 0.3s;
}

.footer-accordion-content.active li:nth-child(7) {
    transition-delay: 0.35s;
}

.footer-accordion-content.active li:nth-child(8) {
    transition-delay: 0.4s;
}

/* 链接悬停效果增强 */
.footer-accordion-content a:hover {
    color: #ea9427 !important;
    transform: translateX(5px);
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
    .footer-accordion-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .footer-accordion-content.active {
        max-height: 250px;
        padding: 0.25rem 0.75rem 0.75rem 0.75rem;
    }

    .footer-accordion-icon {
        width: 1rem;
        height: 1rem;
    }

    .footer-accordion-content li {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-accordion-header {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .footer-accordion-content.active {
        max-height: 200px;
        padding: 0.25rem 0.5rem 0.5rem 0.5rem;
    }
}