* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0
}

body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, b, small, u, i, center, dl, dt, dd, ol, ul, li, sub, sup, tt, var, del, dfn, ins, kbd, q, s, samp, strike, applet, object, iframe, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, blockquote, pre, a, abbr, acronym, address, big, cite, code, mark, audio, video, input, textarea, select {
    margin: 0;
    padding: 0
}

div, p, span, i, em {
    white-space: inherit !important
}

:root {
    --main-color: #c5ff00;
    --font-famil-1: "Ubuntu-Light";
    --font-famil-2: "Ubuntu-Regular";
    --font-famil-3: "Ubuntu-Bold";
    --font-famil-4: "POPPINS-REGULAR"
}

a {
    color: #666;
    outline: none;
    text-decoration: none
}

a:hover {
    color: var(--main-color)
}

ol, ul {
    list-style: none
}

img {
    border: 0;
    width: auto;
    height: auto
}

table {
    border-collapse: collapse;
    width: 100%
}

input[type='reset'], input[type='button'], input[type='submit'], input[type='radio'] {
    cursor: pointer;
    outline: none
}

input[type='checkbox'], input[type='radio'] {
    position: relative;
    vertical-align: middle;
    margin: -2px 5px 1px
}

textarea, input[type='email'], input[type='date'], input[type='password'], input[type='text'] {
    padding: 0;
    color: #616161;
    outline: none
}

html, body {
    position: relative;
    scroll-behavior: smooth
}

html {
    font-size: 10px
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 10px !important
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 8px !important
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-thumb {
    height: 0;
    opacity: .5;
    background: rgba(0, 0, 0, 0.08);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color)
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--main-color)
}

.f-l {
    float: left
}

.f-r {
    float: right
}

.dw {
    top: -2rem;
    width: 1px;
    z-index: -1;
    position: absolute
}

.circle {
    width: 12rem;
    height: 12rem;
    display: inline-block;
    text-align: center;
    z-index: 2;
    margin: auto;
    border-radius: 50%;
    background: transparent
}

.circle:after {
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: ripple 2s ease-out 0s infinite;
    animation: ripple 2s ease-out 0s infinite;
    background-color: var(--main-color)
}

.circle:before {
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-animation: ripple 2s ease-out 1s infinite;
    animation: ripple 2s ease-out 1s infinite
}

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1, .1);
        transform: scale(.1, .1)
    }
    50% {
        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)
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.clearfix:after {
    clear: both;
    height: 0;
    content: "";
    line-height: 0;
    font-size: 0;
    display: block
}

.vcenter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
    margin: auto
}

.hid {
    text-overflow: ellipsis;
    white-space: nowrap
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ellipsis1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.ellipsis2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2
}

.ellipsis3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3
}

.ellipsis4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4
}

