﻿

/*头部*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    width: 100%;
    transition: all .4s;
}

    /*头部导航1*/
    .header.sticky-menu1 {
        top: 0;
        left: 0;
        right: 0;
    }

        .header.sticky-menu1 .header-top {
            margin-top: -50px;
            opacity: 0;
        }

        .header.sticky-menu1 ~ .divprolist.open {
            top: 80px !important;
        }

    .header
    .header-top {
        width: 100%;
        background: #002E4B;
        transition: all .4s;
        height: 50px;
        z-index: 1;
    }


        .header
        .header-top
        .header-top-info {
            height: 50px;
        }

            .header
            .header-top
            .header-top-info ul {
                height: 100%;
                display: flex;
            }

                .header
                .header-top
                .header-top-info ul li {
                    display: flex;
                    height: inherit;
                    align-items: center;
                    position: relative;
                    padding-left: 18px;
                    padding-right: 18px;
                    /*overflow: hidden;*/
                    color: var(--white-color);
                }

                    .header
                    .header-top
                    .header-top-info ul li:first-child {
                        padding-left: 10px;
                    }

                    .header
                    .header-top
                    .header-top-info ul li i {
                        font-size: 14px;
                    }

                    .header
                    .header-top
                    .header-top-info ul li a:hover {
                        text-decoration: underline;
                    }

                    .header
                    .header-top
                    .header-top-info ul li.user {
                        background: #EF7C1B;
                        cursor: pointer;
                    }

                        /*.header
                        .header-top
                        .header-top-info ul li.user a:first-child::after {
                            content: "";
                            position: absolute;
                            right: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            height: 18px;
                            width: 1px;
                            background-color: #eee;
                            opacity: 0.5;
                        }*/

                    .header
                    .header-top
                    .header-top-info ul li a {
                        display: inline-block;
                        font-size: 14px;
                        color: var(--white-color)
                    }

                        .header
                        .header-top
                        .header-top-info ul li a i {
                            font-size: 14px;
                            margin-right: 5px;
                        }

            /* 为除最后一个列表项外的其他列表项添加竖线 */
            .header
            .header-top
            .header-top-info.infoul1 li:not(:last-child)::after {
                content: "";
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                height: 18px;
                width: 1px;
                background-color: #979797;
                opacity: 0.5;
            }


    /*头部导航2*/
    .header
    .header-foot {
        border-bottom: solid 1px #eee;
        position: relative;
        background: #fff;
        z-index: 9;
    }

    .header
    .placeholder {
        display: none;
        height: 80px;
    }


    .header
    .header-foot
    .navbar {
        display: flex;
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding-top: 0;
        padding-bottom: 0;
    }

        /*头部导航-logo*/
        .header
        .header-foot
        .navbar .logo {
            transition: all 0.4s;
            position: relative;
            margin-right: 40px;
            width: 100px;
        }

            .header
            .header-foot
            .navbar .logo a {
                display: block;
            }

            .header
            .header-foot
            .navbar .logo img {
                max-width: 100%;
                height: auto;
            }

        .header
        .header-foot
        .navbar .menu {
            flex-grow: 1;
            align-items: center;
            display: flex !important;
            flex-basis: auto;
        }

    /*头部导航-导航条*/
    .header
    .header-foot
    .nav-info {
        display: flex;
        margin-bottom: 0;
        padding-left: 0;
    }

        .header
        .header-foot
        .nav-info a {
            display: flex;
            align-items: center;
        }

        .header
        .header-foot
        .nav-info .nav-item {
            display: inherit;
            position: relative;
        }

        .header
        .header-foot
        .nav-info .nav-link-item {
            color: var(--heading-color);
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
            font-style: normal;
            letter-spacing: normal;
            position: relative;
            padding: 30px 18px 29px 18px;
        }

            .header
            .header-foot
            .nav-info .nav-link-item i {
                margin-left: 5px;
                transition: all 0.4s ease-in-out;
            }

            .header
            .header-foot
            .nav-info .nav-link-item:hover i {
                transform: rotate(-180deg);
            }

            .header
            .header-foot
            .nav-info .nav-link-item.nav-item-has-children i {
                transform: rotate(-90deg) !important;
                transition: all 0.4s ease-in-out;
            }

            .header
            .header-foot
            .nav-info .nav-link-item.nav-item-has-children:hover i {
                transform: rotate(-180deg) !important;
            }


        /*头部导航-二级导航*/
        .header
        .header-foot
        .nav-info .sub-menu {
            z-index: 2;
            background-color: #fff;
            box-shadow: -2px 2px 70px -25px rgb(0 0 0 / 30%);
            position: absolute;
            left: 5px;
            top: 79px;
            margin: 0;
            padding: 12px 0;
            transition: .4s;
            transform: translatey(20px);
            opacity: 0;
            visibility: hidden;
            min-width: 150px;
            border-radius: 6px;
        }

        .header
        .header-foot
        .nav-info
        li.nav-item-has-children:hover > .sub-menu {
            visibility: visible;
            opacity: 1;
            pointer-events: visible;
            border-radius: 0;
            transform: translateY(0);
        }


    .header
    .header-foot
    .nav-item-has-children a {
        display: flex;
        justify-content: space-between;
        text-transform: capitalize;
    }

    .header
    .header-foot
    .nav-info .sub-menu--item > a {
        color: inherit;
        padding: 4px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        position: relative;
        transition: .4s;
    }

        .header
        .header-foot
        .nav-info .sub-menu--item > a .menu-item-text {
            position: relative;
            transition: all 0.3s ease;
        }

            .header
            .header-foot
            .nav-info .sub-menu--item > a .menu-item-text::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: auto;
                right: 0;
                height: 2px;
                width: 0;
                background-color: #202030;
                transition: all 0.3s ease;
            }

        .header
        .header-foot
        .nav-info .sub-menu--item > a:hover .menu-item-text::after {
            left: 0;
            right: auto;
            width: 100%;
        }


    /*头部导航-二级导航-右侧区域*/
    .header
    .header-foot
    .iconwarp {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: 20px;
    }

        .header
        .header-foot
        .iconwarp
        .search-icon {
            cursor: pointer;
            position: relative;
            background-color: #fff;
            border-color: #959499;
            height: 2.5rem;
            border: 1px solid #626369;
            border-radius: .3125rem;
            font-size: .875rem;
            font-weight: 400;
            letter-spacing: 0;
            padding: .4rem .75rem;
            width: 12rem;
        }

            .header
            .header-foot
            .iconwarp
            .search-icon i {
                font-size: 22px;
                top: -2px;
                position: relative;
            }

            .header
            .header-foot
            .iconwarp
            .search-icon span {
                color: #787878;
                font-size: 14px;
                position: absolute;
                left: 50px;
                top: 5px;
            }

            .header
            .header-foot
            .iconwarp
            .search-icon ~ a img {
                border-radius: 5px;
            }

