:root {
    --hot: #2845a4;
    --hot2: #082a96;
    --hot-9: rgb(40 69 164 / 90%);
    --fuzhu: #ffa900;
    --color0: #fff;
    --color0-2: rgb(255 255 255 / 20%);
    --color0-7: rgb(255 255 255 / 70%);
    --color1: #333;
    --color2: #555;
    --color3: #666;
    --color4: #999;
    --color5: #ddd;
    --color6: #0f84af;
    --color7: #ff932e;
    --red: #d12121;
    --redtm: #e7b4b4;
    /* --onbg: #f5faff; */
    --onbg: #fff6e6;
    --onbg2: #ffe6b6;
    --bgdark: #333958;
    --bglight: #f0f0f0;
    --grad: linear-gradient(211.42deg, #34aeaf 24.35%, #175dbf 100.8%);
    --shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    --shadow2: 0px 0px 20px rgba(0, 142, 169, 0.08);
    --transition: all .2s cubic-bezier(0.19, 0.68, 0.49, 1.21);
    --transition2: all .3s linear;
}

/* 常用颜色 */
.hot {
    color: var(--hot);
}

.c0 {
    color: var(--color0);
}

.c0-7 {
    color: var(--color0-7)
}

.c1 {
    color: var(--color1);
}

.c2 {
    color: var(--color2);
}

.c3 {
    color: var(--color3);
}

.c4 {
    color: var(--color4);
}

.c5 {
    color: var(--color5);
}

.c6 {
    color: var(--color6);
}

.c7 {
    color: var(--color7);
}

.bg_hot {
    background: var(--hot);
}

.bg_onbg {
    background: var(--onbg);
}

.bg_jb {
    background: linear-gradient(106.76deg, #4dc0cb -0.48%, rgb(74 194 201 / 0%) 100%);
}

.bg-light {
    background: var(--bglight);
}

.grad-bg {
    background: var(--grad);
}

.hide {
    display: none;
}

.show {
    display: block;
}

/* .more-btn {
    margin: 0 auto;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--hot);
    padding: 0.6rem 2rem;
    border: 1px solid var(--hot);
    border-radius: 100px;
    box-shadow: 0 4px 1.875rem rgba(0, 0, 0, 0.1);
} */

a:hover {
    color: var(--hot);
}

/* .more-btn:hover {
    background: var(--hot);
    color: #fff;
} */

/* 阿里字体图标初始化 */
.icon,
.iconfont {
    font-size: 3.75rem;
    color: var(--hot);
    line-height: 1;
}

/* bootstrap最大宽度修改 */
/* @media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
} */

/* bootstrap字号错误修正 */
.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important;
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important;
}

.fs-4 {
    font-size: calc(1.2rem + .5vw) !important;
}

.fs-5 {
    font-size: calc(1.1rem + .2vw) !important;
    /* line-height: 1.8; */
}

.fs-6 {
    font-size: 1.1rem !important;
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw);
}

.text-justify {
    text-align: justify;
}


/* 我的字号 */
@media (min-width: 1200px) {

    .h1,
    h1 {
        font-size: 3rem;
    }
}

/* 背景铺满div */
.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 背景图片最大 */
.bg-contain {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

/* flex */
.flex-wrap-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

/* 小屏端调整 */
@media (max-width: 992px) {
    .mt-4 {
        margin-top: 0.5rem !important;
    }

    .mt-5 {
        margin-top: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .px-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .p-5 {
        padding: 2rem !important;
    }

    .pt-5 {
        padding-top: 2rem !important;
    }

    .pb-5 {
        padding-bottom: 2rem !important;
    }

    .ps-5 {
        padding-left: 2rem !important;
    }

    .pe-5 {
        padding-right: 2rem !important;
    }

    .m_show {
        display: block !important;
    }

    .pc_show {
        display: none !important;
    }

}

/* pc mob show */
@media (min-width: 992px) {
    .m_show {
        display: none !important;
    }

    .pc_show {
        display: block !important;
    }
}

/* img最大宽度不超过100% */
img {
    max-width: 100%;
}

/* banner */
.index-banner,
.ny-banner {
    height: 500px;
}

#swiper_banner {
    margin-top: 158px;
}

/* 导航设置 */
.pc_navwrap {
    /* background: #fff; */
    box-shadow: var(--shadow);
    position: fixed;
    z-index: 1000;
    padding: 0 !important;
}


.head-wrap {
    width: 92%;
    /* padding-left: 5rem;
    padding-right: 5rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 导航高亮 */
.nav_active {
    color: var(--hot) !important;
    /* font-weight: bold; */
}

.navli_active {
    background: rgb(255 255 255 / 30%);
}

/* 小屏导航小按钮 */
/* 小于1200才显示按钮 */
.mob-nav {
    display: none;
}

.navbar-toggler {
    background-color: var(--hot);
    height: 3rem;
}

.res-btns>a {
    height: 3rem;
    line-height: 3.15rem;
    width: 3rem;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
}

.brd-rd5 {
    border-radius: 5px;
}

nav ul li {
    -webkit-transition: var(--transition2);
    -o-transition: var(--transition2);
    transition: var(--transition2)
}

nav ul ul {
    -webkit-transition: all 600ms cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition: all 600ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-transition: all 600ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-transition: all 600ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    transition: all 600ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275)
}

nav ul li {
    position: relative;
    font-weight: 500;
    color: var(--color2)
}

.memu-level1,
.menu-item-has-children {
    flex: 1;
    text-align: center;
}

.memu-level1:hover,
.menu-item-has-children:hover {
    background: var(--color0-2);
}

.memu-level1 a,
.menu-item-has-children a {
    line-height: 50px;
}

nav ul li a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 18px;

}