.ellipsis5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes dong {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes dong {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp2 {
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

@-webkit-keyframes fadeInUp3 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp3 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp3 {
    -webkit-animation-name: fadeInUp3;
    animation-name: fadeInUp3
}

@-webkit-keyframes fadeInDown2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown3 {
    -webkit-animation-name: fadeInDown3;
    animation-name: fadeInDown3
}

@-webkit-keyframes fadeInDown3 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown3 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown2 {
    -webkit-animation-name: fadeInDown2;
    animation-name: fadeInDown2
}

@-webkit-keyframes fadeInLeft {
    from {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeft2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInLeft2 {
    -webkit-animation-name: fadeInLeft2;
    animation-name: fadeInLeft2
}

@-webkit-keyframes fadeInRight2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight2 {
    -webkit-animation-name: fadeInRight2;
    animation-name: fadeInRight2
}

.scrollArrow {
    -webkit-animation-name: scrollArrow;
    animation-name: scrollArrow
}

.scrollArrow1 {
    -webkit-animation-name: scrollArrow1;
    animation-name: scrollArrow1
}

@-webkit-keyframes titFadeup1 {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0
    }
    100% {
        opacity: 1;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes titFadeup1 {
    0% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0
    }
    100% {
        opacity: 1;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes titFadeup1_1 {
    0% {
        opacity: 1;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0
    }
}

@keyframes titFadeup1_1 {
    0% {
        opacity: 1;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0
    }
}

@-webkit-keyframes imgScale {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes imgScale {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes fadeInup {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInup {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInup1 {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, 60px);
        transform: translate(-50%, 60px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

@keyframes fadeInup1 {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, 60px);
        transform: translate(-50%, 60px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

.titFadeup1 {
    -webkit-animation: titFadeup1 1.1s ease-in-out both .1s;
    animation: titFadeup1 1.1s ease-in-out both .1s
}

.titFadeup2 {
    -webkit-animation: titFadeup1 1.1s ease-in-out both .2s;
    animation: titFadeup1 1.1s ease-in-out both .2s
}

.fadeInup1 {
    -webkit-animation: fadeInup 1.1s ease-in-out both .2s;
    animation: fadeInup 1.1s ease-in-out both .2s
}

.fadeInup2 {
    -webkit-animation: fadeInup 1.1s ease-in-out both .3s;
    animation: fadeInup 1.1s ease-in-out both .3s
}

.fadeInup3 {
    -webkit-animation: fadeInup 1.1s ease-in-out both .4s;
    animation: fadeInup 1.1s ease-in-out both .4s
}

.fadeInUpimg {
    -webkit-animation: imgScale 1.2s ease-in-out both .2s;
    animation: imgScale 1.2s ease-in-out both .2s
}

@-webkit-keyframes bmove1 {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bmove1 {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scrollArrow {
    0% {
        opacity: 0;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scrollArrow1 {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scrollArrow1 {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes xuanzhuan {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes xuanzhuan {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.xuanzhuan {
    -webkit-animation-name: xuanzhuan;
    animation-name: xuanzhuan
}

@-webkit-keyframes xuanzhuan2 {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }
}

@keyframes xuanzhuan2 {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        opacity: 1;
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }
}

.xuanzhuan2 {
    -webkit-animation-name: xuanzhuan2;
    animation-name: xuanzhuan2
}

@font-face {
    font-family: 'Ubuntu-Light';
    src: url('../fonts/Ubuntu-Light.eot');
    src: url('../fonts/Ubuntu-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Light.woff') format('woff'), url('../fonts/Ubuntu-Light.ttf') format('truetype');
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Ubuntu-Bold';
    src: url('../fonts/Ubuntu-Bold.eot');
    src: url('../fonts/Ubuntu-Bold.otf');
    src: url('../fonts/Ubuntu-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Bold.woff') format('woff'), url('../fonts/Ubuntu-Bold.ttf') format('truetype');
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Ubuntu-Regular';
    src: url('../fonts/Ubuntu-Regular.eot');
    src: url('../fonts/Ubuntu-Regular.otf');
    src: url('../fonts/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Ubuntu-Regular.woff') format('woff'), url('../fonts/Ubuntu-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'POPPINS-REGULAR';
    src: url('../fonts/POPPINS-REGULAR.otf');
    src: url('../fonts/POPPINS-REGULAR.eot?#iefix') format('embedded-opentype'), url('../fonts/POPPINS-REGULAR.woff') format('woff'), url('../fonts/POPPINS-REGULAR.ttf') format('truetype');
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Oswald";
    src: url('../fonts/Oswald-Bold.woff');
    src: url('../fonts/Oswald-Bold.eot');
    src: url('../fonts/Oswald-Bold.otf');
    src: url('../fonts/Oswald-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

body {
    color: #666;
    background: #fff;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "Ubuntu-Light";
    word-wrap: normal
}

@media (max-width: 1024px) {
    body {
        font-size: 15px
    }
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: top
}

.vcenter {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    vertical-align: middle
}

.clearfix:after {
    clear: both;
    height: 0;
    content: "";
    line-height: 0;
    font-size: 0;
    display: block
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 152rem
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px !important
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 640px !important;
        padding: 0 20px !important
    }
}

@media (max-width: 640px) {
    .container {
        width: 100%
    }
}

.header {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    position: absolute;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear
}

.header .listbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header .logo {
    width: 20%
}

.header .logo img {
    max-height: 2rem
}

.header .rightInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header .searchBtn {
    z-index: 2;
    width: 4rem;
    height: 4rem;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1
}

.header .searchBtn:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s;
    transition: .5s
}

.header .searchBtn svg {
    fill: #fff;
    width: 2.6rem;
    height: 2.6rem;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: .5s;
    transition: .5s
}

.header .searchBtn:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    background: var(--footer-color)
}

.header .searchBtn:hover svg {
    fill: #fff !important
}

.header .language {
    line-height: 3rem;
    font-size: 1.8rem;
    margin-left: .5rem;
    padding-left: 2rem;
    display: inline-block;
    position: relative
}

.header .language img {
    margin-right: .5rem;
    margin-bottom: .3rem;
    vertical-align: middle;
    max-height: 2.5rem
}

.header .language a {
    color: #fff
}

.header .language i {
    margin-left: .5rem;
    vertical-align: top;
    margin-top: 1rem;
    font-style: normal;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    border-bottom: solid .8rem #fff;
    border-left: solid .8rem transparent
}

.header .language .drop {
    left: 50%;
    opacity: 0;
    width: 12rem;
    top: 3.3rem;
    display: none;
    text-align: center;
    padding: 2rem 0;
    position: absolute;
    border-radius: 1rem;
    line-height: 3rem;
    -webkit-transform: translateX(-50%) scale(.9);
    transform: translateX(-50%) scale(.9);
    text-transform: initial;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95)
}

.header .language .drop:before {
    content: "";
    top: -0.6rem;
    left: 50%;
    z-index: 3;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    border-left: solid .8rem transparent;
    border-right: solid .8rem transparent;
    border-bottom: solid .8rem #fff
}

.header .language .drop a {
    color: #333;
    display: block;
    margin: 1rem 0;
    font-size: 1.6rem;
    line-height: 3rem;
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem
}

.header .language .drop a:hover {
    font-weight: 700
}

.header .language:hover .drop {
    opacity: 1;
    display: block;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1)
}

@media (max-width: 1024px) {
    .header {
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 60px !important;
        z-index: 99;
        padding-top: 0 !important;
        background: #202020 !important;
        position: fixed !important
    }

    .header .rightInfo {
        display: none
    }

    .header .listbox {
        height: 60px !important
    }

    .header .logo {
        width: auto
    }

    .header .logo img {
        max-height: 15px !important
    }
}

.common-nav {
    font-family: var(--font-famil-4)
}

.common-nav .listNav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center
}

.common-nav .listNav > li {
    margin: 0 2.5rem;
    text-align: center;
    position: relative
}

.common-nav .listNav > li .icon {
    margin-left: .5rem;
    vertical-align: top;
    margin-top: .7rem;
    width: .7rem;
    height: .7rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff
}

.common-nav .listNav > li > a {
    z-index: 1;
    color: #fff;
    font-size: 2rem;
    height: 7rem;
    line-height: 3rem;
    padding: 2rem 0;
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.common-nav .listNav > li > a > span {
    display: inline-block;
    overflow: hidden;
    height: 3rem;
    line-height: 3rem;
    position: relative
}

.common-nav .listNav > li > a .txt-1 {
    display: block;
    -webkit-transition: .5s;
    transition: .5s
}

.common-nav .listNav > li > a .txt-2 {
    display: block;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: .5s;
    transition: .5s;
    color: #fff
}

.common-nav .listNav > li:hover > a, .common-nav .listNav > li.active > a {
    color: var(--main-color)
}

.common-nav .listNav > li:hover > a:after, .common-nav .listNav > li.active > a:after {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.common-nav .listNav > li:hover > a > span::after, .common-nav .listNav > li.active > a > span::after {
    width: 100%
}

.common-nav .listNav > li:hover > a .txt-1, .common-nav .listNav > li.active > a .txt-1 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav .listNav > li:hover > a .txt-2, .common-nav .listNav > li.active > a .txt-2 {
    color: var(--main-color);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.common-nav .listNav > li:hover > a:hover:after, .common-nav .listNav > li.active > a:hover:after {
    left: 0;
    opacity: 1;
    width: 100%
}

.common-nav .listNav > li.active > a:after {
    left: 0;
    opacity: 1;
    width: 100%
}

.common-nav .listNav > li:last-child > a span {
    padding-right: 0
}

.common-nav .listNav > li > .child {
    display: block;
    width: 26rem;
    text-align: left;
    position: absolute;
    z-index: 999;
    top: 7rem;
    left: 50%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    color: #333
}

.common-nav .listNav > li > .child a {
    color: #666
}

.common-nav .listNav > li > .child > .list {
    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);
    padding: 3rem 1.5rem;
    background: #fff;
    position: relative
}

.common-nav .listNav > li > .child > .list a {
    width: 100%;
    display: block;
    color: #212121;
    height: auto;
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    position: relative
}

.common-nav .listNav > li > .child > .list a:hover {
    text-decoration: none;
    background: #202020;
    color: var(--main-color)
}

.common-nav .listNav > li > .child > .list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 6rem 2rem 6rem 2rem;
    background: #fafafa
}

.common-nav .listNav > li > .child > .list-2 > li {
    width: 50%;
    padding: 0 6rem
}

.common-nav .listNav > li > .child > .list-2 .title {
    font-size: 1.8rem;
    color: var(--main-color);
    border-bottom: 1px var(--main-color) solid;
    padding-bottom: 1rem;
    margin-bottom: 1rem
}

.common-nav .listNav > li > .child > .list-2 .title a {
    color: var(--main-color);
    display: block;
    line-height: 3rem;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.common-nav .listNav > li > .child > .list-2 .list a {
    color: #212121;
    font-size: 1.8rem;
    line-height: 3.6rem;
    height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.common-nav .listNav > li > .child > .list-2 .list a:hover {
    color: var(--main-color)
}

.common-nav .listNav > li > .child.child-2 {
    width: 80rem
}

.common-nav .listNav > li > .child.child-2 > .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.common-nav .listNav > li > .child.child-2 > .list li {
    min-width: 50%
}

.common-nav .listNav > li > .child.show {
    display: block;
    -webkit-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%)
}

.common-nav .listNav > li > .child .list {
    background: #fff
}

@media screen and (max-width: 1024px) {
    .common-nav {
        display: none
    }
}

.fixed {
    z-index: 10000;
    background: #202020;
    position: fixed;
    -webkit-box-shadow: .3rem 0 .7rem rgba(0, 38, 53, 0.1);
    box-shadow: .3rem 0 .7rem rgba(0, 38, 53, 0.1)
}

.fixed .common-nav .listNav > li > a {
    color: #fff
}

.fixed .common-nav .listNav > li .icon {
    border-color: #fff
}

.fixed .common-nav .listNav > li > a .txt-2 {
    color: var(--main-color)
}

.fixed .searchBtn svg {
    fill: #fff
}

.fixed .shop a {
    color: #fff;
    background: var(--footer-color)
}

.fixed .shop i {
    border-color: #fff
}

.fixed .language:before {
    background: #fff
}

.fixed .language svg {
    fill: #fff
}

.fixed .language a {
    color: #fff
}

@-webkit-keyframes swiperbanner {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes swiperbanner {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

@-webkit-keyframes swiperbanner1 {
    0% {
        width: 100%
    }
    to {
        width: 1%
    }
}

@keyframes swiperbanner1 {
    0% {
        width: 100%
    }
    to {
        width: 1%
    }
}

.banner {
    clear: both;
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 9
}

.banner .pc {
    display: block
}

.banner .pc img {
    width: auto;
    height: auto;
    max-height: initial;
    max-width: initial;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.banner .ph {
    display: none;
    text-align: center
}

.banner .ph img {
    width: 100%;
    width: auto;
    height: auto
}

.banner .box {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%
}

.banner .text {
    left: 0;
    width: 100%;
    color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute
}

.banner .text-3 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.banner .text-3 .item {
    text-align: left;
    max-width: 56rem
}

.banner .text-3 .t-1 {
    font-size: 6rem;
    line-height: 7rem;
    font-family: var(--font-famil-3);
    color: var(--main-color)
}

.banner .text-3 .t-2 {
    font-size: 1.8rem;
    margin-top: 3rem
}

.banner .text-3 .t-3 {
    margin-top: 6rem
}

.banner .text-3 .t-3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2rem
}

.banner .text-3 .t-3 li {
    padding: 0 2rem;
    width: 33.333%
}

.banner .text-3 .t-3 li .nr {
    padding: 4rem 1rem;
    text-align: center;
    background: #000;
    border-radius: 5rem
}

.banner .text-3 .t-3 li .icon img {
    max-height: 7rem
}

.banner .text-3 .t-3 li .bt {
    font-size: 2rem;
    margin-top: 1rem;
    font-family: var(--font-famil-3)
}

.banner .swiper-slide-active .t-1 {
    -webkit-animation: 1.5s fadeInUp2 ease;
    animation: 1.5s fadeInUp2 ease
}

.banner .swiper-slide-active .t-2 {
    -webkit-animation: 1.6s fadeInDown2 ease;
    animation: 1.6s fadeInDown2 ease
}

.banner .swiper-slide-active .t-3 {
    -webkit-animation: 1.7s fadeInDown2 ease;
    animation: 1.7s fadeInDown2 ease
}

@media (max-width: 1024px) {
    .banner {
        margin-top: 60px;
        height: auto
    }

    .banner .pc {
        display: none
    }

    .banner .ph {
        display: block
    }

    .banner .btn {
        display: none
    }

    .banner .text {
        top: 50%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .banner .text-3 .t-1 {
        font-size: 30px;
        line-height: 30px
    }

    .banner .text-3 .t-2 {
        display: none
    }

    .banner .text-3 .t-3 {
        display: none
    }
}

@media (max-width: 640px) {
    .banner .t-1 {
        font-size: 24px;
        line-height: 30px
    }

    .banner .t-img {
        padding: 0 30px
    }
}

.banner .swiper-pagination {
    bottom: 4rem;
    width: 100%;
    text-align: center;
    position: absolute
}

.banner .swiper-pagination .swiper-pagination-bullet {
    width: .8rem;
    height: .8rem;
    background: #fff;
    border-radius: 50%;
    margin: 0 .6rem;
    position: relative;
    overflow: hidden;
    opacity: 1
}

.banner .swiper-pagination .swiper-pagination-bullet:after {
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    content: '';
    background: #fff;
    left: 0
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
    width: 8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.3)
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after {
    -webkit-animation: swiperbanner 5s linear;
    animation: swiperbanner 5s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.index-button a, .index-button span {
    color: #fff;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: "Ubuntu-Bold";
    font-size: 1.8rem;
    text-transform: uppercase;
    min-width: 18rem;
    height: 6rem;
    line-height: 5.6rem;
    border: solid 2px #fff;
    display: inline-block
}

.index-button a:before, .index-button span:before {
    right: 0;
    top: 0;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--main-color)
}

.index-button i {
    z-index: 4;
    position: relative;
    font-style: normal
}

.index-button:hover {
    border-color: var(--main-color)
}

.index-button:hover a, .index-button:hover span {
    color: #202020;
    border-color: var(--main-color)
}

.index-button:hover a:before, .index-button:hover span:before {
    width: 100%
}

.index-title {
    color: #202020;
    font-size: 5.6rem;
    line-height: 6rem;
    font-weight: normal;
    text-align: center;
    font-family: "Ubuntu-Bold"
}

@media (max-width: 1024px) {
    .index-title {
        font-size: 30px !important;
        line-height: 40px !important
    }
}

.index-text {
    color: #717171;
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    font-family: "Ubuntu-Regular"
}

.index-solution {
    padding-top: 11rem
}

.index-solution .container {
    max-width: 192rem
}

.index-solution .list {
    margin-top: 6rem
}

.index-solution .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.index-solution .list li {
    width: 50%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.index-solution .list li .box {
    width: 100%;
    height: 100%;
    display: block
}

.index-solution .list li .pic {
    overflow: hidden;
    position: relative
}

.index-solution .list li .pic:before {
    top: 0;
    left: 0;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.3)
}

.index-solution .list li .pic img {
    -webkit-transition: all 1000ms linear;
    transition: all 1000ms linear
}

.index-solution .list li .text {
    top: 50%;
    z-index: 3;
    left: 0;
    width: 100%;
    padding: 0 11rem;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute
}

.index-solution .list li .tit {
    color: #fff;
    line-height: 5rem;
    font-size: 3.6rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--font-famil-3)
}

.index-solution .list li .txt {
    color: #fff;
    height: 6rem;
    line-height: 3rem;
    margin-top: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2
}

.index-solution .list li .index-button {
    margin-top: 6rem
}

@media (min-width: 1025px) {
    .index-solution .list li:hover .tit {
        color: var(--main-color)
    }

    .index-solution .list li:hover .pic img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    .index-solution .list li:hover .index-button span {
        border-color: var(--main-color);
        color: #202020
    }

    .index-solution .list li:hover .index-button span:before {
        width: 100%
    }
}

@media (max-width: 1024px) {
    .index-solution {
        padding-top: 50px
    }

    .index-solution .list li {
        margin-top: 50px;
        width: 100%
    }

    .index-solution .list li .text {
        padding: 0;
        padding-top: 30px;
        color: #202020;
        top: auto;
        left: auto;
        text-align: left;
        position: relative;
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    .index-solution .list li .tit, .index-solution .list li .txt {
        color: #202020
    }

    .index-solution .list li .tit {
        font-size: 20px;
        line-height: 24px
    }

    .index-solution .list li .index-button span {
        color: #202020;
        background: var(--main-color)
    }

    .index-solution .list li:first-child {
        margin-top: 0
    }
}

.index-product {
    padding-top: 11rem
}

.index-product .pic {
    margin-top: 5rem;
    position: relative
}

.index-product .pic img {
    width: 100%
}

.index-product .list {
    position: relative
}

.index-product .list .text {
    left: 0;
    width: 100%;
    z-index: 3;
    top: 24rem;
    position: absolute
}

.index-product .list .t-1 {
    font-size: 4rem;
    line-height: 5.4rem;
    font-family: var(--font-famil-3);
    color: var(--main-color)
}

.index-product .list .t-2 {
    margin-top: 5rem
}

.index-product .list .t-2 img {
    max-height: 11rem
}

.index-product .list .nr {
    max-width: 47rem
}

.index-product .list .index-button {
    margin-top: 6rem
}

@media (max-width: 1024px) {
    .index-product {
        padding-top: 50px
    }

    .index-product .list .text {
        text-align: center;
        padding: 50px 0;
        top: auto;
        left: auto;
        position: relative;
        background: #202020
    }

    .index-product .list .t-1 {
        font-size: 24px;
        line-height: 30px
    }

    .index-product .list .t-2 {
        display: none
    }
}

.index-smart {
    overflow: hidden;
    position: relative;
    min-height: 55.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--main-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.index-smart li {
    color: #000;
    z-index: 3;
    position: relative;
    font-size: 11.8rem;
    line-height: 13rem;
    font-family: var(--font-famil-3)
}

.index-smart li span {
    color: transparent;
    -webkit-text-stroke: #000 1px
}

.index-smart .pic1 li {
    width: 74rem
}

.index-smart .pic2 {
    margin-top: 2rem
}

.index-smart .pic2 li {
    width: 130rem
}

.index-smart .tu {
    width: 100%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute
}

.index-smart .tu img {
    width: 100%;
    -webkit-animation: scrollArrow1 15s alternate infinite;
    animation: scrollArrow1 15s alternate infinite
}

@media (max-width: 1024px) {
    .index-smart {
        padding: 50px 0;
        min-height: auto
    }

    .index-smart li {
        width: 100%;
        font-size: 70px;
        line-height: 70px
    }

    .index-smart .tu {
        display: none
    }
}

@media (max-width: 640px) {
    .index-smart li {
        font-size: 50px;
        line-height: 60px
    }
}

.index-smart-2 {
    position: relative;
    margin-top: -1rem
}

.index-about {
    margin: 0 auto;
    max-width: 192rem;
    position: relative;
    background-color: #d7e2f4
}

.index-about .list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.index-about .list .left {
    width: 48%
}

.index-about .list .leftC {
    width: 127%;
    position: relative;
    margin-top: -8rem;
    left: -20rem
}

.index-about .list .right {
    width: 50%;
    right: 0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 9999;
    top: 0
}

.index-about .list .right video {
    top: 0;
    width: 100%;
    z-index: 9999;
    position: absolute;
    right: 0
}

.index-about .list .logo {
    width: 100%;
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0
}
.index-about .list .logo svg{transform: scale(1.01);}
.index-about .list .logo img {
    width: 100%;
    max-width: initial;
    max-height: initial
}

.index-about .videoDonghu {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999999;
    right: 0;
    top: 0
}

.index-about .text {
    width: 100%;
    right: 0;
    background: #d7e2f4;
    z-index: 999999;
    top: 28rem;
    position: absolute
}

.index-about .text .index-title {
    width: 105%;
    text-align: left;
    line-height: 5rem;
    font-size: 3.6rem
}

.index-about .text .txt {
    color: #87888c;
    margin-top: 3rem;
    line-height: 3rem
}

.index-about .index-button {
    margin-top: 6rem
}

.index-about .index-button a {
    color: #202020;
    background: var(--main-color);
    border-color: var(--main-color)
}

.index-about .index-button:hover a {
    border-color: #202020;
    color: var(--main-color)
}

.index-about .index-button:hover a:before {
    background: #202020
}

.index-about .zoomed .text {
    z-index: -9999999;
    display: none
}

@media (max-width: 1024px) {
    .index-about {
        padding: 50px 0
    }

    .index-about .list {
        display: block
    }

    .index-about .list .videoDonghu {
        display: none
    }

    .index-about .list .left {
        display: none
    }

    .index-about .list .right {
        width: 100%;
        right: auto;
        top: auto;
        position: relative
    }

    .index-about .text {
        z-index: 9;
        top: auto;
        left: auto;
        right: auto;
        display: block;
        position: relative
    }
}

.index-service {
    padding-top: 61vw
}

.index-service .list {
    margin-top: 5rem
}

.index-service .list ul {
    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
}

.index-service .list li {
    width: 34%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear
}

.index-service .list li .item {
    color: #fff;
    display: block;
    position: relative
}

.index-service .list li .pic {
    height: 62rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover
}

.index-service .list li .text {
    opacity: 0;
    display: none;
    padding: 0 9rem;
    color: #fff;
    z-index: 2;
    left: 0;
    bottom: 6rem;
    position: absolute
}

.index-service .list li .text .tit {
    font-size: 6rem;
    line-height: 7rem;
    color: var(--main-color);
    font-family: var(--font-famil-3)
}

.index-service .list li .text .txt {
    margin-top: 3rem;
    font-size: 2.4rem;
    font-family: var(--font-famil-3)
}

.index-service .list li .nr {
    left: 0;
    width: 100%;
    z-index: 9;
    padding-left: 6rem;
    padding-right: 10rem;
    bottom: 4.5rem;
    position: absolute
}

.index-service .list li .nr .tit {
    font-size: 3.6rem;
    font-family: var(--font-famil-3)
}

.index-service .list li .nr .txt {
    padding-top: 1.5rem;
    line-height: 3rem
}

.index-service .list li .index-button {
    margin-top: 3rem
}

.index-service .list .last .item {
    background: #ececec
}

.index-service .list .last .nr {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: auto;
    position: absolute
}

.index-service .list .last .text {
    bottom: 0;
    left: auto;
    width: 70rem;
    padding-top: 2rem;
    position: relative
}

.index-service .list .last .text .tit {
    color: #000;
    font-family: "Ubuntu-Bold";
    font-size: 3.6rem;
    line-height: 5rem
}

.index-service .list .last .text .txt {
    font-size: 1.6rem;
    margin-top: 2rem;
    color: #87888c;
    padding-right: 12rem;
    line-height: 3rem;
    font-family: var(--font-famil-1)
}

.index-service .list .last .index-button {
    margin-top: 8rem
}

.index-service .list .last .index-button a {
    color: #202020;
    background: var(--main-color);
    border-color: var(--main-color)
}

.index-service .list .last .index-button a:hover {
    color: var(--main-color);
    border-color: #202020
}

.index-service .list .last .index-button a:hover:before {
    color: var(--main-color);
    background: #202020
}

.index-service .list .last .tu {
    right: 0;
    bottom: 0;
    width: 54rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: absolute
}

.index-service .list .last .tu img {
    z-index: 3;
    position: relative;
    max-height: 62rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.index-service .list .last .tu:after {
    right: -10%;
    bottom: -30%;
    border-radius: 50%;
    position: absolute;
    content: "";
    width: 60rem;
    height: 60rem;
    background: var(--main-color);
    -webkit-animation: scrollArrow 2.5s alternate infinite;
    animation: scrollArrow 2.5s alternate infinite
}

.index-service .list .active {
    z-index: 9;
    width: 65.8%
}

.index-service .list .active .text {
    display: block;
    opacity: 1
}

@media (max-width: 1024px) {
    .index-service {
        padding-top: 50px
    }

    .index-service .list li {
        display: block !important;
        width: 100% !important
    }

    .index-service .list li .pic {
        height: 300px
    }

    .index-service .list li .nr {
        padding: 0 30px !important
    }

    .index-service .list .last .pic {
        display: none
    }

    .index-service .list .last .text {
        opacity: 1;
        display: block;
        width: 100%;
        padding: 0
    }

    .index-service .list .last .text .txt {
        padding-right: 0
    }

    .index-service .list .last .nr {
        display: block;
        top: auto;
        left: auto;
        position: relative;
        -webkit-transform: translate(0);
        transform: translate(0);
        padding-top: 40px !important
    }

    .index-service .list .last .tu {
        width: 100%;
        right: auto;
        top: auto;
        bottom: auto;
        position: relative
    }

    .index-service .list .last .tu:after {
        width: 320px;
        height: 320px;
        right: 0
    }

    .index-service .list .last .index-button {
        margin-top: 30px
    }
}

.index-news {
    padding: 11rem 0
}

.index-news .list {
    margin-top: 7rem
}

.index-news .list li .pic {
    overflow: hidden;
    position: relative
}

.index-news .list li .pic:after {
    content: "";
    display: block;
    padding-bottom: 63.82978723%
}

.index-news .list li .pic img {
    -webkit-transition: all 700ms linear;
    transition: all 700ms linear
}

.index-news .list li .text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 3rem;
    padding-top: 2.5rem;
    background: #ececec
}

.index-news .list li .tit {
    color: #202020;
    font-size: 2rem;
    font-family: "Ubuntu-Bold";
    line-height: 3rem;
    height: 12rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4
}

.index-news .list li .txt {
    margin-top: 2rem;
    color: #717171;
    font-size: 1.4rem
}

@media (min-width: 1025px) {
    .index-news .list li:hover .pic img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    .index-news .list li:hover .text {
        background: #202020
    }

    .index-news .list li:hover .tit {
        color: var(--main-color)
    }

    .index-news .list li:hover .txt {
        color: #fff
    }
}

@media (max-width: 1024px) {
    .index-news {
        padding: 40px 0 50px 0
    }

    .index-news .list {
        margin-top: 30px
    }
}

.footer {
    padding: 8rem 0 0 0;
    background: #202020
}

.footer .list {
    padding-bottom: 7rem
}

.footer .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer .list li {
    width: 14%;
    font-family: var(--font-famil-4);
    padding-left: 1rem
}

.footer .list li h3 {
    font-size: 2rem;
    padding-bottom: 2rem;
    font-weight: normal;
    color: var(--main-color);
    text-transform: uppercase
}

.footer .list li h3 a {
    -webkit-transition: all 334ms ease;
    transition: all 334ms ease;
    color: var(--main-color)
}

.footer .list li .drop {
    font-size: 1.6rem
}

.footer .list li .drop a {
    display: block;
    font-weight: 100;
    margin-top: 1rem
}

.footer .list li .nr .t-1 {
    padding-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    margin-top: 1rem
}

.footer .list li .nr .icon {
    top: .2rem;
    left: 0;
    position: absolute
}

.footer .list li .nr .icon svg {
    fill: #6e6e6e !important;
    width: 2rem;
    height: 2rem
}

.footer .list li:first-child {
    padding-left: 0
}

.footer .list li:nth-child(2) {
    width: 21%
}

.footer .list li:last-child {
    width: 23%
}

.footer .share {
    padding: 2.5rem 0;
    background: #282828
}

.footer .share ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer .share li:first-child {
    padding-left: 0
}

.footer .share li {
    padding: 0 1.5rem
}

.footer .share li a {
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 2.7rem;
    border-radius: .5rem;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--main-color)
}

.footer .share li svg {
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    fill: #000
}

.footer .share li:hover a {
    background: #202020
}

.footer .share li:hover svg {
    fill: var(--main-color)
}

.footer .copy {
    background: #282828;
    padding: 1.5rem 0;
    border-top: solid 1px #2f2f2f
}

.footer .copy a {
    padding-left: 1.5rem
}

@media (max-width: 1024px) {
    .footer .list li {
        display: none
    }

    .footer .list li:last-child {
        width: 100%;
        display: block
    }

    .footer .copy {
        font-size: 12px
    }

    .footer .copy a {
        padding-left: 0
    }
}

.inside-banner {
    position: relative;
    min-height: 69rem
}

.inside-banner .pc img {
    width: 100%
}

.inside-banner .ph {
    display: none;
    text-align: center
}

.inside-banner .text {
    left: 0;
    width: 100%;
    top: 50%;
    z-index: 3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute
}

.inside-banner .item .t-1 {
    font-weight: normal;
    font-size: 6rem;
    line-height: 7rem;
    color: var(--main-color);
    font-family: var(--font-famil-3);
    width: 45%;
}

.inside-banner .item .t-1 span {
    display: block
}

.inside-banner .item .t-2 {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 3rem
}

.inside-banner .swiper-container-horizontal > .swiper-pagination-bullets, .inside-banner .swiper-pagination-custom, .inside-banner .swiper-pagination-fraction {
    bottom: 2rem
}

.inside-banner .swiper-pagination-bullet {
    background: #fff
}

@media (max-width: 1024px) {
    .inside-banner {
        min-height: auto;
        margin-top: 60px
    }

    .inside-banner .item .t-1 {
        font-size: 20px;
        line-height: 30px
    }

    .inside-banner .item .t-2 {
        display: none
    }
}

@media (max-width: 640px) {
    .inside-banner .pc {
        display: none
    }

    .inside-banner .ph {
        display: block
    }

    .inside-banner .item .t-1 {
        display: none
    }
}

.inside-banner-2 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.inside-banner-3 .logo {
    margin-bottom: 3rem;
    margin-left: -19.1rem;
    position: relative
}

.inside-banner-3 .logo img {
    max-height: 8.1rem
}

.inside-banner-3 .item {
    max-width: 98rem
}

.inside-banner-3 .item .t-3 {
    color: #fff;
    padding-bottom: 2rem;
    margin-top: 2.5rem;
    font-size: 2.8rem;
    font-family: var(--font-famil-3)
}

.inside-banner-3 .item .t-4 {
    margin-top: 4rem
}

.inside-banner-3 .item .t-4 a {
    color: #202020;
    font-size: 1.8rem;
    padding: 0 3rem;
    line-height: 6rem;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--main-color);
    display: inline-block;
    font-family: var(--font-famil-3)
}

.inside-banner-3 .item .t-4 svg {
    margin-right: 1.5rem;
    vertical-align: middle;
    height: 3rem;
    width: 3rem;
    fill: #202020
}

.inside-banner-3 .item .t-4:hover a {
    color: var(--main-color);
    background: #202020
}

.inside-banner-3 .item .t-4:hover svg {
    fill: var(--main-color)
}

@media (max-width: 1024px) {
    .inside-banner-3 .logo {
        display: none
    }

    .inside-banner-3 .item .t-3 {
        display: none
    }

    .inside-banner-3 .item .t-4 {
        display: none
    }
}

.inside-current {
    z-index: 2;
    color: #fff;
    font-weight: 100;
    font-size: 1.6rem;
    margin-top: -6rem;
    position: relative;
    height: 6rem;
    line-height: 6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.inside-current a {
    color: #fff
}

.inside-current a:hover {
    color: var(--main-color)
}

.inside-current svg {
    fill: #fff;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .5rem;
    margin-bottom: .4rem;
    vertical-align: middle
}

@media (max-width: 1024px) {
    .inside-current {
        display: none
    }
}

img {
    image-rendering: optimizequality;
    max-width: 100%;
    height: auto
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.parallax-warp {
    height: 55vw
}

@media (max-width: 1024px) {
    .parallax-warp {
        display: none
    }
}

.parallax-container {
    clear: both;
    float: left;
    min-height: 94rem;
    width: 100%;
    position: relative;
    background-size: cover
}

.parallax-container .blur-bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-size: cover
}

.parallax-container .content {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center
}

.parallax-container {
    position: relative;
    background-size: cover
}

.parallax-container .blur-bg {
    background-size: cover;
    -webkit-filter: blur(10px);
    filter: blur(10px)
}

.parallax-container .blur-bg:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    position: absolute;
    background: rgba(0, 0, 0, 0.5)
}

.parallax-container .content-inner {
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute
}

.parallax-container .content-inner .index-title {
    text-align: left;
    font-size: 6rem;
    line-height: 7rem;
    color: var(--main-color)
}

.parallax-container .content-inner .text {
    color: #fff;
    padding-top: 4rem;
    font-size: 1.8rem;
    line-height: 3.2rem
}

.parallax-container .content-inner .text p {
    padding-top: 2rem
}

@media (max-width: 1024px) {
    .parallax-container .content-inner .index-title {
        font-size: 30px;
        line-height: 40px
    }

    .parallax-container .content-inner .text {
        font-size: 14px;
        padding-top: 20px;
        line-height: 24px
    }
}

.inside-fzlc {
    background-color: #edf1f2;
    overflow: hidden;
    height: 69rem;
    padding-top: 11rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.inside-fzlc .container {
    max-width: 192rem
}

.inside-fzlc .inside-title {
    text-align: center
}

.inside-fzlc .list {
    width: 110%;
    margin-left: -5.5%;
    margin-top: 8rem;
    position: relative
}

.inside-fzlc .list .item {
    text-align: center
}

.inside-fzlc .list .item .year {
    color: #000;
    font-family: var(--font-famil-3);
    font-size: 4.2rem;
    line-height: 19rem
}

.inside-fzlc .list .item .tit {
    margin-top: 3rem;
    display: none;
    color: #333;
    font-size: 2rem;
    font-family: var(--font-famil-2)
}

.inside-fzlc .swiper-button-prev, .inside-fzlc .swiper-button-next {
    top: 6rem;
    margin-top: auto;
    z-index: 10;
    border: dashed 1px #fff;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    color: #fff;
    text-align: center;
    cursor: pointer;
    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
}

.inside-fzlc .swiper-button-prev:after, .inside-fzlc .swiper-button-next:after {
    font-size: 0
}

.inside-fzlc .swiper-button-prev:hover, .inside-fzlc .swiper-button-next:hover {
    width: 8rem;
    height: 8rem
}

.inside-fzlc .swiper-button-prev {
    left: 25%;
    background: url(../images/prev.png) no-repeat center center var(--main-color);
    background-size: cover
}

.inside-fzlc .swiper-button-next {
    right: 25%;
    background: url(../images/next.png) no-repeat center center var(--main-color);
    background-size: cover
}

.inside-fzlc .swiper-slide-active .item .year {
    font-size: 19rem
}

.inside-fzlc .swiper-slide-active .item .year span {
    color: var(--main-color)
}

.inside-fzlc .swiper-slide-active .item .tit {
    margin-left: -50%;
    display: block;
    width: 200%
}

@media (max-width: 1024px) {
    .inside-fzlc {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px
    }

    .inside-fzlc .list {
        width: 100%;
        margin-left: 0;
        margin-top: 40px
    }

    .inside-fzlc .list .item .year {
        color: #202020 !important
    }

    .inside-fzlc .swiper-button-prev {
        left: 0;
        top: 0
    }

    .inside-fzlc .swiper-button-next {
        right: 0;
        top: 0
    }

    .inside-fzlc .swiper-button-prev, .inside-fzlc .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: 10px
    }

    .inside-fzlc .swiper-slide-active .item {
        padding: 0 50px
    }

    .inside-fzlc .swiper-slide-active .item .year {
        font-size: 40px;
        line-height: 60px
    }

    .inside-fzlc .swiper-slide-active .item .year span {
        color: #202020 !important
    }

    .inside-fzlc .swiper-slide-active .item .tit {
        margin-left: 0;
        width: 100%;
        text-align: left
    }
}

.inside-honor {
    color: #fff;
    padding: 11rem 0;
    background: #121212
}

.inside-honor .index-title {
    text-align: left;
    font-size: 4.2rem;
    color: var(--main-color)
}

.inside-honor .text {
    margin-top: 2rem
}

.inside-honor .list {
    margin: 5rem 0 0 0;
    position: relative
}

.inside-honor .list .item {
    margin: 1rem 0;
    padding: .8rem;
    text-align: center;
    -webkit-box-shadow: 0 0 1rem rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.3);
    border: solid 1px #737373
}

.inside-honor .list .swiper-button-prev, .inside-honor .list .swiper-button-next {
    margin-top: auto;
    z-index: 10;
    margin-top: -3.5rem;
    border: dashed 1px #fff;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    color: #fff;
    text-align: center;
    cursor: pointer;
    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
}

.inside-honor .list .swiper-button-prev:after, .inside-honor .list .swiper-button-next:after {
    font-size: 0
}

.inside-honor .list .swiper-button-prev:hover, .inside-honor .list .swiper-button-next:hover {
    width: 8rem;
    height: 8rem
}

.inside-honor .list .swiper-button-prev {
    left: -11rem;
    background: url(../images/prev.png) no-repeat center center var(--main-color);
    background-size: cover
}

.inside-honor .list .swiper-button-next {
    right: -11rem;
    background: url(../images/next.png) no-repeat center center var(--main-color);
    background-size: cover
}

@media (max-width: 1024px) {
    .inside-honor {
        padding: 50px 0
    }

    .inside-honor .list .swiper-button-prev {
        left: 20px
    }

    .inside-honor .list .swiper-button-next {
        right: 20px
    }

    .inside-honor .list .swiper-button-prev, .inside-honor .list .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: auto
    }
}

#certify .swiper-slide {
    margin: 0 auto;
    margin-top: 5rem;
    width: 1000px;
    height: 570px;
    background: #fff
}

@media (max-width: 1440px) {
    #certify .swiper-slide {
        width: 660px;
        height: 400px
    }
}

@media (max-width: 1024px) {
    #certify .swiper-slide {
        height: auto
    }
}

#certify {
    position: relative
}

#certify .swiper-button-prev, #certify .swiper-button-next {
    margin-top: auto;
    z-index: 10;
    margin-top: -3.5rem;
    border: dashed 1px #fff;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    color: #fff;
    text-align: center;
    cursor: pointer;
    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
}

#certify .swiper-button-prev:after, #certify .swiper-button-next:after {
    font-size: 0
}

#certify .swiper-button-prev:hover, #certify .swiper-button-next:hover {
    width: 8rem;
    height: 8rem
}

#certify .swiper-button-prev {
    left: 15%;
    background: url(../images/prev.png) no-repeat center center var(--main-color);
    background-size: cover
}

#certify .swiper-button-next {
    right: 15%;
    background: url(../images/next.png) no-repeat center center var(--main-color);
    background-size: cover
}

@media (max-width: 1600px) {
    #certify .swiper-button-prev {
        left: 8%
    }

    #certify .swiper-button-next {
        right: 8%
    }
}

@media (max-width: 1440px) {
    #certify .swiper-button-prev {
        left: 18.5%
    }

    #certify .swiper-button-next {
        right: 18.5%
    }
}

@media (max-width: 1300px) {
    #certify .swiper-button-prev {
        left: 15%
    }

    #certify .swiper-button-next {
        right: 15%
    }
}

@media (max-width: 1024px) {
    #certify .swiper-button-prev, #certify .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: auto
    }

    #certify .swiper-button-prev {
        left: 20px
    }

    #certify .swiper-button-next {
        right: 20px
    }
}