/* 语言下拉菜单样式 */
.language-dropdown, .currency-dropdown, .user-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 0;
    min-width: 120px;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
}

.language-option, .currency-option, .user-option {
    padding: 6px 15px;
    cursor: pointer;
    color: #333;
}

    .language-option:hover, .currency-option:hover, .user-option:hover {
        background-color: #f5f5f5;
    }

    .language-option a, .currency-option a, .user-option a {
        color: #333 !important;
        display: block !important;
        text-decoration: none !important;
    }

.language-selector .language-downicon,
.currency-selector .currency-downicon,
.user-selector .user-downicon {
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.language-selector:hover .language-downicon,
.currency-selector:hover .currency-drwnicon,
.user-selector:hover .user-downicon {
    transform: rotate(-180deg);
}


/*头部搜索遮罩*/
.search-overlay {
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}

    .search-overlay.open {
        opacity: .8;
        visibility: visible
    }

/*弹出的搜索区域*/
.search-icon-section {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    background-color: #fff;
    top: 0;
    z-index: 99;
    padding: 80px 0 80px;
    transition: .5s all ease;
    transform: translateY(-100%);
}

    .search-icon-section.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .search-icon-section
    .search-icon-box {
        position: relative;
    }

        .search-icon-section
        .search-icon-box
        #header-search {
            position: absolute;
            top: 20px;
            right: 0;
            cursor: pointer;
        }

            .search-icon-section
            .search-icon-box
            #header-search i {
                color: #000;
                font-size: 16px;
                font-weight: 700;
            }

        .search-icon-section
        .search-icon-box input {
            font-size: 24px;
            border: none !important;
            border-radius: 0;
            height: 60px;
            border-bottom: 1px solid #e7e7e8 !important;
            margin-bottom: 12px;
            width: 100%;
        }

        .search-icon-section
        .search-icon-box p {
            font-size: 16px;
        }

    .search-icon-section
    .search-icon-close {
        position: absolute;
        top: 40px;
        right: 40px;
        cursor: pointer
    }

        .search-icon-section
        .search-icon-close i {
            font-size: 30px;
            color: #6e6e77;
            transition: all .4s
        }

        .search-icon-section
        .search-icon-close:hover i {
            color: var(--accent-color)
        }

    .search-icon-section
    .search-history .search-history-content.imgwarp img {
        margin: 0px 20px 20px 0px;
    }

    .search-icon-section
    .search-history .search-history-content {
        padding-top: 10px;
        display: flex;
    }

        .search-icon-section
        .search-history .search-history-content
        .history-item-container {
            display: flex;
            position: relative;
        }

        .search-icon-section
        .search-history .search-history-content i {
            position: absolute;
            right: -5px;
            top: -2px;
        }

        .search-icon-section
        .search-history .search-history-content .his-btn {
            border: 1px solid rgba(0, 0, 0, .2);
            border-radius: 6px;
            color: #595959;
            cursor: pointer;
            display: inline-block;
            font-size: 14px;
            height: 32px;
            line-height: 30px;
            margin: 0px 12px 12px 0px;
            max-width: 240px;
            overflow: hidden;
            padding: 0 12px;
            text-align: center;
            text-overflow: ellipsis;
            -webkit-transition: .2s;
            transition: .2s;
            white-space: nowrap;
        }

            .search-icon-section
            .search-history .search-history-content .his-btn:hover {
                border-color: #595959;
                color: #191919
            }


    .search-icon-section
    .search-result {
        position: relative;
    }


        .search-icon-section
        .search-result #searchALL {
            font-size: 16px;
            display: none;
        }

            .search-icon-section
            .search-result #searchALL:hover {
                text-decoration: underline;
            }

        .search-icon-section
        .search-result .search-result-item {
            position: relative;
            margin-bottom: 10px;
            height: 40px;
            line-height: 40px;
        }

            .search-icon-section
            .search-result .search-result-item:hover {
                background: #e8e8e8;
            }

            .search-icon-section
            .search-result .search-result-item a {
                color: var(--heading-color);
                display: block;
            }

            .search-icon-section
            .search-result .search-result-item .product_type_goods {
                background: #fff;
                border: 1px solid rgba(0, 0, 0, .2);
                border-radius: 16px;
                box-sizing: border-box;
                color: #191919;
                font-size: 14px;
                font-weight: 400;
                line-height: 25px;
                padding: 2px 16px;
                position: absolute;
                right: 10px;
                top: 5px;
            }

