/* add new icons */
.bi-shield-check::before {
    content: "\f565"
}

.bi-clock::before {
    content: "\f27e"
}

.bi-arrow-clockwise::before {
    content: "\f13e"
}

.bi-arrow-repeat::before {
    content: "\f139"
}

.bi-search::before {
    content: "\f4cb"
}

.bi-x-circle::before {
    content: "\f159"
}

.bi-key-fill::before {
    content: "\f412"
}

.bi-hdd-fill::before {
    content: "\f3d5"
}

.bi-unlock-fill::before {
    content: "\f4dd"
}

.bi-tools::before {
    content: "\f578"
}


/* Modern Hero Section Styles */
.modern-hero {
    background: linear-gradient(-45deg, #194eb9, #366cd9);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #26f2c4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #26f2c4;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Products Section */
.products-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 80px;
}

.title-down {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.title-down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #194eb9;
    /*    border-radius: 2px;*/
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .product-actions {
        flex-direction: column;
    }

    .modern-btn {
        padding: 15px 20px;
    }

    .title-down {
        font-size: 1.5rem;
    }

    .hero-features {
        margin-top: 40px;
    }

    /* lejunbo 2025.8.22 fix mobile product image not center */
    .product-header .product-image {
        width: 100%;
    }

    .product-header .product-image img {
        display: block;
        margin: 0 auto 1rem;
    }
}

/* Additional modern improvements */
.product-page-info {
    transition: all 0.3s ease;
}

.product-page-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Enhanced tag styles */
.tag:not(.product-tags .tag) {
    transition: all 0.3s ease;
    border-radius: 15px;
}

/*
.tag:not(.product-tags .tag):hover {
    background: #194eb9;
    color: white;
    transform: translateY(-1px);
}
*/

/* Only apply spin animation to loading states */
.loading .bi-arrow-clockwise,
.btn-trial.loading .bi-arrow-clockwise {
    animation: spin 1s linear infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Focus states for accessibility */
.modern-btn:focus,
.btn-buy:focus,
.btn-trial:focus {
    outline: 2px solid #194eb9;
    outline-offset: 2px;
}

/* Enhanced mobile experience */
@media (max-width: 480px) {
    .modern-hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .feature-card {
        padding: 20px;
    }

    .product-header {
        padding: 20px;
    }

    .product-actions {
        padding: 0 20px 20px;
    }

    .product-tags {
        padding: 0 20px 15px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modern-card {
        border: 2px solid #000;
    }

    .modern-btn {
        border: 2px solid currentColor;
    }

    .feature-card {
        border: 2px solid #fff;
    }
}

/* Enhanced hover effects for legacy cards */
.product-page-info {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-page-info .center img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-page-info:hover .center img {
    transform: scale(1.05);
}

/* Modern price styling */
.product-page-info .price {
    background: linear-gradient(45deg, #f08000, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced tag animations */
.tag {
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

/* Loading states for images */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

img[loading="lazy"].loaded {
    animation: none;
    background: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Print styles */
@media print {
    .modern-hero {
        display: none;
    }

    .product-page-info {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Animation classes for intersection observer */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimizations */
.modern-card,
.product-page-info {
    will-change: transform;
}

.modern-card:not(:hover),
.product-page-info:not(:hover) {
    will-change: auto;
}

/* Final modern touches */
.modern-hero {
    position: relative;
    background-attachment: fixed;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* products.css */
.btn-buy,
.btn-trial,
.cookie-div>h2 {
    color: #fff
}

.nav-pos a,
body {
    line-height: 1.2;
    font-family: 'Inter', "Segoe UI", "Open Sans", "Helvetica Neue", "MWF-MDL2", "Helvetica,Arial,sans-serif";
}

.nav-pos a span,
img {
    vertical-align: middle
}

.box-f,
.focus,
.hidden {
    overflow: hidden
}

.box-f,
.container {
    box-sizing: border-box
}

.banner-left,
.focus h3,
.inner-box h3,
.li-box h3,
.nav-app {
    align-self: center
}

.artice-ui li.l,
.nav-pos a:last-child {
    border-bottom: none
}

.change-box.b:after,
.footer-top .title:after,
.nav-app span:after,
.nav-app span:before {
    content: '';
    content: '';
    content: '';
    content: ''
}

#tab-ul li,
.center,
.footer-bottom {
    text-align: center
}

.a-two,
.artice-ui a:hover,
.cookie-div>p>a,
.down-right h2 a:hover,
.footer-top a:hover,
.inner-box h3 a:hover,
.li-box h3 a:hover {
    text-decoration: underline
}

#tab-ul li,
.cookie-btn,
.totop {
    cursor: pointer
}

@font-face {
    font-family: bootstrap-icons;
    src: url("../fonts/bootstrap-icons.woff?384e23a3718bb6ac643a9118eb53727d") format("woff"), url("../fonts/bootstrap-icons.woff2?384e23a3718bb6ac643a9118eb53727d") format("woff2")
}

.bi-check2-square::before {
    content: "\f25f"
}

.bi-cloud-arrow-down::before {
    content: "\f283"
}

h1,
h2,
h3,
h4 {
    color: #000
}

li,
ul {
    list-style: none
}

del {
    text-decoration: line-through
}

a {
    color: #f80;
    text-decoration: none
}

/* 移除未使用的 video、clear、dis-flex2 样式 */

@media (min-width:1200px) {
    .header .container {
        max-width: 1280px
    }

    .container {
        max-width: 1140px
    }

    .nav>li,
    .nav>li:last-child a {
        padding: 23px 0
    }

    .header,
    .nav>li:last-child,
    .nav>li>a {
        padding: 0
    }

    .nav-app {
        display: none
    }

    .logo {
        padding-top: 10px
    }

    .nav {
        position: inherit;
        margin-left: auto;
        display: block
    }

    .nav-pos,
    .nav-pos:before {
        height: 0;
        position: absolute
    }

    .nav>li {
        float: left;
        cursor: pointer;
        margin-left: 30px;
        border-bottom: none
    }

    .nav>li:first-child {
        margin-left: 0
    }

    .nav>li>span {
        font-size: 16px;
        float: none
    }

    .nav>li>a {
        border: none
    }

    .nav-pos {
        background-color: #fff;
        z-index: 10;
        box-shadow: 0 0 20px rgba(0, 0, 0, .2);
        top: 60px;
        left: 50%;
        transition: height .2s linear;
        display: inherit;
        margin-top: 0;
        transform: translate(-50%, 0)
    }

    .nav-pos:before {
        content: "";
        width: 0;
        border: 12px solid transparent;
        border-bottom: 8px solid #fff;
        left: calc(50% - 8px);
        top: -20px;
        z-index: 2;
        opacity: 0
    }

    .nav>li:hover span.bi-chevron-down {
        transform: rotate(180deg)
    }

    .nav>li:hover .nav-pos:before {
        opacity: 1
    }

    .nav-pos a {
        padding: 20px
    }

    .nav>li:hover .nav-pos.p {
        height: 299px
    }

    .nav>li:hover .nav-pos.c,
    .nav>li:hover .nav-pos.s,
    .nav>li:hover .nav-pos.u {
        height: 330px
    }

    .nav>li:hover .nav-pos.i {
        height: 414px
    }

    .nav>li:hover .nav-pos.m {
        height: 500px
    }

    .nav-pos.p {
        width: 790px
    }

    .nav-pos.c {
        width: 295px
    }

    .nav-pos.i {
        width: 670px
    }

    .nav-pos.u {
        width: 695px
    }

    .nav-pos.m {
        width: 310px
    }

    .nav-pos.s {
        width: 280px
    }
}

.footer-top>div>ul,
.nav-pos {
    margin-top: 10px
}

.btn-buy,
.btn-trial {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 30px;
    min-width: 120px;
    text-align: center;
    justify-content: center;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-buy {
    background-color: #FF8800;
    color: white;
    margin-right: 15px;
    flex: 1;
}

.btn-trial {
    background-color: #16c75a;
    color: white;
    float: none;
    flex: 1;
}

.btn-buy:hover {
    background-color: #e57a00;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: white;
    transform: translateY(-2px);
}

.btn-trial:hover {
    background-color: #14b351;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: white;
    transform: translateY(-2px);
}

.btn-buy i,
.btn-trial i {
    font-size: 16px;
    order: -1;
    margin-right: 12px;
    margin-left: 0;
    position: relative;
    top: -1px;
}

/* 这会使图标在左侧显示 */
.btn-buy i.bi-cart4,
.btn-trial i.bi-cloud-arrow-down {
    display: inline-block;
}

.clearfloat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

/* 增强按钮无障碍访问 */
.btn-buy:focus,
.btn-trial:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* 增加按钮内容区可点击范围 */
.btn-buy a,
.btn-trial a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

/* 增加响应式设计 */
@media (max-width: 768px) {

    .btn-buy,
    .btn-trial {
        font-size: 14px;
        padding: 12px 16px;
        min-width: 100px;
    }

    .btn-buy i,
    .btn-trial i {
        font-size: 14px;
        margin-right: 8px;
    }

    .clearfloat {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .clearfloat {
        flex-direction: column;
        width: 100%;
    }

    .btn-buy,
    .btn-trial {
        width: 80%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.tag {
    display: inline-block;
    border: 1px solid #999;
    background: #fff;
    font-size: 12px;
    line-height: 18px;
    color: #666;
    margin-right: 6px;
    padding: 0 6px;
    margin-bottom: 10px
}

.header,
.nav>li,
.title-down {
    border-bottom: 1px solid #dadada
}

.focus .b,
.footer-top>div,
.footer-top>div img,
.footer-top>ul,
.inner-box>.row,
.li-box>.a,
.tags,
.title-down {
    margin-bottom: 40px
}

.title-down {
    padding: 24px 0
}

.products-box {
    background-color: #f5f5f5;
    padding: 40px 0 60px
}

.product-page-info {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px
}

.product-page-info h2 a {
    font-size: 24px;
    color: #333333;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-page-info h2 a:hover {
    text-decoration: underline;
    color: #194EB9;
}

.product-page-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px
}

.product-page-info .price {
    color: #f08000;
    font-size: 24px;
    margin-top: 10px
}

.d-pos,
.pro-item {
    display: none
}

#pro-nav {
    padding-top: 20px
}

#tab-ul li {
    position: relative;
    width: 25%;
    padding: 10px 0
}

#tab-ul li:after {
    position: absolute;
    content: "";
    transition: .3s;
    width: 0;
    bottom: 0;
    left: 50%;
    border-bottom: 2px solid #194eb9
}

.color-span,
.li-box h3 a,
.ul-choose {
    color: #194eb9
}

#tab-ul .ul-choose:after {
    width: 100%;
    left: 0
}

#down-banner {
    margin-top: 0;
    color: #fff;
    background-color: #1e1d85;
    padding: 60px 0;
    background-image: url(../images/common/down-bg2.png), url(../images/common/down-bg1.png);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto
}

.down-right h2 {
    font-weight: 500;
    margin: 20px 0 10px
}

.buy-div,
.down-div,
.down-right>p,
.focus p {
    margin-bottom: 30px
}

.down-right h2 a {
    font-size: 20px;
    display: inline-block;
    color: #fff
}

.down-right>p {
    font-size: 16px
}

.buy-div,
.change-box .a {
    margin-right: 30px
}

.container,
.m-auto {
    margin-right: auto;
    margin-left: auto
}

.buy-div a,
.down-div a {
    font-size: 24px;
    padding: 10px 20px
}

.down-tips {
    padding: 20px;
    background-color: rgba(255, 255, 255, .2)
}

.down-tips p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 28px
}

.nav-pos a,
.nav>li>a {
    padding: 10px;
    display: block
}

.down-tips .p {
    margin-bottom: 0
}

.down-tips i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #00ffd2
}

* {
    margin: 0;
    padding: 0
}

body {
    color: #333;
    font-size: 14px;
    font-family: 'Inter', "Segoe UI", "Open Sans", "Helvetica Neue", MWF-MDL2, "Helvetica,Arial,sans-serif"
}

img {
    max-width: 100%;
    border: none;
    height: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

h2 {
    font-size: 36px
}

.choose-ul h4,
h3 {
    font-size: 24px
}

.dis-flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clearfloat {
    zoom: 1
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 16.666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.333333%
}

.offset-5 {
    margin-left: 41.666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.333333%
}

.offset-8 {
    margin-left: 66.666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.333333%
}

.offset-11 {
    margin-left: 91.666667%
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }

    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .col-sm-12,
    .row-cols-sm-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .col-sm-6,
    .row-cols-sm-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-4,
    .row-cols-sm-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-3,
    .row-cols-sm-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-sm-2,
    .row-cols-sm-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.333333%
    }

    .offset-sm-2 {
        margin-left: 16.666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.333333%
    }

    .offset-sm-5 {
        margin-left: 41.666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.333333%
    }

    .offset-sm-8 {
        margin-left: 66.666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.333333%
    }

    .offset-sm-11 {
        margin-left: 91.666667%
    }
}

.index,
.nav-app,
.pr.row ul {
    margin-left: auto
}

.header {
    padding: 10px 0;
    background-color: #fff
}

.nav-app {
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    background: 0 0;
    border: none
}

.nav-app span {
    display: block;
    position: relative;
    width: 28px;
    height: 2px;
    background-color: #194eb9;
    transition: background .3s
}

.nav-app span:before {
    top: -12px
}

.nav-app span:after {
    top: 12px
}

.nav-app span:after,
.nav-app span:before {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #194eb9;
    left: 0;
    transition: top .3s .6s, transform .3s
}

.nav-app .lines {
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    background: 0 0
}

.banner-left .s,
.nav {
    background-color: #fff
}

.nav-app .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -o-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg)
}

.nav-app .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -o-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg)
}

.follw-icon:hover,
.footer-top .bi:hover {
    transform: translateY(-5px)
}

.nav-app .lines:after,
.nav-app .lines:before {
    -webkit-transition: top .3s, transform .3s .5s;
    -moz-transition: top .3s, transform .3s .5s;
    -o-transition: top .3s, transform .3s .5s;
    transition: top .3s, transform .3s .5s;
    top: 0
}

.nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 4
}

.change-box.b,
.focus,
.inner-box li,
.nav>li {
    position: relative
}

.change-box.b a,
.focus {
    z-index: 2
}

.nav>li {
    padding: 10px;
    color: #333;
    font-size: 16px
}

.nav>li>span {
    margin-left: 5px;
    transition: .4s;
    display: inline-block;
    font-size: 26px
}

.nav>li>a {
    border: 1px solid #dadada
}

.nav>li>a>span {
    font-size: 20px;
    color: #f08000
}

.nav-pos {
    background-color: #f7f7f7;
    display: none
}

.nav-pos .hidden {
    height: inherit;
    width: 100%
}

.nav-pos a {
    color: #333;
    border-bottom: 1px solid #eee
}

.nav-pos a:hover {
    background-color: #f4f6fa
}

.nav-pos a span {
    display: inline-block;
    margin-left: 10px
}

.nav-pos b {
    display: block;
    font-weight: 500;
    margin-bottom: 3px
}

.nav-pos em {
    color: #666;
    font-style: normal;
    font-size: 14px
}

.nav-pos.m i,
.nav-pos.s i {
    width: 38px;
    height: 38px;
    display: inline-block;
    vertical-align: middle;
    font-size: 38px;
    color: #194eb9
}

.nav-pos.p a {
    line-height: 32px
}

.nav-pos.p i {
    width: 32px;
    height: 32px;
    display: block;
    float: left;
    margin-right: 5px;
    background: url("../images/icon/product-icon.png") left top no-repeat
}

.nav-pos.p .b {
    background-position: -32px 0
}

.nav-pos.p .c {
    background-position: -64px 0
}

.nav-pos.p .d {
    background-position: -96px 0
}

.nav-pos.p .e {
    background-position: -128px 0
}

.nav-pos.p .f {
    background-position: 0 -32px
}

.nav-pos.p .g {
    background-position: -32px -32px
}

.nav-pos.p .h {
    background-position: -64px -32px
}

.nav-pos.p .i {
    background-position: -96px -32px
}

.nav-pos.p .j {
    background-position: -128px -32px
}

.nav-pos.p .k {
    background-position: 0 -64px
}

.nav-pos.p .l {
    background-position: -32px -64px
}

.nav-pos.p .m {
    background-position: -64px -64px
}

.nav-pos.p .n {
    background-position: -96px -64px
}

.nav-pos.p .o {
    background-position: -128px -64px
}

.banner-box {
    padding: 80px 0;
    background: url(../images/common/banner-bg.png) center center no-repeat #1a48a4
}

.banner-left {
    color: #fff
}

.banner-left h1 {
    padding-left: 20px;
    color: #fff;
    line-height: 1;
    font-size: 36px;
    border-left: 4px solid #fff;
    margin-bottom: 20px
}

.banner-left>p,
.li-box p {
    line-height: 1.5
}

.banner-left ul p,
.banner-left>p {
    font-size: 16px
}

.a-one,
.box-postion>div {
    border: 1px solid #194eb9
}

.banner-left .m {
    margin-bottom: 40px
}

.banner-left ul li {
    border-right: 1px solid #b3c7ef;
    margin-bottom: 60px
}

.banner-left ul .l {
    border-right: none
}

.color-h3 {
    color: #26f2c4;
    font-size: 44px
}

.banner-left .s {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 24px;
    color: #194eb9;
    margin-bottom: 30px;
    border: 1px solid #fff
}

.banner-left .s:hover {
    background: #194eb9;
    color: #fff
}

.banner-left .s span {
    font-size: 30px
}

/* 移除未使用的 focus、change-box 等样式 */

/* 移除未使用的 title、new-box、inner-box、box-postion 样式 */

.a-one,
.a-two {
    font-size: 18px;
    height: 44px;
    line-height: 44px;
    font-weight: 500
}

.a-one {
    color: #fff;
    background-color: #194eb9
}

.a-one:hover,
.a-two,
.artice-ui a:hover {
    color: #194eb9
}

.a-two:hover {
    color: #f08000
}

.span-postion {
    position: absolute;
    right: 30px;
    top: 15px
}

.user-box {
    padding: 80px 0 100px;
    background: url(../images/common/index-bg.png) center center/cover no-repeat #194eb9
}

/* 移除未使用的 user-box、li-box、box-f、user-div-box 样式 */

.bi-brush-fill::before,
.bi-chat-square-text-fill::before,
.bi-chevron-left::before,
.bi-chevron-right::before,
.bi-chevron-up::before,
.bi-cloud-arrow-down-fill::before,
.bi-grid-fill::before,
.bi-person-lines-fill::before,
.change-box a,
.choose-ul-ul li a {
    display: block
}

.change-box {
    width: 130px
}

.change-box a {
    width: 28px;
    height: 28px;
    border: 1px solid #fff;
    float: left;
    font-size: 30px;
    padding: 10px;
    color: #194eb9;
    z-index: 3;
    position: relative
}

.change-box a:hover {
    background-color: #194eb9;
    color: #fff
}

.artice-box {
    background-color: #f5f5f5;
    padding: 80px 0
}

.artice-ui {
    padding: 20px;
    background: url(../images/common/actice-bg.png) right bottom no-repeat #fff
}

.artice-ui li {
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0
}

.choose-ul li,
.choose-ul-ul li {
    margin-bottom: 30px;
    padding: 20px
}

.artice-ui li.f {
    padding-top: 0
}

.artice-ui li.l {
    padding-bottom: 0
}

.choose-ul li {
    height: 64px;
    background: url(../images/common/choose-bg.png) left center no-repeat #fff
}

.choose-ul-ul li {
    height: 19.5px;
    background: url(../images/common/cloud-100.png) left center no-repeat #fff
}

.tierces-parties-logo {
    width: 100%;
    height: 100%;
    margin-top: -20px;
    float: right;
    text-align: center
}

.choose-ul .bi {
    float: left;
    width: 60px;
    height: 64px;
    padding-top: 4px;
    font-size: 56px;
    margin-right: 20px;
    color: #194eb9
}

.choose-ul p {
    font-size: 16px;
    color: #666
}

.footer-box {
    background-color: #112b60;
    color: #e8e8e8;
    padding-top: 40px
}

.index {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto
}

.footer-top>div {
    max-width: 100%
}

.footer-top>div a,
.footer-top>ul a {
    color: #e8e8e8;
    margin-bottom: 10px;
    display: inline-block
}

.footer-top .title {
    font-size: 16px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px
}

.footer-top .title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fff
}