.inside-qywh {
    overflow: hidden;
    padding: 11rem 0 12rem 0
}

@media (max-width: 1024px) {
    .inside-qywh {
        padding: 50px 0
    }
}

.inside-contact {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 12rem
}

.inside-contact .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inside-contact .leftbox {
    color: #141414;
    width: 55%
}

.inside-contact .leftbox .index-title {
    text-align: left
}

.inside-contact .leftbox .text {
    line-height: 3.2rem
}

.inside-contact .leftbox .text p {
    padding-top: 2rem
}

.inside-contact .fromlist {
    padding-top: 5rem
}

.inside-contact .fromlist ul {
    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
}

.inside-contact .fromlist li {
    color: #141414;
    width: 48.7%;
    padding-top: 3rem;
    font-size: 1.6rem
}

.inside-contact .fromlist li .bt {
    padding-bottom: 1rem
}

.inside-contact .fromlist li .bt em {
    color: #f00;
    font-style: normal
}

.inside-contact .fromlist li .bd input, .inside-contact .fromlist li .bd textarea {
    width: 100%;
    padding: 0 2rem;
    height: 4.2rem;
    line-height: 4rem;
    border: solid 1px #dcdcdc
}

.inside-contact .fromlist li .bd textarea {
    width: 100%;
    height: 14rem;
    line-height: 3rem;
    padding: 1.5rem 2rem
}

