/* Custom styles and animations */
/* IE兼容：已移除CSS变量，使用固定值 */

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
}

.brand-title {
    font-family: "Source Han Serif SC", "Source Han Serif CN", "Noto Serif CJK SC", "Songti SC", serif;
    font-weight: bold;
}

.brand-subtitle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -2px;
}

.hero-subtitle {
    font-family: "Source Han Sans CN", "Source Han Sans", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    color: #8EC5FF;
    font-size: 52px;
}

/* Header States */
header {
    background-color: white; /* Default white background for subpages */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Default shadow for subpages */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

header .nav-text,
header .nav-links,
header .nav-user {
    color: #333;
}

header .nav-item {
    color: #444;
}

header .nav-item.active,
header .nav-item:hover {
    color: #1F6DE8 !important;
}

header #nav-search {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Home page header default transparent effect */
header.home-header {
    background-color: transparent; /* Default transparent background for home */
    box-shadow: none; /* Default no shadow for home */
}

header.home-header .nav-text,
header.home-header .nav-links,
header.home-header .nav-user {
    color: white;
}

header.home-header .nav-item {
    color: white;
}

header.home-header #nav-search {
    display: none;
    opacity: 0;
    transform: translateX(4px);
}

header.home-header.scrolled,
header.home-header:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header.home-header.scrolled .nav-text,
header.home-header.scrolled .nav-links,
header.home-header.scrolled .nav-user,
header.home-header:hover .nav-text,
header.home-header:hover .nav-links,
header.home-header:hover .nav-user {
    color: #333;
}

header.home-header.scrolled .nav-item,
header.home-header:hover .nav-item {
    color: #444;
}

header.home-header.scrolled .nav-item.active,
header.home-header.scrolled .nav-item:hover,
header.home-header:hover .nav-item.active,
header.home-header:hover .nav-item:hover {
    color: #1F6DE8 !important;
}

header.home-header.scrolled #nav-search,
header.home-header:hover #nav-search {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

header #nav-search input {
    width: 250px;
    transition: width 0.3s ease;
}

.nav-user {
    font-size: 15px !important;
}

.nav-user .nav-register,
.nav-user .nav-register:link,
.nav-user .nav-register:visited {
    color: inherit;
    transition: color 0.3s ease;
}

.nav-user .nav-register:hover,
.nav-user .nav-register:focus {
    color: #1F6DE8;
}

