/* 重置和全局样式 */
:root {
    --primary-color: #2B5BFF;
    --text-color: #333333;
    --light-bg: #F5F7FA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* 修改导航栏和主横幅的共同父容器样式 */
.hero-wrapper {
    background-image: url('../images/banner/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 640px;
    width: 100%;
}

/* 导航栏样式更新 */
.navbar {
    height: 98px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

/* 滚动时的导航栏样式 */
.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(45 81 203);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    margin-right: 50px;
    height: 50px; /* 设置固定高度 */
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 40px; /* logo 高度 */
    width: auto; /* 宽度自适应 */
}

.navbar-nav {
    margin-left: 0;
}

/* 导航链接基础样式 */
.nav-link {
    font-size: 16px;
    padding: 8px 20px !important;
    position: relative;
    color: #fff !important;
    transition: all 0.3s ease;
}

/* 导航链接悬停效果 */
.nav-link:hover {
    color: #fff !important;
}

/* 导航链接选中状态 */
.nav-link.active {
    font-weight: 500;
}

/* 导航链接选中状态下方横条 */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #fff;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* 非选中状态的横条（隐藏） */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* 悬停时显示横条 */
.nav-link:hover::after {
    transform: scaleX(1);
}

/* 添加字体声明 */
@font-face {
    font-family: 'PingFang SC';
    src: local('PingFang SC'),
         local('PingFangSC-Regular');
    font-weight: normal;
    font-style: normal;
}

/* 更新主横幅样式 */
.hero-section {
    padding: 0;
    background: transparent;
    min-height: calc(640px - 98px);
    display: flex;
    align-items: flex-start;
}

.hero-content {
    padding-top: 104px;
    width: 100%;
}

.hero-content h1 {
    font-size: 60px;
    font-family: 'PingFang SC';
    font-weight: normal;
    line-height: 84px;
    color: rgba(255,255,255,1);
    margin-bottom: 40px;
    text-align: right;
}

.hero-buttons {
    text-align: right;
    padding-right: 254px;
}

/* 修改hero-section中的按钮样式 */
.hero-section .get-button {
    width: 312px;
    height: 100px;
    line-height: 56px;
    border-radius: 50px;
    background-color: rgba(45,81,204,1);
    color: rgba(255,255,255,1);
    font-size: 40px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
    font-family: PingFangSC-regular;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.hero-section .get-button:hover {
    background-color: rgba(40,73,184,1);
    color: rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    text-decoration: none;
}

/* 保持原有的.get-button基础样式，用于解决方案部分的按钮 */
.get-button {
    width: 118px;
    height: 50px;
    line-height: 23px;
    border-radius: 50px;
    background-color: rgba(255,255,255,1);
    color: rgba(45,81,204,1);
    font-size: 16px;
    text-align: center;
    font-family: PingFangSC-regular;
    border: 1px solid rgba(45,81,204,1);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 响应式调整只针对hero-section的按钮 */
@media (max-width: 991px) {
    .hero-section .get-button {
        width: 240px;
        height: 80px;
        font-size: 32px;
        line-height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-section .get-button {
        width: 200px;
        height: 60px;
        font-size: 24px;
        line-height: 35px;
    }
}

/* 移除不需要的样式 */
.hero-text,
.hero-image {
    display: none;
}

/* 服务优势样式 */
.advantages-section {
    padding: 80px 0;
    background: #fff;
}

.advantage-card {
    text-align: center;
    padding: 30px;
    margin: 15px;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 24px;
}

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

.advantage-card h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 16px;
    font-weight: 500;
}

.advantage-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .advantages-section .col-md-3 {
        flex: 0 0 auto;
        width: 50%; /* 平板端一行显示两个 */
    }

    .advantage-card {
        padding: 20px 15px;
        margin: 10px;
    }

    .advantage-icon img {
        width: 50px;
        height: 50px;
    }

    .advantage-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .advantage-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .advantages-section .col-md-3 {
        width: 50%; /* 手机端也是一行显示两个 */
    }

    .advantage-card {
        padding: 15px 10px;
        margin: 8px;
    }

    .advantage-icon {
        margin-bottom: 16px;
    }

    .advantage-icon img {
        width: 40px;
        height: 40px;
    }

    .advantage-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .advantage-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .advantage-card {
        padding: 12px 8px;
        margin: 6px;
    }

    .advantage-icon img {
        width: 36px;
        height: 36px;
    }

    .advantage-card h3 {
        font-size: 16px;
    }

    .advantage-card p {
        font-size: 12px;
    }
}

/* 合作伙伴样式 */
.partners-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.partners-section h2 {
    margin-bottom: 40px;
}

.partner-logos img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}

/* 添加扫码部样式 */
.qrcode-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: rgba(168,189,224,0.66);
    text-align: center;
}

.qrcode-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qrcode-text {
    margin-bottom: 20px;
}

.qrcode-text h2 {
    line-height: 28px;
    font-size: 20px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: rgba(0,0,0,1);
    margin-bottom: 20px;
    font-weight: normal;
}

.qrcode-text p {
    font-size: 20px;
    color: #666666;
    line-height: 28px;
}

.qrcode-image {
    width: 280px;
    height: 280px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-bottom: 16px;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-tips {
    margin-top: 16px;
}

.qrcode-tips p {
    font-size: 20px;
    color: #ffffff;
    line-height: 28px;
    margin: 0;
}
.footer-bei2 {
    margin-left: 30px;
}
.footer-bei2 img{
    width: 30px;
}
.qrcode-text h2{
    color:#fff;
}
/* 响应式调整 */
@media (max-width: 991px) {
    .qrcode-text h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .qrcode-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .qrcode-image {
        width: 240px;
        height: 240px;
    }

    .qrcode-text {
        margin-bottom: 16px;
    }

    .qrcode-image {
        margin-bottom: 12px;
    }

    .qrcode-tips {
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .qrcode-text h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .qrcode-image {
        width: 200px;
        height: 200px;
    }

    .qrcode-text {
        margin-bottom: 12px;
    }

    .qrcode-image {
        margin-bottom: 10px;
    }

    .qrcode-tips {
        margin-top: 10px;
    }
    .footer .right{
        margin-top: 40px;
    }
    .footer a{
        display: block;
        margin-bottom: 7px;
    }
    .footer .right img{
        margin-right: 6px !important;
        width: 22px;
    }
    
    .footer-bei2 {
        margin-left: 0;
    }
}

/* 解决方案部分样式调整 */
.solution-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: #fff;
    position: relative;
    overflow: hidden;
}

.solution-image {
    margin-bottom: 0; /* 移除底部间距 */
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .solution-section {
        padding-left: 70px; /* 大屏幕稍微减少间距 */
    }
}

@media (max-width: 991px) {
    .solution-section {
        padding-left: 0; /* 平板尺寸移除左间距 */
        margin-top: 40px; /* 改上下间距 */
    }

    .solution-image {
        text-align: center; /* 图片居中 */
    }
}

@media (max-width: 768px) {
    .solution-section {
        margin-top: 30px; /* 手机尺寸稍微减少距 */
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 50px;
        line-height: 70px;
    }

    .hero-buttons {
        padding-right: 180px;
    }
}

@media (max-width: 991px) {
    .hero-wrapper {
        min-height: 500px;
    }

    .hero-section {
        min-height: calc(500px - 70px);
    }

    .hero-content {
        padding-top: 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 56px;
        text-align: center;
        white-space: normal; /* 允许文字换行 */
        padding: 0 20px;
    }

    .hero-buttons {
        text-align: center;
        padding-right: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        min-height: 400px;
    }

    .hero-section {
        min-height: calc(400px - 60px);
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
        line-height: 40px;
        padding: 0 15px;
    }
}

/* 决方案详情部分样式优化 */
.solution-details {
    margin-top: 40px;  /* 与上方按的间距 */
}

.detail-item {
    margin-bottom: 32px;  /* 每个详情项之间的间距 */
}

.detail-item:last-child {
    margin-bottom: 0;  /* 最后一项不需要底部间距 */
}

.detail-item h4 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 16px;  /* 标题与内容的间距 */
    font-weight: 500;
    font-family: PingFangSC-Medium;
}

.detail-item p {
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 8px;  /* 多行文之间的间距 */
    font-family: PingFangSC-Regular;
}

.detail-item p:last-child {
    margin-bottom: 0;  /* 最后一文本不需要底部间距 */
}

/* 响应式调整 */
@media (max-width: 991px) {
    .solution-details {
        margin-top: 32px;
    }

    .detail-item {
        margin-bottom: 24px;
    }

    .detail-item h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .detail-item p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .solution-details {
        margin-top: 24px;
    }

    .detail-item {
        margin-bottom: 20px;
    }

    .detail-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .detail-item p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* 解决方案头部式调整 */
.solution-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;  /* 统一标题与内容的间距 */
}

/* 标题包装器样式 */
.title-wrapper {
    position: relative;
    display: inline-block;
}

.hot-icon {
    position: absolute;
    top: -10px;
    right: -40px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #FF4B4B; /* 红色背景 */
    border-radius: 50%; /* 圆形背景 */
    box-shadow: 0 2px 4px rgba(255, 75, 75, 0.2); /* 添加阴影效果 */
}

.solution-header h3 {
    font-size: 50px;
    color: rgba(45,81,204,1);
    line-height: 70px;
    margin: 0;
    font-family: AlibabaPuHui-black, PingFangSC-Heavy, sans-serif;
    font-weight: 900;
    text-align: left;
}

/* 移除旧的hot-mark样式 */
.hot-mark {
    display: none;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .hot-icon {
        width: 35px;
        height: 35px;
        padding: 7px;
        top: -8px;
        right: -35px;
    }
}

@media (max-width: 576px) {
    .hot-icon {
        width: 30px;
        height: 30px;
        padding: 6px;
        top: -6px;
        right: -30px;
    }
}

/* 添加阿里巴巴普惠字体声明 */
@font-face {
    font-family: 'AlibabaPuHui-black';
    src: url('../fonts/AlibabaPuHuiTi-2-115-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* 合作伙伴部分样式调整 */
.bank-partners-section {
    padding: 80px 0;
    background: #fff;
}

.bank-partners-section h2 {
    font-size: 50px;
    font-family: 'PingFang SC';
    color: rgba(0,0,0,1);
    line-height: 70px;
    text-align: center;
    margin-bottom: 60px;
}

.bank-logos {
    max-width: 1200px;
    margin: 0 auto;
}

.bank-logos .row {
    margin: -15px; /* 抵消row的��认margin */
}

.bank-logos .col-lg-3 {
    padding: 15px; /* 统一的内边距 */
}

.bank-logo {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px; /* 固定高度 */
    padding: 20px;
    transition: all 0.3s ease;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.bank-logo:hover {
    border-color: #2D51CC;
    box-shadow: 0 0 10px rgba(45, 81, 204, 0.1);
}

/* 响应式调整 */
@media (max-width: 991px) {
    .bank-partners-section h2 {
        font-size: 40px;
        line-height: 56px;
        padding: 0 20px;
    }

    .bank-logo {
        height: 120px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .bank-partners-section h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .bank-logo {
        height: 100px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .bank-logos .row {
        margin: -10px;
    }

    .bank-logos .col-lg-3 {
        padding: 10px;
    }

    .bank-logo {
        height: 80px;
    }
}

/* 业务覆盖区域样式调整 */
.coverage-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: #fff;
    text-align: center;
}

.coverage-section h2 {
    font-size: 50px;
    font-family: 'PingFang SC';
    color: rgba(0,0,0,1);
    line-height: 70px;
    margin: 0 auto 60px;  /* 从80px减少到60px */
    font-weight: normal;
}

.coverage-content {
    max-width: 906px;
    margin: 0 auto;
    padding: 0 20px;
}

.coverage-cities {
    margin-bottom: 60px;  /* 从80px减少到60px */
}

.coverage-cities p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: center;
}

.coverage-map {
    position: relative;
    width: 100%;
    max-width: 906px;
    margin: 0 auto;
    overflow: hidden; /* 防止溢出 */
}

.china-map {
    width: 100%;
    height: 470px; /* 增加高度以显示完整地图 */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#china-map-svg {
    width: 100%;
    height: 100%;
    max-width: 800px; /* 限制最大宽度 */
    margin: 0 auto;
}

svg text{
    display: none;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .coverage-section {
        padding: 100px 0;
    }

    .coverage-section h2 {
        font-size: 36px;
        line-height: 50px;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .coverage-cities p {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 80px 0;
    }

    .coverage-section h2 {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 40px;
    }

    .coverage-cities {
        margin-bottom: 30px;
    }

    .coverage-cities p {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .coverage-content {
        padding: 0 15px;
    }

    .coverage-cities p {
        font-size: 14px;
    }
}

.map-tooltip {
    position: fixed;
    display: none;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .china-map {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .china-map {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .china-map {
        height: 300px;
    }
}

/* 更新解决方案标题部分样式 */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;  /* 从80px减少到60px */
}

/* 背景标题样式更新 */
.bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
    font-size: 100px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: rgba(45, 81, 204, 0.05); /* 淡蓝色透明背景 */
    white-space: nowrap;
    z-index: 1;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
}

/* 主标题样式更新 */
.main-title {
    font-size: 50px;
    font-family: 'PingFang SC';
    color: #333333;
    line-height: 70px;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: normal;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .bg-title {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .bg-title {
        font-size: 60px;
    }

    .main-title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .bg-title {
        font-size: 40px;
    }

    .main-title {
        font-size: 30px;
        line-height: 42px;
    }
}

/* 统一模块间距样式 */

/* 服务优势部分 */
.advantages-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: #fff;
}

/* 解决方案部分 */
.solution-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* 合作伙伴部分 */
.bank-partners-section {
    padding: 80px 0;
    background: #fff;
}

/* 业务覆盖区域部分 */
.coverage-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: #fff;
}

/* 扫码部分 */
.qrcode-section {
    padding: 80px 0;  /* 从120px减少到80px */
    background: rgba(168,189,224,0.66);
}

/* 内部元素间距调整 */
.section-header {
    margin-bottom: 60px;  /* 从80px减少到60px */
}

.bank-partners-section h2 {
    margin-bottom: 60px;  /* 从80px减少到60px */
}

.coverage-section h2 {
    margin-bottom: 60px;  /* 从80px减少到60px */
}

.coverage-cities {
    margin-bottom: 60px;  /* 从80px减少到60px */
}

/* 响应式调整 */
@media (max-width: 991px) {
    /* 平板端统一调整 */
    .advantages-section,
    .solution-section,
    .bank-partners-section,
    .coverage-section,
    .qrcode-section {
        padding: 60px 0;  /* 减小间距 */
    }

    .section-header,
    .bank-partners-section h2,
    .coverage-section h2,
    .coverage-cities {
        margin-bottom: 40px;  /* 减小内部间距 */
    }
}

@media (max-width: 768px) {
    /* 手机端统一调整 */
    .advantages-section,
    .solution-section,
    .bank-partners-section,
    .coverage-section,
    .qrcode-section {
        padding: 40px 0;  /* 进一步减小间距 */
    }

    .section-header,
    .bank-partners-section h2,
    .coverage-section h2,
    .coverage-cities {
        margin-bottom: 30px;  /* 进一步减小内部间距 */
    }
}

/* 添加导航栏菜单标样式 */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* 设置边框颜色为半透明白色 */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; /* 设置图标颜色为白色 */
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2); /* 设置focus状态的阴影颜色 */
}

.navbar-collapse {
    position: absolute;
    top: 100%; /* 位于导航栏下方 */
    left: 0;
    right: 0;
    background: transparent;
    padding: 0;
    z-index: 1000;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95); /* 半透明白色背景 */
        margin-top: 0;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-width: calc(100% - 30px); /* 左右留出一定间距 */
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .nav-link {
        color: #333 !important;
        padding: 10px 20px !important;
    }

    .nav-link:hover {
        background: rgba(45, 81, 204, 0.1);
        border-radius: 4px;
    }
}

/* PC端样式 */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static; /* PC端使用正常文档流 */
        background: transparent;
        padding: 0;
    }

    .navbar-nav {
        padding: 0;
    }

    .nav-link {
        color: #fff !important;
        padding: 8px 20px !important;
    }

    .nav-link:hover {
        background: none;
    }
}