.footer-top .bi {
    font-size: 32px;
    transition: .3s;
    display: inline-block
}

.follw-icon {
    margin-right: 10px;
    transition: .3s
}

.follw-icon:hover {
    transition: .3s
}

.footer-top .bi-facebook {
    color: #1278f3;
    margin-right: 10px
}

.footer-top .bi-twitter {
    color: #1da1f2;
    margin-right: 10px
}

.footer-top .bi-youtube {
    color: #fd021c
}

.footer-bottom {
    border-top: 1px solid #061636;
    padding: 10px 0 20px
}

.footer-title {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0.5rem 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.cookie-container {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, .7)
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    padding: 16px 0;
    margin: 0 auto
}

.cookie-div {
    color: #fff;
    margin: 0 20px 0 0
}

.cookie-div>h2 {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 500
}

.cookie-div>p {
    margin: 0;
    font-size: 14px
}

.cookie-div>p>a {
    color: #fff
}

.button-div {
    display: flex;
    flex-direction: row
}

.cookie-btn {
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    white-space: nowrap
}

.cookie-reject,
.totop {
    border: 1px solid #fff;
    color: #fff
}

.cookie-accept {
    background: #fff;
    margin: 0 20px 0 0
}

.cookie-reject {
    background: 0 0
}

.cookie-accept:hover {
    filter: brightness(.9)
}

