.header {
    font-size: 2rem;
    font-family: var(--font-family-P-B);
    width: 100%;
    height: 10rem;
    color: #333;
    text-align: center;
    background: #fff;
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e2e2e2
}

.header img {
    max-width: 100%;
    max-height: 100%
}

.header .mask {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vw;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.header a {
    color: #333
}

.header>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    max-width: 172rem
}

.header .logo {
    z-index: 1;
    height: 6rem;
    float: left;
    display: block;
    position: relative;
    top: 2rem;
    left: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

.header .logo img {
    vertical-align: middle;
    position: relative
}

.header .other {
    height: 10rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 13.5rem;
    -webkit-transition: all .5s;
    transition: all .5s
}

.header .other .otherC {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    float: right
}

.header .other .line {
    width: 1px;
    height: 1.4rem;
    background: rgba(157, 157, 157, 0.6);
    margin-left: 1.5rem;
    margin-right: 1.5rem
}

.header .searchDiv {
    width: 20rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 1rem;
    position: relative
}

.header .searchDiv input[type="text"] {
    width: 100%;
    border-radius: 1.8rem;
    line-height: 3.4rem;
    height: 3.6rem;
    padding: 0 3.5rem 0 1.5rem;
    background: #fff;
    border: 0.1rem #ffffff solid
}

.header .searchBtn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    cursor: pointer;
    z-index: 1
}

.header .searchBtn .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.header .searchBtn svg {
    fill: #9d9d9d;
    width: 2.4rem;
    height: 2.4rem;
    margin: auto
}

.header .searchBtn:hover svg {
    fill: var(--main-color)
}

.header .language {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: .3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 3.6rem;
    font-size: 1.8rem;
    color: #666;
    position: relative;
    z-index: 10;
    font-family: var(--font-family-P-R)
}

.header .language>a {
    color: #666;
    height: 3.6rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: arial;
    position: relative;
    margin-left: 0.5rem;
    margin-right: 0.5rem
}

.header .language>a:hover {
    color: var(--main-color)
}

.header .language .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    margin-right: .3rem
}

.header .language .icon img {
    width: 2.4rem;
    height: 2.4rem
}

.header .language .icon svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: #666
}

.header .language .drop {
    opacity: 0;
    visibility: hidden;
    font-size: 1.6rem;
    background: #fff;
    width: 13rem;
    line-height: 4rem;
    text-align: center;
    border-radius: 0.5rem;
    padding: 1rem 0;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 1rem;
    display: none;
    -webkit-transition: .5s;
    transition: .5s;
    color: #333
}

.header .language .drop::after {
    content: "";
    border: 0.8rem solid transparent;
    border-bottom-color: #fff;
    width: 0;
    height: 0;
    margin: 0 auto;
    position: absolute;
    top: -1.6rem;
    left: 0;
    right: 0
}

.header .language .drop a {
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem
}

.header .language .drop a:hover {
    background: #eee;
    text-decoration: none
}

.header .language .drop img {
    width: 3rem;
    height: auto;
    margin-right: 1rem
}

.header .language .arrow {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 1rem;
    position: relative
}

.header .language .arrow::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.1rem #ffffff solid;
    border-bottom: 0.1rem #ffffff solid;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: -0.2rem
}

.header .language:hover .drop {
    opacity: 1 !important;
    visibility: visible;
    display: block !important;
    margin-top: 0
}

.header .btn-1 {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 3rem;
    font-family: var(--font-family-P-R);
    min-width: 17rem;
    line-height: 4rem;
    padding: 0 1rem;
    background: var(--main-color);
    margin-left: 2.1rem;
    position: relative
}

.header .btn-1::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6
}

.header .btn-1:hover::before {
    -webkit-animation: shine 1.5s ease-out infinite;
    animation: shine 1.5s ease-out infinite;
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

@media screen and (max-width:1300px) {
    .header .other {
        padding-left: 2rem
    }
}

@media screen and (max-width:1200px) {
    .header {
        background: #fff;
        font-size: 14px;
        height: 60px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0
    }

    .header .logo {
        height: 38px;
        top: 11px
    }

    .header>.container {
        width: 100%;
        max-width: 100%;
        height: 60px
    }

    .header .other,
    .header .common-nav {
        display: none
    }

    .header .navPhoneBtn {
        display: block;
        right: 5vw
    }
}

.common-nav {
    margin-left: auto;
    display: inline-block;
    vertical-align: top;
    text-align: center
}

.common-nav>.listNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.common-nav>.listNav>li {
    text-align: center;
    float: left;
    position: relative
}

.common-nav>.listNav>li.li-static {
    position: static
}

.common-nav>.listNav>li>a {
    font-size: 2rem;
    font-weight: normal;
    height: 10rem;
    padding: 3.4rem 3.5rem;
    line-height: 3rem;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.common-nav>.listNav>li>a>span {
    display: block;
    overflow: hidden;
    height: 3rem;
    line-height: 3rem;
    position: relative
}

.common-nav>.listNav>li>a .txt-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    position: relative
}

.common-nav>.listNav>li>a .txt-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    position: relative
}

.common-nav>.listNav>li:hover>a .txt-1 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav>.listNav>li:hover>a .txt-2 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav>.listNav>li.active>a>span::after {
    width: 100%
}

.common-nav>.listNav>li.active>a .txt-1 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav>.listNav>li.active>a .txt-2 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav .mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vw;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.common-nav .active .mask {
    display: block
}

.common-nav .child {
    width: 150%;
    font-size: 1.6rem;
    color: #333333;
    text-align: center;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #333
}

.common-nav .child a {
    color: #333
}

.common-nav .child .list {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    overflow: hidden;
    position: relative
}

.common-nav .child .list li {
    width: 100%;
    padding-bottom: 0rem;
    float: left;
    display: block
}

.common-nav .child .list li:last-child {
    padding-bottom: 0
}

.common-nav .child .list a {
    width: 100%;
    display: block;
    color: #333;
    font-size: 1.6rem;
    line-height: 3rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-family-P-R);
    position: relative
}

.common-nav .child .list a:hover {
    color: var(--main-color)
}

.common-nav .child.show {
    -webkit-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%)
}

.common-nav>.listNav>li:nth-child(2) .child {
    width: 200%
}

.common-nav>.listNav>li:nth-child(3) .child {
    width: 270%
}

.common-nav>.listNav>li:nth-child(4) .child {
    width: 210%
}

@media screen and (max-width:1023px) {
    .common-nav {
        display: none
    }
}

.navPhoneBtn {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 36px;
    text-align: right;
    display: none
}

.navPhoneBtn span {
    display: block;
    width: 20px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: var(--main-color);
    border-radius: 3px;
    z-index: 1;
    -webkit-transform-origin: 20px;
    transform-origin: 20px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, width 0.5s, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, width 0.5s, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1)
}

.navPhoneBtn span:nth-last-child(2) {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.navPhoneBtn span:last-child {
    margin-bottom: 0
}

.navPhoneBtn.close,
.navPhoneBtn.closeMember {
    opacity: 1;
    z-index: 10
}

.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
    width: 0;
    opacity: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: width .5s;
    transition: width .5s
}

.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
    margin-bottom: 0
}

@media screen and (max-width:1023px) {
    .navPhoneBtn {
        display: block
    }
}

.common-navM .mask {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

.common-navM .navMCon {
    background-color: #f3f3f3;
    width: 85%;
    min-width: 140px;
    max-width: 440px;
    height: 100%;
    border-left: 1px rgba(0, 0, 0, 0.1) solid;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 2;
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    right: auto;
    left: -100%;
    -webkit-transition: all .5s;
    transition: all .5s
}

.common-navM .navMWrap {
    overflow-y: auto;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.common-navM.open .mask {
    display: block
}

.common-navM.open .closeBtn {
    display: block
}

.common-navM.open .navMCon {
    left: 0
}

.common-navM .closeBtn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: var(--main-color);
    color: #fff;
    position: absolute;
    z-index: 999;
    right: -24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.common-navM .closeBtn:before,
.common-navM .closeBtn:after {
    content: "";
    display: block;
    background: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.common-navM .closeBtn:before {
    width: 16px;
    height: 2px
}

.common-navM .closeBtn:after {
    width: 2px;
    height: 16px
}

.common-navM .titleBig {
    text-align: center;
    padding: 10px 0;
    display: none
}

.common-navM .navMWrap>.list em {
    font-style: initial
}

.common-navM .navMWrap>.list .title {
    padding: 10px 0;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
    position: relative
}

.common-navM .navMWrap>.list .title .icon {
    width: 40px;
    height: 40px;
    margin: auto;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.common-navM .navMWrap>.list .title .icon:before,
.common-navM .navMWrap>.list .title .icon:after {
    content: "";
    margin: auto;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.common-navM .navMWrap>.list .title .icon:before {
    width: 10px;
    height: 10px;
    border-top: 1px #aaa solid;
    border-right: 1px #aaa solid
}

.common-navM .navMWrap>.list .title em {
    font-style: initial
}

.common-navM .navMWrap>.list .has .title .icon {
    display: block
}

.common-navM .navMWrap>.list .active>.title .icon:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.common-navM .navMWrap>.list>li>.title {
    font-weight: 700;
    font-size: 14px
}

.common-navM .navMWrap>.list>li>.child>.list>li {
    text-indent: 24px;
    font-size: 14px
}

.common-navM .navMWrap>.list>li>.child>.list>li>.child {
    font-size: 14px
}

.common-navM .navMWrap>.list>li>.child>.list>li>.child .title {
    padding-left: 20px
}

.common-navM .navMWrap>.list>li>.child>.list>li>.title {
    position: relative
}

.common-navM .navMWrap>.list>li>.child>.list>li>.title:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 26px;
    left: 10px
}

.common-navM .navMWrap>.list .tb {
    width: 20px;
    height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: 7px;
    left: 0
}

.common-navM .child {
    padding: 0 0 20px 0;
    display: none;
    position: relative
}

.common-navM .child a {
    color: #666;
    display: block;
    line-height: 28px;
    padding: 5px 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: relative
}

.common-navM .child a:hover {
    color: #000;
    margin-left: 10px
}

.common-navM .mSearch {
    padding: 10px 0;
    text-align: left;
    overflow: hidden;
    border-bottom: #f3f3f3 1px solid;
    position: relative
}

.common-navM .mSearch .btn {
    width: 26px;
    height: 26px;
    font-size: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px
}

.common-navM .mSearch .btn .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: top
}

.common-navM .mSearch input {
    height: 40px;
    line-height: 38px;
    border: 0;
    vertical-align: middle;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
    transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
    opacity: 1;
    width: 100%;
    padding: 5px 40px 5px 15px;
    border-radius: 2px;
    font-size: 14px;
    background-color: #fff;
    position: static;
    left: 0;
    right: 0
}

.common-navM .other {
    padding: 10px
}

.common-navM .languageBtn {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0;
    column-gap: 0
}

.common-navM .languageBtn>div {
    width: auto
}

.common-navM .languageBtn .col-2 {
    width: 50%
}

.common-navM .languageBtn .col-3 {
    width: 33.33333333%
}

.common-navM .languageBtn .col-4 {
    width: 25%
}

.common-navM .languageBtn .col-5 {
    width: 20%
}

.common-navM .languageBtn .col-6 {
    width: 16.66666667%
}

.common-navM .languageBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    border: 1px #eee solid;
    margin-right: -1px;
    margin-top: -1px;
    background: #fff
}

.common-navM .languageBtn a img {
    height: 16px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 10px
}

#searchPopup {
    height: 100%;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999
}

#searchPopup .transparent {
    display: none;
    position: fixed;
    z-index: 9;
    top: 0;
    margin: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3)
}

#searchPopup .searchBox {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: -1;
    top: 100px;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    top: 40%
}

#searchPopup .searchBox.fadeIn {
    top: 50%;
    opacity: 1;
    z-index: 999
}

#searchPopup .searchBox .container {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    text-align: right
}

#searchPopup .searchBox input {
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #333;
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 60px;
    line-height: 58px;
    -webkit-transition: .5s;
    transition: .5s
}

#searchPopup .searchBox input:focus {
    color: #000;
    -webkit-box-shadow: 0 0 0 1px var(--main-color) inset;
    box-shadow: 0 0 0 1px var(--main-color) inset
}

