	 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
body {
    font-family: "Microsoft YaHei", sans-serif;
}
 
.footer-wrap_di {
    width: 100%;
    background-color: #1A3055;
    color: #ffffff;
    padding: 60px 20px 30px;
}
.footer-container_di {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-left_di .logo-box_di {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-left_di .logo-img_di {
    width: 269px;
    height: auto;
}
.footer-left_di .logo-text-top_di {
    font-size: 20px;
    font-weight: bold;
}
.footer-left_di .logo-text-en_di {
    font-size: 14px;
    opacity: 0.8;
}
.footer-desc_di {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-title_di {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.contact-item_di {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    opacity: 0.9;
}
.contact-label_di {
    color: #FFB028;
}
.qrcode-box_di {
    display: flex;
    gap: 20px;
    margin-top: 0px;
}
.qrcode-item_di {
    text-align: center;
}
.qrcode-img_di {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 6px;
    margin-bottom: 8px;
}
.qrcode-name_di {
    font-size: 14px;
    opacity: 0.85;
}

.service-list_di li {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 10px;
    opacity: 0.9;
}
.service-list_di li::before {
    
    color: #FFB028;
    margin-right: 8px;
}

.news-list_di li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}
.news-date_di {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.footer-bottom_di {
    max-width: 1300px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid #334870;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.copyright-text_di {
    font-size: 16px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bottom-nav_di {
    display: flex;
    gap: 24px;
}
.bottom-nav_di a {
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
    text-decoration: none;
}
.bottom-nav_di a:hover {
    color: #FFB028;
    opacity: 1;
}

.back-top_di {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    background: #FFB028;
    color: #1A3055;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
}

@media screen and (max-width: 1200px) {
    .footer-container_di {
        gap: 30px;
    }
    .footer-title_di {
        font-size: 20px;
    }
}
@media screen and (max-width: 992px) {
    .footer-container_di {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 640px) {
    .footer-container_di {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom_di {
        flex-direction: column;
        text-align: center;
    }
    .bottom-nav_di {
        flex-wrap: wrap;
        justify-content: center;
    }
    .qrcode-box_di {
        justify-content: center;
    }
}
	
	
	
	
	
	
	
	
	  
        advantage-wrap_fw {
            width: 100%;
            padding: 80px 20px;
            background: #ffffff;
        }
        .advantage-container_fw {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }
        
        .advantage-item_fw {
            text-align: center;
        }
        
        .icon-circle_fw {
            width: 100px;
            height: 100px;
            background-color: #FFB028;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }
        .icon-circle_fw i {
            font-size: 36px;
            color: #fff;
        }
        
        .advantage-title_fw {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 24px;
            line-height: 1.3;
        }
        
        .advantage-desc_fw {
            font-size: 16px;
            color: #888e99;
            line-height: 1.8;
        }
        
        @media screen and (max-width: 992px) {
            .advantage-container_fw {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .advantage-title_fw {
                font-size: 26px;
            }
            .advantage-desc_fw {
                font-size: 17px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .advantage-wrap_fw {
                padding: 50px 15px;
            }
            .advantage-container_fw {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .icon-circle_fw {
                width: 70px;
                height: 70px;
            }
            .icon-circle_fw i {
                font-size: 30px;
            }
            .advantage-title_fw {
                font-size: 18px;
            }
            .advantage-desc_fw {
                font-size: 15px;
            }
        }
		
		
		
		
		 
.header-tou {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-tou {
    background-color: #0c2442;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    
    
    
    
    
    line-height: 26px;
    font-weight: 900;
}

.header-top-left-tou .time-tou {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-right-tou .address-tou {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-hotline-tou {
    display: none;
}

.mobile-hotline-link-tou,
.mobile-wechat-tou,
.mobile-rss-tou {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main-tou {
    
    
    
    padding: 25px 0px;
    background-color: #fff;
}

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

.logo-tou img {
    
    
    
    width: 300px;
}

.logo-text-tou h1 {
    font-size: 22px;
    color: #0c2442;
    font-weight: bold;
}

.logo-text-tou p {
    font-size: 10px;
    color: #666;
    letter-spacing: 2px;
}

.hotline-tou {
    text-align: left;
}

.hotline-label-tou {
    display: block;
    font-size: 16px;
    color: #f59e0b;
    margin-bottom: 5px;
    font-weight: 900;
}

.hotline-number-tou {
    font-size: 28px;
    color: #0c2442;
    font-weight: bold;
}

.nav-tou {
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    position: relative;
}

.nav-list-tou {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.nav-item-tou {
    position: relative;
    
}

.nav-link-tou {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-decoration: none;
    color: #8c95a2;
    font-size: 18px;
    font-weight: 900;
    transition: all 0.3s ease;
    position: relative;
    gap: 6px;
}

.nav-link-tou:hover {
    color: #0c2442;
}

.nav-active-tou .nav-link-tou {
    color: #0c2442;
}

.nav-active-tou .nav-link-tou::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #f59e0b;
}

.arrow-icon-tou {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    color: #666;
}

.nav-has-dropdown-tou.dropdown-active-tou .arrow-icon-tou {
    transform: rotate(180deg);
}

.dropdown-tou {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-top: 3px solid #f59e0b;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-has-dropdown-tou:hover .dropdown-tou,
.nav-has-dropdown-tou.dropdown-active-tou .dropdown-tou {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-tou {
    padding: 0;
}

.dropdown-link-tou {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #1f365c;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 900;
}

.dropdown-link-tou:hover {
    background-color: #f0f2f5;
    color: #1a365d;
}



.header-right-tou {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-toggle-tou {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle-tou span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .header-top-tou {
        flex-direction: column;
        gap: 5px;
        padding: 10px 20px;
        text-align: center;
    }

    .header-main-tou {
        padding: 15px 20px;
    }

    .logo-tou img {
        
        
    }

    .logo-text-tou h1 {
        font-size: 18px;
    }

    .hotline-number-tou {
        font-size: 22px;
    }

    .nav-list-tou {
        flex-direction: column;
        display: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list-tou.nav-active-tou {
        display: flex;
    }

    .nav-toggle-tou {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-item-tou {
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item-tou:last-child {
        border-bottom: none;
    }

    .nav-link-tou {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .nav-active-tou .nav-link-tou::after {
        display: none;
    }

    .dropdown-tou {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border: none;
        border-top: 1px solid #f0f0f0;
        box-shadow: none;
        display: none;
    }

    .nav-has-dropdown-tou.dropdown-active-tou .dropdown-tou {
        display: block;
    }

    .dropdown-link-tou {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .header-top-tou {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 10px 20px;
    }

    .header-top-left-tou,
    .header-top-right-tou {
        display: none;
    }

    .mobile-hotline-tou {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-hotline-link-tou {
        font-size: 16px;
        font-weight: bold;
    }

    .mobile-wechat-tou,
    .mobile-rss-tou {
        font-size: 18px;
    }

    .header-main-tou {
        padding: 5px 20px;
    }

    .header-right-tou {
        gap: 0;
    }

    .hotline-tou {
        display: none;
    }

    .nav-toggle-tou {
        position: static;
        transform: none;
        width: 37px;
        height: 37px;
        border-radius: 50%;
        background-color: #f59e0b;
        padding: 0;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .nav-toggle-tou span {
        width: 20px;
        height: 2px;
        background-color: #fff;
        border-radius: 1px;
    }
}

@media (max-width: 576px) {
    .header-main-tou {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-tou {
        flex-direction: row;
        gap: 10px;
    }

    .logo-tou img {
        width: 185px;
        
    }

    .logo-text-tou h1 {
        font-size: 16px;
    }

    .logo-text-tou p {
        font-size: 9px;
    }

    .nav-link-tou {
        font-size: 14px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-top-tou {
        font-size: 11px;
    }

    .logo-text-tou h1 {
        font-size: 14px;
    }

    .hotline-number-tou {
        font-size: 18px;
    }
}





  .service-wrap_sever {
            width: 100%;
            padding: 80px 20px;
        }
        
        .service-container_sever {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .service-title-box_sever {
            text-align: center;
            margin-bottom: 60px;
        }
        .service-main-title_sever {
            font-size: 42px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 12px;
        }
        .title-line_sever {
            width: 100px;
            height: 4px;
            background-color: #FFB028;
            margin: 0 auto;
        }
        
        .service-grid_sever {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .service-item_sever {
            text-align: center;
        }
        
        .service-circle-img_sever {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 26px;
        }
        .service-circle-img_sever img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-name_sever {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .service-desc_sever {
            font-size: 14px;
            color: #777e8a;
            line-height: 1.7;
            padding: 0 10px;
        }
        
        @media screen and (max-width: 992px) {
            .service-grid_sever {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .service-main-title_sever {
                font-size: 34px;
            }
            .service-name_sever {
                font-size: 26px;
            }
            .service-circle-img_sever {
                width: 190px;
                height: 190px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .service-wrap_sever {
                padding: 50px 15px;
            }
            .service-grid_sever {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .service-main-title_sever {
                font-size: 20px;
            }
            .service-circle-img_sever {
                width: 160px;
                height: 160px;
            }
            .service-name_sever {
                font-size: 18px;
            }
            .service-desc_sever {
                font-size: 16px;
            }
        }
		
		
		   .cta-banner_cta {
            width: 100%;
            background-color: #1A3055;
            padding: 80px 20px;
            text-align: center;
        }
        .cta-subtitle_cta {
            font-size: 42px;
            color: #FFB028;
            margin-bottom: 16px;
        }
        .cta-main-title_cta {
            font-size: 42px;
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 40px;
        }
        .cta-btn_cta {
            display: inline-block;
            padding: 16px 30px;
            background-color: #FFB028;
            color: #ffffff;
            font-size: 20px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            text-decoration: none;
            border-radius: 12px;
        }
        .cta-btn_cta:hover {
            opacity: 0.9;
        }
        
        @media screen and (max-width: 992px) {
            .cta-subtitle_cta {
                font-size: 32px;
            }
            .cta-main-title_cta {
                font-size: 46px;
            }
            .cta-btn_cta {
                font-size: 28px;
                padding: 18px 60px;
            }
            .cta-banner_cta {
                padding: 60px 15px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .cta-subtitle_cta {
                font-size: 20px;
            }
            .cta-main-title_cta {
                font-size: 32px;
            }
            .cta-btn_cta {
                font-size: 20px;
                width: 90%;
                padding: 16px 0;
            }
            .cta-banner_cta {
                padding: 45px 15px;
            }
        }
 
 
 
 
 
    .intro-wrap_gy,.advantage-wrap_fw{
            width: 100%;
            padding: 80px 0px;
            background: rgb(245, 245, 245);
        }
        .intro-container_gy {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .intro-title-box_gy {
            text-align: center;
            margin-bottom: 60px;
        }
        .intro-main-title_gy {
            font-size: 40px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 12px;
        }
        .title-line_gy {
            width: 100px;
            height: 4px;
            background: #FFB028;
            margin: 0 auto;
        }
        
        .intro-grid_gy {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 45px;
            align-items: flex-start;
        }
        
        .intro-left_gy .intro-img_gy {
            width: 100%;
            margin-bottom: 24px;
        }
        .intro-left-title_gy {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .intro-text_gy {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .intro-btn_gy {
            background: #FFB028;
            color: #fff;
            border: none;
            padding: 10px 22px;
            font-size: 16px;
            cursor: pointer;
        }
        
        .idea-item_gy {
            display: flex;
            gap: 14px;
            margin-bottom: 32px;
        }
        .idea-icon-box_gy {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #FFB028;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
        }
        .idea-text-box_gy h4 {
            font-size: 20px;
            color: #0F3475;
            margin-bottom: 8px;
        }
        .idea-desc_gy {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        .cert-card_gy {
            background: #fff;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cert-slide-wrap_gy {
            width: 100%;
        }
        .cert-slide-item_gy {
            display: none;
        }
        .cert-slide-item_gy.active_gy {
            display: block;
        }
        .cert-img_gy {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: 0 auto 16px;
        }
        .cert-title_gy {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 14px;
        }
        .cert-desc_gy {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        
        .slide-arrow_gy {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 80px;
            background: #FFB028;
            color: #fff;
            border: none;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
        }
        .arrow-left_gy {
            left: 0;
        }
        .arrow-right_gy {
            right: 0;
        }
        
        @media screen and (max-width: 992px) {
            .intro-grid_gy {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
            .intro-right_gy {
                grid-column: 1 / -1;
            }
            .intro-main-title_gy {
                font-size: 34px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .intro-wrap_gy {
                padding: 45px 15px;
            }
            .intro-grid_gy {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .intro-main-title_gy {
                font-size: 20px;
            }
            .intro-left-title_gy {
                font-size: 24px;
            }
            .idea-text-box_gy h4 {
                font-size: 18px;
            }
        }
		
		
		
		
		
		 .news-wrap_news {
            width: 100%;
            padding: 70px 20px;
        }
        .news-container_news {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .news-title-box_news {
            text-align: center;
            margin-bottom: 60px;
        }
        .news-main-title_news {
            font-size: 40px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 12px;
        }
        .title-line_news {
            width: 100px;
            height: 4px;
            background: #FFB028;
            margin: 0 auto;
        }
        .news-grid_news {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        
        .news-item_news {
            width: 100%;
        }
        
        .news-img-box_news {
            position: relative;
            width: 100%;
            margin-bottom: 24px;
            overflow: hidden;
        }
        .news-img_news {
            width: 100%;
            display: block;
            transition: transform 0.3s ease;
        }
        .news-img-box_news:hover .news-img_news {
            transform: scale(1.05);
        }
        
        .news-date-tag_news {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #fff;
            padding: 6px 12px;
            font-size: 18px;
            color: #222;
            font-weight: 500;
        }
        
        .news-title_news {
            font-size: 16px;
            color: #0F3475;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 5px;
        }
        
        .news-time_news {
            font-size: 14px;
            color: #1a3055;
            margin-bottom: 16px;
        }
        
        .news-desc_news {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .news-readmore_news {
            font-size: 14px;
            color: #0F3475;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 900;
        }
        .news-readmore_news:hover {
            color: #FFB028;
        }
        
        @media screen and (max-width: 992px) {
            .news-grid_news {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .news-main-title_news {
                font-size: 34px;
            }
            .news-title_news {
                font-size: 22px;
            }
            .news-desc_news {
                font-size: 14px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .news-wrap_news {
                padding: 45px 15px;
            }
            .news-grid_news {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .news-date-tag_news {
                font-size: 14px;
                padding: 4px 8px;
            }
            .news-main-title_news {
                font-size: 20px;
            }
            .news-title_news {
                font-size: 16px;
            }
        }
		.center{
			
		max-width:1300px;
			margin:0 auto;	
		}
		.div{
			
display: flex;
			
justify-content: space-between;
			
align-items: center;
		}
		
		.footer-container_di a{
		    color:#fff;
		    text-decoration: none;
		    font-size: 16px;
		}
		
		
		  .banner-wrap_banner {
            width: 100%;
            height: auto;
            position: relative;
            overflow: hidden;
        }
        .banner-slide-box_banner {
            width: 100%;
            display: flex;
            transition: transform 0.6s ease;
        }
        .banner-item_banner {
            width: 100%;
            flex-shrink: 0;
            display: flex;
        }
        
        .banner-left-text_banner {
            width: 50%;
            background-color: #1A3055;
            color: #fff;
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .banner-main-title_banner {
        font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
        }
        .title-line_banner {
            width: 420px;
            height: 6px;
            background-color: #FFB028;
            margin-bottom: 36px;
        }
        .banner-desc-text_banner {
font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 48px;
        }
        .banner-btn_banner {
            width: fit-content;
            border: 3px solid #FFB028;
            padding: 16px 40px;
            font-size: 24px;
            color: #FFB028;
            background: transparent;
            cursor: pointer;
            font-weight: 600;
        }
        .banner-btn_banner:hover {
            background-color: #FFB028;
            color: #1A3055;
        }
        
        .banner-right-img_banner {
            width: 50%;
            position: relative;
        }
        .banner-right-img_banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .banner-nav-dot-box_banner {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 12px;
        }
        .banner-nav-item_banner {
            background: rgba(255,255,255,0.3);
            padding: 12px 16px;
            font-size: 16px;
            color: #fff;
            min-width: 160px;
            text-align: center;
            cursor: pointer;
            position: relative;
        }
        .banner-nav-item_banner.active_banner {
            background: #fff;
            color: #1A3055;
        }
        .banner-nav-item_banner i {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .banner-arrow-left_banner,
        .banner-arrow-right_banner {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            color: #fff;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
        }
        .banner-arrow-left_banner {
            left: 20px;
        }
        .banner-arrow-right_banner {
            right: 20px;
        }
        
        @media screen and (max-width: 1200px) {
            .banner-main-title_banner {
                font-size: 60px;
            }
            .banner-left-text_banner {
                padding: 70px 40px;
            }
            .banner-desc-text_banner {
                font-size: 19px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .banner-item_banner {
                flex-direction: column;
            }
            .banner-left-text_banner,
            .banner-right-img_banner {
                width: 100%;
            }
            .banner-main-title_banner {
                font-size: 42px;
            }
            .title-line_banner {
                width: 240px;
            }
            .banner-desc-text_banner {
                font-size: 16px;
            }
            .banner-btn_banner {
                font-size: 18px;
                padding: 12px 30px;
            }
            .banner-nav-dot-box_banner {
                bottom: 20px;
                right: 10px;
            }
            .banner-nav-item_banner {
                min-width: 120px;
                font-size: 13px;
            }
        }
        
        
        
        .fa-chevron-right{
      margin-right: 10px;
      color: #2e2b27;
      margin-left: 10px;
      font-size: 8px;
      }
        
       
        
    
  .about-top-banner_gy2 {
            width: 100%;
            background-color: #1A3055;
            padding: 30px 0px;
            
            
            
        }
        .banner-title_gy2 {
            font-size: 24px;
            color: #ffffff;
            font-weight: bold;
        }
        .banner-bread_gy2 {
            color: #cbd5e1;
            font-size: 18px;
        }
        
        .about-main-wrap_gy2 {
            max-width: 1300px;
            margin: 0 auto;
            padding: 80px 0px;
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 30px;
        }
        
        .about-left_gy2 h2 {
            font-size: 22px;
            color: #0F3475;
            margin-bottom: 24px;
        }
        .about-text_gy2 {
            font-size: 17px;
            color: #606978;
            line-height: 1.8;
        }
        .about-text_gy2 p {
            margin-bottom: 16px;
            font-size: 14px;
        }
        
        .about-right_gy2 h2 {
            font-size: 22px;
            color: #0F3475;
            margin-bottom: 36px;
        }
        .progress-item_gy2 {
            margin-bottom: 28px;
        }
        .progress-label_gy2 {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .progress-outer_gy2 {
            width: 100%;
            height: 16px;
            background-color: #f1f1f1;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .progress-inner_gy2 {
            height: 100%;
            background: linear-gradient(90deg, #ffb028, #ffc344);
            border-radius: 8px;
            width: 0;
            transition: width 1s ease-out;
        }
        
        .p1_gy2 { width: 92%; }
        .p2_gy2 { width: 92%; }
        .p3_gy2 { width: 60%; }
        .p4_gy2 { width: 52%; }

        
        @media screen and (max-width: 992px) {
            .about-main-wrap_gy2 {
                grid-template-columns: 1fr;
            }
            .banner-title_gy2 {
                font-size: 36px;
            }
            .about-left_gy2 h2,
            .about-right_gy2 h2 {
                font-size: 26px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .about-top-banner_gy2 {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 40px 15px;
            }
            .banner-title_gy2 {
                font-size: 28px;
            }
            .about-main-wrap_gy2 {
                padding: 40px 15px;
            }
        }    
        
        
        
        
       
       
       
       
       
       
       
       
       
       
       
        .data-wrap_sj {
            width: 100%;
            background-color: #1A3055;
            padding: 70px 20px;
        }
        
        .data-container_sj {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .data-item_sj {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #ffffff;
        }
        
        .data-icon-circle_sj {
            width: 60px;
            height: 60px;
            background-color: #FFB028;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .data-icon-circle_sj i {
            font-size: 30px;
            color: #fff;
        }
        
        .data-text-box_sj {
            display: flex;
            flex-direction: column;
        }
        
        .data-num_sj {
            font-size: 50px;
            font-weight: bold;
            line-height: 1.2;
        }
        .data-text_sj {
            font-size: 25px;
            line-height: 1.2;
        }

        
        @media screen and (max-width: 992px) {
            .data-icon-circle_sj {
                width: 60px;
                height: 60px;
            }
            .data-icon-circle_sj i {
                font-size: 32px;
            }
            .data-num_sj,
            .data-text_sj {
                font-size: 26px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .data-container_sj {
                flex-direction: column;
                gap: 35px;
            }
            .data-wrap_sj {
                padding: 50px 15px;
            }
            .data-num_sj,
            .data-text_sj {
                font-size: 22px;
            }
        } 
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
         .honor-wrap_zh {
            width: 100%;
            padding: 70px 20px;
        }
        .honor-container_zh {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        .module-title_zh {
            font-size: 22px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 40px;
        }
        .why-item_zh {
            display: flex;
            gap: 16px;
            margin-bottom: 36px;
        }
        .why-icon-box_zh {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            border-radius: 50%;
            background-color: #FFB028;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
        }
        .why-text-wrap_zh h4 {
            font-size: 20px;
            color: #0F3475;
            margin-bottom: 12px;
        }
        .why-desc_zh {
            font-size: 14px;
            color: #707887;
            line-height: 1.75;
        }
        .cert-grid_zh {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .cert-item_zh {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            background: #f5f5f5;
            aspect-ratio: 4 / 3;
        }
        .cert-item_zh img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .cert-item_zh:hover img {
            transform: scale(1.08);
        }
        .cert-plus_zh {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 176, 40, 0.8);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .cert-item_zh:hover .cert-plus_zh {
            opacity: 1;
        }

        
        .img-modal_zh {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .modal-track_zh {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.4s ease;
            will-change: transform;
        }
        .modal-slide-item_zh {
            flex: 0 0 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 80px;
        }
        .modal-slide-item_zh img {
            max-width: 85%;
            max-height: 88vh;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .modal-close_zh {
            position: fixed;
            top: 24px;
            right: 40px;
            color: #fff;
            font-size: 38px;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.2s;
        }
        .modal-close_zh:hover {
            transform: rotate(90deg);
        }
        .modal-arrow_zh {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            background: rgba(255,255,255,0.15);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-arrow_zh:hover {
            background: rgba(255, 176, 40, 0.7);
            transform: translateY(-50%) scale(1.05);
        }
        .modal-prev_zh { left: 30px; }
        .modal-next_zh { right: 30px; }

        
        .modal-dots_zh {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        .dot_zh {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            border: none;
        }
        .dot_zh.active {
            background: #FFB028;
            transform: scale(1.3);
        }
        .dot_zh:hover {
            background: rgba(255, 176, 40, 0.7);
        }

        @media screen and (max-width: 992px) {
            .honor-container_zh {
                grid-template-columns: 1fr;
            }
            .cert-grid_zh {
                grid-template-columns: repeat(3, 1fr);
            }
            .module-title_zh {
                font-size: 30px;
            }
            .why-text-wrap_zh h4 {
                font-size: 24px;
            }
        }
        @media screen and (max-width: 640px) {
            .honor-wrap_zh {
                padding: 45px 15px;
            }
            .cert-grid_zh {
                grid-template-columns: repeat(2, 1fr);
            }
            .module-title_zh {
                font-size: 26px;
            }
            .why-text-wrap_zh h4 {
                font-size: 22px;
            }
            .why-desc_zh {
                font-size: 15px;
            }
            .modal-arrow_zh {
                width: 38px;
                height: 38px;
                font-size:18px;
            }
            .modal-slide-item_zh {
                padding: 0 20px;
            }
            .modal-slide-item_zh img {
                max-width: 95%;
                max-height: 80vh;
            }
            .modal-close_zh {
                top: 16px;
                right: 20px;
                font-size: 30px;
            }
            .modal-prev_zh { left: 10px; }
            .modal-next_zh { right: 10px; }
        }
        
        
        
        
        
           .service-wrap_fw2 {
            width: 100%;
            padding: 70px 20px;
        }
        .service-container_fw2 {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 50px;
        }
        
        .service-left_fw2 {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .service-menu-box_fw2 {
            background-color: #f6f6f6;
            padding: 30px 24px;
        }
        .menu-title_fw2 {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 26px;
        }
        .service-menu-list_fw2 li {
            list-style: none;
            margin-bottom: 16px;
        }
        .service-menu-list_fw2 li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #4c5e7e;
            text-decoration: none;
            transition: color 0.25s ease;
            font-weight: 700;
        }
        
        .menu-arrow-icon_fw2 {
            width: 16px;
            height: 16px;
            background-color: #cfcfcf;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 11px;
        }
        
        .service-menu-list_fw2 li.active_fw2 a {
            color: #FFB028;
        }
        
        .service-menu-list_fw2 li a:hover {
            color: #FFB028;
        }
        
        .form-box_fw2 {
        padding: 15px;
        background: #f5f5f5;
        }
        .form-title_fw2 {
            font-size: 22px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .form-desc_fw2 {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .form-item_fw2 {
            margin-bottom: 14px;
        }
        .form-item_fw2 input,
        .form-item_fw2 textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            font-size: 15px;
            outline: none;
        }
        .form-item_fw2 textarea {
            min-height: 90px;
            resize: vertical;
        }
        .submit-btn_fw2 {
            background: #FFB028;
            border: none;
            color: #fff;
            padding: 12px 30px;
            font-size: 16px;
            cursor: pointer;
        }
        
        .service-right_fw2 {
        }
        .service-desc-box_fw2 h2 {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 16px;
        }
        .service-desc-text_fw2 {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 45px;
            padding-left: 4px;
        }
        
        .flow-title_fw2 {
            font-size: 20px;
            color: #0F3475;
            font-weight: bold;
            margin-bottom: 30px;
        }
        
        .flow-list_fw2 {
            position: relative;
            padding-left: 70px;
        }
        
        .flow-list_fw2::before {
            content: "";
            position: absolute;
            left: 28px;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: #FFB028;
        }
        .flow-item_fw2 {
            position: relative;
            margin-bottom: 32px;
        }
        
        .flow-hex_fw2 {
            position: absolute;
            left: -70px;
            top: 0;
            width: 56px;
            height: 56px;
            background-color: #FFB028;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
        }
        .flow-text-box_fw2 h4 {
            font-size: 18px;
            color: #222;
            margin-bottom: 6px;
        }
        .flow-text-box_fw2 p {
            font-size: 14px;
            color: #666;
        }

        
        @media screen and (max-width: 992px) {
            .service-container_fw2 {
                grid-template-columns: 1fr;
            }
            .service-left_fw2 {
                gap: 30px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .service-wrap_fw2 {
                padding: 40px 15px;
            }
            .service-desc-box_fw2 h2,
            .flow-title_fw2 {
                font-size: 24px;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        .article-wrap_new3{
    width:100%;
    padding:60px 20px;
    background:url('bg.jpg') no-repeat center top;
    background-size:cover;
    background-attachment:fixed;
}
.article-container_new3{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 920px 1fr;
    gap:40px;
}

.article-main_new3{
    background:#fff;
    padding:30px;
    border-radius:4px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.article-content_text_new3{
    font-size:15px;
    line-height:1.8;
    color:#444;
    text-align:justify;
}
.article-content_text_new3 p{
    margin-bottom:16px;
}
.article-info_line_new3{
    text-align:center;
    margin:20px 0 30px;
    font-size:14px;
    color:#777;
}

.page_btn_wrap_new3{
    display:flex;
    justify-content:space-between;
    margin:40px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:20px 0;
}
.page_btn_item_new3{
    display:flex;
    align-items:center;
    gap:8px;
    color:#0F3475;
    text-decoration:none;
}

.relative_title_new3{
    font-size:20px;
    color:#0F3475;
    font-weight:bold;
    margin-bottom:20px;
    text-align:center;
}
.relative_list_new3{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.relative_item_new3 a{
    color:#333;
    text-decoration:none;
    font-size:14px;
    line-height:1.6;
}
.relative_item_new3 a:hover{
    color:#FFB028;
}
.relative_item_time_new3{
    font-size:12px;
    color:#888;
    margin-top:4px;
}

.aside_wrap_new3{
    display:flex;
    flex-direction:column;
    gap:40px;
}
.aside_block_new3{
    background: #f5f5f5;
    padding:25px;
    /* border-radius:4px; */
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.aside_block_title_new3{
    font-size:20px;
    color:#0F3475;
    font-weight:bold;
    margin-bottom:20px;
    padding-bottom:8px;
    border-bottom:2px solid #FFB028;
}

.new_article_list_new3 li{
    list-style:none;
    margin-bottom:18px;
    display:flex;
    gap:10px;
    align-items:flex-start;
}
.new_article_list_new3 li img{
    width:60px;
    height:60px;
    object-fit:cover;
    flex-shrink:0;
}
.new_article_text_new3 a{
    font-size:14px;
    color:#333;
    text-decoration:none;
    line-height:1.5;
}
.new_article_text_new3 a:hover{
    color:#FFB028;
}
.new_article_time_new3{
    font-size:12px;
    color:#888;
    margin-top:4px;
}

.style_img_grid_new3{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:8px;
}
.style_img_grid_new3 img{
    width:100%;
    height:80px;
    object-fit:cover;
}

.search_box_new3{
    width:100%;
    height:38px;
    border:1px solid #ddd;
    padding:0 12px;
    outline:none;
    font-size:14px;
}


@media screen and (max-width:992px){
    .article-container_new3{
        grid-template-columns:1fr;
    }
}
@media screen and (max-width:640px){
    .article-main_new3{
        padding:20px;
    }
    .aside_block_new3{
        padding:20px;
    }
    .relative_list_new3{
        grid-template-columns:1fr;
    }
    .page_btn_wrap_new3{
        flex-direction:column;
        gap:15px;
    }
}










.contact-wrap_lianxi{
    width: 100%;
    padding: 60px 20px;
}
.contact-container_lianxi{
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 40px;
}


.left-box_lianxi{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.left-top-map_lianxi{
    width: 100%;
    height: 320px;
    border: 1px solid #eee;
}
.left-top-map_lianxi img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.left-bottom-map_lianxi{
    width: 100%;
    height: 360px;
}
.left-bottom-map_lianxi img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.left-title_lianxi{
    font-size: 26px;
    color: #0F3475;
    font-weight: bold;
    margin-bottom: 12px;
}


.right-box_lianxi{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.right-title_lianxi{
    font-size: 26px;
    color: #0F3475;
    font-weight: bold;
    margin-bottom: 25px;
}
.info-list_lianxi{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.info-item_lianxi{
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.icon-circle_lianxi{
    width: 22px;
    height: 22px;
    background-color: #FFB028;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 12px;
}
.info-text_lianxi{
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}


.qr-wrap_lianxi{
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    margin-top: 40px;
}
.qr-item_lianxi{
    text-align: center;
}
.qr-item_lianxi img{
    width: 140px;
    height: 140px;
    border: 1px solid #eee;
    padding: 6px;
}
.qr-item_lianxi p{
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}


@media screen and (max-width:992px){
    .contact-container_lianxi{
        grid-template-columns: 1fr;
    }
    .right-box_lianxi{
        height: auto;
    }
    .qr-wrap_lianxi{
        justify-content: flex-start;
    }
}
@media screen and (max-width:640px){
    .contact-wrap_lianxi{
        padding: 35px 15px;
    }
    .left-title_lianxi,.right-title_lianxi{
        font-size: 22px;
    }
    .qr-wrap_lianxi{
        gap: 15px;
    }
    .qr-item_lianxi img{
        width: 110px;
        height: 110px;
    }
}
        .banner-bread_gy2 a{
             font-size:14px;
            color:#fff;
        }
        
        
        a{
            text-decoration: none;
            
        }
        
        
        
      .fy {
    margin: 30px 0;
    text-align: center;
}
.fy a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    border: 1px solid #eee;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}
.fy a:hover {
    background: #f5f5f5;
}
.fy .pnnum1 {
    background: #ffc107;
    border-color: #ffc107;
    color: #fff;
   
}




.news-date-tag_news {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background-color: #f7f7f7;
    color: #666;
    border-radius: 99px;
    font-size: 14px;
}
      
      
      
      .cert-slide-item_gy {
    transition: opacity 0.5s ease, transform 0.5s ease;
}


 
        
      
   
        .hero-title { text-align: center; padding: 40px 0 20px; }
        .hero-title h1 { font-size: 36px; color: var(--primary-blue); font-weight: 700; }
        .hero-line { width: 60px; height: 4px; background: var(--primary-yellow); margin: 15px auto 0; }

   
        .top-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .card {
            background: #fff; border-radius: 12px; overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06); display: flex; flex-direction: row; border: 1px solid #eee;
        }

    
        .intro-card { flex-direction: row; }
        .intro-img-wrap { width: 45%; flex-shrink: 0; }
        .intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .intro-content {
            width: 55%; padding: 25px 20px; display: flex; flex-direction: column; justify-content: space-between;
        }
        .intro-content h2 {font-size: 20px;color: #0F3475;margin-bottom: 15px;}
        .intro-content p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            background: #FFB028;
            color: #fff;
            padding: 8px 20px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            align-self: flex-start;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn:hover { background: #d49f0a; }

    
        .ranking-card { flex-direction: row; position: relative; }
        .ranking-img-wrap { width: 45%; background: #fcfcfc; overflow: hidden; flex-shrink: 0; }
        .ranking-slider { display: flex; width: 100%; height: 100%; transition: transform 0.6s ease-in-out; }
        .ranking-slide {
            min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px;
        }
        .ranking-slide img { width: 85%; max-height: 200px; object-fit: contain; border: 1px solid #ddd; box-shadow: 2px 2px 8px rgba(0,0,0,0.05); }

        .ranking-content { width: 55%; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
       
        .text-item { display: none; }
        .text-item.active { display: block; animation: fadeIn 0.5s; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
        .ranking-content h2 {font-size: 20px;color: #0F3475;margin-bottom: 10px;}
        .ranking-content p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
        
  
        .carousel-indicators { display: flex; gap: 8px; margin-top: 15px; }
        .dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: 0.3s; }
        .dot.active { background: #FFB028; }

  
        .values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
        .value-card {
            background: #fff; padding: 30px 20px; border-radius: 12px; text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; transition: transform 0.3s;
        }
        .value-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .value-icon { width: 50px; height: 50px; border-radius: 50%; background: #FFB028; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px; }
        .value-card h3 {color: #0F3475;font-size: 18px;margin-bottom: 15px;}
        .value-card p {font-size: 14px;color: var(--text-gray);line-height: 1.8;text-align: justify;}

   
        @media (max-width: 1024px) { .values-row { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 28px; }
            .top-row { grid-template-columns: 1fr; }
            .intro-card, .ranking-card { flex-direction: column; }
            .intro-img-wrap, .intro-content, .ranking-img-wrap, .ranking-content { width: 100%; }
            .intro-img-wrap { height: 200px; }
            .ranking-img-wrap { height: 180px; padding: 0; }
            .values-row { grid-template-columns: 1fr; gap: 15px; }
            .header-actions span { display: none; } 
            .header-actions { font-size: 24px; }
        }
 
.news-img_news{
    border-radius: 12px;
    
}



 
    /* 顶部小字标签 */
    .banner-top-tip {
      color: #f9d778;
      font-size: 26px;
      letter-spacing: 1px;
      margin-bottom: 50px;
      font-weight: 500;
    }
    /* 主标题 */
    .banner-main-title {
      color: #ffffff;
      font-size: 60px;
      font-weight: bold;
      line-height: 1.2;
    }
    .title-line {
      width: 420px;
      height: 7px;
      background: linear-gradient(90deg, #FFB028, #ffeec0);
      margin: 25px 0 40px;
      /* border-radius: 2px; */
    }
    /* 公司名称 */
    .banner-company-name {
      color: #fff;
      font-size: 25px;
      margin-bottom: 60px;
      opacity: 0.95;
    }
    /* 咨询按钮 */
    .consult-btn {
      width: 200px;
      height: 60px;
      border-radius: 50px;
      background: linear-gradient(135deg, #FFB028, #f2c966);
      border: none;
      font-size: 19px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      line-height: 60px;
      text-align: center;
    }
    .consult-btn:hover {
      filter: brightness(1.1);
      transform: translateY(-3px);
    }

    /* ========== 手机端适配 媒体查询 ========== */
    @media screen and (max-width: 768px) {
      .tax-banner {
        min-height: 600px;
        padding: 40px 5%;
      }
      .banner-top-tip {
        font-size: 16px;
        margin-bottom: 30px;
      }
      .banner-main-title {
        font-size: 42px;
      }
      .title-line {
        width: 200px;
        height: 3px;
        margin: 18px 0 25px;
      }
      .banner-company-name {
        font-size: 18px;
        margin-bottom: 35px;
      }
      .consult-btn {
        width: 130px;
        height: 38px;
        font-size: 14px;
        line-height: 38px;
      }
      
          .tax-banner {
      min-height: 260px!important;
      padding: 20px 11%!important;
    }
      
      
      
      
    }
    /* 小屏手机兼容 */
    @media screen and (max-width: 480px) {
      .banner-main-title {
        font-size: 28px;
      }
      .banner-top-tip {
        font-size: 14px;
      }
    }