#keySearchList {
    border-bottom: dotted 1px #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/*搜索特殊css*/
#delete-buttons button:hover {
    text-decoration: underline;
}

.search-history span {
    font-size: 9px;
    margin-left: 5px;
}

#delete-all {
    margin-right: 10px;
    border-right: solid 1px #ccc;
    padding-right: 10px;
    line-height: 10px;
}
/*下拉产品区域*/
.divprolist-overlay {
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    z-index: 7;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}

    .divprolist-overlay.open {
        opacity: .8;
        z-index: 7;
        visibility: visible;
    }

#divprolist {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    background-color: #fff;
    top: 130px;
    z-index: 8;
    transition: .5s all ease;
    transform: translateY(-100%);
}

    #divprolist.open {
        z-index: 8;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #divprolist .content {
        /*padding: 0;*/
    }


.divprolist
#nav-pro-menu {
    height: 53px;
    border-bottom: solid 1px #eee;
}

.divprolist
.fob-item {
    position: relative;
    line-height: 53px;
}

    .divprolist
    .fob-item a {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--heading-color);
        cursor: pointer;
    }

    .divprolist
    .fob-item.active:after, .fob-item:focus:after, .fob-item:hover:after {
        background-color: #000;
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        right: 0;
    }

.divprolist
.flyout-container {
    background-color: #fff;
    padding: 30px 0px 40px 0px;
}

.divprolist
.wrapper {
    flex-wrap: nowrap;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 20px;
}

.divprolist
.category-cell {
    gap: 20px;
    flex-basis: 0;
    flex-grow: 1;
}

.divprolist
.heavy {
    color: #4378AC;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25rem;
    text-transform: none;
    margin-bottom: 10px;
}

.divprolist
a .heavy:hover {
    text-decoration: underline;
}

.divprolist
.category-group .links {
    border-left: solid 1px #DAE2E5;
    padding-left: 12px;
}

    .divprolist
    .category-group .links a {
        color: var(--heading-color);
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

        .divprolist
        .category-group .links a:hover {
            text-decoration: underline;
        }

        .divprolist
        .category-group .links a i {
            margin-left: 5px;
            display: inline-block;
            text-decoration: none;
        }

        .divprolist
        .category-group .links a.pt-new {
            color: #EF7C1B;
        }

        .divprolist
        .category-group .links a.pt-hot {
            color: #FF4C4C;
        }


.divprolist
.category-group .imgcontain {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
}

    .divprolist
    .category-group .imgcontain img {
        width: 100%;
        display: block;
    }

    .divprolist
    .category-group .imgcontain a:hover {
        text-decoration: underline;
    }

    .divprolist
    .category-group .imgcontain a > p {
        font-size: 14px;
        line-height: 2;
    }


/*首页广告*/
.activity-ad {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    width: 100%;
    z-index: -999;
}

    .activity-ad.show {
        opacity: 1;
        z-index: 999
    }

    .activity-ad .activity-ad-container {
        background-size: 100% 100%;
        border-radius: 20px;
        position: relative
    }

    .activity-ad .activity-ad-close {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 2px solid #fff;
        border-radius: 28px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 28px;
        justify-content: center;
        position: absolute;
        right: -20px;
        top: -40px;
        width: 28px;
        cursor: pointer;
    }

        .activity-ad .activity-ad-close i {
            color: #fff;
            font-size: 12px;
        }

    .activity-ad .activity-ad-content {
        max-width: 620px;
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
    }

    .activity-ad .activity-ad-countdown {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.35);
        color: white;
        padding: 0px 10px;
        border-radius: 5px;
        font-size: 11px;
    }


#maincontent {
    margin-top: 130px;
    transition: .5s all ease;
    min-height: 700px;
}

/*首页轮播*/
.swiper-pagination {
    z-index: 6;
}

.index-banner {
    display: block;
}

    .index-banner .swiper-pagination {
        width: 180px;
        height: 5px;
        bottom: 30px;
        border-radius: 10px;
        background: #0F2D49;
        overflow: hidden;
    }

        .index-banner .swiper-pagination .swiper-pagination-progressbar {
            overflow: hidden;
        }

    .index-banner .swiper-pagination-progressbar-fill {
        background: #EF7C1B !important;
    }

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-bg) !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    display: inline-block;
    border-radius: 2px;
    background: #fff;
    opacity: 1;
}

#index_swiper1 .swiper-pagination-bullets {
    bottom: 30px;
}

#index_swiper1 .swiper-pagination-bullet {
    background: #e8e8e8;
}