#searchPopup .searchBox .btn {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: 60px;
    width: 60px;
    background: var(--main-color);
    text-align: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#searchPopup .searchBox .btn svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

#searchPopup .searchBox .btn:hover {
    opacity: .8
}

#searchPopup .searchBox .close {
    display: none
}

#searchPopup .searchBox2.fadeIn {
    top: 95px
}

@media screen and (max-width:1023px) {
    #searchPopup .searchBox .container {
        width: 100%
    }

    #searchPopup .searchBox input {
        width: 100%
    }

    #searchPopup .searchBox .btn {
        right: 15px
    }

    #searchPopup .searchBox .btn svg {
        width: 24px;
        height: 24px
    }
}

.banner {
    position: relative;
    z-index: 100;
    text-align: center
}

.banner .pc img,
.banner .ph img {
    display: block
}

.banner .ph {
    display: none
}

.banner .box {
    position: relative;
    overflow: hidden
}

.banner .box .boximg {
    display: inline-block;
    position: relative
}

.banner .box .boximg0:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    background: url(../images/bannerbj.png) no-repeat;
    background-size: cover
}

.common-btn {display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 3rem;
    font-family: var(--font-family-P-R);
    min-width: 18rem;
    line-height: 4rem;
    padding: 0 1.5rem;
    background: var(--main-color);
    position: relative;
}


.common-btn a{
    color: #fff;
}

.banner .box .text {
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 999;
    top: 45%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
    position: absolute
}

.banner .box .text .item {
    width: 50%;
    color: #fff;
    position: relative;
    z-index: 1000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left
}

.banner .box2 .text .item {
    width: 100%;
    text-align: center
}

.banner .box .text .item .title {
    font-size: 4.2rem;
    text-shadow: 1px 1px 2px #000;
    font-family: var(--font-family-O-B);
    font-weight: normal;
    line-height: 1.3;
    -webkit-animation: 1.5s ease fadeInLeft2;
    animation: 1.5s ease fadeInLeft2
}
.banner .box2 .text .item .title {
    text-shadow: 5px 5px 10px #f6611e;
}


.banner .box .text .item .banner-box {
    margin-top: 5.2rem
}

.banner .box .text .item .banner-box li {
    width: 50%;
    float: left;
    font-family: var(--font-family-P-R);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    -webkit-animation: 1.5s ease fadeInUp2;
    animation: 1.5s ease fadeInUp2
}

.banner .box .text .item .banner-box li .shuzi01 .counter {
    font-family: var(--font-family-O-R);
    font-size: 4.8rem
}

.banner .box .text .item .banner-box li .shuzi01 i {
    font-style: normal;
    font-family: var(--font-family-O-R);
    font-size: 4.8rem;
    font-weight: bold;
    padding-right: 2rem
}

.banner .swiper-pagination {
    bottom: 4rem;
    width: 100%;
    text-align: center;
    position: absolute
}

.banner .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
    margin: 0 0.6rem;
    position: relative;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color)
}

@media (max-width:1200px) {
    .banner .box .text .item {
        width: 100%
    }

    .banner .box .text .item .title {
        font-size: 23px
    }

    .banner .box .text .item .banner-box li {
        font-size: 15px
    }

    .banner .box .text .item .banner-box li .shuzi01 i,
    .banner .box .text .item .banner-box li .shuzi01 .counter {
        font-size: 28px
    }
}

@media (max-width:1023px) {
    .banner .box .pc {
        display: none
    }

    .banner .box .ph {
        display: block
    }

    .banner .box .text .item .banner-box {
        display: none
    }
}

.hometitle {
    font-size: 4.6rem;
    color: var(--sub-color-0);
    font-family: var(--font-family-O-B);
    text-transform: uppercase;
    line-height: 1.2
}

@media (max-width:1023px) {
    .hometitle {
        font-size: 23px
    }
}

.morebtn {
    display: inline-block;
    overflow: hidden
}

.morebtn a,
.morebtn p {
    display: block;
    width: 14rem;
    line-height: 4.8rem;
    background: var(--main-color);
    border-radius: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif
}

.morebtn a span,
.morebtn p span {
    display: block;
    position: relative;
    z-index: 3
}

.morebtn a:before,
.morebtn p:before {
    left: 0;
    top: 0;
    content: "";
    width: 0%;
    height: 100%;
    z-index: 1;
    position: absolute;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    background: rgba(255, 255, 255, 0.1)
}

.morebtn a:hover:before,
.morebtn p:hover:before {
    width: 100%
}

.home-about {
    padding: 13rem 0;
    overflow: hidden
}

.home-about .left {
    width: 57%;
    float: left
}

.home-about .left .year {
    font-size: 1.6rem;
    color: #8a8a8a;
    margin-bottom: 1rem
}

.home-about .left .info {
    font-size: 2rem;
    color: #333;
    line-height: 4rem;
    margin-top: 4rem;
    margin-bottom: 6rem
}

.home-about .right {
    width: 36.3%;
    float: right;
    position: relative;
    z-index: 66;
    overflow: hidden
}

.home-about .right .list li .pic {
    position: relative;
    overflow: hidden
}

.home-about .right .list li .pic img {
    border-radius: 2rem
}

.home-about .right .list li .pic:after {
    padding-bottom: 80.61420345%
}

.home-about .right .swiper-pagination {
    bottom: 10px;
    width: 100%;
    text-align: center;
    position: absolute
}

.home-about .right .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
    margin: 0 0.6rem;
    position: relative;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s
}

.home-about .right .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color)
}

@media (max-width:1023px) {
    .home-about {
        padding: 40px 0
    }

    .home-about .left {
        width: 100%;
        float: none;
        margin-bottom: 20px
    }

    .home-about .left .year {
        font-size: 14px
    }

    .home-about .left .info {
        font-size: 15px;
        line-height: 28px;
        margin-top: 15px;
        margin-bottom: 30px
    }

    .home-about .right {
        margin: 0 auto;
        float: none
    }
}

@media (max-width:767px) {
    .home-about .right {
        width: 100%
    }
}

.home-product {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 12.8rem
}

.home-product .hometitle {
    text-align: center
}

.home-product .waves {
    opacity: .3;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50vh
}

.home-product .waves canvas {
    height: 50vh !important
}

.home-product .menuTabs {
    padding-bottom: 5rem;
    position: relative;
    padding-top: 6rem
}

.home-product .morebtn {
    margin: 0 auto;
    text-align: center;
    width: 100%
}

.home-product .tabs {
    margin-bottom: 5rem
}

.home-product .swiper-button-next,
.home-product .swiper-button-prev {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #f5f5f8;
    color: #333;
    font-size: 1.6rem;
    display: none
}

.home-product .swiper-button-next::after,
.home-product .swiper-button-prev::after {
    font-size: 1.6rem
}

.home-product .swiper-button-next:hover,
.home-product .swiper-button-prev:hover {
    background: var(--main-color);
    color: #ffffff
}

.home-product .swiper-button-prev {
    left: 3.125%
}

.home-product .swiper-button-next {
    right: 3.125%
}

.home-product .listMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.home-product .listMenu li {
    width: 16.66666667%
}

.home-product .listMenu .box {
    display: block;
    text-align: center;
    cursor: pointer;
    padding: 2rem 0;
    position: relative;
    z-index: 4
}

.home-product .listMenu .box::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    z-index: -1;
    /*-webkit-transition:.5s;transition:.5s;*/
    border-radius: 2rem;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05)
}

.home-product .listMenu .bg-logo {
    width: 100%;
    height: 8rem;
    opacity: .11;
    position: absolute;
    bottom: -5rem;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.5);
    transform: translateX(-50%) scale(0.5);
    -webkit-transition: .5s;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.home-product .listMenu .icon {
    display: block;
    width: 8rem;
    height: 5rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 1.3rem
}

.home-product .listMenu .title {
    color: #222222;
    font-size: 1.8rem;
    height: 5.3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2
}

.home-product .listMenu .box:hover .title {
    color: #222222
}

.home-product .listMenu .box:hover .bg-logo {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1)
}

.home-product .listMenu .active .box::after,
.home-product .listMenu .swiper-slide-thumb-active .box::after {
    height: 100%;
    bottom: 0;
    border: 2px solid var(--main-color);
    border-radius: 2rem
}

.home-product .listMenu .active .title,
.home-product .listMenu .swiper-slide-thumb-active .title {
    color: #222222
}

.home-product .listMenu .active .bg-logo,
.home-product .listMenu .swiper-slide-thumb-active .bg-logo {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1)
}

.home-product .conTabs {
    overflow: hidden
}

.home-product .conTabs .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.8rem;
    margin-right: -0.7rem
}

.home-product .conTabs .list>li {
    width: 25%;
    padding: 0 0.7rem 1.5rem 0.8rem
}

.home-product .conTabs .list .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f4f4f6;
    padding: 2.2rem 5rem 5rem 5rem
}

.home-product .conTabs .list .pic {
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative
}

.home-product .conTabs .list .pic::after {
    content: "";
    display: block;
    padding-bottom: 73.33333333%
}

.home-product .conTabs .list .pic img {
    -webkit-transition: .5s;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.home-product .conTabs .list .title {
    font-family: var(--font-family-P-B);
    font-size: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-bottom: .5rem;
    color: var(--sub-color-2)
}

.home-product .conTabs .list .info {
    color: #474747;
    font-size: 1.6rem;
    line-height: 2.8rem;
    height: 5.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-P-R)
}

.home-product .conTabs .list .btnDiv a,
.home-product .conTabs .list .btnDiv span {
    font-family: var(--font-family-P-B);
    display: inline-block;
    font-size: 1.4rem;
    color: var(--main-color);
    position: relative
}

.home-product .conTabs .list .btnDiv a::after,
.home-product .conTabs .list .btnDiv span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--main-color)
}

.home-product .conTabs .list .box:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.home-product .conTabs .list .box:hover .title {
    color: var(--main-color)
}

.home-product .item.show {
    display: block
}

@media screen and (max-width:1023px) {
    .home-product {
        padding: 20px 0 40px 0
    }

    .home-product .menuTabs {
        padding: 30px 0 20px 0
    }

    .home-product .swiper-button-next,
    .home-product .swiper-button-prev {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .home-product .swiper-button-next::after,
    .home-product .swiper-button-prev::after {
        font-size: 16px
    }

    .home-product .swiper-button-prev {
        left: 20px
    }

    .home-product .swiper-button-next {
        right: 20px
    }

    .home-product .listMenu {
        margin-bottom: 10px
    }

    .home-product .listMenu .box {
        display: block;
        text-align: center;
        cursor: pointer;
        padding: 20px 0;
        position: relative
    }

    .home-product .listMenu .icon {
        display: block;
        width: 50px;
        height: 40px;
        margin-left: auto;
        margin-right: auto;
        position: relative
    }

    .home-product .listMenu .icon .img-2 {
        display: none
    }

    .home-product .listMenu .title {
        font-size: 14px;
        height: 30px;
        line-height: 30px
    }

    .home-product .conTabs {
        padding-left: 5vw;
        padding-right: 5vw
    }

    .home-product .conTabs .list {
        margin-left: -8px;
        margin-right: -7px
    }

    .home-product .conTabs .list>li {
        width: 50%;
        padding: 0 7px 15px 8px
    }

    .home-product .conTabs .list .box {
        padding: 20px 10px 20px 10px !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        text-align: center
    }

    .home-product .conTabs .list .pic {
        height: auto;
        margin-bottom: 10px
    }

    .home-product .conTabs .list .title {
        font-size: 18px;
        margin-bottom: 5px
    }

    .home-product .conTabs .list .info {
        font-size: 14px;
        line-height: 28px;
        height: 56px;
        margin-bottom: 15px
    }

    .home-product .conTabs .list .btnDiv a,
    .home-product .conTabs .list .btnDiv span {
        font-size: 14px
    }

    .home-product .tabs {
        margin-bottom: 20px
    }
}

@media screen and (max-width:767px) {
    .home-product .conTabs .list .pic::after {
        padding-bottom: 41.33333333%
    }
}

.home-application {
    padding-bottom: 14rem
}

.home-application .hometitle {
    text-align: center
}

.home-application .application-list {
    position: relative;
    overflow: hidden;
    margin: 3rem 3rem 0 3rem
}

.home-application .application-list .list li .box {
    display: block
}

.home-application .application-list .list li .box .pic {
    position: relative;
    overflow: hidden;
    border-radius: 2rem
}

.home-application .application-list .list li .box .pic img {
    -webkit-transition: .5s;
    transition: .5s
}

.home-application .application-list .list li .box .pic:after {
    padding-bottom: 66.66666667%
}

.home-application .application-list .list li .box .pic .morebtn {
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    opacity: 0
}

.home-application .application-list .list li .box .text {
    font-size: 2.4rem;
    color: #222;
    font-family: var(--font-family-P-B);
    text-align: center;
    margin-top: 2rem;
    font-weight: normal
}

.home-application .application-list .list li:hover .box .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.home-application .application-list .list li:hover .box .pic .morebtn {
    opacity: 1;
    bottom: 3.8rem
}

@media screen and (max-width:1023px) {
    .home-application {
        padding-bottom: 40px
    }
}



@-webkit-keyframes animation-line {
    0% {
        stroke-dashoffset: var(--l)
    }

    14.28571% {
        stroke-dashoffset: 0
    }

    61.42857% {
        stroke-dashoffset: 0
    }

    85.71429% {
        stroke-dashoffset: calc(-1*var(--l))
    }

    to {
        stroke-dashoffset: calc(-1*var(--l))
    }
}

@keyframes animation-line {
    0% {
        stroke-dashoffset: var(--l)
    }

    14.28571% {
        stroke-dashoffset: 0
    }

    61.42857% {
        stroke-dashoffset: 0
    }

    85.71429% {
        stroke-dashoffset: calc(-1*var(--l))
    }

    to {
        stroke-dashoffset: calc(-1*var(--l))
    }
}

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1, .1);
        transform: scale(.1, .1)
    }

    5% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1, .1);
        transform: scale(.1, .1)
    }

    5% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.global .map {
    width: 75vw;
    height: 31.25vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
  
}

