/* 产品特点样式 */
.feature-box {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    padding-left: 28px;
}

.feature-list li i {
    color: #2c6eff;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* 所需材料样式 */
.materials-box {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.material-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.material-item i {
    color: #2c6eff;
    font-size: 22px;
    margin-right: 15px;
}

.material-item span {
    font-size: 16px;
}

/* 产品列表部分 */
.product-list {
    margin-top: 30px;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
}

/* 银行产品卡片样式优化 */
.bank-product-card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bank-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bank-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.bank-logo img {
    max-height: 70px;
    max-width: 80%;
    transition: all 0.3s ease;
}

.bank-product-card:hover .bank-logo img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.product-features {
    margin-bottom: 15px;
}

.product-features p {
    margin-bottom: 8px;
    color: #555;
}

.product-features p i {
    color: #2c6eff;
    margin-right: 8px;
}

.product-desc {
    margin-bottom: 20px;
    min-height: 50px;
    color: #666;
}

.bank-product-card .btn-primary {
    background-color: #2c6eff;
    border-color: #2c6eff;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.bank-product-card .btn-primary:hover {
    background-color: #1a5ae0;
    border-color: #1a5ae0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 110, 255, 0.3);
}

/* 产品介绍内容样式 */
.product-intro-content {
    padding: 20px 0 30px;
}

.product-intro-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.product-intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2c6eff;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* 流程步骤样式 */
.process-box {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2c6eff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(44, 110, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 110, 255, 0.4);
}

.step-info h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.step-info p {
    color: #666;
    font-size: 14px;
}

/* 导航标签样式 */
.product-tabs {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.product-tabs > li > a {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    padding: 12px 25px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-right: 5px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.product-tabs > li > a:hover,
.product-tabs > li > a:focus {
    background-color: transparent;
    color: #2c6eff;
    border-color: transparent;
}

.product-tabs > li.active > a,
.product-tabs > li.active > a:hover,
.product-tabs > li.active > a:focus {
    color: #2c6eff;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #2c6eff;
}

/* 产品轮播样式 */
.product-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel-page {
    display: none;
    transition: transform 0.5s ease;
}

.carousel-page.active {
    display: block;
}

/* 分页指示器 */
.carousel-indicators {
    text-align: center;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    padding-left: 0;
    list-style: none;
}

.carousel-indicators .indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.carousel-indicators .indicator.active {
    background-color: #2c6eff;
}

/* 轮播导航按钮 */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.carousel-nav button {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.carousel-nav button:hover {
    background-color: #2c6eff;
    color: white;
    border-color: #2c6eff;
}

.carousel-nav button i {
    font-size: 18px;
}

/* 标题样式 */
.section-title {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2c6eff;
}

.section-title i {
    color: #2c6eff;
    margin-right: 10px;
}

/* Tab内容容器 */
.tab-content {
    margin-top: 30px;
}

.tab-pane {
    padding: 20px 0;
}

/* 产品页面容器 */
.product-container {
    padding: 40px 0;
    background-color: #fff;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .process-steps:before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .bank-product-card {
        height: auto;
    }
}

@media (max-width: 767px) {
    .bank-product-card {
        margin-bottom: 20px;
    }
    
    .product-tabs > li > a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .carousel-nav button {
        width: 30px;
        height: 30px;
    }
    
    .carousel-nav button i {
        font-size: 14px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* 修复轮播样式 */
.product-carousel .row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.product-carousel .col-md-4,
.product-carousel .col-sm-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* 修复按钮样式 */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #2c6eff;
    border-color: #2c6eff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #1a5ae0;
    border-color: #1a5ae0;
}

/* 修复标题样式 */
h3 {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
}

h4 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
}

/* 修复容器样式 */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}