nav ul li a:hover {
    color: #fff;
}

nav ul ul {
    position: absolute;
    background-color: rgb(255 255 255 / 80%);
    border-radius: 6px;
    min-width: 17rem;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .1);
    padding: 1.25rem 0
}

nav ul ul>li>a {
    padding: .3rem 2rem
}

nav ul ul>li:hover>a,
nav ul ul>li.active>a,
nav ul ul>li>a:focus {
    /* background-color: var(--color6); */
    color: var(--hot)
}

.submenu_li {
    background: none !important;
}

.submenu_title {
    line-height: 2rem !important;
    color: #555;
}

nav ul ul>li:first-child>a {
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0
}

nav ul ul>li:last-child>a {
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px
}

nav ul li.menu-item-has-children:hover>ul {
    opacity: 1;
    visibility: visible;
    left: 0
}

nav ul ul ul {
    left: 100%;
    top: 0
}

nav ul ul li.menu-item-has-children:hover>ul {
    left: 100%
}

nav ul ul>li.menu-item-has-children:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 0;
    line-height: 3.125rem
}

.nav-btns-cont-wrap nav+.btn-cont {
    padding-left: 2rem
}

/* 搜索 */
.search input {
    border-radius: 8px;
    padding: 0 10px;
    background: #ffffff;
    font-size: 15px;
}

.search_btn {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    cursor: pointer;
    background: url(../images/ico_search.png) no-repeat center center var(--hot);
}



/* 底部 */
.ewm_p {
    font-size: 0.9rem;
    color: var(--color4);
}

.banquan {
    border-top: 1px solid #c1d7d5;
}

.banquan_p>span {
    font-size: 0.90rem;
    color: var(--color4);
}

/* 分页样式 */
.page-link:hover {
    color: var(--hot);
}

.page-item.active .page-link {
    color: var(--hot);
    background-color: #e9ecef
}

.page-link {
    color: #6c757d;
}

.page-link:focus {
    color: var(--hot);
    box-shadow: none;
}




/* foot */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.links li {
    padding: 8px 27px;
    background: var(--color0-2);
}

.links li:hover {
    background: #fff;
}


.links li:hover .link_name {
    color: var(--color3);
}


.footer_span {
    font-size: .95rem;
    /* line-height: 1.5; */
}

.foot_bq {
    /* line-height: 1.5; */
    font-size: .9rem;
}

.foot_sm {
    font-size: .9rem;
}

@media (max-width: 768px) {}

@media (min-width: 992px) {}

@media (max-width: 992px) {

    .index-banner,
    .ny-banner {
        height: 12rem !important;
    }

    #swiper_banner {
        margin-top: 70px !important;
    }

    .submenu_title {
        color: rgb(255 255 255 / 70%) !important;
    }

    .m_navwrap {
        position: fixed;
        z-index: 9999;
    }

    .navbar-toggler {
        width: 3rem;
        padding: 0rem .5rem;
        float: right;
    }


    .mob-nav {
        display: block;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }


    /* 小屏时导航 */
    .mobnav-ul {
        position: fixed;
        background: var(--hot-9);
        width: 100%;
        height: 100vh;
        padding: 70px 2rem 1rem;
        text-align: center;
        z-index: 1000;
    }

    .mobnav-ul>li {
        border-bottom: 1px solid var(--color0-2);
    }

    .memu-level1:hover,
    .menu-item-has-children:hover {
        background: none !important;
    }

    .menu-item-has-children>ul>li {
        /* border-bottom: 1px dashed rgba(255, 255, 255, .2); */
    }

    .mobnav-ul>li>a {
        color: #fff;
        font-size: 1.15rem;
        /* line-height: 3; */
    }


    .submenu_title {
        font-size: 1rem !important;
    }

    /* foot */
    .links li {
        padding: 5px 15px;
    }

    .foot_info {
        flex-direction: column;
    }

    .footer_p {
        text-align: center;
    }

    .foot_ul {
        display: block !important;
    }

    .foot_li {
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 1rem;
        padding: 0 !important;
    }

    .foot_li>div {
        text-align: center;
    }

    .foot_li>img {
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 1rem;
    }

    .footer_ewm {
        margin: 1.5rem auto;
    }

    .icp {
        flex-direction: column;
    }

}

@media (min-width: 992px) {}

@media (max-width: 1200px) {}

@media (min-width: 1200px) {}

@media (max-width: 1400px) {}


.owl-carousel .owl-stage,
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}

.owl-carousel .owl-item img {
    width: auto !important;
    height: 40rem;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-dots {
    display: none !important;
}

.owl-dot.active span {
    background-color: var(--red) !important;
}