.cookie-reject:hover {
    color: #333;
    background: #fff
}

@media(max-width:1480px) {
    .cookie-content {
        padding: 16px 20px
    }
}

@media(max-width:768px) {
    .cookie-content {
        flex-direction: column;
        justify-content: center;
        padding: 16px 20px
    }

    .cookie-div {
        margin: 0 0 20px
    }
}

[class*=" bi-"]::before,
[class^=bi-]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: text-bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.bi-star-fill::before {
    content: "\f521"
}

.bi-chevron-left::before {
    content: "\f272"
}

.bi-chevron-right::before {
    content: "\f273"
}

.bi-cpu-fill::before {
    content: "\f2a3"
}

.bi-cart-check-fill::before {
    content: "\f227"
}

.bi-alarm-fill::before {
    content: "\f101"
}

.bi-calendar-check-fill::before {
    content: "\f1cf"
}

.bi-facebook::before {
    content: "\f30d"
}

.bi-youtube::before {
    content: "\f5af"
}

.bi-twitter::before {
    content: "\f57a"
}

.bi-check-circle-fill::before {
    content: "\f258"
}

.bi-check2-circle::before {
    content: "\f25e"
}

.bi-arrow-right-circle-fill::before {
    content: "\f133"
}

.bi-chevron-down::before {
    content: "\f270"
}

