/* 电子银行页面样式 */

/* 蓝色顶部栏 */
.blue-top-bar {
    background: #3b82f6;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.blue-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blue-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.homepage-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.homepage-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.home-icon {
    font-size: 16px;
}

.blue-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.online-service {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.person-icon {
    font-size: 16px;
}

/* 头部布局 */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 120px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-chinese {
    font-family: "FZRuiZhengYuan", "SimHei", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "黑体", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    line-height: 1.1;
    text-decoration: none;
}

.logo-english {
    font-family: "FZRuiZhengYuan", "Arial", "Helvetica", sans-serif;
    font-size: 9px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    line-height: 1.1;
    text-decoration: none;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logo链接样式 */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.logo-link img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.logo-link .logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 120px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-link .logo-chinese {
    font-family: "FZRuiZhengYuan", "SimHei", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "黑体", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    line-height: 1.1;
    text-decoration: none;
}

.logo-link .logo-english {
    font-family: "FZRuiZhengYuan", "Arial", "Helvetica", sans-serif;
    font-size: 9px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    line-height: 1.1;
    text-decoration: none;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 企业网上银行标签样式 */
.ebank-label {
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    font-family: "FZRuiZhengYuan", "SimHei", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "黑体", sans-serif;
    margin-left: 8px;
    display: flex;
    align-items: center;
}

/* 语言选择器 */
.language-selector {
    display: flex;
    gap: 15px;
}

.lang-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: #3b82f6;
}

/* 主要内容区域 */
.corporate-main {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* 欢迎区域 */
.welcome-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 40px;
}

.welcome-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.welcome-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}



/* 功能展示区 */
.feature-showcase {
    background: white;
    padding: 40px 0;
}

.feature-items {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 120px;
}

.feature-item .feature-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

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

.mobile-banking-notice {
    text-align: center;
    margin-top: 20px;
}

.mobile-banking-notice p {
    color: #6b7280;
    font-size: 14px;
}

/* 企业金融服务详情 */
.corporate-services {
    background: #f9fafb;
    padding: 40px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 10px;
}

.services-header p {
    color: #6b7280;
    font-size: 16px;
}

.services-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-wrapper {
        padding: 30px 20px;
    }
    
    .banner-left h1 {
        font-size: 36px;
    }
    
    .banner-left p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .welcome-section {
        padding: 40px 20px;
    }
    
    .welcome-section h1 {
        font-size: 28px;
    }
    
    .welcome-section p {
        font-size: 16px;
    }
    
    .feature-items {
        gap: 20px;
    }
    
    .feature-item {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 20px 15px;
    }
    
    .welcome-section {
        padding: 30px 15px;
    }
    
    .welcome-section h1 {
        font-size: 24px;
    }
    
    .welcome-section p {
        font-size: 14px;
    }
    
    .feature-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .services-links {
        gap: 20px;
    }
    
    .service-link {
        font-size: 14px;
    }
}