#index_swiper1 .swiper-slide {
    height: 600px;
}

    #index_swiper1 .swiper-slide a {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

/*首页轮播结束*/


/*顶部产品大类*/
.headMenu {
    clear: both;
    display: block;
    overflow: hidden;
    margin: 20px 0px;
}

    .headMenu .headMenu_items {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-basis: 0;
    }

    .headMenu .headMenu_item {
        padding: 25px 0 15px;
    }

        .headMenu .headMenu_item a {
            display: block;
            margin: 0 auto;
            color: #333;
            font-size: 12px;
            text-decoration: none;
            transition: all .3s;
        }

            .headMenu .headMenu_item a:hover .style_title {
                color: var(--accent-bg);
            }

        .headMenu .headMenu_item .style_image {
            padding: 5px;
            background: #F4F5F6;
            border-radius: 5px;
            /*box-shadow: 2px 2px 4px rgba(0,0,0,0.1);*/
        }

            .headMenu .headMenu_item .style_image:hover {
                box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
                /* transform: translate3d(0,-2px,0);
                -webkit-transform: translate3d(0,-2px,0);*/
                transition: all .3s ease;
            }

            .headMenu .headMenu_item .style_image img {
                max-width: 100%;
                max-height: 100%;
                vertical-align: top;
            }

        .headMenu .headMenu_item .style_title {
            color: #000000;
            text-align: center;
            font-size: 14px;
            min-height: 24px;
            line-height: 24px;
            font-weight: 500;
            margin-top: 10px;
        }



/* 首页通用标题 */

.comtitle {
    position: relative;
    padding-top: 70px;
}

    .comtitle .bigtxt {
        font-weight: 600;
        color: #0f2d49;
        font-size: 28px;
        letter-spacing: 0;
        margin-bottom: 10px;
        white-space: nowrap;
    }

    .comtitle .smalltxt {
        font-weight: 500;
        color: #ef7c1b;
        font-size: 14px;
        letter-spacing: 0;
        line-height: 14px;
        white-space: nowrap;
    }

    .comtitle .comtitle-more {
        width: 120px;
        height: 40px;
        background-color: #ffffff;
        border-radius: 0px 24px 0px 24px;
        margin-top: 5px;
    }

        .comtitle .comtitle-more a {
            color: #111111;
            font-size: 14px;
            line-height: 40px;
            text-align: center;
            justify-content: center;
            display: flex;
        }

            .comtitle .comtitle-more a:hover {
                color: var(--accent-bg);
            }


/* 新品发布 */
.section_newpro {
    background: url(../images/index/image141.png) no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

.newprowarp {
    position: relative;
    /*max-width: 1250px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 20px;
}

.warp-content {
    width: 1424px;
    padding: 0 12px;
    overflow: hidden;
    margin: 0 auto;
}

/* 特大屏适配（1700px 及以上） */
/*@media (min-width: 1700px) {
    body {
        min-width: 1700px;
    }

    .warp-content {
        width: 1560px;
    }

    .newprowarp {
        width: 1584px;
    }

    #index_swiper1 .swiper-slide {
        height: 600px;
    }
}*/

/* 大屏适配（1440px 到 1699px） */
/*@media (min-width: 1440px) and (max-width: 1699px) {
    body {
        min-width: 1500px;
    }

    .warp-content {
        width: 1260px;
    }

    .newprowarp {
        width: 1284px;
    }

    #index_swiper1 .swiper-slide {
        height: 530px;
    }
}*/

/* 中屏适配（1300px 到 1439px） */
/*@media (min-width: 1300px) and (max-width: 1439px) {
    body {
        min-width: 1300px;
    }

    .warp-content {
        width: 1220px;
    }

    .newprowarp {
        width: 1244px;
    }

    #index_swiper1 .swiper-slide {
        height: 500px;
    }
}*/

/* 小屏适配（小于 1300px） */
/*@media (max-width: 1299px) {
    body {
        min-width: 1140px;
    }

    .warp-content {
        width: 1164px;
    }

    .newprowarp {
        width: 1164px;
    }

    #index_swiper1 .swiper-slide {
        height: 460px;
    }

    .comm-banner .headcontent .headbanner {
        height: 280px !important;
    }
}*/

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

    .carousel-control.prev {
        left: -60px; /* 按钮放在内容区域外侧 */
    }

    .carousel-control.next {
        right: -60px; /* 按钮放在内容区域外侧 */
    }

    .carousel-control img {
        width: 40px;
        height: 40px;
    }


#productSwiper {
    padding: 80px 0 50px 0;
    overflow: visible;
}

    #productSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.swiper-wrapper {
    transition-timing-function: linear;
}

.product-card {
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
    background: #FBF9F7;
    transition: transform 0.3s;
    border: solid 2px #fff;
}

    .product-card:hover {
        background: #fff;
        border: solid 2px var(--accent-bg);
        box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
        transform: translate3d(0,-5px,0);
        -webkit-transform: translate3d(0,-5px,0);
        transition: all .3s ease;
    }

        .product-card:hover .product-image {
            -webkit-transform: translateY(-5px);
        }


.product-image-wrapper {
    padding: 15px;
    border-radius: 8px;
    margin-top: -80px;
    text-align: center;
}

.product-image {
    width: 130px;
    height: 130px;
    transition: transform .5s;
}