.inside-contact .fromlist li .bd-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.inside-contact .fromlist li .bd-2 span {
    padding-right: 3rem;
    min-width: 18rem;
    padding-top: 2rem
}

.inside-contact .fromlist .li1 {
    width: 100%
}

.inside-contact .fromlist .li1 a {
    color: #000
}

.inside-contact .fromlist .li1 a:hover {
    text-decoration: underline
}

.inside-contact .fromlist .li2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inside-contact .fromlist .li2 span:first-child {
    width: 77%;
    position: relative
}

.inside-contact .fromlist .li2 input {
    width: 100%;
    color: #666;
    border-radius: .5rem;
    font-size: 1.6rem;
    padding-left: 2rem;
    padding-right: 13rem;
    height: 5.2rem;
    line-height: 5rem;
    border: solid 1px #dcdcdc
}

.inside-contact .fromlist .li2 .code {
    right: 1px;
    top: 1px;
    position: absolute;
    border-left: solid 1px #dcdcdc;
    border-radius: .5rem;
    max-height: 5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.inside-contact .fromlist .check {
    margin-right: 1rem;
    height: 2rem;
    width: 2rem;
    opacity: .5
}

.inside-contact .fromlist .input1 {
    border: 0;
    width: 11rem;
    border-bottom: solid 1px #dcdcdc
}

.inside-contact .fromlist .button {
    text-transform: capitalize
}

.inside-contact .fromlist .button a {
    border-radius: .5rem;
    color: var(--main-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    display: inline-block;
    height: 5.2rem;
    line-height: 5.2rem;
    min-width: 18rem;
    background: #202020
}

.inside-contact .fromlist .button img {
    max-height: 5rem
}

.inside-contact .fromlist .button:hover a {
    background: var(--main-color);
    color: #000;
}

.inside-contact .rightbox {
    color: #000;
    width: 40%
}

.inside-contact .rightbox .index-title {
    text-align: left
}

.inside-contact .rightbox .tag {
    text-transform: uppercase;
    font-family: var(--font-famil-3);
    padding-top: 1.5rem;
    font-size: 2.3rem
}

.inside-contact .rightbox .list li {
    font-size: 1.8rem;
    padding-top: 2rem
}

.inside-contact .rightbox .list li .t1 {
    font-family: var(--font-famil-3)
}

.inside-contact .rightbox .list li .t2 {
    color: #666
}

.inside-contact .rightbox .list li .t2 span {
    color: #000;
    font-size: 1.8rem;
    font-family: var(--font-famil-3)
}

.inside-contact .rightbox .list li .t2 a {
    color: #666
}

.inside-contact .rightbox .list li .add {
    color: #666;
    padding-top: 1rem
}

.inside-contact .rightbox .list-2 {
    padding-top: 2rem;
    max-width: 28rem
}

.inside-contact .rightbox .list-2 li {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-top: 1.5rem;
    background: #f0f0f0;
    text-align: center;
    height: 10rem;
    line-height: 10rem
}

.inside-contact .rightbox .list-2 li a {
    color: #000;
    font-size: 2rem;
    padding: 0 1rem;
    display: block
}

.inside-contact .rightbox .list-2 li:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 2.4rem
}

.inside-contact .rightbox .list-2 li:first-child a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.inside-contact .rightbox .list-2 li:first-child img {
    max-height: 2rem
}

.inside-contact .rightbox .list-2 li:first-child .icon {
    width: 40%;
    text-align: center
}

.inside-contact .rightbox .list-2 li:first-child .item {
    text-align: left;
    width: 60%
}

.inside-contact .rightbox .list-2 li:first-child .item span {
    display: block
}

.inside-contact .rightbox .list-2 li:first-child .item span:last-child {
    font-size: 1.3rem
}

.inside-contact .rightbox .list-2 li:hover {
    color: var(--main-color);
    background: #202020
}

.inside-contact .rightbox .list-2 li:hover a {
    color: var(--main-color)
}

.inside-contact .rightbox .list-2 li:hover .icon svg {
    fill: var(--main-color)
}

@media (max-width: 1024px) {
    .inside-contact {
        padding: 40px 0
    }

    .inside-contact .container {
        display: block
    }

    .inside-contact .leftbox, .inside-contact .rightbox {
        width: 100%
    }

    .inside-contact .rightbox {
        padding-bottom: 0;
        padding-top: 40px
    }

    .inside-contact .rightbox .tag {
        font-size: 16px
    }

    .inside-contact .rightbox .list li {
        font-size: 16px
    }

    .inside-contact .rightbox .list-2 {
        display: none
    }

    .inside-contact .fromlist .check {
        width: 18px;
        height: 18px
    }

    .inside-contact .fromlist .button a {
        border-radius: 5px;
        min-width: 100%;
        height: 42px;
        line-height: 42px;
        font-size: 14px
    }

    .inside-contact .fromlist li {
        padding-top: 20px;
        font-size: 16px
    }

    .inside-contact .fromlist li .bd input {
        height: 42px;
        line-height: 40px;
        padding: 0 15px
    }

    .inside-contact .fromlist li .bd textarea {
        height: 80px;
        line-height: 24px;
        padding: 15px
    }

    .inside-contact .fromlist li .bd-2 span {
        padding-right: 10px;
        min-width: auto
    }

    .inside-contact .fromlist .li2 input {
        padding: 0 15px;
        height: 42px;
        line-height: 40px;
        font-size: 14px
    }

    .inside-contact .fromlist .li2 .code {
        max-height: 40px
    }
}

@media (max-width: 480px) {
    .inside-contact .fromlist li {
        width: 100%
    }

    .inside-contact .rightbox .list-2 {
        max-width: 100%
    }

    .inside-contact .rightbox .list-2 li:first-child .item span:last-child {
        font-size: 12px
    }

    .inside-contact .fromlist .li2 {
        display: block
    }

    .inside-contact .fromlist .li2 span:first-child {
        width: 100%
    }

    .inside-contact .fromlist .li2 span {
        display: block
    }

    .inside-contact .fromlist .button {
        margin-top: 20px
    }
}

.inside-prolist {
    padding-top: 11rem
}

.inside-prolist .listbox {
    margin-top: 6rem
}

.inside-prolist .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 80.5rem
}