/* 移动端样式 */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 0;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .nav-link {
        color: #333 !important;
        padding: 10px 20px !important;
    }

    .nav-link:hover {
        background: rgba(45, 81, 204, 0.1);
        border-radius: 4px;
    }
}

/* 添加模态框样式 */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modal-header {
    padding: 1rem 1rem 0;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-size: 20px;
    color: #333;
    font-family: 'PingFang SC';
    font-weight: normal;
}

.modal .qrcode-image {
    width: 280px;
    height: 280px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin: 0 auto;
}

.modal .contact-info {
    font-size: 20px;
    color: #666666;
    line-height: 28px;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .modal-body {
        padding: 1.5rem;
    }

    .modal .qrcode-image {
        width: 240px;
        height: 240px;
        padding: 15px;
    }

    .modal .contact-info {
        font-size: 16px;
        line-height: 24px;
    }
}

/* 渠道合作页面特定样式 */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 50px;
    font-family: 'PingFang SC';
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    font-weight: normal;
}

/* 合作流程样式 */
.process-steps {
    padding: 40px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 60px;
    font-weight: bold;
    color: rgba(45,81,204,0.1);
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.step-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: #666;
}

/* 合作申请表单样式 */
.cooperation-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    padding: 0 20px;
    font-size: 16px;
}

