:root {
    --primary-color: #FF5722;
    --text-color: #333;
    --bg-color: #fff;
}

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* 头部导航样式 */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 64px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo样式 */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.logo-slogan {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 响应式处理 */
@media screen and (max-width: 768px) {
    .logo-slogan {
        display: none;
    }
}

/* 导航菜单样式 */
.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.menu-item {
    height: 100%;
    position: relative;
}

.menu-item a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.menu-item:hover > a {
    color: #FF5722;
}

.menu-item.active > a {
    color: #FF5722;
}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #FF5722;
}

/* 下拉菜单样式 */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    display: flex;
    width: 800px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 16px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 分组容器 */
.dropdown-groups-column {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    padding: 0 16px;
}

.dropdown-groups-column:last-child {
    border-right: none;
}

.dropdown-group {
    padding: 0;
    margin-bottom: 16px;
}

/* 每三个分组后添加分隔线 */
.dropdown-group:nth-child(3) {
    border-bottom: 1px solid #f5f5f5;
}

.group-title {
    padding: 0 0 12px;
    color: #999;
    font-size: 12px;
    font-weight: normal;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.2;
    border-radius: 6px;
    margin-bottom: 4px;
}

.dropdown-group .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f7f7f7;
}

.item-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    border-radius: 6px;
}

.product-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.dropdown-item:hover .product-icon {
    transform: scale(1.1);
}