.hero-search-input {
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.hero-search-input:hover,
.hero-search-input:focus {
    background-color: rgba(255, 255, 255, 1) !important;
    border-color: #1F6DE8 !important;
}

/* Nav Items */
.nav-links {
    height: 80px; /* Match header height */
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    padding-bottom: 6px;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease;
}

.nav-item.active {
    font-weight: bold;
}

/* 首页默认状态下的激活效果 */
header.home-header .nav-item.active {
    color: white !important;
    font-weight: bold;
}

/* 仅在 Header 处于非透明状态（滚动或悬停）或菜单项被悬停时，才显示背景 */
header:not(.home-header) .nav-item.active,
header.home-header.scrolled .nav-item.active,
header.home-header:hover .nav-item.active {
    background: #f3f5f6 !important;
    color: #1f6de8 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #1f6de8 !important;
}

.nav-item:hover:not(.active) {
    background-color: #F3F5F6;
    color: #1F6DE8 !important;
}

header:not(.home-header) .nav-item.active::after,
header.home-header.scrolled .nav-item.active::after,
header.home-header:hover .nav-item.active::after {
    display: none;
}

/* Carousel Animation */
.carousel-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUpSoft {
    animation: fadeInUpSoft 1.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.4s; }
.delay-400 { animation-delay: 0.6s; }

/* Global Width */
.container-1200 {
    max-width: 1200px;
    width: 100%;
}

.content-title {
    font-size: 35px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 10px;
    background: url('../images/lhx.png') no-repeat center;
    background-size: contain;
}

/* Notice Ticker */
.notice-section {
    background: linear-gradient(to bottom, #F4F6F8, #FEFEFF) !important; /* Apply the gradient */
}

.notice-container {
    height: 64px;
    background: #ffffff;
    box-shadow: 0 5px 35px 0 rgba(218, 225, 235, 0.8);
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    padding: 0 20px;
}

.ticker-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ticker-item {
    color: #333333;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 2rem;
}

a.ticker-item {
    text-decoration: none;
    color: #333333;
}

a.ticker-item:visited {
    color: #333333;
}

a.ticker-item:active {
    color: #1F6DE8;
}

.ticker-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #999;
    border-radius: 50%;
    margin-right: 1rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Login Cards */
.login-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-card:hover {
    transform: translateY(-10px);
    background-color: #1F6DE8;
}

.login-card .icon-wrapper {
    width: 44px;
    height: 44px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-card .icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.login-card .hover-icon {
    display: none;
}

.login-card:hover .default-icon {
    display: none;
}

.login-card:hover .hover-icon {
    display: block;
}

.login-card .label {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1F6DE8;
    transition: color 0.3s ease;
}

.login-card:hover .label {
    color: white;
}

.login-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -600px;
    width: 1200px;
    z-index: 30;
}

/* Carousel Controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
}

.carousel-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-arrow.prev {
    left: 40px;
}

.carousel-arrow.next {
    right: 40px;
}

.carousel-arrow img {
    width: 48px;
    height: auto;
    display: block;
}


/* Platform Dynamics Refinement */
.dot-8 {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-8.active {
    background: white;
}

.dynamic-tab {
    font-size: 20px;
    color: #666666;
    transition: all 0.3s ease;
}

.dynamic-tab.active {
    color: #1F6DE8 !important;
    font-weight: bold;
}

.dynamic-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* 盖在容器的 border-b 上 */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1F6DE8;
    z-index: 10;
}

.news-date span {
    font-family: 'OPPOSans', sans-serif;
}

.news-list-item {
    padding: 0 15px;
    border-bottom: 1px solid #EDEDED;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-list-item:hover,
.news-list-item.active {
    background-color: #FCFCFC;
}

.news-list-item:hover .flex-1,
.news-list-item.active .flex-1 {
    color: #1F6DE8 !important;
}

.news-list-item.active .news-date .day,
.news-list-item.active .news-date .year {
    color: #1F6DE8;
}

/* Status Tags */
.status-tag {
    display: none;
    font-size: 16px;
    font-weight: bold;
}

.status-ongoing {
    color: #FC7217;
}

.status-ended {
    color: #1F6DE8;
}

/* Reusable Glass Container (from Notice Ticker) */
.glass-container {
    background: linear-gradient(to bottom, #F4F6F8, #FEFEFF); /* Apply the gradient */
    box-shadow: 0 5px 35px 0 rgba(218, 225, 235, 0.8);
    border: 2px solid #FFFFFF;
    border-radius: 4px;
}

/* Transaction Tabs */
.trade-tab {
    cursor: pointer;
    height: 48px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trade-tab.active {
    background-color: #1F6DE8 !important;
    color: white !important;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(31, 109, 232, 0.3);
}

.trade-tab:not(.active):hover {
    background-color: #f8f9fa !important;
}

/* Tertiary Tabs in Transaction Section */
.sub-tab-container {
    margin-bottom: 10px;
}

.sub-tab {
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 18px; /* Capsule shape */
}

/* Status Visibility */
#trade-list.show-status .status-tag {
    display: inline-block;
}

.trade-list-item {
    border-bottom: 1px solid #EDEDED;
}

.guide-list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #1F6DE8;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-top: 5px; /* Align with text baseline, adjusted 1px up */
}

.guide-card {
    cursor: pointer;
    position: relative;
    transform: translateY(0);
    background: linear-gradient(to bottom, #F4F6F8, #FEFEFF);
    box-shadow: 0 5px 35px 0 rgba(218, 225, 235, 0.8); /* Added from .glass-container */
    border: 2px solid #FFFFFF; /* Added from .glass-container */
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1F6DE8;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.guide-card > * {
    position: relative;
    z-index: 1;
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card:hover .guide-list-dot {
    border-color: white;
}

.guide-card:hover ul li span:hover {
    text-decoration: underline;
}

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

.guide-card:hover button {
    background-color: transparent !important; /* 背景透明 */
    border-color: white !important; /* 边框颜色 */
    color: white !important; /* 文字颜色 */
}

.guide-card:hover button img {
    filter: progid:DXImageTransform.Microsoft.BasicImage(invert=1); /* IE filter for white */
}

.guide-card:hover button:hover {
    background-color: white !important; /* 白底 */
    border-color: #1F6DE8 !important; /* 边框颜色 */
    color: #1F6DE8 !important; /* 文字颜色 */
}

.guide-card:hover button:hover img {
    filter: none; /* 恢复箭头原色 */
}

.footer-section {
    height: 202px;
    background-image: url('../images/di.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a2b4b; /* Fallback color */
    color: white;
}

/* Scroll Animation */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations based on data-animation attribute */
.animate-section [data-animation="fade-in-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-section.is-visible [data-animation="fade-in-up"] {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays */
.animate-section [data-delay="100"] { transition-delay: 0.1s; }
.animate-section [data-delay="200"] { transition-delay: 0.2s; }
.animate-section [data-delay="300"] { transition-delay: 0.3s; }
.animate-section [data-delay="400"] { transition-delay: 0.4s; }
.animate-section [data-delay="500"] { transition-delay: 0.5s; }

.notice-right .default-icon {
    display: block;
}

.notice-right .hover-icon {
    display: none;
}

.notice-right:hover .default-icon {
    display: none;
}

.notice-right:hover .hover-icon {
    display: block;
}

.jyxx-banner {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #1f56ba;
}

.jyxx-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.jyxx-banner-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 78.7%);
}

.jyxx-banner-title {
    position: absolute;
    top: 82px;
    left: 0;
}

.jyxx-banner-title-en {
    line-height: 23px;
    color: rgba(255, 255, 255, 0.12);
    font-family: "Source Han Sans CN", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.jyxx-banner-title-cn {
    margin-top: -12px;
    line-height: 23px;
    color: #ffffff;
    font-family: "Source Han Sans CN", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.jyxx-banner-underline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 38px;
    height: 5px;
}

.jyxx-banner-underline-long {
    width: 46px;
    height: 5px;
    background: #ffffff;
    border-radius: 5px;
    margin-right: 5px;
}

.jyxx-banner-underline-short {
    width: 18px;
    height: 5px;
    background: #ffffff;
    border-radius: 5px;
}

.jyxx-main {
    background: #f5f6f8;
    padding: 24px 0 24px;
}

.jyxx-breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999999;
    font-size: 14px;
    margin-bottom: 16px;
}

.jyxx-breadcrumb-icon {
    width: 14px;
    height: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 8px;
}

.jyxx-breadcrumb-label {
    color: #999999;
}

.jyxx-breadcrumb-link {
    color: #999999;
    transition: color 0.2s ease;
    text-decoration: none;
}

.jyxx-breadcrumb-link:hover {
    color: #1f6de8;
}

.jyxx-breadcrumb-current {
    color: #1F6DE8;
    font-weight: 600;
}

.jyxx-breadcrumb-sep {
    margin: 0 8px;
    color: #999999;
}

.jyxx-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.jyxx-card {
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 2px 14px 0px rgba(4, 44, 101, 0.1);
}

.jyxx-sidebar {
    width: 220px;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 20px;
}

.jyxx-sidebar-header {
    position: relative;
    height: 100px;
    padding: 24px 20px 18px 24px;
    color: #ffffff;
    background-image: url('../images/yjbj.png');
    background-size: 220px 100px;
    background-position: center;
    background-repeat: no-repeat;
}

.jyxx-sidebar-line {
    width: 18px;
    height: 1px;
    background: #ffffff;
    margin-bottom: 8px;
}

.jyxx-sidebar-title {
    line-height: 33px;
    font-size: 22px;
}

.jyxx-sidebar-subtitle {
    opacity: 0.4;
    line-height: 18px;
    font-size: 12px;
    text-transform: uppercase;
}

.jyxx-sidebar-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1px;
}

.jyxx-sidebar-cat {
    width: 100%;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 20px 15px 24px;
    border: 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.1);
    background: #ffffff;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: all 0.2s ease;
}

.jyxx-sidebar-cat:hover {
    color: #1F6DE8;
    font-weight: 600;
    background-image: linear-gradient(90deg, rgba(31, 109, 232, 0.1) 0%, rgba(237, 248, 244, 0) 100%);
    border-left: 2px solid #3982F5;
    padding-left: 22px;
}

.jyxx-sidebar-cat:focus,
.jyxx-sidebar-cat:active {
    outline: none;
    box-shadow: none;
}

.jyxx-sidebar-cat.active {
    background: #3982F5;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 0;
}

.jyxx-sidebar-cat-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(153, 153, 153, 0.35);
    color: rgba(153, 153, 153, 0.9);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
}

.jyxx-sidebar-cat-icon i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.jyxx-sidebar-cat.active .jyxx-sidebar-cat-icon {
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.jyxx-sidebar-sublist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
}

.jyxx-sidebar-sublist.active {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.jyxx-sidebar-subitem {
    width: 100%;
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px 0 40px;
    border: 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.1);
    background: #ffffff;
    color: #666666;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.jyxx-sidebar-subitem:hover {
    background-color: #f6f9fe;
}

.jyxx-sidebar-subicon {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    color: #1F6DE8;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
}

.jyxx-sidebar-subitem.active {
    color: #1F6DE8;
    font-weight: 600;
    background-image: linear-gradient(90deg, rgba(31, 109, 232, 0.1) 0%, rgba(237, 248, 244, 0) 100%);
    border-left: 2px solid #3982F5;
    padding-left: 38px;
}

.jyxx-sidebar-subitem.active .jyxx-sidebar-subicon {
    opacity: 1;
}

.jyxx-sidebar-item {
    width: 100%;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px 0 24px;
    border: 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.1);
    background: #ffffff;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
}

.jyxx-sidebar-item.is-active {
    background: #f5f7ff;
    color: #1f6de8;
}

.jyxx-sidebar-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 999px;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #b0b0b0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
}

.jyxx-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 20px 24px;
    min-width: 0;
}