.global .map-lines {
    position: absolute;
    top: 11.33333333%;
    left: 8.33333333%;
    z-index: 10;
    fill: none;
    width: 63.341458333333vw;
    height: 21.33625vw;
}

.global svg:not(:root) {
    overflow: hidden
}

.global .map-line {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: var(--l);
    stroke-dashoffset: var(--l);
    -webkit-animation: animation-line 10.04s ease-in;
    animation: animation-line 10.04s ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.global .area {
    cursor: pointer;
    text-align: center;
    width: .8rem;
    height: .8rem;
    position: absolute;
    z-index: 998
}

.global .area .dot {
    display: block;
    z-index: 1;
    position: relative;
    width: .8rem;
    height: .8rem;
    background-color: #ff4f00;
    margin: auto;
    border-radius: 50%
}

.global .area .txt {
    white-space: nowrap !important;
    text-align: left;
    font-size: 1.4rem;
    color: #333;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 1rem;
    position: absolute
}

.global .area .txt-2 {
    left: initial;
    right: 100%;
    margin-left: initial;
    margin-right: 1rem
}

.global .area .circle {
    width: 8rem;
    height: 8rem;
    display: block;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: auto;
    border-radius: 50%
}

.global .area .circle:after {
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(255, 79, 0, 0.5);
    -webkit-animation: ripple 4s ease-out 0s infinite;
    animation: ripple 4s ease-out 0s infinite
}

.global .area .circle:before {
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(255, 79, 0, 0.5);
    -webkit-animation: ripple 6s ease-out 0s infinite;
    animation: ripple 6s ease-out 0s infinite
}

.global .area .circle-2:after {
    -webkit-animation: ripple 3s ease-out 0s infinite;
    animation: ripple 3s ease-out 0s infinite
}

.global .area .circle-2:before {
    -webkit-animation: ripple 5s ease-out 0s infinite;
    animation: ripple 5s ease-out 0s infinite
}

.global .area-1 {
    top: 22%;
    left: 8.05555556%
}

.global .area-1 .txt {
    left: initial;
    right: 100%;
    margin-left: initial;
    margin-right: -7.5rem;
    margin-top: -1rem
}

.global .area-2 {
    top: 22.66666667%;
    left: 10.20833333%
}

.global .area-2 .txt {
    left: initial;
    right: 100%;
    margin-left: initial;
    margin-right: -3.6rem;
    margin-top: 1.1rem
}

.global .area-3 {
    top: 22.66666667%;
    left: 11.94444444%
}

.global .area-3 .txt {
    left: 50%;
    top: -0.5rem;
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
    margin-left: 4.3rem
}

.global .area-4 {
    top: 19.66666667%;
    left: 15.34722222%
}

.global .area-4 .txt {
    left: initial;
    right: 100%;
    top: -0.5rem;
    margin-left: initial;
    margin-right: -6.2rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-5 {
    top: 18.5%;
    left: 20.55555556%
}

.global .area-5 .txt {
    left: initial;
    right: 100%;
    top: -0.6rem;
    margin-left: initial;
    margin-right: -6.5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-6 {
    top: 30.66666667%;
    left: 21.25%
}

.global .area-6 .txt {
    left: initial;
    right: 100%;
    top: -2.6rem;
    margin-left: initial;
    margin-right: -4.5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-7 {
    top: 31.66666667%;
    left: 17.77777778%
}

.global .area-7 .txt {
    left: initial;
    right: 100%;
    top: 1rem;
    margin-left: initial;
    margin-right: -2.5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-8 {
    top: 39.33333333%;
    left: 16.45833333%
}

.global .area-8 .txt {
    left: initial;
    right: 100%;
    top: -0.6rem;
    margin-left: initial;
    margin-right: -5.6rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-9 {
    top: 38.5%;
    left: 9.72222222%
}

.global .area-9 .txt {
    left: initial;
    right: 100%;
    top: 1rem;
    margin-left: initial;
    margin-right: -2.5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-10 {
    top: 50.33333333%;
    left: 10.76388889%
}

.global .area-10 .txt {
    top: -0.3rem;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-left: 1rem
}

.global .area-11 {
    top: 36%;
    left: 23.40277778%
}

.global .area-11 .txt {
    margin-left: 1.1rem
}

.global .area-12 {
    top: 41.16666667%;
    left: 20.55555556%
}

.global .area-12 .txt {
    margin-left: -3.9rem;
    top: 1.8rem
}

.global .area-13 {
    top: 51.16666667%;
    left: 19.30555556%
}

.global .area-13 .txt {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -0.5rem;
    margin-left: 4rem
}

.global .area-14 {
    top: 25.66666667%;
    left: 27.15277778%
}

.global .area-14 .txt {
    margin-left: 1.1rem
}

.global .area-15 {
    top: 28.16666667%;
    left: 24.79166667%
}

.global .area-15 .txt {
    margin-left: .8rem
}

.global .area-16 {
    top: 31%;
    left: 24.79166667%
}

.global .area-16 .txt {
    margin-left: .8rem
}

.global .area-17 {
    top: 69.33333333%;
    left: 16.875%
}

.global .area-17 .txt {
    margin-left: 1.1rem
}

.global .area-18 {
    top: 76.33333333%;
    left: 14.93055556%
}

.global .area-18 .txt {
    left: initial;
    right: 100%;
    top: -0.6rem;
    margin-left: initial;
    margin-right: -10.5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-19 {
    top: 42.33333333%;
    left: 29.65277778%
}

.global .area-19 .txt {
    left: initial;
    right: 100%;
    top: -0.6rem;
    margin-left: initial;
    margin-right: -5rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.global .area-20 {
    top: 46.5%;
    left: 36.52777778%
}

.global .area-20 .txt {
    margin-left: -2.9rem;
    top: 2.3rem
}

.global .area-21 {
    top: 47.5%;
    left: 38.26388889%
}

.global .area-21 .txt {
    margin-left: 1.1rem
}

.global .area-22 {
    top: 33.16666667%;
    left: 43.47222222%
}

.global .area-22 .txt {
    margin-left: -3.9rem;
    top: 2rem
}

.global .area-23 {
    top: 33.5%;
    left: 46.45833333%
}

.global .area-23 .txt {
    margin-left: 1.1rem
}

.global .area-24 {
    top: 58.33333333%;
    left: 41.45833333%
}

.global .area-24 .txt {
    margin-left: 1.1rem
}

.global .area-25 {
    top: 71.83333333%;
    left: 45.20833333%
}

.global .area-25 .txt {
    margin-left: 1.1rem
}

.global .area-26 {
    top: 18.66666667%;
    left: 75.97222222%
}

.global .area-26 .txt {
    margin-left: 1.1rem
}

.global .area-27 {
    top: 29.5%;
    left: 78.61111111%
}

.global .area-27 .txt {
    margin-left: 1.1rem
}

.global .area-28 {
    top: 41.66666667%;
    left: 78.95833333%
}

.global .area-28 .txt {
    margin-left: 1.1rem
}

.global .area-29 {
    top: 50.83333333%;
    left: 85.06944444%
}

.global .area-29 .txt {
    margin-left: 1.1rem
}

.global .area-30 {
    top: 54.66666667%;
    left: 86.73611111%
}

.global .area-30 .txt {
    margin-left: 1.1rem
}

.global .area-31 {
    top: 61.5%;
    left: 85.97222222%
}

.global .area-31 .txt {
    margin-left: 1.1rem
}

.global .area-32 {
    top: 63.16666667%;
    left: 92.43055556%
}

.global .area-32 .txt {
    margin-left: 1.1rem
}

.global .area-33 {
    top: 71.66666667%;
    left: 87.77777778%
}

.global .area-33 .txt {
    margin-left: 1.1rem
}

.global .area-34 {
    top: 78.66666667%;
    left: 88.88888889%
}

.global .area-34 .txt {
    margin-left: 1.1rem
}

.home-map {
    background: #f9f9f9;
    padding: 12rem 0 0 0
}

.home-map .hometitle {
    text-align: center;
    margin-bottom: 9rem
}

@media screen and (max-width:1023px) {
    .home-map {
        padding-top: 40px
    }

    .home-map .hometitle {
        margin-bottom: 20px
    }

    .global .area-1 .txt {
        left: -3.5rem
    }
}

.home-vr {
    padding-top: 11rem;
    text-align: center
}

.home-vr .hometitle {
    text-align: center;
    margin-bottom: 5rem
}

@media screen and (max-width:1023px) {
    .home-vr {
        padding-top: 40px
    }

    .home-vr .hometitle {
        margin-bottom: 20px
    }
}

.home-news {
    overflow: hidden
}

.home-news .swiper-slide {
    background: #fbfafa;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem
}

.home-news .swiper-slide .xwbox .date {
    font-family: Poppins-Regular;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem
}

.home-news .swiper-slide .xwbox .date img {
    vertical-align: middle;
    margin-top: -0.3rem;
    margin-right: 1.4rem
}

.home-news .swiper-slide .xwbox .biaoti {
    font-size: 2rem;
    color: #333;
    font-family: var(--font-family-P-B);
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal
}

.home-news .swiper-slide .xwbox .wenzi {
    color: #777;
    font-size: 1.8rem;
    line-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.app_bj {
    width: 100%;
    z-index: 99;
    padding-top: 3rem;
    position: relative
}

.app_bj .swiper-button-next:after,
.app_bj .swiper-button-prev:after {
    content: ""
}

.home-news {
    padding-top: 14rem;
    padding-bottom: 8.5rem;
    position: relative;
    width: 100%;
    height: auto !important;
    z-index: 99
}

.home-news .news-swiper {
    overflow: hidden;
    z-index: 88;
    width: 130.5%
}

.home-news .swiper-slide .pic:after {
    padding-bottom: 65.2173913%
}

.home-news .swiper-slide .pic {
    border-radius: 1.5rem
}

.home-news .swiper-slide .pic img {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.home-news .swiper-slide .xwbox {
    padding: 3rem
}

.home-news .swiper-slide-active .biaoti,
.home-news .swiper-slide:hover .biaoti {
    color: var(--main-color)
}

.home-news .swiper-slide:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.app_bj .swiper-button-next,
.app_bj .swiper-button-prev {
    width: 48px;
    height: 48px;
    z-index: 666;
    top: -52px;
    bottom: auto
}

.app_bj .swiper-button-prev {
    background: url(../images/pleft.png) no-repeat center center;
    left: auto;
    right: 8.6rem
}

.app_bj .swiper-button-next {
    left: auto;
    right: 1.9rem;
    background: url(../images/pright.png) no-repeat center center
}

.app_bj .swiper-button-prev::after {
    content: ""
}

.app_bj .swiper-button-next::after {
    content: ""
}

.app_bj .swiper-button-disabled.swiper-button-prev,
.app_bj .swiper-button-prev:hover {
    background: url(../images/plefth.png) no-repeat center center;
    opacity: 1
}

.app_bj .swiper-button-disabled.swiper-button-next,
.app_bj .swiper-button-next:hover {
    background: url(../images/righth.png) no-repeat center center;
    opacity: 1
}

.app_bj .swiper-pagination {
    display: none;
    width: 100%;
    bottom: 35px
}

.app_bj .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 100%;
    margin: 0 6px
}

.app_bj .swiper-pagination-bullet-active {
    background: var(--main-color)
}

@media (max-width:1200px) {
    .home-news .news-swiper {
        width: 100%;
        padding-bottom: 30px;
        position: relative
    }

    .app_bj .swiper-button-next,
    .app_bj .swiper-button-prev {
        display: none
    }

    .home-news {
        padding: 40px 0
    }

    .app_bj .swiper-pagination {
        display: block;
        bottom: 0px
    }
}

.home-service {
    padding-bottom: 12rem
}

.home-service .hservice-bj {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32rem;
    text-align: center;
    border-radius: 2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.home-service .hservice-bj .box {
    width: 100%;
    padding: 0 2rem
}

.home-service .hservice-bj .box .hometitle {
    font-size: 4.8rem;
    font-family: var(--font-family-O-B);
    color: #fff;
    margin-bottom: 3rem
}

@media screen and (max-width:1023px) {
    .home-service {
        padding-bottom: 40px
    }

    .home-service .hservice-bj {
        border-radius: 10px
    }

    .home-service .hservice-bj .box .hometitle {
        font-size: 23px;
        margin-bottom: 15px
    }
}

.dbfooter .db-bj {
    height: 100% !important;
    position: relative;
    z-index: 66;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 1rem;
    overflow: hidden
}

.dbfooter .db-bj .container {
    height: 100%
}

.dbfooter .footer-top {
    padding-bottom: 3.7rem;
    margin-bottom: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e5e5e5
}

.dbfooter .footer-top .share {
    width: 60%;
    text-align: right
}

.dbfooter .footer-top .share a {
    width: 4rem;
    margin-left: 0.7rem;
    height: 4rem;
    border-radius: 0.5rem;
    background: #ebebeb;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.dbfooter .footer-top .share a .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.dbfooter .footer-top .share a svg {
    width: 2rem;
    height: 2rem;
    fill: #757575
}

.dbfooter .footer-top .share a:hover {
    background: var(--main-color)
}

.dbfooter .footer-top .share a:hover svg {
    fill: #fff
}

.dbfooter .footer-middle ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top
}

.dbfooter .footer-middle ul li {
    color: #222
}

.dbfooter .footer-middle ul li a {
    color: #222
}

.dbfooter .footer-middle ul li a:hover {
    color: var(--main-color)
}

.dbfooter .footer-middle ul li:last-child {
    width: 35.2rem
}

.dbfooter .footer-middle ul li p {
    font-family: var(--font-family-P-B);
    font-size: 2rem;
    margin-bottom: 2rem
}

.dbfooter .footer-middle ul li .textbox a {
    display: block;
    font-size: 1.6rem;
    line-height: 4.2rem
}

.dbfooter .footer-middle ul li .p-1 {
    position: relative;
    padding-left: 3.8rem;
    margin-bottom: 2.3rem
}

.dbfooter .footer-middle ul li .p-1 .icon {
    position: absolute;
    top: 0.2rem;
    left: 0
}

.dbfooter .footer-middle ul li .p-1 span {
    display: block;
    color: #222;
    font-size: 1.6rem
}

.dbfooter .footer-middle ul li .p-1 .tt1 {
    font-family: Oswald-Bold;
    font-size: 3.2rem;
    color: var(--main-color)
}

.dbfooter .footer-middle ul li .p-1 .tt2 {
    font-size: 2.4rem
}

.dbfooter .footer-middle ul li .tt3 {
    font-size: 1.6rem
}

.dbfooter .footer-middle ul li .more-button {
    padding: 0 3rem;
    background: #f6611e
}

.dbfooter .footer-middle ul li .more-button a:hover {
    text-decoration: none
}

.dbfooter .footer-middle ul li .more-button img {
    vertical-align: middle;
    margin-right: 1rem
}

.dbfooter .footer-bottom {
    overflow: hidden;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 6rem
}

.dbfooter .footer-bottom .left {
    width: 60%;
    float: left;
    color: #222222
}

.dbfooter .footer-bottom .right {
    width: 30%;
    float: right;
    text-align: right
}

.dbfooter .footer-bottom .right a {
    font-size: 1.6rem;
    color: #222;
    margin-left: 1.8rem
}

.dbfooter .footer-bottom .right a:hover {
    color: var(--main-color)
}

.more-button {
    overflow: hidden;
    color: #fff;
    padding: 0 0.4rem;
    height: 4.8rem;
    line-height: 4.8rem;
    border-radius: 0.3rem;
    min-width: 14rem;
    border-radius: 3rem;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    background: #000;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase
}

.more-button a {
    color: #fff !important;
    display: block
}

.more-button:hover {
    background: #ffffff
}

.more-button:hover a {
    color: #222222
}

@media (max-width:1200px) {

    .banner .home-adv,
    .app_bj {
        width: 100%;
        overflow: hidden;
        position: inherit
    }

    .dbfooter .footer-middle ul li {
        display: none
    }

    .dbfooter .footer-middle ul li:last-child {
        width: 100%;
        float: none;
        display: block
    }

    .dbfooter .footer-middle ul li .p-1 {
        padding-left: 30px;
        margin-bottom: 20px
    }

    .dbfooter .footer-middle ul li .p-1 .icon {
        top: 5px
    }

    .dbfooter .footer-middle ul li .p-1 span {
        font-size: 15px
    }

    .dbfooter .footer-middle ul li .p-1 .tt1 {
        font-size: 20px
    }

    .dbfooter .footer-middle ul li .p-1 .tt2 {
        font-size: 17px
    }

    .dbfooter .footer-middle ul li .tt3 {
        font-size: 16px
    }

    .dbfooter .footer-top .share a {
        width: 30px;
        height: 30px;
        margin-left: 2px
    }

    .dbfooter .footer-top .share a svg {
        width: 15px;
        height: 15px
    }

    .dbfooter .footer-bottom {
        font-size: 15px;
        margin-top: 25px
    }

    .dbfooter .footer-bottom .right a {
        font-size: 15px
    }

    .dbfooter .footer-top {
        margin-bottom: 25px;
        padding-bottom: 25px
    }
}

@media (max-width:1023px) {
    .dbfooter .footer-bottom .left {
        width: 100%;
        float: none
    }

    .dbfooter .footer-bottom .right {
        width: 100%;
        float: none;
        margin-top: 6px;
        text-align: left;
    }

    .dbfooter .footer-bottom .right a {
        margin-left: 0px;
        margin-right: 15px;
    }

    .dbfooter .footer-top .share {
        width: 85%
    }
}

@media (max-width:767px) {
    .dbfooter .footer-top .share a {
        width: 28px;
        height: 28px;
        margin-left: 1px
    }
}

.inside-banner {
    position: relative
}

.inside-banner .tu img {
    display: block;
    margin: 0 auto
}

.inside-banner .tu.phone {
    display: none
}

.inside-banner .text {
    top: 50%;
    left: 0;
    color: #fff;
    width: 100%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.inside-banner .text .tit {
    font-size: 6rem;
    color: #fff;
    -webkit-animation: 1.5s ease fadeInLeft2;
    animation: 1.5s ease fadeInLeft2;
    font-family: var(--font-family-P-B);
    font-weight: normal
}

@media (max-width:1023px) {
    .inside-banner .tu.phone {
        display: block
    }

    .inside-banner .tu.pc {
        display: none
    }

    .inside-banner .text .tit {
        font-size: 23px;
        text-align: center
    }
}

.menu-sub {
    padding: 8rem 0
}

.menu-sub ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--font-family-P-R)
}

.menu-sub ul li {
    padding: 0 1rem;
    font-size: 1.8rem
}

.menu-sub ul li a {
    color: #222;
    text-align: center;
    border: solid 1px #dedede;
    border-radius: 3rem;
    height: 4.2rem;
    line-height: 4rem;
    min-width: 25rem;
    display: inline-block;
    position: relative
}

.menu-sub ul li a:before {
    content: "";
    width: 0;
    height: 100%;
    border-radius: 3rem;
    top: 0;
    left: 50%;
    position: absolute;
    background: var(--main-color);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    z-index: -1
}

.menu-sub ul li span {
    z-index: 3;
    display: block;
    position: relative
}

.menu-sub ul li.cur a,
.menu-sub ul li:hover a {
    color: #fff
}

.menu-sub ul li.cur a:before,
.menu-sub ul li:hover a:before {
    width: 100%;
    left: 0
}

@media (max-width:1023px) {
    .menu-sub {
        padding: 15px 0 30px 0
    }

    .menu-sub ul {
        margin: 0 1rem
    }

    .menu-sub ul li {
        width: 48%;
        margin-bottom: 10px;
        padding: 0px 5px
    }

    .menu-sub ul li a {
        width: 100%;
        height: 42px;
        line-height: 40px;
        font-size: 12px;
        min-width: 19rem
    }
}

@media (max-width:480px) {
    .menu-sub li {
        width: 100%
    }

    .menu-sub li:first-child {
        margin-top: 0
    }
}

.nyabout-year .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.nyabout-year .list li {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.nyabout-year .list li .wenzibox {
    padding-left: 1rem
}

.nyabout-year .list li .wenzibox .shuzi01 {
    line-height: 4rem;
    font-size: 1.8rem;
    color: #000
}

.nyabout-year .list li .wenzibox .shuzi01 span {
    font-family: var(--font-family-O-R);
    font-size: 4.8rem;
    color: var(--main-color)
}

.nyabout-year .list li .wenzibox .shuzi01 i {
    font-family: var(--font-family-O-R);
    font-size: 4.8rem;
    color: var(--main-color);
    font-style: normal;
    margin-right: 1.8rem
}

.nyabout-year .list li .wenzibox .shuzi02 {
    font-size: 1.8rem;
    color: #000;
    text-transform: capitalize
}

@media (max-width:1023px) {
    .nyabout-year .list {
        display: block;
        overflow: hidden
    }

    .nyabout-year .list li {
        width: 50%;
        float: left;
        margin-bottom: 20px
    }

    .nyabout-year .list li .wenzibox .shuzi01 {
        font-size: 14px
    }

    .nyabout-year .list li .wenzibox .shuzi01 span {
        font-size: 28px
    }

    .nyabout-year .list li .wenzibox .shuzi01 i {
        font-size: 23px
    }
}

.nyabout-jieshao {
    padding-top: 10rem
}

.nyabout-jieshao .left .info {
    margin-top: 2rem
}

.nyabout-jieshao .left .info p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: #222;
    margin-bottom: 1.6rem
}

.nyabout-jieshao .left .info p:last-child {
    margin-bottom: 0
}

@media (max-width:1023px) {
    .nyabout-jieshao {
        padding-top: 30px
    }
}

.about-history {
    background: #fbfaf8 url(../images/about-history-bj.png) no-repeat bottom center;
    padding: 12rem 0 9rem 0
}

.about-history .hometitle {
    text-align: center
}

.about-history .history-text {
    font-size: 1.8rem;
    color: #666666;
    text-align: center;
    margin-top: 2.8rem
}

.about-history .history-list {
    margin-top: 5.5rem
}

.about-history .history-list ul {
    position: relative
}

.about-history .history-list ul:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2.5px;
    border: .2rem solid #f6611e;
    z-index: 1
}

.about-history .history-list ul li {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem
}

.about-history .history-list ul li dl {
    position: relative;
    min-height: 62px
}

.about-history .history-list ul li dl dt {
    width: 50%;
    float: right;
    padding-left: 15.5rem;
    position: relative
}

.about-history .history-list ul li dl dt:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -1.2rem;
    top: -0.3rem;
    background: url(../images/time.png)
}

.about-history .history-list ul li dl dt:after {
    content: '';
    display: block;
    width: 13.9rem;
    height: 1px;
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    border-bottom: 1px solid #cecece
}

.about-history .history-list ul li dl dt .text {
    display: inline-block;
    position: relative
}

.about-history .history-list ul li dl dt .bt {
    display: block;
    font-size: 3.2rem;
    color: var(--main-color);
    margin-top: -0.2rem;
    line-height: 3rem
}

.about-history .history-list ul li dl dt .jsh {
    display: block;
    font-size: 1.8rem;
    color: #333
}

.about-history .history-list ul li:nth-child(2n) dl dt {
    float: left;
    padding-left: 0;
    padding-right: 15.5rem
}

.about-history .history-list ul li:nth-child(2n) dl dt:before {
    right: -1.2rem;
    left: auto
}

.about-history .history-list ul li:nth-child(2n) dl dt:after {
    left: auto;
    right: 1.2rem
}

.about-history .history-list ul li:nth-child(2n) dl dt .text {
    text-align: right;
    float: right
}

.about-history .history-list ul li:last-child dl dt .bt {
    font-size: 3.2rem;
    text-transform: uppercase
}

@media (max-width:1023px) {
    .about-history {
        padding: 40px 0
    }

    .about-history .history-list ul:after {
        left: 0;
        margin-left: 0
    }

    .about-history .history-list ul li {
        margin-bottom: 30px
    }

    .about-history .history-list ul li dl dt {
        width: 100%;
        padding-left: 98px
    }

    .about-history .history-list ul li dl dt:before {
        left: -11.5px
    }

    .about-history .history-list ul li dl dt:after {
        left: 12px;
        width: 80px
    }

    .about-history .history-list ul li:nth-child(2n) dl dt {
        padding-left: 98px;
        padding-right: 0
    }

    .about-history .history-list ul li:nth-child(2n) dl dt .text {
        text-align: left;
        float: none
    }

    .about-history .history-list ul li:nth-child(2n) dl dt:before {
        right: auto;
        left: -11.5px
    }

    .about-history .history-list ul li:nth-child(2n) dl dt:after {
        left: 9px;
        right: auto
    }

    .about-history .history-list ul li:nth-child(2n) dl dt .jsh p {
        padding-right: 0;
        padding-left: 0
    }

    .about-history .history-list ul li:nth-child(2n) dl dt .jsh p:before {
        left: 0;
        right: auto
    }
}

.about-style {
    padding: 11rem 0 9rem 0
}

.about-style .hometitle {
    text-align: center;
    margin-bottom: 8.3rem
}

.about-style .style-list {
    overflow: hidden
}

.about-style .style-list .list li {
    width: 32%;
    float: left;
    margin-right: 2%;
    margin-bottom: 2.5rem
}

.about-style .style-list .list li:nth-child(3n) {
    margin-right: 0
}

.about-style .style-list .list li .pic {
    overflow: hidden;
    position: relative
}

.about-style .style-list .list li .pic:after {
    padding-bottom: 75%
}

.about-style .style-list .list li .pic img {
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.about-style .style-list .list li:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

@media (max-width:1023px) {
    .about-style {
        padding: 40px 0 30px 0
    }

    .about-style .hometitle {
        margin-bottom: 25px
    }
}

.application-bannertext {
    text-align: right
}

.neiye-application {
    padding-top: 10rem
}

.neiye-application .list li {
    margin-bottom: 9.5rem
}

.neiye-application .list li .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.neiye-application .list li .box .left {
    width: 48%
}

.neiye-application .list li .box .left .pic {
    position: relative;
    overflow: hidden;
    border-radius: 2rem
}

.neiye-application .list li .box .left .pic:after {
    padding-bottom: 66.66666667%
}

.neiye-application .list li .box .left .pic img {
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease
}

.neiye-application .list li .box .right {
    width: 50%
}

.neiye-application .list li .box .right .scrollbar-inner,
.neiye-application .list li .box .right .gundong-text {
    width: 100%;
    height: 45rem;
    overflow: hidden
}

.neiye-application .list li .box .right .text-box {
    padding-right: 2.7rem
}

.neiye-application .list li .box .right .text-box .title {
    color: var(--sub-color-0);
    font-size: 3.6rem;
    font-family: var(--font-family-P-B);
    font-weight: normal;
    margin-bottom: 1rem
}

.neiye-application .list li .box .right .text-box .info {
    font-size: 1.8rem;
    color: var(--sub-color-2);
    line-height: 3rem
}

.neiye-application .list li .box .right .text-box .info p {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem
}

.neiye-application .list li .box .right .text-box .info p:before {
    position: absolute;
    left: .5rem;
    top: 1rem;
    background: url(../images/duihao.png) no-repeat center center;
    width: 15px;
    height: 11px;
    content: ""
}

.neiye-application .list li .box .right .text-box .info p:last-child {
    margin-bottom: 0
}

.neiye-application .list li:nth-child(2n) .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.neiye-application .list li:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

@media (max-width:1023px) {
    .neiye-application {
        padding-top: 40px
    }

    .neiye-application .list li {
        margin-bottom: 40px
    }

    .neiye-application .list li .box {
        display: block
    }

    .neiye-application .list li .box .left {
        width: 100%
    }

    .neiye-application .list li .box .right {
        width: 100%;
        margin-top: 20px
    }

    .neiye-application .list li .box .right .text-box {
        padding-right: 0
    }

    .neiye-application .list li .box .right .scrollbar-inner,
    .neiye-application .list li .box .right .gundong-text {
        height: 100%
    }

    .neiye-application .list li .box .right .text-box .title {
        font-size: 21px
    }

    .neiye-application .list li .box .right .text-box .info {
        font-size: 14px;
        line-height: 25px
    }

    .neiye-application .list li .box .right .text-box .info p {
        margin-bottom: 10px
    }
}

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative
}

.scroll-wrapper>.scroll-content {
    border: none !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important
}

.scroll-wrapper>.scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scroll-element {
    display: none
}

.scroll-element,
.scroll-element div {
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block
}

.scroll-element .scroll-arrow,
.scroll-element .scroll-bar {
    cursor: default
}

.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999999
}

.scroll-textarea>.scroll-content {
    overflow: hidden !important
}

.scroll-textarea>.scroll-content>textarea {
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: 0;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important
}

.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scrollbar-inner>.scroll-element,
.scrollbar-inner>.scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-inner>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 10px;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-y {
    height: 100%;
    right: 38px;
    top: 0;
    width: 0.8rem
}

.scrollbar-inner>.scroll-element .scroll-element_outer {
    overflow: hidden
}

.scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: #e5e5e5;
    width: .8rem;
    margin-left: 0.8rem
}

.scrollbar-inner>.scroll-element .scroll-bar {
    background-color: #e5e5e5;
    width: 0.8rem
}

.scrollbar-inner>.scroll-element:hover .scroll-bar {
    background-color: #e5e5e5;
    width: 0.8rem
}

.scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #e5e5e5;
    width: 0.8rem
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px
}

.neiye-application .scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: #e5e5e5 !important;
    width: .8rem !important;
    margin-left: 0 !important;
    border-radius: 3rem !important
}

.neiye-application .scrollbar-inner>.scroll-element .scroll-bar {
    background-color: var(--main-color) !important;
    width: .8rem !important;
    border-radius: 3rem !important
}

.neiye-application .scrollbar-inner>.scroll-element.scroll-y {
    right: 0px !important
}

@media (max-width:1023px) {
    .neiye-application .scrollbar-inner>.scroll-element .scroll-element_track {
        width: 4px !important
    }

    .neiye-application .scrollbar-inner>.scroll-element .scroll-bar {
        width: 4px !important
    }
}

.neiyecurrent {
    position: absolute;
    bottom: 2rem;
    font-family: Poppins-Regular;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    font-size: 1.6rem;
    font-weight: normal;
    height: 3rem;
    line-height: 3rem;
    text-transform: capitalize;
    right: 0;
    color:#fff;
}

.neiyecurrent .tp {
    vertical-align: middle;
    margin-top: -0.5rem;
    margin-right: 8px
}

.neiyecurrent a {
    color: #fff
}

.neiyecurrent a:hover {
    text-decoration: underline;
    color: var(--main-color)
}

.neiyecurrent span {
    color: #ffffff
}

.neiyecurrent i img {
    vertical-align: middle;
    padding: 0 0.8rem
}

@media (max-width:1400px) {
    .neiyecurrent {
        padding-right: 5vw
    }
}

.neiye-contact {
    position: relative;
    margin-bottom: 10rem
}

.neiye-contact:before {
    background: #fafafa;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 50%;
    height: 100%
}

.neiye-lianxi {
    padding-top: 10rem;
    overflow: hidden
}

.neiye-lianxi .left {
    width: 50%;
    float: left;
    padding-right: 4rem
}

.neiye-lianxi .left .lianxilist {
    max-width: 40rem;
    overflow: hidden;
    margin-bottom: 4rem
}

.neiye-lianxi .left .lianxilist li {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 2rem;
    overflow: hidden
}

.neiye-lianxi .left .lianxilist li i {
    width: 4rem;
    height: 4rem;
    display: inline-block;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0
}

.neiye-lianxi .left .lianxilist li i svg {
    -o-object-fit: contain;
    object-fit: contain;
    width: 2.4rem;
    height: 2.4rem;
    fill: #ff4f00
}

.neiye-lianxi .left .lianxilist li .box {
    min-height: 6.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.neiye-lianxi .left .lianxilist li .box .text01 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.3rem
}

.neiye-lianxi .left .lianxilist li .box .text02 {
    font-size: 1.6rem;
    color: #888888
}

.neiye-lianxi .left .lianxilist li .box .text02 a {
    color: #888888
}

.neiye-lianxi .left .share-text {
    font-size: 2rem;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 1.2rem
}

.neiye-lianxi .right {
    width: 50%;
    float: right;
    padding-left: 4rem
}

.neiye-lianxi .right .lx-title {
    margin-bottom: 0.3rem
}

.neiye-lianxi .right .wenzi {
    font-size: 1.6rem;
    color: #888888
}

.lx-title {
    font-size: 2.8rem;
    color: #222222;
    font-family: var(--font-family-A-B);
    font-weight: normal;
    margin-bottom: 2.5rem
}

.lx-share .share a {
    width: 4rem;
    margin-left: 0.7rem;
    height: 4rem;
    border-radius: 100%;
    background: #a7a9a8;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.lx-share .share a .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.lx-share .share a svg {
    width: 1.7rem;
    height: 1.7rem;
    fill: #fff
}

.lx-share .share a:hover {
    background: var(--main-color)
}

.layui-form .list li.yanzheng {
    font-size: 1.6rem;
    color: #080404;
    line-height: 8rem;
    border: 1px dashed #dddddd;
    min-width: 22rem;
    text-align: center;
    display: inline-block
}

.layui-form .list li.yanzheng img {
    vertical-align: middle;
    margin-right: 1.5rem
}

#file-upload {
    display: none
}

.upload-text {
    font-size: 16px;
    color: #333;
    display: inline-block;
    cursor: pointer
}

.layui-form .list li.agree-btn .agree {
    font-size: 1.6rem;
    color: #666666
}

.layui-form .list li.agree-btn .agree a {
    color: var(--main-color)
}

.layui-form .list li.agree-btn .agree input {
    width: 2rem;
    height: 2rem;
    border: 1px solid #dddddd;
    border-radius: 0.5rem
}

.layui-form {
    margin-top: 4.5rem
}

.layui-form .list li {
    position: relative;
    margin-bottom: 2rem
}

.layui-form .list li .box {
    position: relative
}

.layui-form .list .xh {
    color: #c9151e;
    margin-right: 5px;
    position: absolute;
    top: 1.3rem;
    left: 1.5rem
}

.layui-form .list .input-form,
.layui-form .list .textarea-form {
    background-color: none;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    vertical-align: middle;
    border: none;
    border-bottom: #dddddd solid 1px;
    padding: 0 2rem;
    line-height: 4.8rem;
    padding-left: 2.5rem;
    padding-right: 1.5rem;
    font-size: 1.6rem;
    width: 100%
}

.layui-form .list .input-form:focus,
.layui-form .list .textarea-form:focus {
    border-color: var(--main-color)
}

.layui-form .list .input-form::-webkit-input-placeholder,
.layui-form .list .textarea-form::-webkit-input-placeholder {
    color: #666
}

.layui-form .list .input-form:-ms-input-placeholder,
.layui-form .list .textarea-form:-ms-input-placeholder {
    color: #666
}

.layui-form .list .input-form:-moz-placeholder,
.layui-form .list .textarea-form:-moz-placeholder {
    color: #666
}

.layui-form .list .input-form:placeholder,
.layui-form .list .textarea-form:placeholder {
    color: #666
}

.layui-form .list .input-form:not(:placeholder-shown),
.layui-form .list .textarea-form:not(:placeholder-shown) {
    color: #000
}

.layui-form .list .textarea-form {
    line-height: 0.3rem;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    width: 100%;
    min-height: 13rem
}

.layui-form .list .textarea-form:focus {
    border-bottom: var(--main-color) solid 1px
}

.layui-form .list .submit {
    width: 100%;
    background: var(--main-color);
    max-width: 14rem;
    display: inline-block;
    font-size: 1.6rem;
    text-align: center;
    line-height: 4.8rem;
    height: 4.8rem;
    border-radius: 3rem;
    padding: 0 1rem;
    border: none;
    color: #fff;
    margin-top: 3rem
}

.layui-form .list .submit:hover {
    background: #000000
}

@media (max-width:1200px) {
    .neiye-contact {
        padding-top: 0;
        margin-bottom: 0px
    }

    .neiye-contact:before {
        background: none
    }

    .neiye-lianxi .left {
        width: 100%;
        float: none;
        padding-right: 0;
        margin-bottom: 40px
    }

    .neiye-lianxi .left .lx-title {
        font-size: 18px
    }

    .neiye-lianxi .left .lianxilist {
        max-width: 100%
    }

    .neiye-lianxi .left .lianxilist li {
        margin-bottom: 20px
    }

    .neiye-lianxi .left .lianxilist li i {
        width: 35px;
        height: 35px
    }

    .neiye-lianxi .left .lianxilist li i svg {
        width: 20px;
        height: 20px
    }

    .neiye-lianxi .left .lianxilist li i img {
        width: 20px;
        height: 20px
    }

    .neiye-lianxi .left .lianxilist li .box .text01 {
        font-size: 14px;
        margin-bottom: 0
    }

    .neiye-lianxi .left .lianxilist li .box .text02 {
        font-size: 16px
    }

    .neiye-lianxi .left .share-text {
        font-size: 17px
    }

    .neiye-lianxi .left .lx-share .share a {
        width: 35px;
        height: 35px;
        margin-right: 2px
    }

    .neiye-lianxi .left .lx-share .share a svg {
        width: 16px;
        height: 16px
    }

    .neiye-lianxi .right {
        width: 100%;
        float: none;
        padding-left: 0
    }

    .neiye-lianxi .right .wenzi {
        font-size: 15px
    }

    .neiye-lianxi .right .lx-title {
        font-size: 18px;
        margin-bottom: 3px
    }

    .layui-form {
        margin-top: 20px
    }

    .layui-form .list .input-form,
    .layui-form .list .textarea-form {
        line-height: 35px;
        height: 37px;
        font-size: 15px;
        padding-left: 18px;
        padding-right: 15px
    }

    .layui-form .list .xh {
        font-size: 15px;
        left: 10px
    }

    .layui-form .list .textarea-form {
        min-height: 130px;
        padding: 10px 15px 10px 18px
    }

    .layui-form .list li.yanzheng {
        font-size: 15px;
        min-width: 220px;
        height: 60px;
        line-height: 58px
    }

    .layui-form .list li.agree-btn .agree {
        font-size: 15px;
        margin-bottom: 20px
    }

    .layui-form .list li.agree-btn .agree input {
        width: 20px;
        height: 20px
    }

    .layui-form .list .submit {
        height: 37px;
        line-height: 37px;
        min-width: 140px;
        border-radius: 30px;
        font-size: 15px
    }

    .neiye-lianxi {
        padding: 10px 0 40px 0
    }
}

.neiye-download {
    padding-bottom: 11rem
}

.neiye-download .list {
    overflow: hidden;
    margin-bottom: 3.4rem
}

.neiye-download .list li {
    width: 31.666666%;
    margin-right: 2.5%;
    background: url(../images/download-bj.png) no-repeat center center;
    margin-bottom: 3.6rem;
    float: left;
    -webkit-transition: background .5s;
    transition: background .5s;
    background-size: cover
}

.neiye-download .list li:nth-child(3n) {
    margin-right: 0
}

.neiye-download .list li .box {
    display: block;
    padding: 3.6rem 3rem 2.4rem 3.6rem;
    overflow: hidden
}

.neiye-download .list li .box .title {
    font-size: 2rem;
    color: #333;
    font-weight: normal;
    line-height: 4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5rem
}

.neiye-download .list li .box .info .wenzi {
    font-size: 1.6rem;
    color: #999;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 3rem;
    float: left
}

.neiye-download .list li .box .info .down-img {
    float: right
}

.neiye-download .list li .box .info .down-img svg {
    fill: var(--main-color)
}

.neiye-download .list li:hover {
    background: url(../images/download-bj1h.png) no-repeat center center
}

.neiye-download .list li:hover .box .title {
    color: #fff
}

.neiye-download .list li:hover .box .info .wenzi {
    color: #fff
}

.neiye-download .list li:hover .box .info .down-img svg {
    fill: #fff
}

@media (max-width:1023px) {
    .neiye-download {
        padding-bottom: 40px
    }

    .neiye-download .list li {
        width: 49%;
        margin-right: 2%
    }

    .neiye-download .list li:nth-child(3n) {
        margin-right: 2%
    }

    .neiye-download .list li:nth-child(2n) {
        margin-right: 0px
    }
}

@media (max-width:640px) {
    .neiye-download .list {
        margin-bottom: 15px
    }

    .neiye-download .list li {
        width: 100%;
        margin-right: 0%
    }

    .neiye-download .list li:nth-child(3n) {
        margin-right: 0%
    }
}

.page .span {
    display: inline-block;
    vertical-align: top;
    font-size: 2rem;
    line-height: 4.8rem;
    padding: 0 15px;
    color: #222
}

.page .input {
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 48px;
    text-align: center;
    color: #222;
    background-color: #fff;
    border: 0;
    -webkit-box-shadow: 0 0 0 1px #e6e6e6
}

.page em {
    font-style: normal;
    font-size: 18px
}

.page {
    clear: both;
    text-align: center;
    font-size: 0;
    color: #000000
}

.page a {
    border-radius: 5px;
    color: #000;
    display: inline-block;
    text-align: center;
    font-size: 2rem;
    min-width: 4.8rem;
    line-height: 5.2rem;
    text-transform: uppercase;
    height: 4.8rem;
    margin: 0 8px;
    padding: 0 5px;
    vertical-align: middle;
    -webkit-transition: background .5s;
    transition: background .5s;
    -webkit-box-shadow: 0 0 0 1px #cccccc
}

.page a span {
    display: block;
    vertical-align: middle
}

.page a.cur,
.page a:hover {
    background-color: var(--main-color);
    -webkit-box-shadow: 0 0 0 1px var(--main-color);
    color: #ffffff
}

.page a.prev,
.page a.next {
    color: #858585
}

.page a.prev {
    padding-left: 1.2rem;
    margin-right: 5px;
    width: 4.8rem
}

.page a.prev span {
    background: url(../images/prev-01.png) no-repeat left center;
    background-size: 6px;
    display: inline-block;
    min-width: 12px;
    line-height: 4.8rem;
    height: 4.8rem
}

.page a.prev:hover {
    color: #ffffff
}

.page a.prev:hover span {
    background: url(../images/prev-02.png) no-repeat left center;
    background-size: 6px;
    display: inline-block;
    min-width: 12px;
    line-height: 4.8rem;
    height: 4.8rem
}

.page a.next {
    padding-right: 1.2rem;
    margin-left: 5px;
    width: 4.8rem
}

.page a.next span {
    background: url(../images/next-01.png) no-repeat right center;
    background-size: 6px;
    display: inline-block;
    min-width: 12px;
    line-height: 4.6rem;
    height: 4.8rem
}

.page a.next:hover {
    color: #ffffff
}

.page a.next:hover span {
    background: url(../images/next-02.png) no-repeat right center;
    background-size: 6px
}

@media (max-width:768px) {

    .page a,
    .page em {
        display: none;
        font-size: 14px
    }

    .page a.prev,
    .page a.next {
        display: inline-block
    }
}

.neiye-newslist {
    overflow: hidden;
    padding: 0rem 0 3rem 0
}

.neiye-newslist .font-48 {
    text-align: center;
    margin-bottom: 4.8rem
}

.neiye-newslist ul {
    overflow: hidden
}

.neiye-newslist ul li {
    width: 32%;
    margin-right: 2%;
    float: left;
    background: #fbfafa;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    margin-bottom: 3.3rem
}

.neiye-newslist ul li:nth-child(3n) {
    margin-right: 0
}

.neiye-newslist ul li .pic {
    border-radius: 1.5rem
}

.neiye-newslist ul li .pic img {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.neiye-newslist ul li .pic:after {
    padding-bottom: 65.5%
}

.neiye-newslist ul li .xwbox {
    padding: 3rem
}

.neiye-newslist ul li .xwbox .date {
    font-family: Poppins-Regular;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem
}

.neiye-newslist ul li .xwbox .date img {
    vertical-align: middle;
    margin-top: -0.3rem;
    margin-right: 1.4rem
}

.neiye-newslist ul li .xwbox .biaoti {
    font-size: 2rem;
    color: #000;
    font-family: var(--font-family-P-B);
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal
}

.neiye-newslist ul li .xwbox .wenzi {
    color: #666;
    font-size: 1.8rem;
    line-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.neiye-newslist ul li:hover,
.neiye-newslist ul li.active {
    color: var(--main-color)
}

.neiye-newslist ul li:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.neiye-newslist ul li:hover .xwbox .biaoti {
    color: var(--main-color)
}

.inside-news {
    padding-bottom: 11rem
}

@media (max-width:1200px) {
    .neiye-newslist {
        padding: 40px 0
    }

    .neiye-newslist ul li {
        width: 48%;
        margin-right: 2%
    }

    .neiye-newslist ul li:nth-child(3n) {
        margin-right: 2%
    }

    .neiye-newslist ul li:nth-child(2n) {
        margin-right: 0
    }

    .neiye-newslist ul li .xwbox .date {
        font-size: 14px
    }

    .neiye-newslist ul li .xwbox .biaoti {
        font-size: 16px
    }

    .neiye-newslist ul li .xwbox .wenzi {
        font-size: 14px;
        line-height: 24px
    }

    .inside-news {
        padding-bottom: 40px
    }
}

@media (max-width:520px) {
    .neiye-newslist ul li {
        width: 100%;
        margin-right: 0
    }
}

.inside-news .list {
    position: relative;
    overflow: hidden;
    margin: 0px 1rem 10rem 1rem
}

.inside-news .list .item .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inside-news .list .item .box .pic {
    position: relative;
    overflow: hidden;
    width: 42%;
    border-radius: 1rem
}

.inside-news .list .item .box .pic:after {
    padding-bottom: 65.2173913%
}

.inside-news .list .item .box .pic img {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.inside-news .list .item .box .text {
    width: 58%;
    padding-left: 6rem
}

.inside-news .list .item .box .text .time {
    font-size: 1.6rem;
    color: #666666;
    margin-bottom: 1rem
}

.inside-news .list .item .box .text .tit {
    font-size: 2.4rem;
    color: #000;
    font-family: var(--font-family-P-B);
    margin-bottom: 1rem
}

.inside-news .list .item .box .text .txt {
    color: #777777;
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 2.3rem
}

.inside-news .list .item .box:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.inside-news .list .item .box:hover .text .tit {
    color: var(--main-color)
}

.inside-news .list .item .box:hover .text .morebtn p:before {
    width: 100%
}

.inside-news .list .swiper-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 6rem;
    max-width: 100rem
}

.inside-news .list .swiper-button-next {
    top: auto;
    left: auto;
    right: auto;
    margin-top: auto;
    width: 4rem;
    height: 4rem;
    position: relative;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border: solid 1px #e2e2e2
}

.inside-news .list .swiper-button-next:after {
    font-size: 1.4rem;
    color: #717171
}

.inside-news .list .swiper-button-next:hover {
    background: var(--main-color);
    border: solid 1px var(--main-color)
}

.inside-news .list .swiper-button-next:hover:after {
    color: #ffffff
}

.inside-news .list .swiper-button-prev {
    top: auto;
    left: auto;
    right: auto;
    margin-top: auto;
    width: 4rem;
    height: 4rem;
    position: relative;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border: solid 1px #e2e2e2
}

.inside-news .list .swiper-button-prev:after {
    font-size: 1.4rem;
    color: #717171
}

.inside-news .list .swiper-button-prev:hover {
    background: var(--main-color);
    border: solid 1px var(--main-color)
}

.inside-news .list .swiper-button-prev:hover:after {
    color: #ffffff
}

.inside-news .list .swiper-pagination {
    height: 1px;
    width: 80%;
    margin: 0 auto;
    margin-top: 2.4rem;
    position: relative;
    background: #e6e6e6
}

.inside-news .list .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #ff4f00;
    height: 2px
}

@media (max-width:1023px) {
    .inside-news {
        padding-bottom: 50px
    }

    .inside-news .list {
        margin: 0px 0 5px 0
    }

    .inside-news .list .item .box {
        display: block
    }

    .inside-news .list .item .box .pic {
        width: 100%
    }

    .inside-news .list .item .box .text {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }

    .inside-news .list .item .box .text .time {
        font-size: 14px
    }

    .inside-news .list .item .box .text .tit {
        font-size: 18px
    }

    .inside-news .list .item .box .text .txt {
        font-size: 15px
    }

    .inside-news .list .swiper-box {
        margin-top: 20px
    }
}

.newsxx {
    margin-top: 3rem
}

.newsxx .neiyecurrent {
    position: inherit !important;
    bottom: 0;
    right: 0;
    color: #000000
}

.newsxx .neiyecurrent a {
    color: #000000
}

.newsxx .neiyecurrent span {
    color: #000
}

.neiye-casexiangxi {
    padding-top: 6rem;
    position: relative;
    padding-bottom: 13.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.neiye-casexiangxi .left {
    width: 70%;
    float: left
}

.neiye-casexiangxi .left .xw-title {
    font-size: 3.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1.7rem
}

.neiye-casexiangxi .left .xwtext {
    font-size: 1.6rem;
    color: #999999;
    margin-bottom: 3.1rem
}

.neiye-casexiangxi .left .xwtext span {
    padding-right: 3rem
}

.neiye-casexiangxi .left .casetext {
    margin-bottom: 6.6rem;
    font-size: 1.8rem;
    line-height: 3.6rem;
    color: #333
}

.neiye-casexiangxi .left .casetext p {
    margin-bottom: 1.8rem
}

.neiye-casexiangxi .left .casetext p:last-child {
    margin-bottom: 0
}

.neiye-casexiangxi .zjright {
    width: 25.2%;
    float: right;
    -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.15);
    padding: 4.2rem 2rem 3rem 2rem;
    border-radius: 1.5rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 9;
    right: 0;
    top: 15rem
}

.neiye-casexiangxi .zjright h2 {
    font-size: 2.6rem;
    font-family: var(--font-family-A-B);
    font-weight: normal;
    color: #333;
    margin-bottom: 2.5rem
}

.neiye-casexiangxi .zjright li {
    width: 100%;
    overflow: hidden;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e4e4e4
}

.neiye-casexiangxi .zjright li .xxleft {
    width: 41%;
    float: left
}

.neiye-casexiangxi .zjright li .xxleft .pic {
    position: relative
}

.neiye-casexiangxi .zjright li .xxleft .pic:after {
    padding-bottom: 75%
}

.neiye-casexiangxi .zjright li .xxleft .pic img {
    border-radius: 0.8rem;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.neiye-casexiangxi .zjright li .xxright {
    width: 59%;
    padding-left: 2rem;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 9rem
}

.neiye-casexiangxi .zjright li .xxright .date {
    font-size: 1.4rem;
    color: #999
}

.neiye-casexiangxi .zjright li .xxright .bt {
    font-weight: normal;
    margin-top: 0.5rem;
    font-size: 1.6rem;
    color: #333333
}

.neiye-casexiangxi .zjright li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.neiye-casexiangxi .zjright li:hover .xxleft .pic img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.neiye-casexiangxi .zjright li:hover .xxright .bt {
    color: var(--main-color)
}

.label-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.5rem
}

.label-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-right: 2rem
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    line-height: 30px
}

.tags a {
    color: #ffffff
}

.tag {
    background-color: #b2b2b2;
    padding: 0px 18px;
    font-size: 1.4rem
}

.tag:hover {
    background: var(--main-color)
}

.nav-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 39px;
    padding-top: 34px;
    max-width: 1000px
}

.nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.3rem
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--main-color)
}

