/* Tab切换动画效果 */
.nav-tabs .nav-link {
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.nav-tabs .nav-link.active {
    color: #2c3e50;
    background-color: transparent;
}

.nav-tabs .nav-link.active .tab-highlight {
    transform: scaleX(1);
}

/* 内容切换动画 */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 列表项悬停效果优化 */
.list-group-item {
    transition: all 0.2s ease;
    border-left-width: 4px !important;
}

.list-group-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 轮播图指示器美化 */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
    border-color: rgba(0, 0, 0, 0.1);
}

/* 轮播图标题区域优化 */
.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)) !important;
    padding: 20px 25px !important;
    border-radius: 0 0 12px 12px !important;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-caption h5 {
    font-size: 1.2rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 轮播图控制按钮优化 */
.carousel-control-prev,
.carousel-control-next {
    width: 8% !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px !important;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
}

#news-hot-carousel:hover .carousel-control-prev,
#news-hot-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* 图片悬停效果 */
.carousel-item img {
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.03);
}

/* 轮播图项过渡动画 */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item-next:not(.carousel-item-start),
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(0);
}

.major .row > div {
    padding-bottom: 10px;
}


.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.title-line {
    flex: 1;
    max-width: 200px;
}

.title-line hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 20px;
}

.title-img {
    margin: 0 25px;
}

.title-img img {
    width: 60px;
    height: 60px;
}

.main-title {
    text-align: center;
    margin: 0 25px;
}

.main-title p {
    font-size: 24px;
    color: #1a56a7;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.main-title small {
    font-size: 22px;
    color: #666;
    display: block;
}

/* 科技成果网格布局 */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* 科技成果卡片样式 */
.achievement-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    flex: 1;
}

.card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-content h3 a:hover {
    color: #1a56a7;
}

.card-actions {
    margin-top: auto;
}

.btn-details {
    display: inline-block;
    padding: 8px 20px;
    background-color: #1a56a7;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #1a56a7;
}

.btn-details:hover {
    background-color: #0d3d8b;
    transform: translateY(-2px);
}

/* 查看更多按钮样式 */
.see-more {
    text-align: center;
    margin-top: 30px;
}

.btn-see-more {
    display: inline-block;
    padding: 10px 30px;
    background-color: #1a56a7;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(26, 86, 167, 0.3);
}

.btn-see-more:hover {
    background-color: #0d3d8b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 86, 167, 0.4);
}

.btn-see-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-see-more:hover i {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .achievement-card {
        margin-bottom: 20px;
    }

    .card-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .title {
        flex-wrap: wrap;
        text-align: center;
    }

    .title-line {
        display: none;
    }

    .title-img {
        margin: 0 auto 15px;
    }

    .main-title {
        width: 100%;
        margin: 0;
    }

    .main-title p {
        font-size: 20px;
    }

    .achievement-card {
        margin-bottom: 15px;
    }

}


.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.title-line {
    width: 100px;
    margin: 0 15px;
}

.title-line hr {
    border-top: 1px solid #ddd;
}

.main-title {
    text-align: center;
}

.main-title p {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}


/* 查看更多链接 */
.newsMore {
    float: right;
    margin-bottom: 15px;
}

.view-all-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
}

.view-all-link:hover {
    color: #40a9ff;
    text-decoration: underline;
}
.policy{
    width: 1200px;
    margin: 0 auto;
}

/* Tab导航样式 */
.policy-tabs {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.policy-tabs .nav-item {
    margin-bottom: -1px;
}

.policy-tabs .nav-link {
    border: none;
    color: #666;
    padding: 12px 20px;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.policy-tabs .nav-link:hover {
    color: #1890ff;
    border-bottom-color: #d9d9d9;
}

.policy-tabs .nav-link.active {
    color: #1890ff;
    border-bottom: 2px solid #1890ff;
    background-color: transparent;
}

.policy-tabs .iconfont {
    margin-right: 5px;
}

/* 政策列表样式 */
.policy-content {
    padding: 15px 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-link {
    color: #333;
    text-decoration: none;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
    transition: color 0.3s;
}

.policy-link:hover {
    color: #1890ff;
}

.policy-date {
    color: #999;
    font-size: 13px;
}


body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
}

.financial-products {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a3e72;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #1a6df3;
    margin: 20px auto 0;
}
.loan-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.loan-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.loan-image {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.loan-image  img{
    width: 373px;
    height: 150px;
}
.loan-info {
    padding: 20px;
}
.loan-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.loan-rate {
    color: #e53935;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.loan-term {
    margin-bottom: 10px;
    color: #666;
}
.loan-amount {
    margin-bottom: 15px;
}
.view-details {
    display: block;
    text-align: center;
    background-color: #1e88e5;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
}
.view-details:hover {
    background-color: #1565c0;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #1a6df3;
    border: 2px solid #1a6df3;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-view-more:hover {
    background: #1a6df3;
    color: white;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 26px;
    }

    .loan-card {
        margin-bottom: 20px;
    }
}

.friendly {
    margin: 0 auto;
    padding: 20px;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.title-line {
    flex: 1;
    max-width: 150px;
}

.title-line hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.title-line-right hr {
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.title-img {
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.title-img svg {
    color: #4a6bdf;
}

.main-title {
    text-align: center;
    margin: 0 20px;
}

.main-title p {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
    letter-spacing: 1px;
}


.links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.link-item {
    margin: 0;
    padding: 0;
}

.link-item a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.link-item a:hover {
    background-color: #4a6bdf;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 223, 0.2);
    border-color: #4a6bdf;
}

.link-item a:hover .link-icon svg {
    stroke: white;
}

.link-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.link-icon svg {
    stroke: #4a6bdf;
}

.link-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .title-line {
        max-width: 80px;
    }

    .main-title p {
        font-size: 20px;
    }

    .links {
        justify-content: flex-start;
    }
}