.item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-content .title {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-content .desc {
    display: block;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .menu-item {
        padding: 0 12px;
    }
    
    .menu-item a {
        font-size: 13px;
    }
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF5722;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.more {
    font-size: 20px;
    line-height: 1;
}

/* Banner区域整体优化 */
.banner {
    background: linear-gradient(45deg, #FF5722, #FF9800);
    padding: 40px 0;
    color: white;
    overflow: hidden;
    margin-top: 64px;
    min-height: 480px; /* 确保最小高度 */
}

/* 轮播区域优化 */
.el-carousel {
    width: 100%;
    height: 400px !important; /* 增加高度 */
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px; /* 使用minmax防止内容溢出 */
    gap: 30px;
    align-items: center;
}

/* 轮播内容区域优化 */
.banner-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.content-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.banner-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 标题和副标题优化 */
.banner-left h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner-left .subtitle {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.4;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 标签样式优化 */
.promotion-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    width: fit-content;
}

.promotion-tag i {
    font-size: 16px;
}

/* 按钮区域优化 */
.banner-buttons {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}

.banner-buttons .el-button--primary {
    height: 44px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #FF5722;
    border: none;
    transition: all 0.3s ease;
}

/* 登录框优化 */
.banner-right {
    width: 100%;
    max-width: 350px;
}

.login-box {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    width: 100%;
    height: 380px; /* 固定高度 */
}

/* 登录选项卡样式 */
.el-tabs__nav-wrap {
    padding: 0 10px;
}

.el-tabs__item {
    font-size: 15px;
    color: #666;
    padding: 0 15px !important;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s;
}

.el-tabs__item.is-active {
    color: #FF5722;
    font-weight: 500;
}

.el-tabs__active-bar {
    background-color: #FF5722;
    height: 3px;
    border-radius: 1.5px;
}

/* 登录表单样式 */
.login-form {
    margin-top: 24px;
    height: 160px; /* 固定表单高度 */
}

.login-form .el-input {
    margin-bottom: 16px;
}

.login-form .el-input__inner {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    padding: 0 15px 0 40px;
    font-size: 14px;
    background-color: #f7f7f7;
    transition: all 0.3s;
}

.login-form .el-input__inner:hover {
    background-color: #f0f0f0;
}

.login-form .el-input__inner:focus {
    background-color: #fff;
    border-color: #FF5722;
    box-shadow: 0 0 0 2px rgba(255,87,34,0.1);
}

.login-form .el-input__prefix {
    left: 12px;
    color: #999;
}

/* 登录按钮样式优化 */
.login-button {
    width: 100%;
    height: 44px;
    background: #FF5722;  /* 使用纯色背景 */
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: none;  /* 移除阴影 */
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;  /* 添加相对定位 */
    overflow: hidden;   /* 隐藏溢出内容 */
}

.login-button:hover {
    background: #F4511E;  /* 悬停时改变背景色 */
}

/* 移除所有可能的边框和阴影 */
.login-button:focus,
.login-button:active,
.login-button::after,
.login-button::before {
    outline: none;
    border: none;
    box-shadow: none;
}

/* 禁用默认样式 */
.login-button::-moz-focus-inner {
    border: 0;
}

/* 支持平台图标样式 */
.platform-icons {
    margin-top: 20px;
    padding-top: 16px;
    height: 120px; /* 固定平台图标区域高度 */
}

.platform-icons-title {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.platform-icons-title::before,
.platform-icons-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f0f0;
    margin: 0 10px;
}

.platform-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 0 10px;
    margin-top: 12px;
}

.platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.platform-icon:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.platform-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.platform-icon:hover img {
    transform: scale(1.1);
}

/* 添加平台图标提示 */
.platform-icon::after {
    content: attr(data-title);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
}

.platform-icon:hover::after {
    opacity: 1;
    bottom: -25px;
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .banner-content {
        grid-template-columns: minmax(0, 1fr) 300px;
        padding: 15px;
    }
    
    .banner-left h1 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .banner-content {
        grid-template-columns: 1fr;
    }
    
    .banner-right {
        display: none;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .banner-left {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 400px;
        padding: 20px 0;
    }
    
    .el-carousel {
        height: 360px !important;
    }
    
    .banner-left h1 {
        font-size: 28px;
    }
    
    .banner-left .subtitle {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .banner-buttons .el-button {
        width: 100%;
    }
}

/* 轮播动画优化 */
.banner-slide .content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 轮播指示器优化 */
.el-carousel__indicators--outside {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
}

.el-carousel__indicator--horizontal {
    padding: 12px 4px;
}

.el-carousel__button {
    width: 30px !important;
    height: 3px !important;
    border-radius: 1.5px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
}

.el-carousel__indicator.is-active .el-carousel__button {
    background-color: #fff !important;
    transform: scaleX(1.2);
}

/* 平台支持区域 */
.platform-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.platform-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.platform-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.platform-item i {
    font-size: 40px;
    color: var(--primary-color);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 新闻公告 */
.news-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 50px; /* 固定高度为50px */
}

/* 轮播容器高度调整 */
.news-section .el-carousel,
.news-section .el-carousel__container {
    height: 50px !important;
}

/* 新闻项样式调整 */
.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
}

.news-tag {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    flex-shrink: 0;
}

.news-content {
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* 轮播动画优化 */
.el-carousel__item {
    overflow: hidden;
}

/* 隐藏轮播指示器 */
.news-section .el-carousel__indicators {
    display: none;
}

/* 数据统计部分 */
.statistics-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.update-time {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

.statistics-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.stat-item {
    padding: 20px;
}

.stat-item .number {
    font-size: 36px;
    font-weight: bold;
    color: #FF5722;
    margin-bottom: 10px;
}

.stat-item .label {
    color: #666;
    font-size: 14px;
}

/* 客户与伙伴部分 */
.partners-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.customer-image:hover {
    transform: scale(1.02);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .partners-content {
        padding: 0 10px;
    }
    
    .customer-image {
        border-radius: 4px;
    }
}

.partners-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.partner-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partner-item i {
    font-size: 32px;
    color: #666;
    transition: color 0.3s;
}

.partner-item:hover i {
    color: var(--primary-color);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* 修改logo样式 */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 修改二维码样式 */
.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    width: fit-content;
}

/* 添加loading动画 */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #FF5722;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 优化动画性能 */
.platform-item,
.partner-item {
    will-change: transform;
    transform: translateZ(0);
}

/* 使用CSS containment优化渲染性能 */
.platform-grid,
.partner-grid {
    contain: content;
}

/* 优化字体加载 */
@font-face {
    font-family: 'CustomFont';
    font-display: swap;
    src: local('Arial');
}

/* 页脚样式 */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-nav-group h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group ul li {
    margin-bottom: 12px;
}

.footer-nav-group ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-group ul li a:hover {
    color: #fff;
}

.footer-nav-group .phone {
    color: #FF5722;
    font-size: 16px;
    font-weight: bold;
}

/* 二维码样式 */
.qr-codes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.qr-code {
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.qr-code .qr-img {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
    padding: 5px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.qr-code p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* 底部信息样式 */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.footer-info .divider {
    color: #444;
}

.footer-info span {
    white-space: nowrap;
}

.beian {
    display: flex;
    align-items: center;
    gap: 8px;
}

.beian img {
    height: 16px;
}

.beian a {
    color: #999;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-nav-group:last-child {
        grid-column: span 2;
    }
}

/* 导航菜单样式 */
.main-menu {
    border: none !important;
    background: transparent !important;
}

/* 子菜单样式 */
.submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.submenu-content {
    display: flex;
    flex-direction: column;
}

.submenu-content .title {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.submenu-content .desc {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* 子菜单图标样式 */
.submenu-item i {
    font-size: 24px;
    color: var(--primary-color);
}

/* 子菜单hover效果 */
.el-menu-item:hover .submenu-item {
    background: #f5f7fa;
}

/* 子菜单分组标题样式 */
.el-menu-item-group__title {
    padding: 10px 20px !important;
    color: #999 !important;
    font-size: 12px !important;
    background: #f5f7fa;
}

/* 下拉菜单样式优化 */
.el-menu--popup {
    min-width: 200px !important;
    padding: 0 !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important;
}

.el-menu--popup .el-menu-item {
    height: auto !important;
    line-height: 1.5 !important;
    padding: 0 20px !important;
}

/* 主菜单项样式 */
.el-menu--horizontal > .el-menu-item,
.el-menu--horizontal > .el-sub-menu .el-sub-menu__title {
    height: 64px;
    line-height: 64px;
    border-bottom: none !important;
}

.el-menu--horizontal > .el-menu-item:hover,
.el-menu--horizontal > .el-sub-menu:hover .el-sub-menu__title {
    background: rgba(255,255,255,0.1) !important;
}

/* 激活状态样式 */
.el-menu--horizontal > .el-menu-item.is-active,
.el-menu--horizontal > .el-sub-menu.is-active .el-sub-menu__title {
    border-bottom: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Banner轮播样式优化 */
.banner {
    background: linear-gradient(45deg, #FF5722, #FF9800);
    padding: 40px 0;
    color: white;
    overflow: hidden;
    margin-top: 64px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    align-items: center;
}

.banner-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.banner-left {
    max-width: 600px;
}

.banner-left h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: normal;
}

.banner-left .subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
    white-space: normal;
    line-height: 1.4;
}

/* 轮播控件样式优化 */
.el-carousel__arrow {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
}

.el-carousel__arrow:hover {
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.el-carousel__indicators {
    bottom: 20px !important;
}

.el-carousel__indicator--horizontal .el-carousel__button {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.el-carousel__indicator--horizontal.is-active .el-carousel__button {
    background-color: #fff !important;
}

/* 动画效果 */
.banner-slide h1,
.banner-slide .subtitle,
.banner-slide .promotion-tag,
.banner-slide .banner-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
}

.banner-slide .subtitle {
    animation-delay: 0.2s;
}

.banner-slide .banner-buttons {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 按钮样式 */
.banner-buttons {
    margin-top: 30px;
}

.banner-buttons .el-button--primary {
    background: #fff;
    color: #FF5722;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    transition: all 0.3s;
}

.banner-buttons .el-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 轮播区域样式优化 */
.el-carousel {
    width: 100%;
    height: 360px !important;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .banner-content {
        grid-template-columns: 1fr 300px;
    }
    
    .banner-left h1 {
        font-size: 32px;
    }
    
    .banner-left .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
    }
    
    .banner-right {
        display: none;
    }
    
    .el-carousel {
        height: 300px !important;
    }
    
    .banner-left h1 {
        font-size: 28px;
    }
    
    .banner-left .subtitle {
        font-size: 16px;
    }
}

/* 轮播指示器样式优化 */
.el-carousel__indicators {
    bottom: 20px !important;
}

.el-carousel__indicator--horizontal {
    padding: 12px 4px;
}

.el-carousel__button {
    width: 30px !important;
    height: 3px !important;
    border-radius: 1.5px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.el-carousel__indicator.is-active .el-carousel__button {
    background-color: #fff !important;
}

/* 动画优化 */
.banner-slide .content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 微信登录样式 */
.wechat-login {
    padding: 20px 0;
    text-align: center;
    height: 160px; /* 与账号登录表单相同高度 */
}

.qrcode-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    padding: 8px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.qrcode-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qrcode-mask p {
    color: #666;
    font-size: 14px;
}

.qrcode-tip {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}

.other-login {
    margin-top: 30px;
    text-align: center;
}

.divider {
    position: relative;
    color: #999;
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #f0f0f0;
}

.divider::before {
    right: 100%;
}

.divider::after {
    left: 100%;
}

.mobile-login {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    background: #f7f7f7;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-login:hover {
    background: #f0f0f0;
    color: #FF5722;
}

.mobile-login i {
    font-size: 16px;
}

/* tab内容区域样式 */
.el-tabs__content {
    height: calc(100% - 40px); /* 减去tab标题的高度 */
    overflow: hidden;
}

/* 确保内容垂直居中 */
.el-tab-pane {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* 平台图标样式 */
.platform-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.hot-tag {
    background: #FF5722;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 4px;
}

/* 新闻公告样式 */
.news-list {
    overflow: hidden;
    height: 40px;
    position: relative;
}

.news-item {
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 12s linear infinite;
}

@keyframes slideUp {
    0%, 30% {
        transform: translateY(0);
    }
    33%, 63% {
        transform: translateY(-40px);
    }
    66%, 96% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(-120px);
    }
}

.news-tag {
    background: #FF5722;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.news-content {
    color: #666;
    font-size: 14px;
}

/* 登录框样式 */
.login-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.login-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.login-tab.active {
    color: #FF5722;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #FF5722;
}

.input-group {
    position: relative;
    margin-bottom: 16px;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

.login-input {
    width: 100%;
    height: 44px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0 15px 0 40px;
    font-size: 14px;
    background-color: #f7f7f7;
    transition: all 0.3s;
}

.login-input:hover {
    background-color: #f0f0f0;
}

.login-input:focus {
    background-color: #fff;
    border-color: #FF5722;
    box-shadow: 0 0 0 2px rgba(255,87,34,0.1);
    outline: none;
}

.login-button {
    width: 100%;
    height: 44px;
    background: #FF5722;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.login-button:hover {
    background: #F4511E;
}

/* 解决方案下拉菜单样式优化 */
.dropdown-content {
    min-width: 300px;
    padding: 10px 0;
}

.dropdown-group {
    position: relative;
}

.dropdown-group .group-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s;
    gap: 15px;
}

.dropdown-item:hover {
    background-color: #f5f7fa;
}

.dropdown-item .item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(24, 144, 255, 0.1);
}

.dropdown-item .item-icon i {
    font-size: 18px;
}

.dropdown-item .item-content {
    flex: 1;
}

.dropdown-item .item-content .title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.2;
}

.dropdown-item .item-content .desc {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

/* 解决方案图标特定样式 */
.dropdown-item .item-icon .fa-chart-line {
    color: #1890ff;
}

.dropdown-item .item-icon .fa-tags {
    color: #52c41a;
    background-color: rgba(82, 196, 26, 0.1);
}

.dropdown-item .item-icon .fa-handshake {
    color: #faad14;
    background-color: rgba(250, 173, 20, 0.1);
}

.dropdown-item .item-icon .fa-store {
    color: #722ed1;
    background-color: rgba(114, 46, 209, 0.1);
}

/* 图标容器特定背景色 */
.dropdown-item:nth-child(2) .item-icon {
    background-color: rgba(24, 144, 255, 0.1);
}

.dropdown-item:nth-child(3) .item-icon {
    background-color: rgba(82, 196, 26, 0.1);
}

.dropdown-item:nth-child(4) .item-icon {
    background-color: rgba(250, 173, 20, 0.1);
}

.dropdown-item:nth-child(5) .item-icon {
    background-color: rgba(114, 46, 209, 0.1);
} 