body {
    line-height: 38px;
}

a {
    color: #000 !important;
    text-decoration: none !important;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
}

p {
    margin: 0 !important;
}

span {
    display: block;
}


/* 滚动框的设置 */

::-webkit-scrollbar {
    width: 6px;
    height: 100%;
    /* background-color: hsl(230deg, 7%, 61%); */
    background-color: #fff;
}


/* 滚动条的设置 */

::-webkit-scrollbar-thumb {
    border: 1px solid rgba(255, 255, 255);
    background-color: #B9081D;
    border-radius: 15px;
    box-sizing: border-box;
}


/* 移动端头部样式 */

.app {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translate(-135%, -30%);
    width: 10%;
    height: 72px;
    min-width: 44px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.app:focus-visible {
    outline: 2px solid #B9081D;
    outline-offset: 4px;
    border-radius: 10px;
}

body.mobile-nav-open {
    overflow: hidden;
}

.app .c1,
.c2,
.c3 {
    width: 34px;
    height: 2px;
    background: #000;
    display: block;
    margin: 10px auto;
    transition: all 277ms ease-in-out;
    position: relative;
}

.app .c2.new {
    opacity: 0;
}

.app .c1.new {
    transform: rotate(-45deg);
    top: 12px;
}

.app .c3.new {
    transform: rotate(45deg);
    top: -12px;
}

.wap-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(5px) !important;
    background-color: rgba(255, 255, 255, 0.5);
    height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.wap-nav dl {
    width: 100%;
    background-color: rgba(255, 255, 255);

}

.wap-nav dl dd {
    margin: 0 auto;
    width: 80%;
}

.wap-nav dl dd ul {
    border-bottom: 1px solid rgba(185, 8, 29, 0.3);
}

.wap-nav dl dd a {
    display: block;
    padding: 10px 0;
    box-sizing: border-box;
    width: 100%;
    color: #000;
    min-height: 44px;
    /* text-align: center; */
    font-size: 16px;
    /* background-color: rgba(255, 255, 255, 0.1); */
}

.wap-nav dl dd.has-subnav > a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wap-nav dl dd.has-subnav > a i {
    margin-left: auto;
    display: block;
    transition: transform 0.2s ease;
}

.nav_two {
    display: none;
}


/* 组件 */

.conainer {
    position: fixed;
    bottom: 35%;
    right: 0%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    /* background: #1463FF; */
    /* border-top-left-radius: 20px; */
    /* border-bottom-left-radius: 20px; */
    opacity: 0.5;
    font-size: 16px !important;
}

.conainer ul li a .fa {
    color: #B9081D;
    font-size: 20px !important;
}

.conainer:hover {
    opacity: 1;
    transition: 0.6s;
}


/* .conainer::before { */


/* content: " "; */


/* position: absolute; */


/* bottom: 0px; */


/* width: 100%; */


/* height: 50%; */


/* z-index: 1; */


/* border-top: 1px solid rgba(255, 255, 255, 0.5); */


/* 背景模糊 */


/* backdrop-filter: blur(5px); */


/* } */

.conainer .color {
    position: absolute;
    filter: blur(200px);
}

.conainer ul {
    position: relative;
    /* display: flex; */
    z-index: 2;
}

.conainer ul li {
    position: relative;
    list-style: none;
    margin: 10px;
}

.conainer ul li a {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* 盒子阴影 */
    box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
    /* 背景模糊 */
    backdrop-filter: blur(2px);
    overflow: hidden;
}

.conainer ul li a:hover {
    transition: all 0.6s;
    /* 沿y轴向上移动 */
    /* transform: translateX(-20px); */
}


/* 扫光动画 */

.conainer ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
    transform: skewX(45deg) translateX(150px);
    transition: all 0.6s;
}


/* .conainer ul li a:hover .fa {
  font-size: 40px !important;
  transition: 0.6s;
} */

.conainer ul li a:hover::before {
    transform: skewX(45deg) translateX(-150px);
}

.phone_two {
    display: none;
}

.phone_box {
    position: absolute;
    top: 50%;
    left: -280%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #B9081D;
    border-radius: 14px;
    display: none;
    color: #B9081D;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    white-space: nowrap;
    transform: translateY(-50%);
    min-width: 230px;
}

.phone_box__content {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    white-space: nowrap;
}

.phone_box__content > .fa {
    font-size: 20px;
}

.phone_box__number {
    color: #B9081D !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    display: inline-block;
}