.jyxx-content-header {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    margin-bottom: 10px;
}

.jyxx-content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

.jyxx-content-title-icon {
    width: 24px;
    height: 24px;
    background: url('../images/yjtb.png') no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-right: 10px;
}

.jyxx-section {
    padding: 0 0 6px;
}

.jyxx-section + .jyxx-section {
    margin-top: 8px;
}

.jyxx-section-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 28px;
    margin-bottom: 6px;
}

.jyxx-section-name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.jyxx-section-name::before {
    content: '';
    width: 3px;
    height: 18px;
    background: url('../images/ejtb.png') no-repeat center;
    background-size: cover;
    margin-right: 10px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 6px;
}

.jyxx-more {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #97aac1;
    height: 21px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.jyxx-more:hover {
    color: #1f6de8;
}

.jyxx-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 230px;
}

.jyxx-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 46px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    color: #333333;
    text-decoration: none;
    padding-right: 10px;
}

.jyxx-row:last-child {
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.jyxx-row:hover {
    background: #fbfcfe;
}

.jyxx-row:hover .jyxx-row-title,
.jyxx-row:hover .jyxx-row-meta {
    color: #1F6DE8;
}

.jyxx-row-dot {
    width: 8px;
    height: 8px;
    border: 1px solid #1f6de8;
    border-radius: 999px;
    background: #ffffff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 8px;
}

.jyxx-row-count {
    font-size: 14px;
    font-weight: 700;
    color: #1f6de8;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-right: 4px;
}

.jyxx-row-tag {
    font-size: 16px;
    font-weight: normal;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 4px;
}

.jyxx-tag-ongoing {
    color: #fc7217;
}

.jyxx-tag-pending {
    color: #1f6de8;
}

.jyxx-row-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    color: #333333;
}

.jyxx-row-meta {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999999;
    font-size: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 180px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.jyxx-meta-dot {
    width: 4px;
    height: 4px;
    background: rgba(153, 153, 153, 0.4);
    border-radius: 999px;
    margin: 0 10px;
}

@media (max-width: 1024px) {
    .jyxx-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .jyxx-sidebar {
        width: 100%;
        margin-right: 0;
    }

    .jyxx-row-meta {
        width: auto;
    }
}

@media (max-width: 768px) {
    .jyxx-banner {
        height: 180px;
    }

    .jyxx-banner-title {
        top: 60px;
    }

    .jyxx-banner-title-en,
    .jyxx-banner-title-cn {
        font-size: 24px;
    }

    .jyxx-breadcrumb {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .jyxx-content {
        padding: 8px 12px 16px;
    }

    .jyxx-section-name {
        font-size: 16px;
    }

    .jyxx-row {
        height: auto;
        min-height: 46px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 8px 8px;
    }

    .jyxx-row-title {
        font-size: 14px;
        margin-left: 4px;
    }

    .jyxx-row-meta {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 4px;
        margin-left: 16px;
    }
}

@media (max-width: 480px) {
    .jyxx-banner {
        height: 140px;
    }

    .jyxx-banner-title {
        top: 40px;
    }

    .jyxx-banner-title-en,
    .jyxx-banner-title-cn {
        font-size: 20px;
    }

    .jyxx-main {
        padding: 16px 0 40px;
    }

    .jyxx-sidebar-header {
        height: 80px;
        padding: 16px 16px 12px 20px;
    }

    .jyxx-sidebar-title {
        font-size: 18px;
    }

    .jyxx-sidebar-cat {
        padding: 12px 16px 12px 20px;
        font-size: 14px;
    }

    .jyxx-sidebar-subitem {
        padding: 0 16px 0 32px;
        font-size: 13px;
    }

    .jyxx-sidebar-subitem.active {
        padding-left: 30px;
    }
}

/**
 * 由 HTML 内联 style 迁移（front-topic-dev：禁止内联 CSS，视觉保持不变）
 */
.jyxx-banner-bg--jyxx {
    background-image: url('../images/banner_jyxx.jpg');
}
.jyxx-banner-bg--zcfg {
    background-image: url('../images/banner_zcfg.jpg');
}
.jyxx-banner-bg--ptdt {
    background-image: url('../images/banenr_ptdt.jpg');
}
.jyxx-banner-bg--bszn {
    background-image: url('../images/banner_bszn.jpg');
}
.carousel-item--bg-a {
    background-image: url('../images/%E5%9B%BEa.jpg');
}
.carousel-item--bg-b {
    background-image: url('../images/%E5%9B%BEb.jpg');
}
/* .dynamic-slide--hero-main {
    background-image: url('../images/%E8%BD%AE%E6%92%AD%E5%9B%BE.png');
}
.dynamic-slide--hero-a {
    background-image: url('../images/%E5%9B%BEa.jpg');
} */
.section-trade-bg-faint {
    background-image: url('../images/banner_jyxx.jpg');
}
.zbgg-process-bg-w1 {
    background-image: url('../images/lc_w1.png');
}
.zbgg-process-bg-w2 {
    background-image: url('../images/lc_w2.png');
}
.zbgg-process-bg-w3 {
    background-image: url('../images/lc_w3.png');
}
.zbgg-process-bg-d4 {
    background-image: url('../images/lc_d4.png');
}
.zbgg-process-bg-m5 {
    background-image: url('../images/lc_m5.png');
}

/* 列表分页（原 jyxx_2 / zcfg_2 / ptdt_2 / bszn_2 内联样式迁移） */
.jyxx-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.jyxx-pagination-select {
    padding: 6px 12px;
    border: 1px solid #ecedf2;
    background: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    color: #666666;
    margin-right: 10px;
}

.jyxx-pagination-btn {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #ecedf2;
    background: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 5px;
}

.jyxx-pagination-btn:hover {
    border-color: #1f6de8;
    color: #1f6de8;
}

.jyxx-pagination-btn.active {
    border-color: #1f6de8;
    background: #ffffff;
    color: #1f6de8;
    font-weight: 600;
}

.jyxx-pagination-ellipsis {
    font-size: 14px;
    color: #666666;
    margin: 0 5px;
}

.jyxx-pagination-jump {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #666666;
    margin-left: 10px;
}

.jyxx-pagination-jump input {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid #ecedf2;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin: 0 6px;
}

/* ========== IE浏览器兼容性样式 ========== */
/* 使用.ie-browser类前缀，只有检测到IE时才生效 */

/* ========== 基础布局修复 ========== */
.ie-browser .hidden { display: none !important; }
.ie-browser .block { display: block !important; }
.ie-browser .inline-block { display: inline-block !important; }
.ie-browser .flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
.ie-browser .inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }
.ie-browser .grid { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }

/* ========== 导航栏修复 - 强制显示 ========== */
.ie-browser header nav.hidden.md\:flex,
.ie-browser nav.hidden,
.ie-browser nav.md\:flex,
.ie-browser header nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ie-browser header .nav-links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

/* ========== Hero区域修复 ========== */
.ie-browser #hero {
    position: relative !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    background-color: #1a1a1a !important;
}