.nav-link a {
    color: var(--main-color)
}

.nav-bar .nav-item:last-child .nav-link {
    text-align: right
}

.nav-text {
    font-size: 1.8rem;
    color: #333333
}

.nav-text a:hover {
    color: var(--main-color)
}

.back {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.back-icon {
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 0.3rem
}

.case-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0px 50px 0px
}

.case-card {
    background-color: #fff;
    padding: 2.5rem;
    background-color: #f9f9f9
}

.card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.2rem
}

.card-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333
}

.card-content p {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 28px;
    color: #555555
}

.card-content strong {
    color: #333333
}

@media (max-width:1200px) {
    .neiye-casexiangxi {
        padding-bottom: 40px;
        padding-top: 30px
    }

    .neiye-casexiangxi .zjright {
        display: none
    }

    .neiye-casexiangxi .left {
        width: 100%;
        float: none
    }

    .neiye-casexiangxi .left .casetext {
        margin-bottom: 40px;
        font-size: 15px;
        line-height: 28px
    }

    .tag {
        font-size: 15px
    }

    .tags {
        line-height: 35px
    }

    .nav-bar {
        margin-top: 20px;
        padding-top: 20px
    }

    .nav-link {
        font-size: 15px
    }

    .nav-text {
        font-size: 16px
    }

    .back-icon {
        width: 28px;
        height: 28px
    }

    .xq-title {
        margin-bottom: 20px
    }

    .xq-title h1 {
        font-size: 20px
    }

    .xq-title img {
        margin-right: 8px
    }

    .neiye-casexiangxi .left .xw-title {
        font-size: 20px;
        margin-bottom: 13px
    }

    .neiye-casexiangxi .left .xwtext {
        font-size: 14px;
        margin-bottom: 20px
    }

    .neiye-casexiangxi .left .xwtext span {
        padding-right: 3rem
    }
}