.inside-prolist .list .logo {
    max-height: 8.1rem;
    position: relative;
    margin-left: -20rem
}

.inside-prolist .list .tit {
    margin-top: 10rem;
    line-height: 6rem;
    font-size: 5rem;
    font-weight: normal;
    color: var(--main-color);
    font-family: var(--font-famil-3)
}

.inside-prolist .list .tit span {
    display: block
}

.inside-prolist .list .txt {
    color: #fff;
    margin-top: 3rem;
    font-size: 2.4rem;
    line-height: 4rem;
    font-family: var(--font-famil-3)
}

.inside-prolist .list .txt span {
    display: block
}

.inside-prolist .list .index-button {
    margin-top: 6rem
}

.inside-prolist .list:nth-child(2n) .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.inside-prolist .list .text {
    max-width: 81rem
}

@media (max-width: 1024px) {
    .inside-prolist {
        padding-top: 40px
    }

    .inside-prolist .list {
        padding: 70px 0;
        height: auto
    }

    .inside-prolist .list .logo {
        margin-left: -20px
    }

    .inside-prolist .list .tit {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
        width: 100% !important;
    }

    .inside-prolist .list .txt {
        font-size: 16px;
        line-height: 24px;
        display: none;
        font-family: var(--font-famil-1)
    }

    .inside-prolist .list .index-button {
        margin-top: 30px
    }

    .inside-prolist .list .index-button a {
        color: #202020;
        border-color: var(--main-color);
        background: var(--main-color)
    }
}

.inside-product {
    overflow: hidden;
    padding: 11rem 0 2rem 0
}

.inside-product .container {
    max-width: 192rem
}

.inside-product ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 1rem
}

.inside-product li {
    width: 50%;
    margin-bottom: 9rem;
    padding: 1rem
}