.header-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 50px;
    color: #B9081D;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-phone i {
    font-size: 22px;
}

.header-phone:hover,
.header-phone:focus-within {
    background-color: rgba(185, 8, 29, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.header-phone__tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    padding: 10px 16px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #B9081D;
    border-radius: 12px;
    color: #B9081D;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.header-phone__tooltip::before,
.header-phone__tooltip::after {
    content: "";
    position: absolute;
    right: 18px;
    border-style: solid;
    border-width: 0 8px 8px 8px;
}

.header-phone__tooltip::before {
    top: -9px;
    border-color: transparent transparent #B9081D transparent;
}

.header-phone__tooltip::after {
    top: -8px;
    border-color: transparent transparent #fff transparent;
}

.header-phone__text {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.header-phone:hover .header-phone__tooltip,
.header-phone:focus-within .header-phone__tooltip {
    opacity: 1;
    transform: translateY(0);
}

.nav .r {
    width: 65%;
}


.nav .l img {
    display: block;
    margin: 0 0 5px 0;
    width: 2.45rem;
}

.nav .r ul {
    width: 100%;
    margin: 0 1rem 0 .625rem !important;
}

.nav .r ul li:nth-child(2)  ,
.nav .r ul li:nth-child(3) ,
.nav .r ul li:nth-child(4) ,
.nav .r ul li:nth-child(5) ,
.nav .r ul li:nth-child(6) ,
.nav .r ul li:nth-child(7)  {
    position: relative;
    /*padding: 0 10px;*/
    /*width: 150px;*/
}

.nav .r ul li:nth-child(2)  .xlk_box,
.nav .r ul li:nth-child(3) .xlk_box,
.nav .r ul li:nth-child(4) .xlk_box,
.nav .r ul li:nth-child(5) .xlk_box,
.nav .r ul li:nth-child(6) .xlk_box,
.nav .r ul li:nth-child(7)  .xlk_box {
    /*position: relative;*/
    /*padding: 0 10px;*/
    /*width: 150px;*/
    width: 150px;
    padding: 0;
    left: -85%;
}

.nav .r ul li:nth-child(6) .xlk_box{
    left: -40%;
}

.nav .r ul li:nth-child(2)  .xlk_box dl, 
.nav .r ul li:nth-child(3) .xlk_box dl,
.nav .r ul li:nth-child(4) .xlk_box dl,
.nav .r ul li:nth-child(5) .xlk_box dl,
.nav .r ul li:nth-child(6) .xlk_box dl,
.nav .r ul li:nth-child(7)  .xlk_box dl {
    width: 100%;
    text-align: center;
}

.nav .r ul li:nth-child(2) .p_box ,
.nav .r ul li:nth-child(3) .p_box ,
.nav .r ul li:nth-child(4) .p_box ,
.nav .r ul li:nth-child(5) .p_box ,
.nav .r ul li:nth-child(6) .p_box ,
.nav .r ul li:nth-child(7) .p_box {
    display: none;
}

.nav_acts .l h4 {
    display: none;
}

.nav_acts .r ul li a {
    height: 60px !important;
    transition: all 0.6s;
}


.nav .r ul li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    border-bottom: 5px solid rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

.nav .r ul li a:hover {
    border-bottom: 5px solid #B9081D;
    transition: all 0.6s;
}

.nav .r ul li .nav_act {
    border-bottom: 5px solid #B9081D;
}

.bannerhead video {
    display: block;
    width: 100%;
}

.bannerhead {
    position: relative;
}

.sb {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bannerhead .swiper-slide {
    position: relative;
}

.bannerhead .text_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    animation: ydtext 2s infinite;
    animation-iteration-count: 1;
    o-animation: ydtext 3s linear infinite;
}

@keyframes ydtext {
    0% {
        opacity: 0;
        transform: translate(-50%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.bannerhead .text_box h4 {
    margin: 0 0 30px 0;
}

.foot_box .top {
    padding: .9375rem 0;
    box-sizing: border-box;
    background: #191B20;
}

.foot_box .top .l {
    color: #fff !important;
}

.foot_box .top .l h4 {
    margin: 0 0 .1875rem 0;
    font-size: 22px !important;
}

.foot_box .top .l img {
    display: block;
    margin: 0 0 .5rem 0;
    width: 4.75rem;
}

.foot_box .top .r {
    display: none;
}

.foot_box .top .r ul li {
    margin: 0 7.5px;
}

.foot_box .bottom dl {
    font-size: 14px !important;
}

.foot_box .bottom dl dt {
    color: #3D3F48;
}

.foot_box .bottom dl dd a {
    color: #8B8C91 !important;
    display: block;
}

.foot_box .bottom dl dd a:hover {
    color: #fff !important;
    transition: all 0.6s;
}

.foot_box .bottom {
    padding: 1.25rem 0;
    box-sizing: border-box;
    /* background: #060000; */
}

.foot_box .bottom .l {
    width: 65%;
}

.foot_box .bottom .r ul li {
    margin: 0 0 .25rem 0;
}

.foot_box .bottom .r ul li h4 {
    color: #8B8C91;
}

.foot_box .bottom .r ul li h5 {
    color: #3D3F48;
}

.por_box {
    padding: .375rem 0;
    box-sizing: border-box;
    /* background: #060000; */
}

.por a {
    display: block;
    text-align: center;
    color: #fff !important;
}

.nav_box {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #FFFFFF;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}



.nav .l h4,
.nav .r ul li a,
.nav .r div {
    font-size: 14px !important;
}

/* .nav_box {
    position: relative;
} */


.xlk_box {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: .75rem 10%;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    display: none;
}

.xlk_box .p_box,
.xlk_box dl {
    width: 30%;
}

.xlk_box dl {
    border-right: 1px solid #D8D8D8;
}

.xlk_box dl:last-child {
    border: none;
}

.xlk_box dl dt {
    font-size: .3rem;
    margin: 0 0 .1875rem 0;
    display: none !important;
}

.xlk_box dl dd {
    margin: 0 0 .125rem 0;
    font-size: 14px;
}

.xlk_box .p_box img {
    display: block;
    width: 100%;
}

.xlk_box {
    display: none;
    /* 默认隐藏 */
    transform: translateY(-10px);
    /* 初始位置向上偏移 */
    opacity: 0;
    /* 初始透明 */
    transition: all 0.3s ease;
    /* 平滑过渡效果 */
    /* position: absolute; */
    /* left: 0; */
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.wap-nav dl dd a i {
    margin: 0 0 0 10px;
}

.banner_ny .sb {
    display: none;
}

.banner_ny img {
    display: block;
    width: 100%;
}

.banner_ny .text_box {
    padding: 0 10%;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
}

.banner_ny .text_box h5::after {
    content: " ";
    display: block;
    margin: 8px 0 6px 0;
    width: 1.8rem;
    height: 5px;
    background: #B9081D;
}

.a_list {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.a_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5rem;
    padding: .4375rem 0;
    box-sizing: border-box;
    font-weight: 290;
    border-bottom: 5px solid rgba(0, 0, 0, 0);
}

.a_list a:hover {
    font-weight: 700;
    border-bottom: 5px solid #B9081D;
    transition: all 0.6s;
}

.a_list .a_act {
    font-weight: 700;
    border-bottom: 5px solid #B9081D;
}

.bk_tit {
    text-align: center;
    text-transform: none;
    color: #3D3F48;
}

.bk_tit h4 {
    margin: 0 0 .1875rem 0;
}

.bk_tit h5 {
    font-weight: 290;
}

.skip_box>a {
    color: #C4C4C4 !important;
}

.skip_box a {
    display: block;
    margin: 0 7.5px;
}

.skip_box>a:hover {
    color: rgba(37, 156, 115, 1) !important;
    transition: all 0.6s;
}

.skip_box ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 7.5px;
    width: 43px;
    height: 43px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #C4C4C4;
    color: #C4C4C4 !important;
}

.skip_box ul li:first-child a,
.skip_box ul li:last-child a {
    width: 80px;
    background: #B9081D;
    color: #fff !important;
    border: 1px solid #B9081D;
}

.skip_box ul li a:hover {
    background: #B9081D;
    color: #fff !important;
    border: 1px solid #B9081D;
    transition: all 0.6s;
}

.skip_box ul .skip_act a {
    background: #B9081D;
    color: #fff !important;
    border: 1px solid #B9081D;
}

.sbbox {
    background-image: url(../image/元成切图6.30/web/首页/e6e6a521f5cf7f583d9d974445aaf13.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #000;
}

@font-face {
    font-family: 'Heavy';
    src: url('./fonts/MiSans-Heavy.otf') format('truetype');
}

.banner_ny .text_box h5 {
    font-family: 'Heavy';
}

.zj ul li::after {
    content: ">";
}

.zj_box {
    padding: .3125rem 0;
    box-sizing: border-box;
}

.zj ul li:last-child::after {
    content: " ";
}

.xlk_box .aaaact {
    display: block !important;
    border: none !important;
}

.ewmpbox {
    display: block;
    width: 100px;
    height: 100px;
    background-color: #fff;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.ewmpbox img {
    display: block;
    width: 100%;
    height: 100%;
}

.foot_box .top .r ul li {
    position: relative;
}

.foot_box .top .r ul li:hover .ewmpbox {
    display: block;
}

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1366px) {
    .nav .l h4 {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1280px) {
    .nav .r ul li>a {
        font-size: 14px;
    }

    .nav .r {
        width: 70%;
    }

    .nav .l h4 {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .nav .r {
        width: 80%;
    }
}

@media screen and (max-width: 980px) {

    .banner_ny .text_box {
        text-align: center;
    }

    .banner_ny .text_box h5::after {
        margin: 10px auto;
        width: 100px;
        height: 2px;
    }

    .banner_ny .text_box h6 {
        font-size: 12px !important;
    }

    .kuang {
        /* position: absolute; */
        /* left: 0;
        bottom: 144px; */
        padding: 20px 0;
        box-sizing: border-box;
        width: 100%;
        background-color: #B9081D;
        color: #fff;
    }

    .kuang a {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0 0 0;
        width: 100%;
        text-align: center;
        background-color: #fff;
        color: #B9081D !important;
        border-radius: 10px 10px 10px 10px;
    }

    .kuang .mobile-call-btn {
        width: auto;
        padding: 5px 10px;
        margin: 12px auto 0;
        gap: 8px;
        border-radius: 999px;
        font-size: 13px !important;
        line-height: 1.4;
    }

    .kuang .mobile-call-btn i {
        margin: 0 6px 0 0;
        font-size: 16px;
    }

    .kuang .mobile-call-btn p {
        margin: 0 !important;
    }

    .wap-nav dl dd a {
        display: flex;
    }

    .wap-nav dl dd a>img {
        display: block;
        margin: 0 10px 0 0;
        width: 22px;
        height: 22px;
        display: none;
    }

.dd_act>a,
.dd_open>a {
    display: flex;
    padding: 10px 20px !important;
    box-sizing: border-box;
    color: #fff !important;
    background-color: #B9081D;
    border-radius: 10px 10px 10px 10px;
}

.dd_act>a img,
.dd_open>a img {
    display: block !important;
}

.dd_open.has-subnav > a i {
    transform: rotate(90deg);
}

    .wap-nav dl dd ul li a {
        color: #8B8C91 !important;
    }

    .wap-nav dl dd ul .ddli_act a {
        color: #000 !important;
    }

    .sb {
        display: none;
    }

    .conainer ul {
        display: flex;
    }

    .conainer {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 100%;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .phone_box {
        left: auto;
        right: -10px;
        top: 45%;
        padding: 10px 12px;
        min-width: 190px;
        transform: translateY(-50%);
    }

    .phone_box__content > .fa {
        font-size: 18px;
    }

    .phone_box__number {
        font-size: 15px;
    }

    .phone {
        display: none;
    }

    .phone_two {
        display: block;
    }

    .nav .r {
        display: none;
    }

    .nav_two {
        display: block;
    }

    .nav {
        height: 60px;
    }

    .nav .l img {
        width: 120px;
        margin: 0;
    }

    .nav .l h4 {
        display: none;
    }

    body {
        line-height: 1.5;
    }

    .bannerhead {
        margin: 60px 0 0 0;
    }

    .foot_box .top .l,
    .foot_box .top .r {
        width: 100%;
        text-align: center;
    }

    .foot_box .top>.container>div {
        flex-wrap: wrap;
    }

    .foot_box .top .l img {
        width: 145px;
        margin: 0 auto;
    }

    .foot_box .top .r ul {
        margin: 10px 0 0 0 !important;
        justify-content: center;
    }

    .foot_box .top .l h4 {
        margin: 10px 0;
    }

    .foot_box .bottom .l {
        display: none;
    }

    .foot_box .bottom .r {
        width: 100%;
    }

    .foot_box .bottom .r ul li {
        text-align: center;
    }

    .wap-nav dl dd a i {
        display: none;
    }

    .wap-nav dl dd.has-subnav > a i {
        display: block;
    }

    .skip_box ul li a {
        width: 27px;
        height: 27px;
    }

}

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

@media screen and (max-width: 640px) {}

@media screen and (max-width: 375px) {}