@media (max-width:768px) {
    .tag {
        font-size: 13px
    }

    .nav-bar {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .nav-item.prev {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 45%
    }

    .nav-item.back {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        margin-top: 20px;
        text-align: center
    }

    .nav-item.next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 45%;
        text-align: right
    }

    .nav-link {
        font-size: 13px
    }

    .nav-text {
        font-size: 13px;
        overflow: hidden;
        height: 20px
    }

    .nav-item.back .back-icon {
        margin: 0 auto 0.3rem
    }
}

.inside-banner .product-text {
    top: 15.3%;
    text-align: center
}

.inside-banner .product-text .tit {
    color: var(--main-color)
}

.inside-banner .product-text .info {
    font-size: 1.8rem;
    color: #333333
}

@media (max-width:1023px) {
    .inside-banner .product-text {
        top: 25%
    }
}

.product-page {
    background: #f9f9f9;
    padding-bottom: 11rem
}

.product-servicebj {
    background: #f9f9f9;
    padding-bottom: 8rem;
    margin-bottom: 4rem
}

.product-servicebj .home-service {
    padding-bottom: 0
}

.inside-product {
    background: #f9f9f9;
    padding: 10rem 0 6rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.inside-product .leftAsideMDiv {
    width: 33.5%;
    background: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 10.8rem;
    float: left
}

.inside-product .leftAsideMDiv .protitle {
    font-size: 2.6rem;
    color: #fff;
    background: var(--main-color);
    height: 8.6rem;
    line-height: 8.6rem;
    overflow: hidden;
    padding: 0 4rem
}

.inside-product .leftAsideMDiv .classifyAside {
    font-size: 1.8rem;
    position: relative;
    z-index: 1
}

.inside-product .leftAsideMDiv .classifyAside .list>li {
    overflow: hidden;
    padding: 3rem 0;
    border-bottom: 1px solid #eaeaea
}

.inside-product .leftAsideMDiv .classifyAside .list>li:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.inside-product .leftAsideMDiv .classifyAside .list>li .title {
    position: relative;
    z-index: 1;
    padding-left: 5rem
}

.inside-product .leftAsideMDiv .classifyAside .list>li .title>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 3.2rem;
    font-family: var(--font-family-B-B);
    font-size: 2rem;
    color: #000;
    padding: 0 5rem 0 2.5rem;
    position: relative;
    display: block
}