.inside-product li .item {
    position: relative;
    padding: 0 9rem;
    padding-top: 7rem;
    height: 63.3rem;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.inside-product li .tit {
    color: #141414;
    font-size: 3.6rem;
    height: 4.6rem;
    line-height: 4.6rem;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--font-famil-3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.inside-product li .txt {
    margin-top: 1rem;
    color: #1c1d1e;
    height: 3rem;
    line-height: 3rem;
    font-size: 2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.inside-product li .index-button {
    margin-top: 2rem
}

.inside-product li .index-button span {
    color: #202020;
    background: var(--main-color);
    border-color: var(--main-color)
}

.inside-product li .pic {
    margin: 0 auto;
    z-index: 3;
    bottom: -3rem;
    max-width: 60rem;
    position: relative
}

.inside-product li .pic:after {
    content: "";
    display: block;
    padding-bottom: 73.33333333%
}

.inside-product li .logo {
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 11rem;
    position: absolute
}

.inside-product li .logo img {
    max-height: 7rem
}

@media (min-width: 1025px) {
    .inside-product li:hover .tit {
        color: var(--main-color)
    }
}

@media (max-width: 1024px) {
    .inside-product {
        padding-top: 40px
    }

    .inside-product ul {
        margin: 0 -10px
    }

    .inside-product li {
        padding-bottom: 20px;
        margin-bottom: 0;
        width: 100%
    }

    .inside-product li .item {
        height: auto;
        padding: 30px
    }

    .inside-product li .logo {
        display: none
    }

    .inside-product li .logo img {
        max-height: 30px
    }

    .inside-product li .pic {
        bottom: 0;
        margin-top: 30px;
        max-width: 100%
    }
}

.inside-product-2 {
    color: #202020;
    padding: 14rem;
    padding-bottom: 19rem;
    background: #baf009
}

.inside-product-2 h2 {
    font-size: 11.8rem;
    line-height: 12rem;
    font-weight: normal;
    font-family: var(--font-famil-3)
}

.inside-product-2 h2 span {
    color: transparent;
    -webkit-text-stroke: #202020 1px
}

.inside-product-2 h3 {
    margin-top: 5rem;
    line-height: 6rem;
    font-size: 4.8rem;
    font-weight: normal;
    font-family: var(--font-famil-3)
}

@media (max-width: 1024px) {
    .inside-product-2 {
        padding: 70px 0
    }

    .inside-product-2 h2 {
        font-size: 60px;
        line-height: 70px
    }
}

@media (max-width: 640px) {
    .inside-product-2 h2 {
        font-size: 50px;
        line-height: 60px
    }

    .inside-product-2 h2 span {
        display: block
    }

    .inside-product-2 h3 {
        font-size: 26px;
        line-height: 40px;
        margin-top: 20px
    }
}

.inside-product-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--main-color);
    height: 57.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.inside-product-3 h3 {
    font-size: 6rem;
    line-height: 9rem;
    text-align: center;
    font-family: var(--font-famil-3)
}

.inside-product-3 h3 span {
    display: block
}

@media (max-width: 1024px) {
    .inside-product-3 {
        height: auto;
        padding: 100px 0
    }

    .inside-product-3 h3 {
        font-size: 26px;
        line-height: 40px
    }
}

.inside-proshow-1 {
    padding: 13rem 0;
    background: var(--main-color)
}

.inside-proshow-2 {
    position: relative
}

.inside-proshow-2 .pic img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.inside-proshow-2 .nr {
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 5;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.inside-proshow-2 .index-title {
    text-align: left
}

.inside-proshow-2 .item {
    max-width: 77rem
}

.inside-proshow-2 .list {
    padding-right: 7rem;
    padding-top: 3rem
}

.inside-proshow-2 .list li {
    margin-top: 1rem;
    color: #202020;
    font-size: 1.8rem;
    line-height: 3.2rem;
    padding: 5rem 3rem;
    background: var(--main-color)
}

.inside-proshow-2 .list li .text {
    height: 18.2rem
}

.inside-proshow-2 .list li .tit {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-famil-2)
}

.inside-proshow-2 .list li .txt {
    overflow: auto;
    height: 12.8rem
}

@media (max-width: 1024px) {
    .inside-proshow-2 .nr {
        top: auto;
        left: auto;
        padding: 50px 0;
        -webkit-transform: translate(0);
        transform: translate(0);
        position: relative
    }

    .inside-proshow-2 .item {
        max-width: 100%
    }

    .inside-proshow-2 .list {
        padding-right: 0
    }
}

.inside-proshow-3 {
    position: relative
}

.inside-proshow-3 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.inside-proshow-3 .pic img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.inside-proshow-3 .nr {
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 5;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.inside-proshow-3 .index-title {
    color: var(--main-color);
    text-align: left
}

.inside-proshow-3 .item {
    color: #fff;
    font-size: 1.8rem;
    line-height: 3.2rem;
    max-width: 89rem
}

.inside-proshow-3 .list {
    padding-top: 4rem
}

.inside-proshow-3 .list li {
    padding-top: 2rem
}

.inside-proshow-3 .list li .tit {
    padding-bottom: 2rem;
    font-size: 2.4rem;
    font-family: var(--font-famil-3)
}

@media (max-width: 1024px) {
    .inside-proshow-3 .container {
        display: block
    }

    .inside-proshow-3 .nr {
        top: auto;
        left: auto;
        padding: 50px 0;
        background: #202020;
        -webkit-transform: translate(0);
        transform: translate(0);
        position: relative
    }

    .inside-proshow-3 .item {
        max-width: 100%
    }
}

.inside-proshow-4 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.inside-proshow-4 .list {
    padding-right: 24rem
}

@media (max-width: 1024px) {
    .inside-proshow-4 {
        margin-top: -1px
    }

    .inside-proshow-4 .container {
        display: block
    }

    .inside-proshow-4 .list {
        padding-right: 0
    }
}

.inside-proshow-5 .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inside-proshow-5 .phone {
    width: 41%;
    position: relative
}

.inside-proshow-5 .phone:after {
    content: "";
    top: 50%;
    left: 50%;
    z-index: -1;
    margin-left: -25.5rem;
    margin-top: -25.5rem;
    position: absolute;
    border-radius: 50%;
    width: 51rem;
    height: 51rem;
    background: var(--main-color);
    -webkit-animation: scrollArrow 2.5s alternate infinite;
    animation: scrollArrow 2.5s alternate infinite
}

.inside-proshow-5 .item {
    width: 58%;
    max-width: 100%
}

@media (max-width: 1024px) {
    .inside-proshow-5 .phone, .inside-proshow-5 .item {
        width: 100%
    }

    .inside-proshow-5 .item {
        margin-top: 30px
    }
}

.inside-technology {
    padding: 11rem 0
}

.inside-technology .list 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;
    margin: 0 -1rem;
    padding-top: 4.5rem
}

.inside-technology .list li {
    width: 20%;
    padding: 1rem
}

.inside-technology .list li .item {
    font-family: var(--font-famil-3);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    height: 30rem;
    font-size: 2rem;
    color: var(--main-color);
    border-radius: 1.5rem;
    padding: 0 2.5rem;
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: #020202
}

.inside-technology .list li .tit {
    line-height: 3rem;
    font-size: 2.8rem
}

.inside-technology .list li .txt {
    margin-top: 2rem
}

.inside-technology .list li .icon {
    bottom: 3rem;
    right: 4rem;
    position: absolute
}

.inside-technology .list li .icon img {
    max-height: 6rem
}

.inside-technology .list li .icon .img2 {
    display: none
}

@media (min-width: 1025px) {
    .inside-technology .list li:hover .item {
        color: #202020;
        background: var(--main-color)
    }

    .inside-technology .list li:hover .icon .img1 {
        display: none
    }

    .inside-technology .list li:hover .icon .img2 {
        display: inline-block
    }
}

@media (max-width: 1024px) {
    .inside-technology {
        padding: 50px 0
    }

    .inside-technology .list ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .inside-technology .list li {
        width: 50%
    }
}

@media (max-width: 480px) {
    .inside-technology .list li {
        width: 100%
    }
}

.inside-proshow-6 {
    padding: 11rem 0;
    background: #edf1f5
}

.inside-proshow-6 .list-6 {
    overflow: hidden;
    height: 66rem;
    margin-top: 7rem
}

.inside-proshow-6 .list-6 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.5rem
}

.inside-proshow-6 .list-6 li {
    width: 21%;
    color: var(--main-color);
    height: 66rem;
    overflow: hidden;
    padding: 0 .5rem;
    -webkit-transition: all 334ms linear;
    transition: all 334ms linear
}

.inside-proshow-6 .list-6 li .box {
    position: relative
}

.inside-proshow-6 .list-6 li .item {
    display: block;
    position: relative
}

.inside-proshow-6 .list-6 li .pic {
    overflow: hidden;
    height: 66rem;
    position: relative;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover
}

.inside-proshow-6 .list-6 li .txtbox {
    width: 100%;
    z-index: 9;
    left: 0;
    top: 11rem;
    font-size: 1.8rem;
    padding-right: 0;
    padding-left: 3rem;
    line-height: 3.2rem;
    position: absolute
}

.inside-proshow-6 .list-6 li .tit {
    font-size: 2.4rem;
    font-family: var(--font-famil-3)
}

.inside-proshow-6 .list-6 li .txt {
    display: none;
    margin-top: 2rem
}

.inside-proshow-6 .list-6 .active {
    width: 58%
}

.inside-proshow-6 .list-6 .active .txtbox {
    padding-right: 10rem;
    padding-left: 4rem
}

.inside-proshow-6 .list-6 .active .txt {
    display: block
}

@media (max-width: 1024px) {
    .inside-proshow-6 {
        padding: 50px 0
    }

    .inside-proshow-6 .list-6 {
        margin-top: 20px;
        height: auto
    }

    .inside-proshow-6 .list-6 li {
        padding-top: 2rem;
        width: 100% !important;
        height: auto
    }

    .inside-proshow-6 .list-6 li .pic {
        height: 200px
    }

    .inside-proshow-6 .list-6 li .txtbox {
        padding: 40px 20px !important;
        background: #202020;
        line-height: 24px;
        top: auto;
        left: auto;
        position: relative
    }

    .inside-proshow-6 .list-6 li .txt {
        margin-top: 10px;
        height: auto !important;
        display: block !important;
        line-height: 24px;
        font-size: 14px;
        height: auto
    }
}

@media (max-width: 480px) {
    .inside-proshow-6 .list-6 li {
        width: 100% !important
    }
}

.inside-proshow-7 {
    overflow: hidden;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#434244), to(#434244));
    background: linear-gradient(to bottom, #000, #434244, #434244)
}

.inside-proshow-7 .container {
    max-width: 192rem;
    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-proshow-7 .index-title {
    text-align: left;
    color: var(--main-color)
}

.inside-proshow-7 .left {
    width: 51%;
    padding: 5rem 0;
    padding-left: 19rem
}

.inside-proshow-7 .left .text {
    padding: 3rem 2rem 4rem 0;
    color: #fff;
    font-size: 2.4rem;
    line-height: 5rem;
    font-family: var(--font-famil-3)
}

.inside-proshow-7 .right {
    width: 45%
}

@media (max-width: 1024px) {
    .inside-proshow-7 .container {
        display: block
    }

    .inside-proshow-7 .left, .inside-proshow-7 .right {
        width: 100%
    }

    .inside-proshow-7 .left {
        padding: 50px 0
    }
}

.inside-proshow-8 {
    overflow: hidden;
    position: relative
}

.inside-proshow-8 .container {
    max-width: 192rem
}

.inside-proshow-8 .list ul {
    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
}

.inside-proshow-8 .list li {
    width: 34%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear
}

.inside-proshow-8 .list li .pic, .inside-proshow-8 .list li .pic-1, .inside-proshow-8 .list li .pic-2 {
    height: 93.5rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover
}

.inside-proshow-8 .list li .pic-1 {
    display: none
}

.inside-proshow-8 .list li .pic-2 {
    display: block
}

.inside-proshow-8 .list li .text {
    opacity: 0;
    display: none;
    padding: 0 9rem;
    color: #fff;
    z-index: 2;
    width: 130rem;
    left: 0;
    bottom: 6rem;
    position: absolute;
    font-family: var(--font-famil-3)
}

.inside-proshow-8 .list li .text .tit {
    font-size: 6rem;
    line-height: 7rem;
    color: var(--main-color)
}

.inside-proshow-8 .list li .text .txt {
    margin-top: 3rem;
    font-size: 2.4rem
}

.inside-proshow-8 .list .last .nr {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute
}

.inside-proshow-8 .list .last .text {
    opacity: 0;
    padding: 0;
    padding-left: 9rem;
    max-width: 57rem;
    left: auto;
    bottom: auto;
    position: relative
}

.inside-proshow-8 .list .last .right {
    right: 0;
    bottom: 0;
    position: absolute
}

.inside-proshow-8 .list .last .right .tu {
    position: relative
}

.inside-proshow-8 .list .last .right .tu:after {
    content: "";
    top: 50%;
    left: 50%;
    z-index: 1;
    border-radius: 50%;
    position: absolute;
    width: 58.4rem;
    height: 58.4rem;
    background: var(--main-color);
    -webkit-transform: translate(-56%, -50%);
    transform: translate(-56%, -50%)
}

.inside-proshow-8 .list .last .right img {
    z-index: 3;
    position: relative;
    max-height: 75rem
}

.inside-proshow-8 .list .active {
    z-index: 9;
    width: 65.7%
}

.inside-proshow-8 .list .active .pic-1 {
    display: block
}

.inside-proshow-8 .list .active .pic-2 {
    display: none
}

.inside-proshow-8 .list .active .text {
    display: block;
    opacity: 1
}

@media (max-width: 1024px) {
    .inside-proshow-8 {
        margin-top: 40px
    }

    .inside-proshow-8 .list ul {
        display: block
    }

    .inside-proshow-8 .list li {
        bottom: auto;
        left: auto;
        position: relative;
        display: block !important;
        width: 100% !important
    }

    .inside-proshow-8 .list li .pic-1 {
        background-size: contain;
        height: 200px !important
    }

    .inside-proshow-8 .list li .pic-2 {
        display: none !important
    }

    .inside-proshow-8 .list li .text {
        background: #202020;
        width: 100%;
        padding: 0 30px;
        padding-top: 30px;
        bottom: auto;
        left: auto;
        opacity: 1 !important;
        position: relative
    }

    .inside-proshow-8 .list li .text .tit {
        font-size: 24px;
        line-height: 30px
    }

    .inside-proshow-8 .list li .text .txt {
        font-size: 16px;
        font-family: var(--font-famil-2)
    }

    .inside-proshow-8 .list .last .text {
        width: 100% !important;
        display: block !important;
        padding: 30px !important;
        max-width: 100% !important
    }

    .inside-proshow-8 .list .last .pic {
        display: none;
        height: auto
    }

    .inside-proshow-8 .list .last .item {
        padding-top: 40px;
        background: #202020
    }

    .inside-proshow-8 .list .last .nr {
        top: auto;
        left: auto;
        display: block;
        position: relative
    }

    .inside-proshow-8 .list .last .right {
        top: auto;
        left: auto;
        bottom: auto;
        text-align: right;
        position: relative
    }

    .inside-proshow-8 .list .last .right .tu:after {
        width: 300px;
        height: 300px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
}

.inside-proshow-9 {
    overflow: hidden;
    padding: 11rem 0
}

.inside-proshow-9 .list {
    position: relative;
    margin-top: 6rem
}

.inside-proshow-9 .list .pic {
    overflow: hidden;
    position: relative
}

.inside-proshow-9 .list .pic img {
    -webkit-transition: all 700ms linear;
    transition: all 700ms linear
}

.inside-proshow-9 .list .pic:after {
    content: "";
    display: block;
    padding-bottom: 64.6090535%
}

.inside-proshow-9 .list .tit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin-top: 1rem;
    color: #202020;
    font-size: 1.8rem;
    height: 3rem;
    line-height: 3rem;
    font-family: var(--font-famil-3)
}

.inside-proshow-9 .swiper-button-prev, .inside-proshow-9 .swiper-button-next {
    margin-top: auto;
    z-index: 10;
    margin-top: -3.5rem;
    border: dashed 1px #fff;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    color: #fff;
    text-align: center;
    cursor: pointer;
    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
}

.inside-proshow-9 .swiper-button-prev:after, .inside-proshow-9 .swiper-button-next:after {
    font-size: 0
}

.inside-proshow-9 .swiper-button-prev:hover, .inside-proshow-9 .swiper-button-next:hover {
    width: 8rem;
    height: 8rem
}

.inside-proshow-9 .swiper-button-prev {
    left: -10rem;
    background: url(../images/prev.png) no-repeat center center var(--main-color);
    background-size: cover
}

.inside-proshow-9 .swiper-button-next {
    right: -10rem;
    background: url(../images/next.png) no-repeat center center var(--main-color);
    background-size: cover
}

@media (max-width: 1024px) {
    .inside-proshow-9 {
        padding: 50px 0
    }

    .inside-proshow-9 .swiper-button-prev, .inside-proshow-9 .swiper-button-next {
        width: 40px;
        height: 40px
    }

    .inside-proshow-9 .swiper-button-prev {
        left: 20px
    }

    .inside-proshow-9 .swiper-button-next {
        right: 20px
    }
}

.inside-proshow-10 .pic1 li {
    width: 51rem
}

.inside-proshow-10 .pic2 li {
    width: 100%;
    font-size: 9rem
}

@media (max-width: 1024px) {
    .inside-proshow-10 .pic1 li {
        width: 100%
    }

    .inside-proshow-10 .pic2 li {
        height: 60px;
        overflow: hidden;
        font-size: 50px;
        line-height: 60px
    }
}

.inside-xg-video {
    background: #edf1f5
}

.inside-xg-video .index-title {
    padding-bottom: 5rem
}

.inside-xg-video .inside-tags {
    margin-left: 0;
    margin-top: 6rem
}

@media (max-width: 1024px) {
    .inside-xg-video {
        padding: 50px 0 !important
    }

    .inside-xg-video .index-title {
        padding-bottom: 20px
    }

    .inside-xg-video .inside-tags {
        margin-top: 30px
    }
}

.inside-contact-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 75.6rem;
    padding-top: 13rem;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.inside-contact-2 .title {
    font-weight: normal;
    color: var(--main-color);
    font-size: 10rem;
    line-height: 10rem;
    padding-bottom: 2.5rem;
    font-family: var(--font-famil-3);
    border-bottom: solid 1px #fff
}

.inside-contact-2 dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 8rem
}

.inside-contact-2 dt {
    line-height: 10rem;
    text-align: center;
    width: 10.4rem;
    height: 10.4rem;
    border-radius: 50%;
    border: dashed 1px #fff;
    background: var(--main-color)
}

.inside-contact-2 dt svg {
    fill: #202020;
    vertical-align: middle
}

.inside-contact-2 dd {
    color: var(--main-color);
    font-size: 2.4rem;
    line-height: 4.4rem;
    padding-left: 12rem
}

.inside-contact-2 dd a {
    color: var(--main-color)
}

.inside-contact-2 dd span {
    font-family: var(--font-famil-3)
}

.inside-contact-2 dd .t-1 {
    color: #fff;
    font-size: 3.6rem;
    font-family: var(--font-famil-3)
}

.inside-contact-2 dd .t-2 {
    color: #fff;
    font-size: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
    font-family: var(--font-famil-3)
}

@media (max-width: 1024px) {
    .inside-contact-2 {
        height: auto;
        padding: 50px 0;
        background-attachment: inherit
    }

    .inside-contact-2 .title {
        font-size: 40px;
        line-height: 50px
    }

    .inside-contact-2 dl {
        display: block;
        padding-top: 30px
    }

    .inside-contact-2 dt {
        display: none
    }

    .inside-contact-2 dd {
        width: 100%;
        padding-left: 0
    }
}

.inside-news {
    padding: 10rem 0
}

.inside-news .list {
    margin-top: 0
}

.inside-news .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2.5rem
}

.inside-news .list li {
    width: 33.333%;
    padding: 2.5rem
}

@media (max-width: 1024px) {
    .inside-news {
        padding: 30px 0 50px 0
    }

    .inside-news .list ul {
        margin: 0 -10px
    }

    .inside-news .list li {
        width: 50%;
        padding: 10px
    }
}

@media (max-width: 480px) {
    .inside-news .list li {
        width: 100%
    }
}

.inside-video {
    padding: 10rem 0
}

.inside-video .list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2rem
}