.product-info {
    padding: 15px;
    height: 80px;
}

.product-category {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.product-name {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .product-name:hover {
        color: var(--accent-bg);
    }

.new-label {
    width: 80px;
    background: #0F2D49;
    color: #FFF643;
    font-size: 12px;
    text-align: center;
    margin: 10px auto;
    border-radius: 0px 15px 0px 15px;
}


/*首页追光*/
/* 容器样式 */
.light-row {
    display: flex;
    gap: 20px;
    margin: 50px 0px;
}

    /* 每个元素的样式 */
    .light-row .item {
        flex: 1;
        padding: 20px;
        position: relative;
        border-radius: 10px;
        border: 1px solid #eee;
        overflow: hidden;
        transition: transform 0.3s;
    }


        .light-row .item:hover {
            box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
            transform: translate3d(0,-5px,0);
            -webkit-transform: translate3d(0,-5px,0);
            transition: all .3s ease;
        }

        .light-row .item.item1 {
            background: url(../images/index/light_1.png) no-repeat;
            background-size: cover;
        }

        .light-row .item.item2 {
            background: url(../images/index/light_2.png) no-repeat;
            background-size: cover;
        }

        .light-row .item.item3 {
            background: url(../images/index/light_3.png) no-repeat;
            background-size: cover;
        }

    /* 标签样式 */
    .light-row .tag {
        background-size: cover;
        width: 70px;
        height: 70px;
    }

    .light-row .tag1 {
        background: url(../images/index/light_1_1.png) no-repeat;
        background-size: cover;
    }

    .light-row .tag2 {
        background: url(../images/index/light_2_1.png) no-repeat;
        background-size: cover;
    }

    .light-row .tag3 {
        background: url(../images/index/light_3_1.png) no-repeat;
        background-size: cover;
    }

    /* 标题样式 */
    .light-row .title {
        margin: 0;
        position: absolute;
        left: 120px;
        top: 40px;
        font-size: 22px;
        font-weight: 500;
    }

        .light-row .title.t1 a {
            color: #246CAF;
        }

        .light-row .title.t2 a {
            color: #01947E;
        }

        .light-row .title.t3 a {
            color: #EF7C1B;
        }


    /* 描述样式 */
    .light-row .description {
        margin: 30px 0px 20px 0px;
        font-size: 14px;
        color: #333;
        font-family: AliRegular;
    }

    /* 第一个元素底部最新资讯样式 */
    .light-row .item .latest-news {
        border-top: solid 1px #CCCCCC;
        padding-top: 18px;
    }

    .light-row .item .tip {
        background-color: #FFF3EA;
        color: #E58411;
        padding: 3px 6px;
        border-radius: 4px;
        font-size: 14px;
        margin-right: 10px;
    }

    .light-row .item h3 {
        margin: 0;
        display: inline;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        line-height: 2;
    }

    .light-row .item a:hover h3 {
        color: var(--accent-bg);
    }


/*首页案例*/
.section_case {
    background: url(../images/index/image142.png) no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

.case-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 60px;
    align-items: stretch;
}

.case-col {
    box-sizing: border-box;
    margin-top: 0;
    flex: 1;
}

    .case-col .adimg {
        width: 100%;
        height: 100%;
        object-fit: fill;
        overflow: hidden;
        border-radius: 10px;
    }

.case_item-wrap {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
    cursor: pointer;
    background: #fff;
    transition: transform 0.3s;
}

    .case_item-wrap:hover {
        box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
        transform: translate3d(0,-5px,0);
        -webkit-transform: translate3d(0,-5px,0);
        transition: all .3s ease;
    }

    .case_item-wrap a {
        display: block;
        height: 100%;
    }

.index-module_img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

    .index-module_img img {
        width: 100%;
        display: block
    }

.index-module_wrap {
    padding: 20px 28px 20px
}

.index-module_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    height: 40px;
}

.index-module_desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    min-height: 110px;
    color: #333;
    font-family: AliRegular;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.case-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 0 0 15px 25px;
}