.bi-cart4::before {
    content: "\f233"
}

.bi-chevron-up::before {
    content: "\f274"
}

.bi-cloud-arrow-down-fill::before {
    content: "\f282"
}

.bi-person-lines-fill::before {
    content: "\f489"
}

.bi-chat-square-text-fill::before {
    content: "\f251"
}

.bi-brush-fill::before {
    content: "\f1c5"
}

.bi-grid-fill::before {
    content: "\f3c4"
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }

    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .col-md-12,
    .row-cols-md-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .col-md-6,
    .row-cols-md-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-4,
    .row-cols-md-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-3,
    .row-cols-md-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-md-2,
    .row-cols-md-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .offset-md-2 {
        margin-left: 16.666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.333333%
    }

    .offset-md-5 {
        margin-left: 41.666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.333333%
    }

    .offset-md-8 {
        margin-left: 66.666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.333333%
    }

    .offset-md-11 {
        margin-left: 91.666667%
    }

    .box-f {
        height: 490px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }

    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .col-lg-12,
    .row-cols-lg-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .col-lg-6,
    .row-cols-lg-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-4,
    .row-cols-lg-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-3,
    .row-cols-lg-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-lg-2,
    .row-cols-lg-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }

    .offset-lg-2 {
        margin-left: 16.666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.333333%
    }

    .offset-lg-5 {
        margin-left: 41.666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.333333%
    }

    .offset-lg-8 {
        margin-left: 66.666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.333333%
    }

    .offset-lg-11 {
        margin-left: 91.666667%
    }

    .box-f {
        height: 320px
    }

    .li-box p {
        height: 106px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }

    .header .container {
        max-width: 1280px
    }

    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%
    }

    .col-xl-12,
    .row-cols-xl-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .col-xl-6,
    .row-cols-xl-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-4,
    .row-cols-xl-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-3,
    .row-cols-xl-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .col-xl-2,
    .row-cols-xl-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .nav>li:first-child,
    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.333333%
    }

    .offset-xl-2 {
        margin-left: 16.666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.333333%
    }

    .offset-xl-5 {
        margin-left: 41.666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.333333%
    }

    .offset-xl-8 {
        margin-left: 66.666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.333333%
    }

    .offset-xl-11 {
        margin-left: 91.666667%
    }

    .header,
    .nav>li>a {
        padding: 0
    }

    .banner-left>p .d,
    .nav-app {
        display: none
    }

    .logo {
        padding-top: 10px
    }

    .nav {
        position: inherit;
        margin-left: auto;
        display: block
    }

    .nav>li {
        padding: 23px 0;
        float: left;
        cursor: pointer;
        margin-left: 30px;
        border-bottom: none
    }

    .nav>li>span {
        font-size: 16px;
        float: none
    }

    .nav>li>a {
        border: none
    }

    .nav-pos {
        background-color: #fff;
        z-index: 10;
        position: absolute;
        box-shadow: 0 0 20px rgba(0, 0, 0, .2);
        top: 60px;
        left: 50%;
        height: 0;
        transition: height .2s linear;
        display: inherit;
        margin-top: 0;
        transform: translate(-50%, 0)
    }

    .d-pos,
    .d-pos span {
        display: block;
        position: absolute
    }

    .nav-pos:before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        border: 12px solid transparent;
        border-bottom: 8px solid #fff;
        left: calc(50% - 8px);
        top: -20px;
        z-index: 2;
        opacity: 0
    }

    .nav>li:hover span.bi-chevron-down {
        transform: rotate(180deg)
    }

    .nav>li:hover .nav-pos:before {
        opacity: 1
    }

    .nav-pos a {
        padding: 20px
    }

    .nav>li:hover .nav-pos.p {
        height: 364px
    }

    .nav>li:hover .nav-pos.c,
    .nav>li:hover .nav-pos.s,
    .nav>li:hover .nav-pos.u {
        height: 330px
    }

    .nav>li:hover .nav-pos.i {
        height: 414px
    }

    .nav>li:hover .nav-pos.m {
        height: 500px
    }

    .nav-pos.p {
        width: 900px
    }

    .nav-pos.c {
        width: 295px
    }

    .nav-pos.i {
        width: 670px
    }

    .nav-pos.u {
        width: 695px
    }

    .nav-pos.m {
        width: 310px
    }

    .nav-pos.s {
        width: 280px
    }

    .banner-right {
        padding-left: 45px
    }

    .focus {
        height: 528px
    }

    .box-postion {
        transform: translate(112px, -50%)
    }

    .li-box {
        padding: 30px
    }

    .choose-ul .bi {
        margin-right: 10px
    }

    .banner-left>p {
        line-height: 2.5
    }

    .d-pos {
        left: 315px;
        top: 125px
    }

    .d-pos span {
        font-size: 36px;
        font-weight: 600;
        opacity: 0;
        color: #26f2c4
    }

    .d-pos .w {
        animation: 8s cubic-bezier(.22, .61, .36, 1) infinite changspan
    }

    .d-pos .o {
        animation: 8s cubic-bezier(.22, .61, .36, 1) 2s infinite changspan
    }

    .d-pos .i {
        animation: 8s cubic-bezier(.22, .61, .36, 1) 4s infinite changspan
    }

    .d-pos .m {
        animation: 8s cubic-bezier(.22, .61, .36, 1) 6s infinite changspan
    }

    @keyframes changspan {
        0% {
            opacity: 0;
            transform: translateY(-10px)
        }

        10% {
            opacity: 1
        }

        15% {
            opacity: 1;
            transform: translateY(0)
        }

        35% {
            opacity: 0
        }

        45% {
            transform: translateY(10px)
        }

        100% {
            opacity: 0;
            transform: translateY(10px)
        }
    }
}