.inside-product .leftAsideMDiv .classifyAside .list>li .title .box {
    position: absolute;
    left: 0;
    width: 7rem;
    height: 4.5rem;
    top: -0.6rem
}

.inside-product .leftAsideMDiv .classifyAside .list>li .title .box .pic {
    position: relative
}

.inside-product .leftAsideMDiv .classifyAside .list>li .title .box .pic:after {
    padding-bottom: 62.5%
}

.inside-product .leftAsideMDiv .classifyAside .list>li .icon {
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    z-index: 999;
    top: 50%;
    margin-top: -1.1rem;
    right: 4rem
}

.inside-product .leftAsideMDiv .classifyAside .list>li .icon:after,
.inside-product .leftAsideMDiv .classifyAside .list>li .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #333;
    content: '';
    display: block
}

.inside-product .leftAsideMDiv .classifyAside .list>li .icon:after {
    width: 1.4rem;
    height: .2rem;
    margin-top: -0.1rem;
    margin-left: -0.7rem
}

.inside-product .leftAsideMDiv .classifyAside .list>li .icon:before {
    width: .2rem;
    height: 1.4rem;
    margin-left: -0.1rem;
    margin-top: -0.7rem
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title>a:hover,
.inside-product .leftAsideMDiv .classifyAside .list>li:hover .title>a:hover {
    color: var(--main-color)
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title>a:hover .icon,
.inside-product .leftAsideMDiv .classifyAside .list>li:hover .title>a:hover .icon {
    background: var(--main-color)
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title>a:hover .icon:before,
.inside-product .leftAsideMDiv .classifyAside .list>li:hover .title>a:hover .icon:before {
    border-color: #fff
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title .icon:before {
    display: none
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title .icon:after,
.inside-product .leftAsideMDiv .classifyAside .list>li.active .title .icon:before {
    background-color: var(--main-color)
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .title>a {
    color: var(--main-color)
}

.inside-product .leftAsideMDiv .classifyAside .list>li.active .child {
    display: block
}

.inside-product .leftAsideMDiv .classifyAside .list .child {
    display: none;
    padding-top: 1.7rem
}

.inside-product .leftAsideMDiv .classifyAside .list .child .list>li {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
    padding: 0 0 .5rem 6rem
}

.inside-product .leftAsideMDiv .classifyAside .list .child .list>li a {
    display: block;
    font-size: 1.6rem;
    color: #333;
    line-height: 4rem;
    padding: 0rem 0 0rem 2.5rem
}

    .inside-product .leftAsideMDiv .classifyAside .list .child .list > li a:hover, .inside-product .leftAsideMDiv .classifyAside .list .child .list > li.active a {
        color: var(--main-color)
    }

.inside-product .leftAsideMDiv .classifyAside .list .child .list>li:active a {
    color: var(--main-color)
}

.inside-product .leftAsideMDiv .classifyAside .list .child .list>li:nth-last-child(1) {
    border-bottom: 0
}

.inside-product .right {
    width: 64%;
    float: right
}

.inside-product .right .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem
}

.inside-product .right .list>li {
    width: 50%;
    padding: 0 1rem 2rem 1rem
}

.inside-product .right .list .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
    padding: 2.2rem 5rem 5rem 5rem
}

.inside-product .right .list .pic {
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative
}

.inside-product .right .list .pic::after {
    content: "";
    display: block;
    padding-bottom: 73.33333333%
}

.inside-product .right .list .pic img {
    -webkit-transition: .5s;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.inside-product .right .list .title {
    font-family: var(--font-family-P-B);
    font-size: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-bottom: .5rem;
    color: var(--sub-color-2)
}

.inside-product .right .list .info {
    color: #474747;
    font-size: 1.6rem;
    line-height: 2.8rem;
    height: 5.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-P-R)
}

.inside-product .right .list .btnDiv a,
.inside-product .right .list .btnDiv span {
    font-family: var(--font-family-P-B);
    display: inline-block;
    font-size: 1.4rem;
    color: var(--main-color);
    position: relative
}

.inside-product .right .list .btnDiv a::after,
.inside-product .right .list .btnDiv span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--main-color)
}

.inside-product .right .list .box:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.inside-product .right .list .box:hover .title {
    color: var(--main-color)
}

.inside-product .item.show {
    display: block
}

.inside-product .page {
    margin-top: 6rem
}

@media screen and (max-width:1200px) {
    .product-main {
        padding: 40px 0
    }

    .product-main .leftAsideMDiv {
        display: none
    }

    .product-main .right {
        width: 100%;
        padding-left: 0
    }

    .product-main .right .rightone .rtit {
        font-size: 18px
    }

    .product-main .right .rightone p {
        font-size: 15px
    }
}

@media screen and (max-width:1023px) {
    .product-main .right .righttwo li {
        width: 48%;
        margin-right: 4%
    }

    .product-main .right .righttwo li:nth-child(3n) {
        margin-right: 4%
    }

    .product-main .right .righttwo li:nth-child(2n) {
        margin-right: 0px
    }

    .inside-product .leftAsideMDiv {
        display: none
    }

    .inside-product .right {
        width: 100%;
        float: none
    }

    .inside-product {
        padding: 40px 0 30px 0
    }

    .inside-product .page {
        margin-top: 30px
    }

    .inside-product .right .list .box {
        padding: 20px 10px 20px 10px !important
    }

    .inside-product .right .list .pic {
        height: auto;
        margin-bottom: 10px
    }

    .inside-product .right .list .title {
        font-size: 18px;
        margin-bottom: 5px
    }

    .inside-product .right .list .info {
        font-size: 14px;
        line-height: 28px;
        height: 56px;
        margin-bottom: 13px
    }

    .inside-product .right .list .btnDiv a,
    .inside-product .right .list .btnDiv span {
        font-size: 14px
    }

    .product-page {
        padding-bottom: 40px
    }

    .product-servicebj {
        padding-bottom: 40px;
        margin-bottom: 20px
    }
}

@media screen and (max-width:640px) {
    .product-main .right .righttwo li {
        width: 100%;
        margin-right: 0px
    }

    .inside-product .right .list .pic::after {
        padding-bottom: 60.33333333%
    }
}

.product-xxone {
    background: #f9f9f9;
    overflow: hidden;
    margin-top: 0;
    padding-top: 3rem
}

.product-xxtwo {
    background: #f9f9f9;
    padding: 5.5rem 0 10rem 0;
    overflow: hidden
}

.product-xxtwo .proleft {
    width: 42%;
    border: 1px solid #ececec;
    background: #fff;
    float: left
}

.product-xxtwo .proleft .list li .pic {
    position: relative;
    overflow: hidden
}

.product-xxtwo .proleft .list li .pic:after {
    padding-bottom: 100%
}

.product-xxtwo .proleft .swiper-container-horizontal>.swiper-pagination-bullets,
.product-xxtwo .proleft .swiper-pagination-custom,
.product-xxtwo .proleft .swiper-pagination-fraction {
    bottom: 2.6rem
}

.product-xxtwo .proleft .swiper-pagination-bullet {
    background: var(--main-color);
    opacity: .3
}

.product-xxtwo .proleft .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1
}

.product-xxtwo .proright {
    width: 58%;
    float: right;
    padding-left: 12rem;
    padding-top: 14rem
}

.product-xxtwo .proright .protext1 {
    margin-bottom: 17rem
}

.product-xxtwo .proright .protext1 .title {
    font-size: 3.6rem;
    color: #000;
    font-family: var(--font-family-P-B);
    font-weight: normal
}

.product-xxtwo .proright .protext1 .info {
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: var(--sub-color-2)
}

.product-xxtwo .proright .protext2 .more-button {
    min-width: 22rem;
    background: #1d4da0;
    padding: 0 2.5rem
}

.product-xxtwo .proright .protext2 .more-button img {
    vertical-align: middle;
    margin-right: .7rem
}

.product-xxtwo .proright .protext2 .more-button i {
    font-style: normal
}

.product-xxtwo .proright .protext2 .more-button:hover {
    background: #000
}

.product-xxtwo .proright .protext2 .more-button2 {
    margin-left: 2rem;
    background: #f6611e
}

@media screen and (max-width:1023px) {
    .product-xxtwo {
        padding: 40px 0
    }

    .product-xxtwo .proleft {
        width: 100%;
        float: none
    }

    .product-xxtwo .proleft .swiper-container-horizontal>.swiper-pagination-bullets,
    .product-xxtwo .proleft .swiper-pagination-custom,
    .product-xxtwo .proleft .swiper-pagination-fraction {
        bottom: 10px
    }

    .product-xxtwo .proright {
        width: 100%;
        float: none;
        padding-left: 0;
        padding-top: 20px
    }

    .product-xxtwo .proright .protext1 {
        margin-bottom: 20px
    }

    .product-xxtwo .proright .protext1 .title {
        font-size: 20px
    }

    .product-xxtwo .proright .protext1 .info {
        font-size: 15px
    }

    .product-xxtwo .proright .protext2 .more-button {
        font-size: 14px;
        padding: 0px 1rem;
        min-width: 19rem;
        text-align: center
    }

    .product-xxtwo .proright .protext2 .more-button img {
        max-width: 18px
    }

    .product-xxtwo .proright .protext2 .more-button2 {
        margin-left: 1rem
    }
}

.product-biaoti {
    font-size: 3.6rem;
    color: var(--sub-color-2);
    font-family: var(--font-family-P-B);
    font-weight: normal;
    position: relative;
    margin-bottom: 3.7rem
}

.product-biaoti span {
    border-bottom: 1px solid #222
}

.product-biaoti:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -0.3rem;
    min-width: 27rem;
    background: var(--main-color);
    height: 1px;
    display: inline-block
}