.inside-video .list-2 li {
    width: 50%;
    padding: 2rem
}

.inside-video .list-2 li .item .picbox {
    position: relative
}

.inside-video .list-2 li .item .picbox .icon {
    top: 50%;
    left: 50%;
    z-index: 3;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.inside-video .list-2 li .item .picbox .circle::after {
    opacity: 1;
    width: 6.6rem;
    height: 6.6rem;
    -webkit-animation: 0s;
    animation: 0s
}

.inside-video .list-2 li .item .picbox i {
    top: 50%;
    left: 50%;
    z-index: 4;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-style: normal;
    border-left: solid 2rem #202020;
    border-top: solid 1.2rem transparent;
    border-bottom: solid 1.2rem transparent
}

.inside-video .list-2 li .item .pic {
    overflow: hidden;
    position: relative
}

.inside-video .list-2 li .item .pic img {
    -webkit-transition: all 700ms linear;
    transition: all 700ms linear
}

.inside-video .list-2 li .item .tit {
    color: #000;
    margin-top: 3rem;
    height: 3rem;
    font-size: 2.4rem;
    line-height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    font-family: var(--font-famil-3)
}

@media (min-width: 1025px) {
    .inside-video li:hover .pic img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@media (max-width: 1024px) {
    .inside-video {
        padding: 30px 0
    }
}

@media (max-width: 640px) {
    .inside-video .list-2 li {
        width: 100%
    }
}

.inside-application {
    padding: 11rem 0
}

.inside-application ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1rem;
    margin-top: 5rem
}

.inside-application li {
    padding: 1rem;
    width: 33.3333%
}

.inside-application li .item {
    position: relative
}

.inside-application li .text {
    z-index: 3;
    left: 0;
    width: 100%;
    padding: 0 3rem;
    top: 7.5rem;
    text-align: center;
    position: absolute
}

.inside-application li .text .tit {
    color: var(--main-color);
    font-size: 3.4rem;
    line-height: 4.4rem;
    height: 4.4rem;
    font-family: var(--font-famil-3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.inside-application li .text .txt {
    color: #fff;
    margin-top: .5em;
    font-size: 2rem;
    height: 3rem;
    line-height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.inside-application li .index-button {
    margin-top: 3.5rem
}

.inside-application li .pic {
    overflow: hidden;
    position: relative
}

.inside-application li .pic img {
    -webkit-transition: all 700ms linear;
    transition: all 700ms linear
}

.inside-application li .pic:after {
    content: "";
    display: block;
    padding-bottom: 131.0483871%
}

@media (min-width: 1025px) {
    .inside-application li:hover .index-button span {
        color: #202020;
        border-color: var(--main-color);
        background: var(--main-color)
    }

    .inside-application li:hover .pic img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@media (max-width: 1024px) {
    .inside-application {
        padding: 50px 0
    }

    .inside-application li {
        width: 50%
    }
}

@media (max-width: 500px) {
    .inside-application ul {
        margin-top: 20px
    }

    .inside-application li {
        width: 100%
    }
}

.inside-support {
    position: relative;
    padding: 11rem 0
}

.inside-support .text {
    color: #000;
    padding-top: 1rem;
    line-height: 3.2rem;
    font-size: 1.8rem
}

.inside-support .text p {
    padding-top: 2rem
}

.inside-support .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.5rem
}

.inside-support .list li {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.5rem;
    margin-top: 3rem
}

.inside-support .list li .item {
    width: 100%;
    padding: 6.5rem 3rem;
    min-height: 100%;
    text-align: center;
    background: #202020;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.inside-support .list li .icon {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 8rem;
    width: 8rem
}

.inside-support .list li .icon img {
    max-height: 8rem
}

.inside-support .list li .icon .img2 {
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: absolute;
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem)
}

.inside-support .list li .tit {
    margin-top: 2rem;
    font-size: 3.2rem;
    color: var(--main-color);
    font-family: var(--font-famil-3)
}

.inside-support .list li .txt {
    color: #fff;
    margin-top: 1rem
}

@media (min-width: 1025px) {
    .inside-support .list li:hover .item {
        background: var(--main-color)
    }

    .inside-support .list li:hover .icon .img1 {
        display: none
    }

    .inside-support .list li:hover .icon .img2 {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .inside-support .list li:hover .tit, .inside-support .list li:hover .txt {
        color: #202020
    }
}

@media (max-width: 1024px) {
    .inside-support {
        padding: 50px 0
    }
}

@media (max-width: 640px) {
    .inside-support .list ul {
        display: block
    }

    .inside-support .list li {
        width: 100%
    }
}

.inside-map {
    padding: 11rem 0;
    background: #202020
}

.inside-map .index-title {
    font-size: 6rem;
    line-height: 7rem;
    color: var(--main-color)
}

.inside-map .ditubox {
    position: relative;
    max-width: 133rem;
    margin: 0 auto;
    margin-top: 4rem
}

.inside-map .ditubox .tu img {
    max-height: 76rem
}

.inside-map .mapline {
    top: 0;
    left: 0;
    z-index: 3;
    position: absolute
}

.inside-map .mapline img {
    max-height: 76rem
}

.inside-map .addbox {
    left: 46rem;
    top: 24rem;
    z-index: 3;
    position: absolute
}

.inside-map .addbox .circle {
    width: 14rem;
    height: 14rem;
    position: relative
}

.inside-map .add {
    position: absolute
}

.inside-map .add .circle {
    position: relative;
    width: 2.8rem;
    height: 2.8rem
}

.inside-map .add-1 {
    left: 44rem;
    top: 10rem
}

.inside-map .add-2 {
    left: 22.4rem;
    top: 13.5rem
}

.inside-map .add-3 {
    left: 37.5rem;
    top: 19rem
}

.inside-map .add-4 {
    left: 27.5rem;
    top: 20.8rem
}

.inside-map .add-5 {
    left: 14.5rem;
    top: 31.5rem
}

.inside-map .add-6 {
    left: 37rem;
    top: 30rem
}

.inside-map .add-7 {
    left: 45.8rem;
    top: 32rem
}

.inside-map .add-8 {
    left: 59.2rem;
    top: 52rem
}

.inside-map .add-9 {
    left: 66rem;
    top: 9.6rem
}

.inside-map .add-10 {
    left: 68.4rem;
    top: 14.4rem
}

.inside-map .add-11 {
    left: 93.5rem;
    top: 9rem
}

.inside-map .add-12 {
    left: 102.5rem;
    top: 16.4rem
}

.inside-map .add-13 {
    left: 122rem;
    top: 45rem
}

.inside-map .ditu-ph {
    display: none
}

@media (max-width: 1024px) {
    .inside-map {
        padding: 50px 0
    }

    .inside-map .index-title {
        font-size: 24px;
        line-height: 30px
    }

    .inside-map .ditubox {
        display: none
    }

    .inside-map .ditu-ph {
        display: block;
        margin-top: 30px
    }
}

.inside-download {
    position: relative;
    padding: 11rem 0
}

.inside-download ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
    margin-top: 4.5rem
}

.inside-download li {
    width: 50%;
    padding: 1.5rem
}

.inside-download li .item {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 10rem;
    line-height: 10rem;
    border-radius: .5rem;
    background: #202020
}

.inside-download li .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 3rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inside-download li .box .tit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    width: 65%;
    font-size: 1.8rem;
    height: 10rem;
    font-family: var(--font-famil-3);
    color: var(--main-color)
}

.inside-download li .box .tag {
    font-size: 1.4rem;
    color: #fff
}

.inside-download li .box .tag span {
    padding-left: 1rem
}

.inside-download li .box .tag svg {
    fill: #fff;
    margin-right: .5rem;
    width: 1.6rem;
    height: 1.6rem;
    margin-bottom: .4rem;
    vertical-align: middle
}

@media (min-width: 1025px) {
    .inside-download li:hover .item {
        background: var(--main-color)
    }

    .inside-download li:hover .item .tit, .inside-download li:hover .item .tag {
        color: #202020
    }

    .inside-download li:hover .item .tit svg, .inside-download li:hover .item .tag svg {
        fill: #202020
    }
}

@media (max-width: 1024px) {
    .inside-download {
        padding: 50px 0
    }

    .inside-download ul {
        margin-top: 20px
    }

    .inside-download li {
        width: 100%
    }

    .inside-download li .item {
        line-height: 24px;
        height: auto;
        line-height: auto
    }

    .inside-download li .box {
        padding: 20px;
        display: block
    }

    .inside-download li .box .tit {
        width: 100%;
        height: auto;
        font-size: 16px
    }
}

.common-page {
    clear: both;
    font-size: 0;
    text-align: center;
    margin-top: 6rem;
    font-family: arial;
    line-height: 1.6rem
}

.common-page em {
    font-style: normal;
    font-size: 1.4rem;
    line-height: 3.8rem;
    vertical-align: middle
}

.common-page a {
    display: inline-block;
    border: solid 1px #202020;
    vertical-align: top;
    font-style: normal;
    margin: 0 .5rem;
    color: #1b1a1a;
    text-align: center;
    font-size: 1.4rem;
    min-width: 4.6rem;
    line-height: 4.6rem;
    height: 4.6rem;
    padding: 0 0
}

.common-page a.cur, .common-page a.active, .common-page a:hover {
    color: var(--main-color) !important;
    background: #202020
}

.common-page a.prev, .common-page a.next {
    vertical-align: top;
    color: inherit;
    color: #1b1a1a;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.common-page a.prev > span, .common-page a.next > span {
    margin: 0;
    vertical-align: top
}

.common-page a.prev .txt, .common-page a.next .txt {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.common-page a.prev {
    margin-left: 0
}

.common-page a.prev span:first-child {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "宋体";
    padding: 0 2rem;
    border-right: solid 1px #202020
}

.common-page a.prev:hover span:first-child {
    border-color: rgba(255, 255, 255, 0.2)
}

.common-page a.next {
    margin-left: 0
}

.common-page a.next span:last-child {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "宋体";
    padding: 0 2rem;
    border-left: solid 1px #202020
}

.common-page a.next:hover span:last-child {
    border-color: rgba(255, 255, 255, 0.2)
}

@media screen and (max-width: 1024px) {
    .common-page {
        text-align: center
    }

    .common-page .page-inner {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .common-page a, .common-page span {
        display: none
    }

    .common-page .prev, .common-page .next {
        display: inline-block
    }

    .common-page .prev > span, .common-page .next > span {
        display: inline-block
    }
}

.news-show {
    color: #000;
    padding-bottom: 10rem;
    line-height: 3.2rem;
    padding-top: 11rem
}

.news-show .con {
    background-color: #fff;
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 65, 0, 0.1);
    box-shadow: 0 0 1rem 0 rgba(0, 65, 0, 0.1);
    padding: 4rem 9rem 9rem 9rem
}

.news-show .hd {
    margin-top: 1rem;
    position: relative
}

.news-show .hd .text {
    width: 72%;
    position: relative;
    margin-top: -10rem
}

.news-show .hd .textC {
    padding: 4rem 4rem 0 4rem;
    display: inline-block;
    width: initial;
    max-width: 100%;
    position: relative;
    background: #fff
}

.news-show .show-title {
    color: #000;
    font-family: var(--font-famil-3);
    font-weight: normal;
    line-height: 5rem;
    font-size: 3.2rem
}

.news-show .show-info {
    color: #222;
    padding: 2rem 0;
    font-size: 1.4rem;
    position: relative
}

.news-show .show-info span {
    margin-right: 5px
}

.news-show .nr {
    padding: 0 0 4rem 4rem
}

.news-show .nr p {
    padding-top: 2rem
}

@media screen and (max-width: 1024px) {
    .news-show {
        font-size: 16px;
        padding-top: 30px;
        line-height: 26px;
        padding-bottom: 40px
    }

    .news-show .hd {
        margin-top: 0
    }

    .news-show .hd .text {
        width: 100%;
        margin-top: 0
    }

    .news-show .hd .textC {
        padding: 20px 0 10px 0
    }

    .news-show .show-title {
        font-size: 20px;
        line-height: 1.2;
        padding: 10px 0
    }

    .news-show .show-info {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0
    }

    .news-show .nr {
        padding-bottom: 30px;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0
    }

    .news-show .tags {
        padding-left: 50px;
        position: relative;
        line-height: 30px;
        padding-bottom: 40px
    }

    .news-show .tags .bt {
        font-size: 16px
    }

    .news-show .tags a {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 10px
    }
}

.inside-tags {
    position: relative;
    padding-left: 13rem;
    line-height: 3.6rem;
    padding-bottom: 4rem
}

.inside-tags .bt {
    top: 0;
    left: 0;
    line-height: 3.6rem;
    position: absolute;
    font-size: 1.8rem;
    color: #333
}

.inside-tags a {
    color: var(--main-color);
    background: #202020;
    margin-right: 1rem;
    font-size: 1.4rem;
    border-radius: 3rem;
    display: inline-block;
    padding: 0 2rem;
    margin-bottom: 1rem
}

.inside-tags a:hover {
    color: #202020;
    background: var(--main-color)
}

@media (max-width: 1024px) {
    .inside-tags {
        padding-bottom: 20px
    }
}

.inside-xgnews {
    padding-top: 0
}

.inside-xgnews .index-title {
    text-align: left
}

.prev-next-return {
    overflow: hidden;
    position: relative;
    border-top: 1px #e1e1e1 solid;
    border-bottom: 1px #e1e1e1 solid;
    font-size: 1.6rem;
    color: #333841
}

.prev-next-return a {
    color: #202020;
    display: block;
    line-height: 5.5rem;
    overflow: hidden
}

.prev-next-return a:hover {
    background: #202020;
    color: var(--main-color)
}

.prev-next-return em {
    font-style: initial
}

.prev-next-return .list:after {
    display: none
}

.prev-next-return .prev, .prev-next-return .next {
    width: 50%;
    height: 5.5rem;
    line-height: 5.5rem;
    float: left;
    -webkit-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.prev-next-return .prev a, .prev-next-return .next a {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 0 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1
}

.prev-next-return .prev {
    padding-right: 8rem
}

.prev-next-return .next {
    padding-left: 8rem
}

.prev-next-return .return {
    text-align: center;
    width: 16rem;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0
}

.prev-next-return .return a {
    border-left: 1px #e1e1e1 solid;
    border-right: 1px #e1e1e1 solid;
    display: block;
    height: 5.5rem;
    line-height: 5.5rem;
    text-align: center
}

.prev-next-return .return a:hover {
    color: var(--main-color)
}

@media screen and (max-width: 1024px) {
    .prev-next-return {
        font-size: 14px
    }

    .prev-next-return a {
        line-height: 40px
    }

    .prev-next-return .prev, .prev-next-return .next {
        width: 100%;
        text-align: left !important;
        height: 40px;
        line-height: 40px
    }

    .prev-next-return .prev a, .prev-next-return .next a {
        padding: 0 0
    }

    .prev-next-return em {
        display: none
    }

    .prev-next-return .prev {
        padding-right: 0
    }

    .prev-next-return .next {
        padding-left: 0
    }

    .prev-next-return .return {
        display: none;
        width: 100px
    }

    .prev-next-return .return a {
        height: 40px;
        line-height: 40px
    }
}

#searchPopup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999
}

#searchPopup .searchBox {
    color: #fff;
    padding-right: 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
    top: 13rem;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

#searchPopup .searchBox.fadeIn {
    top: 10rem;
    opacity: 1;
    z-index: 999
}

#searchPopup .searchBox .container {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

#searchPopup .searchBox input {
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    border: 1px #fff solid;
    background: #fff;
    color: #333;
    width: 40%;
    padding: 0 10px;
    font-size: 1.4rem;
    height: 6rem;
    line-height: 5.8rem
}

#searchPopup .searchBox input:focus {
    color: #333
}