/*首页新闻*/
.news-container {
    display: flex;
    gap: 20px;
    margin: 50px 0px;
}

    /* 左边两列新闻 */
    /* 左边两列新闻 */
    .news-container .left-news {
        flex: 2;
        display: flex;
        gap: 20px;
    }

    .news-container .single-news {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow: hidden;
        border: 1px solid #eee;
        background: #f4f5f6;
        transition: transform 0.3s;
        border-radius: 10px;
    }

        .news-container .single-news:hover {
            box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
            transform: translate3d(0,-5px,0);
            -webkit-transform: translate3d(0,-5px,0);
            transition: all .3s ease;
        }

        .news-container .single-news img {
            width: 100%;
            height: auto;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

    .news-container .news-info {
        padding: 20px;
    }


        .news-container .news-info h2 {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.8;
            color: #333;
            margin: 0 0 10px 0;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .news-container .news-info p {
            margin: 0;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.8;
            color: #333;
            font-family: AliRegular;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

    /* 右边多列新闻 */
    .news-container .right-news {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .news-container .small-news a {
        display: flex;
        gap: 20px;
    }

        .news-container .small-news a img {
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .news-container .small-news a .news-info {
            display: flex;
            flex-direction: column;
            background: #fff;
            padding: 0px;
        }

        .news-container .small-news a h2 {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin: 0;
        }

        .news-container .small-news a:hover h2 {
            color: var(--accent-bg);
        }

        .news-container .small-news a span {
            color: #cccccc;
            font-size: 14px;
            line-height: 24px;
        }



/*右侧固定栏*/
.right_nav {
    right: 0px;
    bottom: 70px;
    position: fixed;
    text-align: left;
    z-index: 6;
}

    .right_nav ul {
        background: #fff;
        border: solid 1px #eee;
        border-right: none;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        box-shadow: 0 4px 11px 0 hsla(220,4%,56%,.2);
    }

        .right_nav ul li {
            background: #fff;
            margin: 5px 3px 6px 4px;
            padding: 8px 3px 3px 3px;
            cursor: pointer;
            position: relative;
        }

            .right_nav ul li .iconBox {
                text-align: center;
                overflow: hidden;
                display: flex;
                align-items: center;
                flex-flow: column;
            }

            .right_nav ul li i {
                color: #000;
                font-size: 24px;
            }

            .right_nav ul li img {
                width: 30px;
                height: 30px;
            }

            .right_nav ul li h4 {
                color: #333;
                font-size: 12px;
                margin-top: 3px;
                font-weight: 500;
            }

            .right_nav ul li:hover {
                background: #F4F5F6;
            }

            .right_nav ul li .right_nav_num {
                color: #ffffff;
                background: var(--accent-bg);
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
                width: 16px;
                height: 16px;
                font-size: 12px;
                line-height: 16px;
                display: inline-block;
                text-align: center;
                position: absolute;
                border: 1px solid var(--accent-bg);
                top: 6px;
                right: 8px;
            }

    .right_nav .right_navul2 {
        opacity: 0;
        margin-top: 15px;
        transition: .2s all ease;
    }

    .right_nav #jrmsg {
        position: absolute;
        width: 150px;
        right: 80px;
        z-index: 100;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        font-size: 14px;
        transform: scale(.95);
        transform-origin: right;
        transition: opacity .4s, transform .3s ease-out;
        background: #fff;
        box-shadow: 0 2px 5px 2px rgba(0, 0, 0, .1);
        text-align: center;
        border-radius: 10px;
        display: none;
    }

        .right_nav #jrmsg:before {
            border: 8px solid transparent;
            border-left-color: #fff;
            content: " ";
            height: 0;
            left: 100%;
            position: absolute;
            width: 0;
            right: 0;
            top: 10px;
        }

        .right_nav #jrmsg i {
            margin-right: 5px;
            font-size: 14px;
            color: #45bf40;
        }




/*对比弹出*/
.compare-bubble {
    width: 440px;
    max-height: 550px;
    opacity: 1;
    right: -500px;
    border: 1px solid #eaeaea;
    position: fixed;
    background: #ffffff;
    border-radius: 10px;
    z-index: 99999;
    box-shadow: 0 0 15px -8px rgb(0 0 0 / 50%);
    overflow: hidden;
    /*transition: .5s all ease;*/
}

    .compare-bubble.show {
        right: 70px; /* 最终位置在页面内 */
        opacity: 1; /* 变为可见 */
    }

    /*.compare-bubble::before {
        content: '';
        width: 0;
        height: 0;
        border: 10px solid;
        position: absolute;
        bottom: 50%;
        right: -20px;
        border-color: transparent transparent transparent var(--accent-bg);
    }*/

    .compare-bubble .compare-container-toolbar {
    }

    .compare-bubble .compare-head {
        background: #f8f8f8;
        padding: 10px 15px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

        .compare-bubble .compare-head h2 {
            font-size: 14px;
        }

        .compare-bubble .compare-head a,
        .compare-bubble .compare-head a i {
            font-size: 16px;
        }

    .compare-bubble .compare-container-toolbar .compare-content {
        overflow: hidden;
        padding: 13px;
        border-bottom: 1px #EEEEEE solid;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        gap: 15px;
    }

        .compare-bubble .compare-container-toolbar .compare-content .compare-left {
            border: solid 1px #eee;
            border-radius: 5px;
        }

            .compare-bubble .compare-container-toolbar .compare-content .compare-left img {
                width: 80px !important;
                height: 80px !important;
            }

        .compare-bubble .compare-container-toolbar .compare-content .compare-right {
        }

            .compare-bubble .compare-container-toolbar .compare-content .compare-right a {
                display: block;
            }

                .compare-bubble .compare-container-toolbar .compare-content .compare-right a:hover p {
                    /*text-decoration: underline;*/
                }


            .compare-bubble .compare-container-toolbar .compare-content .compare-right .compare-name {
                height: 50px;
                font-size: 13px;
                line-height: 26px;
                color: #545454;
                display: -webkit-box;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .compare-bubble .compare-container-toolbar .compare-content .compare-right a p {
                color: #545454;
            }

            .compare-bubble .compare-container-toolbar .compare-content .compare-right .compare-sn {
                line-height: 30px;
                color: var(--accent-bg);
            }

        .compare-bubble .compare-container-toolbar .compare-content .compare-del {
            text-align: center;
            padding-top: 25px;
        }

            .compare-bubble .compare-container-toolbar .compare-content .compare-del i {
                font-size: 20px;
                color: #333;
                margin: 0;
            }

    .compare-bubble .compare-container-toolbar .compare-btn {
        width: 100%;
        overflow: hidden;
        margin-top: 13px;
        padding-bottom: 13px;
        display: flex;
        justify-content: space-between;
        flex-flow: row;
    }

        .compare-bubble .compare-container-toolbar .compare-btn .clear-all {
            width: 50%;
            text-align: center;
        }

            .compare-bubble .compare-container-toolbar .compare-btn .clear-all p {
                border: 1px solid #cccccc;
                padding: 2px 15px;
                border-radius: 5px;
                width: 100px;
                margin: auto;
                font-size: 13px;
                font-weight: normal;
            }

        .compare-bubble .compare-container-toolbar .compare-btn .compare-all {
            width: 50%;
            text-align: center;
        }

            .compare-bubble .compare-container-toolbar .compare-btn .compare-all p {
                border: 1px solid var(--accent-bg);
                padding: 2px 15px;
                border-radius: 5px;
                color: var(--accent-bg);
                width: 100px;
                margin: auto;
                font-size: 13px;
                font-weight: normal;
            }

        .compare-bubble .compare-container-toolbar .compare-btn .clear-all p:hover {
            background: #cccccc;
            color: #ffffff;
        }

        .compare-bubble .compare-container-toolbar .compare-btn .compare-all p:hover {
            background: var(--accent-bg);
            color: #f7f7f7;
        }


/*底部版权*/
.footer .footer_infos {
    padding: 50px 0;
    margin: 0 auto;
}


    .footer .footer_infos li {
    }

        .footer .footer_infos li h1 {
            font-size: 16px;
            font-weight: 500;
            line-height: 22px;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .footer .footer_infos li p {
            font-size: 14px;
            font-weight: 300;
            line-height: 2;
            color: #ffffff;
            margin-bottom: 0px;
        }

            .footer .footer_infos li p em {
                width: 12px;
                display: inline-block;
            }

        .footer .footer_infos li a {
            color: #ffffff;
        }

            .footer .footer_infos li a:hover {
                color: #ffffff;
                text-decoration: underline;
            }

    .footer .footer_infos .erweima {
        float: left;
        margin-left: 46px;
        text-align: center;
    }

        .footer .footer_infos .erweima img {
            max-width: 120px;
        }

        .footer .footer_infos .erweima .text {
            line-height: 24px;
            color: #ffffff;
            margin-top: 14px;
            font-size: 13px;
        }

.footer .copyright {
    border-top: 1px solid #243c53;
    padding: 30px 0px;
    flex-wrap: wrap;
}

    .footer .copyright p, .footer .copyright a {
        line-height: 2;
        font-size: 12px;
        color: #ffffff;
        margin-bottom: 0px;
    }

        .footer .copyright a:hover {
            text-decoration: underline;
        }

/*面包屑*/
.breadcrumb {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}

    .breadcrumb span {
        position: relative;
    }

        .breadcrumb span.active {
            font-size: 14px;
            line-height: 2;
            color: #000;
        }

        .breadcrumb span::after {
            /* ri-arrow-right-s-line 对应的 Unicode 编码 */
            content: "\ea6e";
            font-family: "RemixIcon";
            margin: 0 3px;
            color: #999;
        }

        .breadcrumb span:last-child::after {
            content: none; /* 最后一个 span 后面不显示图标 */
        }

    .breadcrumb a {
        color: #999;
        font-size: 14px;
        line-height: 2;
        font-weight: 500;
    }

    .breadcrumb i {
        margin-right: 5px;
        color: #999;
    }


/*产品分类*/
.prowarp {
    padding: 10px 0px;
}

    .prowarp h1 {
        border: none;
        margin: 7px 0px;
        font-size: 28px;
        font-weight: 500;
        border-left: solid 6px var(--accent-bg);
        padding-left: 15px;
    }

        .prowarp h1:first-child ~ p {
            margin-top: 15px;
            text-align: justify;
        }


/* 一排5个 */
.flexlist5 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* 抵消子元素的外边距 */
    padding: 20px 0;
    margin-bottom: 40px;
}

    .flexlist5 li {
        margin: 10px;
        background: white;
        transition: transform 0.3s ease;
        position: relative;
    }

    .flexlist5 li {
        width: calc(20% - 20px); /* 20%宽度 - 左右外边距 */
    }

        .flexlist5 li a {
            display: block;
            text-align: center;
        }

            .flexlist5 li a:first-child {
                display: block;
                text-decoration: none;
                border-radius: 10px;
                background: #F4F5F6;
                color: #333;
                padding: 20px 20px 10px 20px;
            }

                .flexlist5 li a:first-child:hover {
                    box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
                    transform: translate3d(0,-5px,0);
                    -webkit-transform: translate3d(0,-5px,0);
                    transition: all .3s ease;
                }

                .flexlist5 li a:first-child .protitle {
                    height: 42px;
                    margin: 10px 0px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .flexlist5 li a:first-child .protitle h2 {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-line-clamp: 2; /* 限制两行 */
                        -webkit-box-orient: vertical;
                        text-align: center;
                    }

                .flexlist5 li a:first-child img {
                    max-width: 100%;
                }

        .flexlist5 li.spec_element a:first-child {
            padding: 0;
        }

    /* 第一个特殊元素 */
    .flexlist5 .spec_element {
        width: calc(40% - 20px);
    }

        .flexlist5 .spec_element a {
            padding: 0;
            height: 100%;
        }

            .flexlist5 .spec_element a .img-fluid {
                padding: 0;
                width: 100%;
                height: 100%;
                border-radius: 10px;
            }


/* 一排4个 */
.flexlist4 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* 抵消子元素的外边距 */
    padding: 20px 0;
    margin-bottom: 40px;
}

    .flexlist4 li {
        margin: 10px;
        background: white;
        transition: transform 0.3s ease;
        position: relative;
    }

    .flexlist4 li {
        width: calc(25% - 20px); /* 20%宽度 - 左右外边距 */
    }

        .flexlist4 li a {
            display: block;
            text-align: center;
        }

            .flexlist4 li a:first-child {
                display: block;
                text-decoration: none;
                border-radius: 10px;
                background: #F4F5F6;
                color: #333;
                padding: 20px 20px 10px 20px;
            }

                .flexlist4 li a:first-child:hover {
                    box-shadow: 0 1px 2px -2px rgba(0,0,0,.15),0 3px 6px rgba(0,0,0,.12),0 5px 12px 4px rgba(0,0,0,.1);
                    transform: translate3d(0,-5px,0);
                    -webkit-transform: translate3d(0,-5px,0);
                    transition: all .3s ease;
                }

                .flexlist4 li a:first-child .protitle {
                    height: 42px;
                    margin: 10px 0px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .flexlist4 li a:first-child .protitle h2 {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.6;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-line-clamp: 2; /* 限制两行 */
                        -webkit-box-orient: vertical;
                        text-align: center;
                    }

                .flexlist4 li a:first-child img {
                    max-width: 100%;
                }


/*空数据展示*/
.empty-warp {
    width: 100%;
}

    .empty-warp .empty-img-container {
        width: 100%;
        text-align: center;
    }

    .empty-warp .empty-btn-container {
        width: 100%;
        height: 220px;
        text-align: center;
    }

        .empty-warp .empty-btn-container .empty-btn {
            margin: 0 auto;
            cursor: pointer;
            width: 155px;
            height: 45px;
            background: linear-gradient(280deg, rgba(254, 116, 0, 1) 0%, rgba(255, 167, 93, 1) 100%);
            color: #fff;
            font-size: 16px;
            text-align: center;
            line-height: 45px;
            border-radius: 5px;
            transition: background 0.2s ease-in;
        }

    .empty-warp .icon-empty {
        background-image: url(/static/images/empty.png);
        background-size: contain;
        width: 480px;
        height: 320px;
        margin: 50px auto 20px;
    }

        .empty-warp .icon-empty ~ p {
            line-height: 50px;
            font-size: 16px;
            margin-bottom: 30px;
        }

/*筛选项目*/


.men-content {
    width: 100%;
    margin: 50px auto 100px auto;
}


.filter-container {
    /* padding: 20px; */
}

.filter-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    display: flex;
}

    .filter-section:last-child {
        border-bottom: none;
    }

.filter-title {
    display: inline-block;
    width: 100px;
    min-width: 100px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 500;
}

.options {
    display: flex;
    flex-wrap: wrap;
}

    .options
    .option {
        background-color: #f4f5f6;
        padding: 8px 35px;
        margin: 0px 10px 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        max-height: 40px;
        overflow: hidden;
        text-align: center;
        min-width: 138px;
    }

        .options .option:hover,
        .options .option.active {
            color: var(--accent-bg);
            background: #FFF3EA;
        }


/*通用头部*/
.comm-banner {
    background: #000;
}

    .comm-banner .headcontent {
        position: relative;
    }

        .comm-banner .headcontent .headbanner {
            width: 2560px;
            height: 360px;
            max-width: 100%;
            background-size: cover;
            background-position: center center;
            margin: 0 auto;
        }



.comm-head2 {
    background: url(/static/images/comm_hbg.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 65px;
}

.commhul {
    display: flex;
}

    .commhul ul {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .commhul li {
        display: inline-block;
        margin: 0 60px;
        line-height: 61px;
    }

        .commhul li.active {
            color: var(--accent-bg);
            border-bottom: solid 4px var(--accent-bg);
        }

        .commhul li a {
            font-size: 16px;
            color: #fff;
            padding: 0 6px;
        }

            .commhul li.active a,
            .commhul li a:hover {
                color: var(--accent-bg);
            }

/* 头部标题样式 */
.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


    .header-title .gradient-line1 {
        width: 90px;
        height: 2px;
        background: linear-gradient(92deg, rgba(0, 0, 0, 0), #246CAF);
    }

    .header-title .gradient-line2 {
        width: 90px;
        height: 2px;
        background: linear-gradient(92deg, #246CAF, rgba(0, 0, 0, 0));
    }


    .header-title h1 {
        font-size: 28px;
        font-weight: 500;
        margin: 0 10px 0px 20px;
        color: #000;
    }



.xjtip {
    display: block;
}

    .xjtip span {
        font-size: 12px;
        display: inline-block;
        /*background: #e7ecf0;
        color: #002E4B;*/
        background: #ECF5FF;
        color: #3194f8;
        border-radius: 6px;
        padding: 0 12px;
        height: 20px;
        line-height: 20px;
        font-family: AliRegular;
    }