@media screen and (max-width:1023px) {
    .product-biaoti {
        font-size: 20px
    }

    .product-biaoti span {
        padding-bottom: 3px
    }

    .product-biaoti:before {
        min-width: 100px;
        bottom: -5px
    }
}

.product-xxthree {
    padding: 9rem 0 10.7rem 0
}

.product-xxthree .proinfo {
    font-size: 1.8rem;
    line-height: 3.2rem;
    color: var(--sub-color-2)
}

.product-xxthree .proinfo p {
    margin-bottom: 1.4rem
}

.product-xxthree .product-parameter {
    margin-top: 8.3rem;
	font-size:1.8rem;
	line-height:2;
}

.product-xxthree .product-parameter .product-biaoti:before {
    min-width: 10rem
}

.product-xxthree .product-parameter ul {
    border: 1px solid #eeeeee;
    margin-bottom: 7.5rem
}

.product-xxthree .product-parameter ul li {
    border-bottom: 1px solid #eeeeee;
    padding: 1.6rem 1.8rem
}

.product-xxthree .product-parameter ul li .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%
}

.product-xxthree .product-parameter ul li .item p {
    font-size: 1.8rem;
    color: #000;
    width: 70%;
    float: right
}

.product-xxthree .product-parameter ul li .item p:first-child {
    width: 25%
}