#searchPopup .searchBox .btn {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: 6rem;
    width: 6rem;
    background: var(--main-color);
    text-align: center;
    display: inline-block
}

#searchPopup .searchBox .btn svg {
    width: 3rem;
    height: 3rem;
    margin: 1.5rem
}

#searchPopup .searchBox .btn .cls-1 {
    fill: #fff
}

#searchPopup .searchBox .btn .cls-2 {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px
}

#searchPopup .searchBox .btn:hover {
    background: var(--main-color)
}

#searchPopup .searchBox .close {
    display: none
}

#searchPopup .searchBox2.fadeIn {
    top: 9.5rem
}

@media screen and (max-width: 1024px) {
    #searchPopup .searchBox {
        top: 80px
    }

    #searchPopup .searchBox .container {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    #searchPopup .searchBox input {
        width: 100%;
        padding: 0 10px;
        font-size: 14px;
        height: 36px;
        line-height: 36px
    }

    #searchPopup .searchBox .btn {
        right: 15px;
        height: 36px;
        width: 36px
    }

    #searchPopup .searchBox .btn svg {
        width: 20px;
        height: 20px;
        margin: 8px auto 0 auto
    }
}

.videoWindow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000000;
    display: none
}

.videoWindow video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 132rem;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-height: 70%;
    max-width: 80%
}

.videoWindow i {
    display: block;
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 2.5rem;
    height: 2.5rem;
    background: url(../images/onlineClose.png) no-repeat center center;
    background-size: contain;
    cursor: pointer
}

.navPhoneBtn {
    display: inline-block;
    cursor: pointer;
    float: right;
    text-align: right;
    display: none
}

.navPhoneBtn span {
    display: block;
    width: 20px;
    height: 2px;
    margin-bottom: 3px;
    position: relative;
    background: #fff;
    border-radius: 0;
    z-index: 1;
    -webkit-transform-origin: 20px;
    transform-origin: 20px;
    -webkit-animation: fadeIn2 1.8s linear infinite;
    animation: fadeIn2 1.8s linear infinite;
    -webkit-transition: background .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, width .5s, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1), -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
    transition: background .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, width .5s, -webkit-transform .5s cubic-bezier(.77, .2, .05, 1), -webkit-transform .5s cubic-bezier(.77, .2, .05, 1);
    transition: background .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(.77, .2, .05, 1), width .5s, transform .5s cubic-bezier(.77, .2, .05, 1);
    transition: background .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(.77, .2, .05, 1), width .5s, transform .5s cubic-bezier(.77, .2, .05, 1), -webkit-transform .5s cubic-bezier(.77, .2, .05, 1), -webkit-transform .5s cubic-bezier(.77, .2, .05, 1)
}

.navPhoneBtn span:nth-last-child(2) {
    width: 15px !important;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: width .5s ease;
    transition: width .5s ease
}

.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 (max-width: 1024px) {
    .navPhoneBtn {
        display: block;
        right: 20px !important;
        margin-right: 0;
        position: absolute
    }
}

.common-navM .transparent {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: none
}

.common-navM .navMCon {
    background-color: #fff;
    width: 80%;
    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;
    right: -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;
    padding-top: 70px
}

.common-navM.open .transparent {
    display: block
}

.common-navM.open .closeBtn {
    display: block
}

.common-navM.open .navMCon {
    right: 0
}

.common-navM .mSearch {
    margin-top: 40px
}

.common-navM .closeBtn {
    opacity: 1 !important;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #666 !important;
    position: absolute;
    z-index: 999;
    right: 20px;
    top: 20px
}

.common-navM .closeBtn:before, .common-navM .closeBtn:after {
    content: "";
    display: block;
    background: #666;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.common-navM .closeBtn:before {
    width: 20px;
    height: 1px
}

.common-navM .closeBtn:after {
    width: 1px;
    height: 20px
}

.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 10px 10px;
    text-indent: 0;
    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-size: 18px
}

.common-navM .navMWrap > .list > li > .child > .list > li {
    text-indent: 24px;
    font-size: 16px
}

.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 {
    padding-left: 20px;
    position: relative
}

.common-navM .navMWrap > .list > li > .child > .list > li > .title:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #999;
    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 .4s cubic-bezier(.11393, .8644, .14684, 1);
    transition: all .4s cubic-bezier(.11393, .8644, .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 .read {
    padding-top: 10px;
    padding-bottom: 10px
}

.common-navM .read .btn-1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 5px;
    line-height: 40px;
    height: 40px;
    border-radius: 5px;
    background: -webkit-gradient(linear, left top, right top, from(#bf2d32), to(#a61f24));
    background: linear-gradient(to right, #bf2d32, #a61f24);
    color: #fff;
    text-align: center;
    font-size: 16px;
    position: relative
}

.common-navM .read .btn-1 .icon-1 {
    width: 30px;
    height: 30px;
    margin-left: 5px
}

.common-navM .read .btn-1 .icon-2 {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #fff url(../images/arrow-right-1.png) no-repeat center center;
    background-size: 20px;
    margin-left: 20px
}

.common-navM .list > li > .child > .list {
    padding-top: 20px
}

.common-navM .list > li > .child > .list > li > .title {
    border-bottom: 0;
    padding-top: 0;
    padding-bottom: 0
}

.common-navM .list > li > .child > .list > li > .title::before {
    top: 18px !important
}

.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: block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    border: 1px #eee solid;
    margin-right: -1px;
    margin-top: -1px;
    background: #fff
}

.index-about .list .logo svg image {
    transform: scale(1.01)
}