/* Enhanced Tab Navigation */
#pro-nav {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

#tab-ul {
    margin: 0;
    background: white;
}

#tab-ul li {
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 20px 0;
}

#tab-ul li:hover {
    background: rgba(25, 78, 185, 0.05);
    color: #194eb9;
}

#tab-ul .ul-choose {
    background: linear-gradient(45deg, #194eb9, #2c5aa0);
    color: white;
}

#tab-ul .ul-choose:after {
    display: none;
}

/* Enhanced search and filter functionality */
.search-filter-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(25, 78, 185, 0.1);
    border-bottom: 1px solid rgba(25, 78, 185, 0.1);
    position: relative;
    overflow: hidden;
}

.search-filter-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 1;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.search-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.search-title i {
    font-size: 2.5rem;
    color: #194eb9;
    background: linear-gradient(45deg, #194eb9, #26f2c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    opacity: 0.9;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border: none;
    background: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #666;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.filter-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 78, 185, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: #194EB9;
    color: white;
    border-color: #194eb9;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(25, 78, 185, 0.3);
}

.filter-btn.active {
    background: linear-gradient(-45deg, #194eb9, #366cd9);
    color: white;
    /*    border-color: #194eb9;*/
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 78, 185, 0.4);
}

.filter-btn.active i {
    color: #26f2c4;
}

.filter-btn:hover i,
.filter-btn.active:hover i {
    transform: scale(1.1);
    color: #26f2c4;
}

/* Improved loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #194eb9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Mobile Footer Style */

/* Desktop Style Remains Unchanged */
@media (min-width: 768px) {
    .footer-section-title {
        cursor: default;
        pointer-events: none;
        outline: none;
        box-shadow: none;
    }

    .footer-section-content {
        display: block !important;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .footer-toggle-icon {
        display: none;
    }
}

/* Responsive Styles */
@media (max-width: 767px) {

    .footer-top,
    .footer-top.dis-flex2 {
        display: flex;
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(232, 232, 232, 0.2);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    /* .footer-title and .footer-section-title */
    .footer-title.footer-section-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        background: none;
        border: none;
        color: #e8e8e8;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        text-align: left;
        transition: color 0.3s ease;
    }

    .footer-title.footer-section-title:hover {
        color: #ffffff;
    }

    .footer-title.footer-section-title:after {
        display: none;
    }

    .footer-toggle-icon {
        font-size: 14px;
        transition: transform 0.3s ease;
        color: #e8e8e8;
    }

    .footer-section.expanded .footer-toggle-icon {
        transform: rotate(180deg);
    }

    /* Apply styles to both .footer-list and .footer-section-content */
    .footer-list.footer-section-content {
        display: none;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .footer-section.expanded .footer-list.footer-section-content {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .footer-list.footer-section-content ul {
        margin: 0 0 15px 0;
        padding: 0;
    }

    .footer-list.footer-section-content ul li {
        margin: 8px 0;
    }

    .footer-list.footer-section-content ul li a {
        color: #e8e8e8;
        text-decoration: none;
        display: block;
        padding: 5px 0;
        transition: color 0.3s ease;
    }

    .footer-list.footer-section-content ul li a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    /* Company Info Section */
    .footer-company-info {
        border-bottom: 1px solid rgba(232, 232, 232, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-company-info img {
        margin-bottom: 15px;
    }

    .footer-company-info p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .footer-company-info p a {
        color: #e8e8e8;
        display: block;
        margin-bottom: 5px;
    }

    .footer-company-info .follow-a {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .footer-company-info .follow-a a {
        display: inline-block;
    }

    /* Ensure smooth sliding down effect */
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }

        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    /* Ensure that the footer content on mobile devices is not too wide. */
    .footer-box {
        padding: 20px 15px;
    }

    .footer-top>div:first-child {
        max-width: 100%;
    }
}

/* style optimize */
.footer-section-title {
    font-family: inherit;
    outline: none;
}

/* keep font display nice */
.footer-toggle-icon:before {
    content: "▼";
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-section.expanded .footer-toggle-icon:before {
    transform: rotate(-90deg);
}

/* Scroll To Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #2268f5;
    color: white;
    cursor: pointer;
    opacity: 0;
    font-size: 20px;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #4c88ff;
}

/* Keep neo header typography consistent on downloads page */
.neo-header .neo-nav-link {
    font-weight: 500 !important;
}