.ie-browser #hero h2 {
    display: block !important;
    font-size: 36px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
}

.ie-browser #hero h3,
.ie-browser .hero-subtitle {
    display: block !important;
    color: #8EC5FF !important;
    margin-bottom: 48px !important;
    letter-spacing: 0.2em !important;
}

/* ========== 背景图轮播修复 ========== */
.ie-browser .carousel-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -webkit-transition: opacity 1.5s ease-in-out !important;
    -moz-transition: opacity 1.5s ease-in-out !important;
    -o-transition: opacity 1.5s ease-in-out !important;
    transition: opacity 1.5s ease-in-out !important;
}

.ie-browser .carousel-item.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
}

/* ========== 登录按钮区域 - 4列横向布局 ========== */
.ie-browser .login-container {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    margin-left: -600px !important;
    width: 1200px !important;
    z-index: 30 !important;
}

.ie-browser .login-container .grid.grid-cols-4 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.ie-browser .login-container .grid.grid-cols-4 > .login-card {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 25% !important;
    flex: 1 1 25% !important;
    max-width: 25% !important;
    min-width: 0 !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    padding: 20px 24px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.ie-browser .login-container .grid.grid-cols-4 > .login-card:first-child { margin-left: 0 !important; }
.ie-browser .login-container .grid.grid-cols-4 > .login-card:last-child { margin-right: 0 !important; }

/* ========== 办事指南卡片区域 - 3列横向布局 ========== */
.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 > .guide-card {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 calc((100% - 48px) / 3) !important;
    flex: 0 0 calc((100% - 48px) / 3) !important;
    max-width: calc((100% - 48px) / 3) !important;
    margin-left: 0 !important;
    margin-right: 24px !important;
    margin-bottom: 0 !important;
}

.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 > .guide-card:nth-child(3n) {
    margin-right: 0 !important;
}

/* ========== Header样式修复 ========== */
.ie-browser header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 50 !important;
    background-color: transparent !important;
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    -o-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.ie-browser header.scrolled,
.ie-browser header.ie-hover {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.ie-browser header.scrolled .nav-text,
.ie-browser header.scrolled .nav-links,
.ie-browser header.scrolled .nav-user,
.ie-browser header.ie-hover .nav-text,
.ie-browser header.ie-hover .nav-links,
.ie-browser header.ie-hover .nav-user {
    color: #333333 !important;
}

.ie-browser header.scrolled .nav-item,
.ie-browser header.ie-hover .nav-item {
    color: #444444 !important;
}

.ie-browser header.scrolled .nav-item.active,
.ie-browser header.ie-hover .nav-item.active {
    color: #1F6DE8 !important;
    font-weight: bold !important;
    background-color: #f3f5f6 !important;
    border-bottom: 2px solid #1F6DE8 !important;
}

/* 搜索框显示控制 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}

.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}

/* 首页默认状态 - 透明背景、白色文字 */
.ie-browser header.home-header .nav-text,
.ie-browser header.home-header .nav-links,
.ie-browser header.home-header .nav-user {
    color: #ffffff;
}

.ie-browser header.home-header .nav-item {
    color: #ffffff !important;
}

.ie-browser header.home-header .nav-item.active {
    color: #ffffff !important;
    font-weight: bold !important;
    background-color: transparent !important;
    border-bottom: 2px solid transparent !important;
}

.ie-browser header.home-header.scrolled .nav-item.active {
    background-color: #f3f5f6 !important;
    border-bottom: 2px solid #1F6DE8 !important;
}

/* ========== 平台动态Tab修复 ========== */
.ie-browser .flex.space-x-10 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ie-browser .dynamic-tab {
    font-size: 20px !important;
    color: #666666 !important;
    padding: 12px 0 !important;
    position: relative !important;
    display: inline-block !important;
    text-decoration: none !important;
    height: 48px !important;
    line-height: 48px !important;
    cursor: pointer !important;
    border-bottom: 3px solid transparent !important;
    -webkit-transition: color 0.3s ease !important;
    -moz-transition: color 0.3s ease !important;
    -o-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.ie-browser .dynamic-tab.active {
    color: #1F6DE8 !important;
    font-weight: bold !important;
    border-bottom-color: #1F6DE8 !important;
}

.ie-browser .dynamic-tab:hover {
    color: #1F6DE8 !important;
}

/* 平台动态轮播图 */
.ie-browser .dynamic-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -webkit-transition: opacity 0.5s ease !important;
    -moz-transition: opacity 0.5s ease !important;
    -o-transition: opacity 0.5s ease !important;
    transition: opacity 0.5s ease !important;
}

.ie-browser .dynamic-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
}

/* 轮播图分页点 */
.ie-browser .dot-8 {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    margin: 0 4px !important;
    display: inline-block !important;
}

.ie-browser .dot-8.active {
    background: white !important;
}

/* ========== 交易信息Tab修复 ========== */
.ie-browser .flex.just-between.gap-\[10px\] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.ie-browser .trade-tab {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
    background-color: #ffffff !important;
    text-align: center !important;
    padding: 16px 0 !important;
    font-size: 20px !important;
    color: #333333 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    border: 1px solid #e5e7eb !important;
    min-width: 0 !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.ie-browser .trade-tab:hover {
    background-color: #f3f5f6 !important;
    border-color: #1F6DE8 !important;
    color: #1F6DE8 !important;
}

.ie-browser .trade-tab.active {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-color: #1F6DE8 !important;
}

/* 子Tab样式 */
.ie-browser .sub-tab {
    padding: 8px 16px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    background-color: transparent !important;
    color: #6b7280 !important;
    border: 1px solid transparent !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.ie-browser .sub-tab:hover {
    color: #1d4ed8 !important;
    background-color: rgba(31, 109, 232, 0.1) !important;
}

.ie-browser .sub-tab.active {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-color: #1F6DE8 !important;
}

/* ========== 办事指南卡片样式修复 ========== */
.ie-browser .guide-card {
    padding: 25px !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid #e5e7eb !important;
}

.ie-browser .guide-card:hover {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
}

.ie-browser .guide-card .w-12 {
    width: 48px !important;
    height: 48px !important;
    background-color: #E4EEFB !important;
    border-radius: 8px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.ie-browser .guide-card:hover .w-12 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.ie-browser .guide-card h3 {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #333333 !important;
    margin-bottom: 24px !important;
}

.ie-browser .guide-card:hover h3 {
    color: #ffffff !important;
}

.ie-browser .guide-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ie-browser .guide-card li {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    opacity: 0.8 !important;
}

.ie-browser .guide-card:hover li {
    opacity: 1 !important;
    color: #ffffff !important;
}

.ie-browser .guide-list-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #1F6DE8 !important;
    border-radius: 50% !important;
    margin-right: 8px !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.ie-browser .guide-card:hover .guide-list-dot {
    background-color: #ffffff !important;
}

.ie-browser .guide-card a {
    color: inherit !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.ie-browser .guide-card:hover a {
    color: #ffffff !important;
}

/* 图标显示/隐藏 */
.ie-browser .guide-card .default-icon { display: block !important; }
.ie-browser .guide-card .hover-icon { display: none !important; }
.ie-browser .guide-card:hover .default-icon { display: none !important; }
.ie-browser .guide-card:hover .hover-icon { display: block !important; }

/* ========== 通知滚动区域修复 ========== */
.ie-browser .notice-center .ticker-scroll {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    white-space: nowrap !important;
}

.ie-browser .notice-center .ticker-item {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin-right: 40px !important;
    padding-right: 20px !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

/* ========== Tailwind基础类修复 ========== */
.ie-browser .bg-gray-50 { background-color: #f9fafb !important; }
.ie-browser .bg-gray-100 { background-color: #f3f4f6 !important; }
.ie-browser .bg-gray-900 { background-color: #111827 !important; }
.ie-browser .bg-white { background-color: #ffffff !important; }
.ie-browser .text-white { color: #ffffff; }
.ie-browser .text-gray-400 { color: #9ca3af !important; }
.ie-browser .text-gray-500 { color: #6b7280 !important; }
.ie-browser .text-gray-800 { color: #1f2937 !important; }
.ie-browser .border-gray-200 { border-color: #e5e7eb !important; }
.ie-browser .border-white { border-color: #ffffff !important; }

/* Flex布局修复 */
.ie-browser .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.ie-browser .flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.ie-browser .flex-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; }
.ie-browser .flex-1 { -webkit-box-flex: 1 !important; -ms-flex: 1 1 0% !important; flex: 1 1 0% !important; }
.ie-browser .flex-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; }
.ie-browser .items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; }
.ie-browser .justify-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; }
.ie-browser .justify-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; }

/* 间距修复 */
.ie-browser .space-x-2 > *:not(:last-child) { margin-right: 0.5rem !important; }
.ie-browser .space-x-3 > *:not(:last-child) { margin-right: 0.75rem !important; }
.ie-browser .space-x-4 > *:not(:last-child) { margin-right: 1rem !important; }
.ie-browser .space-x-6 > *:not(:last-child) { margin-right: 1.5rem !important; }
.ie-browser .space-x-10 > *:not(:last-child) { margin-right: 2.5rem !important; }
.ie-browser .space-x-\[50px\] > *:not(:last-child) { margin-right: 50px !important; }

/* 尺寸修复 */
.ie-browser .w-full { width: 100% !important; }
.ie-browser .w-auto { width: auto !important; }
.ie-browser .h-full { height: 100% !important; }
.ie-browser .h-screen { height: 100vh !important; }

/* 定位修复 */
.ie-browser .fixed { position: fixed !important; }
.ie-browser .absolute { position: absolute !important; }
.ie-browser .relative { position: relative !important; }
.ie-browser .top-0 { top: 0 !important; }
.ie-browser .left-0 { left: 0 !important; }
.ie-browser .right-0 { right: 0 !important; }
.ie-browser .bottom-0 { bottom: 0 !important; }

/* z-index修复 */
.ie-browser .z-0 { z-index: 0 !important; }
.ie-browser .z-10 { z-index: 10 !important; }
.ie-browser .z-20 { z-index: 20 !important; }
.ie-browser .z-50 { z-index: 50 !important; }

/* opacity修复 */
.ie-browser .opacity-0 { opacity: 0 !important; filter: alpha(opacity=0) !important; }
.ie-browser .opacity-50 { opacity: 0.5 !important; filter: alpha(opacity=50) !important; }
.ie-browser .opacity-80 { opacity: 0.8 !important; filter: alpha(opacity=80) !important; }
.ie-browser .opacity-100 { opacity: 1 !important; filter: alpha(opacity=100) !important; }

/* transform修复 */
.ie-browser .transform { -ms-transform: translate(0, 0) !important; transform: translate(0, 0) !important; }
.ie-browser .-translate-y-1\/2 { -ms-transform: translateY(-50%) !important; transform: translateY(-50%) !important; }
.ie-browser .translate-x-4 { -ms-transform: translateX(1rem) !important; transform: translateX(1rem) !important; }

/* hover状态修复 */
.ie-browser .hover\:scale-110:hover { -ms-transform: scale(1.1) !important; transform: scale(1.1) !important; }
.ie-browser .hover\:text-white:hover { color: #ffffff !important; }
.ie-browser .hover\:opacity-100:hover { opacity: 1 !important; filter: alpha(opacity=100) !important; }

/* 文字溢出修复 */
.ie-browser .truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.ie-browser .whitespace-nowrap { white-space: nowrap !important; }

/* 过渡动画修复 */
.ie-browser .transition-all,
.ie-browser .transition-colors,
.ie-browser .transition-transform,
.ie-browser .transition-opacity,
.ie-browser .transition {
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

/* 滚动动画IE回退 */
.ie-browser .animate-section {
    opacity: 1 !important;
    -ms-transform: none !important;
    transform: none !important;
}

.ie-browser .animate-section.is-visible {
    opacity: 1 !important;
    -ms-transform: none !important;
    transform: none !important;
}

/* ========== IE浏览器兼容性样式 ========== */
/* 使用.ie-browser类前缀，只有检测到IE时才生效 */

/* ========== 基础布局修复 ========== */
.ie-browser .hidden { display: none !important; }
.ie-browser .block { display: block !important; }
.ie-browser .inline-block { display: inline-block !important; }
.ie-browser .flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
.ie-browser .inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; }
.ie-browser .grid { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }

/* ========== 导航栏修复 - 强制显示 ========== */
/* 修复 hidden md:flex 组合 - 在桌面端强制显示导航 */
.ie-browser header nav.hidden.md\:flex,
.ie-browser nav.hidden,
.ie-browser nav.md\:flex,
.ie-browser header nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ie-browser header .nav-links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

/* ========== Hero区域修复 ========== */
.ie-browser #hero {
    position: relative !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    background-color: #1a1a1a !important;
}

.ie-browser #hero .relative {
    position: relative !important;
}

.ie-browser #hero .absolute {
    position: absolute !important;
}

.ie-browser #hero .inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

/* Hero标题 - 强制显示 */
.ie-browser #hero h2 {
    display: block !important;
    font-size: 36px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
}

.ie-browser #hero h3 {
    display: block !important;
    color: #8EC5FF !important;
    margin-bottom: 48px !important;
    letter-spacing: 0.2em !important;
}

/* ========== 背景图修复 ========== */
.ie-browser .carousel-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
    -webkit-transition: opacity 1.5s ease-in-out !important;
    -moz-transition: opacity 1.5s ease-in-out !important;
    -o-transition: opacity 1.5s ease-in-out !important;
    transition: opacity 1.5s ease-in-out !important;
}

.ie-browser .carousel-item.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
}

.ie-browser .carousel-item:not(.active) {
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
}

.ie-browser .carousel-item--bg-a {
    background-image: url('../images/%E5%9B%BEa.jpg') !important;
}

.ie-browser .carousel-item--bg-b {
    background-image: url('../images/%E5%9B%BEb.jpg') !important;
}

/* ========== 登录按钮区域 - 4列横向布局 ========== */
.ie-browser .login-container {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    margin-left: -600px !important;
    width: 1200px !important;
    z-index: 30 !important;
}

.ie-browser .login-container .grid.grid-cols-4 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.ie-browser .login-container .grid.grid-cols-4 > .login-card {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 25% !important;
    flex: 1 1 25% !important;
    max-width: 25% !important;
    min-width: 0 !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    background-color: #ffffff !important;
    padding: 20px 24px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.ie-browser .login-container .grid.grid-cols-4 > .login-card:first-child {
    margin-left: 0 !important;
}

.ie-browser .login-container .grid.grid-cols-4 > .login-card:last-child {
    margin-right: 0 !important;
}

/* ========== 办事指南卡片区域 - 3列横向布局 ========== */
.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 > .guide-card {
    -webkit-box-flex: 0 !important;
    /* -ms-flex: 0 0 calc((100% - 48px) / 3) !important;
    flex: 0 0 calc((100% - 48px) / 3) !important; */
    -ms-flex-preferred-size: calc(33.333% - 16px) !important;
  /* 标准写法 */
  flex: 0 0 calc(33.333% - 16px) !important;
  /* 兜底：IE8/9 兼容（可选，看你需求） */
  width: calc(33.333% - 16px) !important;
  box-sizing: border-box !important;
    max-width: calc((100% - 48px) / 3) !important;
    margin-left: 0 !important;
    margin-right: 24px !important;
    margin-bottom: 0 !important;
}

.lastitem{
    margin-right: 0px !important;
}

.ie-browser section.py-\[50px\] .grid.grid-cols-1.md\:grid-cols-3 > .guide-card:nth-child(3n) {
    margin-right: 0 !important;
}

/* ========== Header样式修复 ========== */
.ie-browser header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 50 !important;
    background-color: transparent !important;
    -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    -o-transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}
/* 滚动或悬停时的header样式 */
.ie-browser header.scrolled,
.ie-browser header.ie-hover {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=0, Direction=120, Color=#000000) !important;
}
/* 滚动或悬停时的导航文字颜色 */
.ie-browser header.scrolled .nav-text,
.ie-browser header.scrolled .nav-links,
.ie-browser header.scrolled .nav-user
.ie-browser header.ie-hover .nav-text
.ie-browser header.ie-hover .nav-links
.ie-browser header.ie-hover .nav-user {
    color: #333333 !important;
}
.ie-browser header.scrolled .nav-item,
.ie-browser header.ie-hover .nav-item {
    color: #444444 !important;
}
.ie-browser header.scrolled .nav-item.active,
.ie-browser header.ie-hover .nav-item.active {
    color: #1F6DE8 !important;
    font-weight: bold !important;
    background-color: #f3f5f6 !important;
    border-bottom: 2px solid #1F6DE8 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 鐜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-search {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-search {
    display: none !important;
    opacity: 0 !important;
}
/* 搜索框显示 */
.ie-browser header.scrolled #nav-search,
.ie-browser header.ie-hover #nav-scroll {
    display: block !important;
    opacity: 1 !important;
}
.ie-browser header #nav-scroll {
    display: none !important;
    opacity: 0 !important;
}
/* 首页默认状态 - 透明背景、白色文字 */
.ie-browser header.home-header .nav-text,
.ie-browser header.home-header .nav-links,
.ie-browser header.home-header .nav-user {
    color: #ffffff;
}
.ie-browser header.home-header .nav-item {
    color: #ffffff;
}
.ie-browser header.home-header .nav-item.active {
    color: #ffffff;
    font-weight: bold !important;
    background-color: transparent !important;
    border-bottom: 2px solid transparent !important;
}
.ie-browser header.home-header.scrolled .nav-item.active {
    background-color: #f3f5f6 !important;
    border-bottom: 2px solid #1F6DE8 !important;
}

/* ========== Tailwind颜色类修复 ========== */
.ie-browser .bg-gray-50 { background-color: #f9fafb !important; }
.ie-browser .bg-gray-100 { background-color: #f3f4f6 !important; }
.ie-browser .bg-gray-900 { background-color: #111827 !important; }
.ie-browser .bg-white { background-color: #ffffff !important; }
.ie-browser .text-white { color: #ffffff }
.ie-browser .text-gray-400 { color: #9ca3af !important; }
.ie-browser .text-gray-500 { color: #6b7280 !important; }
.ie-browser .text-gray-800 { color: #1f2937 !important; }
.ie-browser .border-gray-200 { border-color: #e5e7eb !important; }
.ie-browser .border-white { border-color: #ffffff !important; }

/* ========== Flex布局基础修复 ========== */
.ie-browser .flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.ie-browser .flex-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.ie-browser .flex-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; }
.ie-browser .flex-1 { -webkit-box-flex: 1 !important; -ms-flex: 1 1 0% !important; flex: 1 1 0% !important; }
.ie-browser .flex-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; }
.ie-browser .items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; }
.ie-browser .justify-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; }
.ie-browser .justify-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; }
.ie-browser .justify-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; }

/* ========== 间距修复 ========== */
.ie-browser .space-x-2 > *:not(:last-child) { margin-right: 0.5rem !important; }
.ie-browser .space-x-3 > *:not(:last-child) { margin-right: 0.75rem !important; }
.ie-browser .space-x-4 > *:not(:last-child) { margin-right: 1rem !important; }
.ie-browser .space-x-6 > *:not(:last-child) { margin-right: 1.5rem !important; }
.ie-browser .space-x-\[50px\] > *:not(:last-child) { margin-right: 50px !important; }

/* ========== 尺寸修复 ========== */
.ie-browser .w-full { width: 100% !important; }
.ie-browser .w-auto { width: auto !important; }
.ie-browser .h-full { height: 100% !important; }
.ie-browser .h-screen { height: 100vh !important; }

/* ========== 定位修复 ========== */
.ie-browser .fixed { position: fixed !important; }
.ie-browser .absolute { position: absolute !important; }
.ie-browser .relative { position: relative !important; }
.ie-browser .top-0 { top: 0 !important; }
.ie-browser .left-0 { left: 0 !important; }
.ie-browser .right-0 { right: 0 !important; }
.ie-browser .bottom-0 { bottom: 0 !important; }

/* ========== z-index修复 ========== */
.ie-browser .z-0 { z-index: 0 !important; }
.ie-browser .z-10 { z-index: 10 !important; }
.ie-browser .z-20 { z-index: 20 !important; }
.ie-browser .z-50 { z-index: 50 !important; }

/* ========== opacity修复 ========== */
.ie-browser .opacity-0 { opacity: 0 !important; filter: alpha(opacity=0) !important; }
.ie-browser .opacity-50 { opacity: 0.5 !important; filter: alpha(opacity=50) !important; }
.ie-browser .opacity-80 { opacity: 0.8 !important; filter: alpha(opacity=80) !important; }

/* ========== transform修复 ========== */
.ie-browser .transform { -ms-transform: translate(0, 0) !important; transform: translate(0, 0) !important; }
.ie-browser .-translate-y-1\/2 { -ms-transform: translateY(-50%) !important; transform: translateY(-50%) !important; }
.ie-browser .translate-x-4 { -ms-transform: translateX(1rem) !important; transform: translateX(1rem) !important; }

/* ========== hover状态修复 ========== */
.ie-browser .hover\:scale-110:hover { -ms-transform: scale(1.1) !important; transform: scale(1.1) !important; }
.ie-browser .hover\:text-white:hover { color: #ffffff !important; }
.ie-browser .hover\:opacity-100:hover { opacity: 1 !important; filter: alpha(opacity=100) !important; }

/* ========== group hover修复 ========== */
.ie-browser .group:hover .group-hover\:block { display: block !important; }
.ie-browser .group:hover .group-hover\:hidden { display: none !important; }
.ie-browser .group:hover .group-hover\:text-white { color: #ffffff !important; }

/* ========== gap修复 - 使用margin替代 ========== */
.ie-browser .gap-4 {
    margin-left: -8px !important;
    margin-right: -8px !important;
}
.ie-browser .gap-4 > * {
    margin-left: 8px !important;
    margin-right: 8px !important;
}

.ie-browser .gap-\[24px\] {
    margin-left: -12px !important;
    margin-right: -12px !important;
}
.ie-browser .gap-\[24px\] > * {
    margin-left: 12px !important;
    margin-right: 12px !important;
}

/* ========== 文字溢出修复 ========== */
.ie-browser .truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.ie-browser .whitespace-nowrap { white-space: nowrap !important; }

/* ========== 过渡动画修复 ========== */
.ie-browser .transition-all,
.ie-browser .transition-colors,
.ie-browser .transition-transform,
.ie-browser .transition-opacity,
.ie-browser .transition {
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

/* ========== 轮播图基础样式修复 ========== */
/* Hero轮播图 */
.ie-browser #carousel {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 0 !important;
}

.ie-browser .carousel-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -webkit-transition: opacity 1.5s ease-in-out !important;
    -moz-transition: opacity 1.5s ease-in-out !important;
    -o-transition: opacity 1.5s ease-in-out !important;
    transition: opacity 1.5s ease-in-out !important;
}

.ie-browser .carousel-item.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
}

.ie-browser .carousel-item--bg-a {
    background-image: url('../images/%E5%9B%BEa.jpg') !important;
}

.ie-browser .carousel-item--bg-b {
    background-image: url('../images/%E5%9B%BEb.jpg') !important;
}

/* 平台动态轮播图 */
.ie-browser #dynamic-slider {
    position: relative !important;
    height: 100% !important;
    width: 100% !important;
}

.ie-browser .dynamic-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    filter: alpha(opacity=0) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
    -webkit-transition: opacity 0.5s ease !important;
    -moz-transition: opacity 0.5s ease !important;
    -o-transition: opacity 0.5s ease !important;
    transition: opacity 0.5s ease !important;
}

.ie-browser .dynamic-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
}

.ie-browser .dynamic-slide--hero-main {
    background-image: url('../images/%E8%BD%AE%E6%92%AD%E5%9B%BE.png') !important;
}

.ie-browser .dynamic-slide--hero-a {
    background-image: url('../images/%E5%9B%BEa.jpg') !important;
}

/* 轮播图分页点 */
.ie-browser .dot-8 {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    background: #ffffff\9 !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: inline-block !important;
    margin: 0 4px !important;
}

.ie-browser .dot-8.active {
    background: #ffffff !important;
}

.ie-browser .dot-8:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* ========== 平台动态Tab修复 ========== */
/* Tab容器 - 横向布局 */
.ie-browser .flex.space-x-10 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ie-browser .space-x-10 > .dynamic-tab:not(:last-child) {
    margin-right: 2.5rem !important;
}

/* Tab项样式 */
.ie-browser .dynamic-tab {
    font-size: 20px !important;
    color: #666666 !important;
    padding: 12px 0 !important;
    position: relative !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    text-decoration: none !important;
    height: 48px !important;
    cursor: pointer !important;
    border-bottom: 3px solid transparent !important;
    -webkit-transition: color 0.3s ease !important;
    -moz-transition: color 0.3s ease !important;
    -o-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.ie-browser .dynamic-tab.active {
    color: #1F6DE8 !important;
    font-weight: bold !important;
    border-bottom-color: #1F6DE8 !important;
}

.ie-browser .dynamic-tab.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #1F6DE8 !important;
    z-index: 10 !important;
}

.ie-browser .dynamic-tab:hover {
    color: #1F6DE8 !important;
}

/* 轮播图修复 */
.ie-browser .dynamic-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    -webkit-transition: opacity 0.5s ease !important;
    -moz-transition: opacity 0.5s ease !important;
    -o-transition: opacity 0.5s ease !important;
    transition: opacity 0.5s ease !important;
}

.ie-browser .dynamic-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
}

/* 轮播图背景 */
.ie-browser .dynamic-slide--hero-main {
    background-image: url('../images/%E8%BD%AE%E6%92%AD%E5%9B%BE.png') !important;
}

.ie-browser .dynamic-slide--hero-a {
    background-image: url('../images/%E5%9B%BEa.jpg') !important;
}

/* 轮播图分页点 */
.ie-browser .dot-8 {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    margin: 0 4px !important;
    display: inline-block !important;
}

.ie-browser .dot-8.active {
    background: white !important;
}

.ie-browser .dot-8:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* Hero区域轮播图修复 */
.ie-browser .carousel-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    z-index: 0 !important;
    -webkit-transition: opacity 1.5s ease-in-out !important;
    -moz-transition: opacity 1.5s ease-in-out !important;
    -o-transition: opacity 1.5s ease-in-out !important;
    transition: opacity 1.5s ease-in-out !important;
}

.ie-browser .carousel-item.active {
    opacity: 1 !important;
    z-index: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
}

.ie-browser .carousel-item--bg-a {
    background-image: url('../images/%E5%9B%BEa.jpg') !important;
}

.ie-browser .carousel-item--bg-b {
    background-image: url('../images/%E5%9B%BEb.jpg') !important;
}

/* ========== 通知滚动区域修复 ========== */
.ie-browser .notice-center {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
    min-width: 0 !important;
}

.ie-browser .notice-center .ticker-scroll {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    /* IE动画支持 */
    -webkit-animation: ticker 30s linear infinite !important;
    -moz-animation: ticker 30s linear infinite !important;
    -o-animation: ticker 30s linear infinite !important;
    animation: ticker 30s linear infinite !important;
}

/* IE专用动画定义 */
@-webkit-keyframes ticker {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@-ms-keyframes ticker {
    0% { -ms-transform: translateX(0); transform: translateX(0); }
    100% { -ms-transform: translateX(-50%); transform: translateX(-50%); }
}

.ie-browser .notice-center .ticker-item {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin-right: 40px !important;
    padding-right: 20px !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.ie-browser .notice-center .ticker-item:last-child {
    margin-right: 40px !important;
}

/* ========== 交易信息Tab修复 ========== */
/* Tab容器 - 横向布局 */
.ie-browser .flex.just-between.gap-\[10px\] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.ie-browser .gap-\[10px\] > * {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

/* 交易信息主Tab (工程、货物、服务、商城、其他) */
.ie-browser .trade-tab {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 0% !important;
    flex: 1 1 0% !important;
    background-color: #ffffff !important;
    text-align: center !important;
    padding: 16px 0 !important;
    font-size: 20px !important;
    color: #333333 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    border: 1px solid #e5e7eb !important;
    min-width: 0 !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.ie-browser .trade-tab:hover {
    background-color: #f3f5f6 !important;
    border-color: #1F6DE8 !important;
    color: #1F6DE8 !important;
}

.ie-browser .trade-tab.active {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-color: #1F6DE8 !important;
}

/* 子Tab容器 - 横向布局 */
.ie-browser .flex.space-x-4 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ie-browser .space-x-4 > *:not(:last-child) {
    margin-right: 1rem !important;
}

/* 子Tab样式 (招标公告、澄清/变更公告、中标候选人公示、中标/流标公示) */
.ie-browser .sub-tab {
    padding: 8px 16px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    background-color: transparent !important;
    color: #6b7280 !important;
    border: 1px solid transparent !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.ie-browser .sub-tab:hover {
    color: #1d4ed8 !important;
    background-color: rgba(31, 109, 232, 0.1) !important;
}

.ie-browser .sub-tab.active {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-color: #1F6DE8 !important;
}

/* ========== 办事指南卡片修复 ========== */
/* Grid容器 - 3列布局 */
.ie-browser .grid-cols-1.md\:grid-cols-3 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.ie-browser .grid-cols-1.md\:grid-cols-3 > .guide-card {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 calc(33.333% - 24px) !important;
    flex: 0 0 calc(33.333% - 24px) !important;
    max-width: calc(33.333% - 24px) !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
}

/* 办事指南卡片样式 */
.ie-browser .guide-card {
    padding: 25px !important;
    padding-top: 25px !important;
    padding-bottom: 20px !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
    -webkit-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid #e5e7eb !important;
}

.ie-browser .guide-card:hover {
    background-color: #1F6DE8 !important;
    color: #ffffff !important;
}

/* 卡片图标容器 */
.ie-browser .guide-card .w-12 {
    width: 48px !important;
    height: 48px !important;
    background-color: #E4EEFB !important;
    border-radius: 8px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.ie-browser .guide-card:hover .w-12 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* 卡片标题 */
.ie-browser .guide-card h3 {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #333333 !important;
    margin-bottom: 24px !important;
}

.ie-browser .guide-card:hover h3 {
    color: #ffffff !important;
}

/* 卡片列表项 */
.ie-browser .guide-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ie-browser .guide-card li {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    opacity: 0.8 !important;
}

.ie-browser .guide-card:hover li {
    opacity: 1 !important;
    color: #ffffff !important;
}

/* 列表圆点 */
.ie-browser .guide-list-dot {
    width: 6px !important;
    height: 6px !important;
    background-color: #1F6DE8 !important;
    border-radius: 50% !important;
    margin-right: 8px !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.ie-browser .guide-card:hover .guide-list-dot {
    background-color: #ffffff !important;
}

/* 链接样式 */
.ie-browser .guide-card a {
    color: inherit !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.ie-browser .guide-card:hover a {
    color: #ffffff !important;
}

/* 更多按钮 */
.ie-browser .guide-card + a.mt-\[15px\] {
    margin-top: 15px !important;
    width: 66px !important;
    height: 28px !important;
    border: 1px solid #97AAC1 !important;
    color: #97AAC1 !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    cursor: pointer !important;
}

.ie-browser .guide-card + a.mt-\[15px\]:hover {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background-color: transparent !important;
}

/* 图标显示/隐藏 */
.ie-browser .guide-card .default-icon {
    display: block !important;
}

.ie-browser .guide-card .hover-icon {
    display: none !important;
}

.ie-browser .guide-card:hover .default-icon {
    display: none !important;
}

.ie-browser .guide-card:hover .hover-icon {
    display: block !important;
}

.ie-browser .notice-center .ticker-item::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background-color: #1F6DE8 !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}