textarea.form-control {
    height: auto;
    padding: 15px 20px;
}

.submit-button {
    width: 312px;
    height: 100px;
    line-height: 56px;
    border-radius: 50px;
    background-color: rgba(45,81,204,1);
    color: #fff;
    font-size: 40px;
    text-align: center;
    border: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(40,73,184,1);
    box-shadow: 0 0 10px rgba(45,81,204,0.3);
}

/* 响应式调整 */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .step-number {
        font-size: 48px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .cooperation-form {
        padding: 30px;
    }

    .submit-button {
        width: 240px;
        height: 80px;
        font-size: 32px;
        line-height: 80px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .cooperation-form {
        padding: 20px;
    }

    .submit-button {
        width: 200px;
        height: 60px;
        font-size: 24px;
        line-height: 60px;
    }
}

/* 添加渠道合作页面特定的导航栏样式 */
.cooperation-navbar {
    position: relative;
    background-color: rgba(156,181,224,1);
}

/* 移动端样式调整 */
@media (max-width: 991px) {
    .cooperation-navbar .navbar-collapse {
        background: rgba(156,181,224,0.95);
    }

    .cooperation-navbar .nav-link {
        color: #fff !important;
    }

    .cooperation-navbar .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .cooperation-navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

/* 统一导航栏下拉菜单样式 */
@media (max-width: 991px) {
    /* 统一的基础样式 */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }

    /* 首页导航菜单样式 */
    .cooperation-navbar .navbar-collapse,
    .hero-wrapper .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
    }

    .cooperation-navbar .nav-link,
    .hero-wrapper .nav-link {
        color: #333 !important;
    }

    .cooperation-navbar .nav-link:hover,
    .hero-wrapper .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* 渠道合作商招募模块样式 */
.recruitment-section {
    padding: 80px 0;
    background: #fff;
}

.recruitment-content h2 {
    font-size: 50px;
    line-height: 70px;
    color: #333;
    margin-bottom: 40px;
    font-family: 'PingFang SC';
}

.recruitment-content .get-button.hero-style {
    width: 312px;
    height: 100px;
    line-height: 56px;
    border-radius: 50px;
    background-color: rgba(45,81,204,1);
    color: rgba(255,255,255,1);
    font-size: 40px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
}

/* 道合作扶持模块样式 */
.support-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.support-content {
    padding-right: 30px;
}

.support-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .support-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .support-image {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .support-image {
        padding: 0 15px;
        margin-top: 30px;
    }
}

.support-content h2 {
    font-size: 50px;
    line-height: 70px;
    color: #333;
    margin-bottom: 40px;
    font-family: 'PingFang SC';
}

.support-item {
    margin-bottom: 30px;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.support-item h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-family: 'PingFang SC';
}

.tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.tag-blue {
    background-color: rgba(102,132,255,1);
    color: rgba(255,255,255,1);
}

.support-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.commission-rules {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.example {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .recruitment-content h2,
    .support-content h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .recruitment-content .get-button.hero-style {
        width: 240px;
        height: 80px;
        font-size: 32px;
        line-height: 80px;
    }
}

@media (max-width: 768px) {
    .recruitment-content h2,
    .support-content h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .support-item h3 {
        font-size: 20px;
    }

    .recruitment-content .get-button.hero-style {
        width: 200px;
        height: 60px;
        font-size: 24px;
        line-height: 60px;
    }
}

/* 更新渠道合作页面的按钮样式 */
.recruitment-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 右对齐 */
    padding-right: 40px; /* 添加右侧间距 */
}

.recruitment-content .get-button {
    width: 312px;
    height: 100px;
    line-height: 56px;
    border-radius: 50px;
    background-color: rgba(45,81,204,1);
    color: rgba(255,255,255,1);
    font-size: 40px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 40px; /* 与标题的间距 */
}

.recruitment-content .get-button:hover {
    background-color: rgba(40,73,184,1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

/* 响应式调整 */
@media (max-width: 1440px) {
    .recruitment-content {
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .recruitment-content {
        padding-right: 20px;
    }

    .recruitment-content .get-button {
        width: 280px;
        height: 90px;
        font-size: 36px;
        line-height: 50px;
    }
}

@media (max-width: 991px) {
    .recruitment-content {
        align-items: center; /* 平板端居中对齐 */
        padding-right: 0;
    }

    .recruitment-content .get-button {
        width: 240px;
        height: 80px;
        font-size: 32px;
        line-height: 44px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .recruitment-content .get-button {
        width: 200px;
        height: 60px;
        font-size: 24px;
        line-height: 34px;
        margin-top: 20px;
    }
}

/* 更新按钮样式 */
.get-button-primary {
    width: 312px;
    height: 100px;
    line-height: 56px;
    border-radius: 50px;
    background-color: rgba(45,81,204,1);
    color: rgba(255,255,255,1);
    font-size: 40px;
    text-align: center;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.get-button-primary:hover {
    background-color: rgba(40,73,184,1);
    color: rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    text-decoration: none;
}

/* 更新标签相关样式 */
.tag-wrapper {
    margin: 8px 0 12px; /* 调整标签与标题和内容的间距 */
}

.tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
}

.tag-blue {
    background-color: rgba(102,132,255,1);
    color: rgba(255,255,255,1);
}

/* 更新支持项样式 */
.support-item {
    margin-bottom: 30px;
}

.support-item h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-family: 'PingFang SC';
}

.support-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* 更新支持项标题样式 */
.support-item h3 {
    line-height: 25px;
    color: rgba(45,81,204,1);
    font-size: 18px;
    text-align: left;
    font-family: 'AlibabaPuHui-black', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 12px;
}

/* 更新标签样式 */
.tag-wrapper {
    margin: 20px 0;
}

.tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
}

.tag-blue {
    background-color: rgba(102,132,255,1);
    color: rgba(255,255,255,1);
}

/* 更新支持项内容样式 */
.support-item {
    margin-bottom: 24px;
}

.support-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* 更新佣金规则样式 */
.commission-rules {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
}

.example {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .support-item h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .support-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 更新佣金规则部分样式 */
.commission-content .subtitle {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 16px;
}

.commission-rules {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
}

.commission-rules p {
    margin-bottom: 8px;
}

.example {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .commission-content .subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* 更新导航栏链接选中状态的样式 */
.nav-link.active {
    font-weight: 500;
}

/* 更新渠道合作页面导航栏链接选中状态的样式 */
.cooperation-navbar .nav-link.active {
    font-weight: 500;
}

/* 移动端样式 */
@media (max-width: 991px) {
    .navbar-collapse .nav-link.active,
    .cooperation-navbar .navbar-collapse .nav-link.active {
        color: #2D51CC !important;
    }
}

/* 更新渠道合作扶持模块的布局比例 */
.support-section .row {
    display: flex;
    align-items: flex-start;
}

.support-section .col-lg-5 {
    flex: 0 0 auto;
    width: 55%; /* 增加文字内容区域的宽度 */
}

.support-section .col-lg-7 {
    flex: 0 0 auto;
    width: 45%; /* 减小图片区域的宽度 */
}

.support-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-start; /* 图片顶部对齐 */
    justify-content: center;
    padding-left: 40px; /* 添加左侧间距 */
}

.support-image img {
    max-width: 90%; /* 限制图片最大宽度 */
    height: auto;
    object-fit: contain;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .support-section .col-lg-5,
    .support-section .col-lg-7 {
        width: 100%;
    }

    .support-image {
        padding-left: 0;
        margin-top: 30px;
    }

    .support-image img {
        max-width: 100%;
    }
}

/* Logo 样式 */
.navbar-brand {
    margin-right: 30px;
    height: 50px; /* 设置固定高度 */
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 40px; /* logo 高度 */
    width: auto; /* 宽度自适应 */
}

/* 响应式调整 */
@media (max-width: 991px) {
    .navbar-brand {
        height: 45px;
    }

    .navbar-brand .logo {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        height: 40px;
    }

    .navbar-brand .logo {
        height: 30px;
    }
}


.footer{
	background-color: #101a2b;
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 50px 0;
	font-family: "Microsoft yahei"
}
.footer .auto-container{
	/*height: 20px;*/
	overflow: hidden;
}
.footer a{
	color: #fff;
    text-decoration: none;
}
.footer .right{
    margin-top: 20px;
	font-size: 13px;
}

.footer .right span{
	margin-left: 30px;
	display: inline-block;
}
.footer .right img{
	vertical-align: middle;
	margin-right: 10px;
}