.product-xxthree .product-parameter ul li:last-child {
    border-bottom: none
}

.product-xxthree .product-parameter ul li:first-child {
    /* padding: 2.7rem 1.8rem; */
    font-family: var(--font-family-P-B)
}

.product-xxthree .product-parameter ul li:first-child .item p {
    color: var(--main-color)
}

.product-xxthree .product-parameter ul li:hover {
    background: #f9f9f9
}

.product-xxthree .nav-bar {
    max-width: 100%
}

@media screen and (max-width:1023px) {
    .product-xxthree {
        padding: 40px 0
    }

    .product-xxthree .product-parameter {
        margin-top: 40px
    }

    .product-xxthree .product-parameter .product-biaoti:before {
        min-width: 50px;
        bottom: -5px
    }

    .product-xxthree .product-parameter .list li .item p {
        width: 50%;
        padding-right: 3rem
    }

    .product-xxthree .product-parameter .list li .item p:first-child {
        width: 50%
    }
}

.product-xxfour {
    padding-bottom: 10rem;
    background: #f9f9f9;
    padding-top: 9rem
}

.product-xxfour .product-biaoti:before {
    min-width: 20rem
}

.product-xxfour .related-list {
    position: relative;
    padding-top: 2.6rem
}

.product-xxfour .related-list .list li .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    padding: 2.2rem 5rem 5rem 5rem
}

.product-xxfour .related-list .list li .box .pic {
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative
}

.product-xxfour .related-list .list li .box .pic:after {
    content: "";
    display: block;
    padding-bottom: 73.33333333%
}

.product-xxfour .related-list .list li .box .pic img {
    -webkit-transition: .5s;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.product-xxfour .related-list .list li .box .text .title {
    font-family: var(--font-family-P-B);
    font-size: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-bottom: .5rem;
    color: var(--sub-color-2)
}

.product-xxfour .related-list .list li .box .text .info {
    color: #474747;
    font-size: 1.6rem;
    line-height: 2.8rem;
    height: 5.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-P-R)
}

.product-xxfour .related-list .list li .box .text .btnDiv span {
    font-family: var(--font-family-P-B);
    display: inline-block;
    font-size: 1.4rem;
    color: var(--main-color);
    position: relative
}

.product-xxfour .related-list .list li .box .text .btnDiv span:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--main-color)
}

.product-xxfour .related-list .list li:hover .pic img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.product-xxfour .related-list .list li:hover .text .title {
    color: var(--main-color)
}

.product-xxfour .related-list .swiper-button-next:after,
.product-xxfour .related-list .swiper-button-prev:after {
    content: ""
}

.product-xxfour .related-list .swiper-button-next,
.product-xxfour .related-list .swiper-button-prev {
    width: 48px;
    height: 48px;
    z-index: 666;
    top: 50%
}

.product-xxfour .related-list .swiper-button-next {
    left: auto;
    right: -2.6rem;
    background: url(../images/pright.png) no-repeat center center
}

.product-xxfour .related-list .swiper-button-prev {
    background: url(../images/pleft.png) no-repeat center center;
    left: -2.6rem
}

.product-xxfour .related-list .swiper-button-disabled.swiper-button-prev,
.product-xxfour .related-list .swiper-button-prev:hover {
    background: url(../images/plefth.png) no-repeat center center;
    opacity: 1
}

.product-xxfour .related-list .swiper-button-disabled.swiper-button-next,
.product-xxfour .related-list .swiper-button-next:hover {
    background: url(../images/righth.png) no-repeat center center;
    opacity: 1
}

@media screen and (max-width:1023px) {
    .product-xxfour {
        padding: 40px 0
    }

    .product-xxfour .related-list {
        padding-top: 10px
    }

    .product-xxfour .related-list .list li .box .text .title {
        font-size: 20px
    }

    .product-xxfour .product-biaoti:before {
        min-width: 80px
    }
}

.product-xxfive {
    padding: 9rem 0 10rem 0
}

.product-xxfive .product-biaoti {
    margin-bottom: 0
}

.product-xxfive .product-biaoti span {
    border-bottom: none
}

.product-xxfive .product-biaoti:before {
    display: none
}

.product-xxfive .liuyan-title {
    font-size: 1.6rem;
    color: #888888
}

.product-xxfive .layui-form li:nth-child(1),
.product-xxfive .layui-form li:nth-child(2),
.product-xxfive .layui-form li:nth-child(3) {
    width: 31.3%;
    float: left;
    margin-right: 3%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.product-xxfive .layui-form li:nth-child(3) {
    margin-right: 0px
}

@media screen and (max-width:1023px) {
    .product-xxfive {
        padding: 40px 0
    }

    .product-xxfive .layui-form .list {
        width: 100%
    }

    .product-xxfive .layui-form .list li:nth-child(1),
    .product-xxfive .layui-form .list li:nth-child(2),
    .product-xxfive .layui-form .list li:nth-child(3) {
        width: 100%;
        float: none;
        margin-right: 0%
    }
}


@media screen and (max-width: 768px) {
    .global .area .txt {
        opacity: 0;
    }
}