@charset "UTF-8";

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
input,
textarea,
select,
button,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: initial;
    vertical-align: baseline;
    background: 0 0;
    -webkit-tap-highlight-color: transparent
}
:root{
    --hcolor:#da251d;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block
}

body {
    padding: 0;
    margin: 0 auto !important;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    min-width: 320px;
    width: 100%;
    zoom: 1;
    background: #fff;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    position: -webkit-sticky;

position: -moz-sticky;

position: -ms-sticky;

position: sticky;

top: 0;

z-index: 666;
}

* {
    -webkit-tap-highlight-color: transparent;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

p,
span {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: 0 0;
    -webkit-tap-highlight-color: transparent
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
    font-weight: 400;
    font-style: normal
}

ul,
ol,
li {
    list-style-type: none
}

a {
    text-decoration: none;
    outline: 0;
    color: #333;
    cursor: pointer
}

a:focus {
    outline: 0;
    -moz-outline: 0
}

a img {
    border: 0
}

select,
input,
textarea {
    border-radius: 0;
    -webkit-border-radius: 0
}

input:focus {
    outline: 0
}

input,
button,
select,
textarea {
    outline: 0
}

textarea {
    resize: none
}

textarea,
input,
select {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0
}

table {
    background-color: transparent;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border-top: solid 1px #ddd;
    border-left: solid 1px #ddd;
    box-sizing: border-box
}

table th {
    background-color: #f9f9f9;
    text-align: center;
    box-sizing: border-box
}

table td,
table th {
    padding: 5px 10px;
    border: 1px solid #ddd;
    box-sizing: border-box
}

main,
footer {
    display: block
}

input[type=button],
input[type=submit],
input[type=file],
button {
    cursor: pointer;
    -webkit-appearance: none
}

.clearfix:after {
    clear: both;
    display: block;
    content: "";
    height: 0;
    visibility: hidden
}

.clearfix {
    *zoom: 1
}

.fl {
    float: left
}

.fr {
    float: right
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}
.ai_center{
    align-items: center;
}
.flex_jcsb{
    justify-content: space-between;
}

.fleximportant {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important
}

.inlineflex {
    display: inline-flex;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex
}

.d_flex>* {
    display: block
}

.f_direction_column {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.f_direction_row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row
}

.j_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.j_end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.j_start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start
}

.j_justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.j_around {
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around
}

.a_start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start
}

.a_end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end
}

.a_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.a_baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline
}

.a_stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch
}

.flex_wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap
}

.flex_auto {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    -webkit-flex: auto;
    flex: auto
}

.flex_1 {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1
}

.order_2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2
}

.order_3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3
}

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

.dh {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.fd {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}

.imgfd {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    -o-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05)
}

.xzx {
    transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -o-transform: rotateX(180deg)
}

.xzy {
    transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -o-transform: rotateY(180deg)
}

.pb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative
}

.ab {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    text-align: center
}

.abimg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.w1800 {
    width: 100%;
    max-width: 1920px;
    padding: 0 60px
}

.w1680 {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto
}

.w1600 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto
}

.w1560 {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto
}

.w1440 {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto
}

.w1400,
.wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.w1280 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto
}

.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

img {
    max-width: 100%;
    max-height: 100%
}

.pc {
    display: block
}

.wap,
.mobile {
    display: none
}

@media (max-width:1800px) {
    .w1680 {
        max-width: 100%;
        padding: 0 60px
    }
}

@media (max-width:1720px) {
    .w1600 {
        max-width: 100%;
        padding: 0 60px
    }
}

@media (max-width:1680px) {
    .w1560 {
        max-width: 100%;
        padding: 0 60px
    }
}

@media (max-width:1520px) {

    .w1400,
    .wrap {
        max-width: 100%;
        padding: 0 60px
    }
}

@media (max-width:1400px) {
    .w1280 {
        padding: 0 60px
    }
}

@media (max-width:1320px) {
    .w1200 {
        max-width: 100%;
        padding: 0 60px
    }
}

@media (max-width:1024px) {

    .w1800,
    .w1680,
    .w1560,
    .w1400,
    .wrap,
    .w1440,
    .w1600,
    .w1280,
    .w1200 {
        padding: 0 30px
    }
}

@media (max-width:990px) {

    .w1800,
    .w1680,
    .w1560,
    .w1400,
    .wrap,
    .w1440,
    .w1600,
    .w1280,
    .w1200 {
        padding: 0 20px
    }
}

@media (max-width:768px) {
    .pc {
        display: none
    }

    .wap,
    .mobile {
        display: block
    }
}

@font-face {
    font-family: sy_l;
    src: url(../font/SourceHanSansCN-Light.ttf)
}

@font-face {
    font-family: sy_r;
    src: url(../font/SourceHanSansCN-Regular.ttf)
}

@font-face {
    font-family: sy_m;
    src: url(../font/SourceHanSansCN-Medium.ttf)
}

.sy_l {
    font-family: sy_l
}

.sy_r {
    font-family: sy_r
}

.sy_m {
    font-family: sy_m
}

@font-face {
    font-family: hs_r;
    src: url(../font/HarmonyOS_Sans_SC_Regular.ttf)
}

.hs_r {
    font-family: hs_r
}

html,
body {
    height: 100%;
    position: relative;
    scroll-behavior: smooth;
    font-family: sy_r;
    font-family: Arial
}

h2.h2 {
    font-size: 48px
}

@media (max-width:1680px) {
    h2.h2 {
        font-size: 42px
    }
}

@media (max-width:1440px) {
    h2.h2 {
        font-size: 36px
    }
}

@media (max-width:1280px) {
    h2.h2 {
        font-size: 32px
    }
}

@media (max-width:1024px) {
    h2.h2 {
        font-size: 25.6px
    }
}

@media (max-width:1680px) {
    h2.h2 {
        font-size: 42px
    }
}

@media (max-width:1440px) {
    h2.h2 {
        font-size: 32px
    }
}

@media (max-width:1280px) {
    h2.h2 {
        font-size: 28px
    }
}

@media (max-width:1024px) {
    h2.h2 {
        font-size: 24px
    }
}

h3.h3 {
    font-size: 44px
}

@media (max-width:1680px) {
    h3.h3 {
        font-size: 38.5px
    }
}

@media (max-width:1440px) {
    h3.h3 {
        font-size: 33px
    }
}

@media (max-width:1280px) {
    h3.h3 {
        font-size: 29.33333333px
    }
}

@media (max-width:1024px) {
    h3.h3 {
        font-size: 23.46666667px
    }
}

@media (max-width:1680px) {
    h3.h3 {
        font-size: 38px
    }
}

@media (max-width:1440px) {
    h3.h3 {
        font-size: 28px
    }
}

@media (max-width:1280px) {
    h3.h3 {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    h3.h3 {
        font-size: 22px
    }
}

h4.h4 {
    font-size: 40px
}

@media (max-width:1680px) {
    h4.h4 {
        font-size: 35px
    }
}

@media (max-width:1440px) {
    h4.h4 {
        font-size: 30px
    }
}

@media (max-width:1280px) {
    h4.h4 {
        font-size: 26.66666667px
    }
}

@media (max-width:1024px) {
    h4.h4 {
        font-size: 21.33333333px
    }
}

@media (max-width:1680px) {
    h4.h4 {
        font-size: 34px
    }
}

@media (max-width:1440px) {
    h4.h4 {
        font-size: 26px
    }
}

@media (max-width:1280px) {
    h4.h4 {
        font-size: 22px
    }
}

@media (max-width:1024px) {
    h4.h4 {
        font-size: 20px
    }
}

h5.h5 {
    font-size: 30px
}

@media (max-width:1680px) {
    h5.h5 {
        font-size: 26.25px
    }
}

@media (max-width:1440px) {
    h5.h5 {
        font-size: 22.5px
    }
}

@media (max-width:1280px) {
    h5.h5 {
        font-size: 20px
    }
}

@media (max-width:1024px) {
    h5.h5 {
        font-size: 16px
    }
}

@media (max-width:1680px) {
    h5.h5 {
        font-size: 24px
    }
}

@media (max-width:1440px) {
    h5.h5 {
        font-size: 22px
    }
}

@media (max-width:1024px) {
    h5.h5 {
        font-size: 18px
    }
}

h6.h6 {
    font-size: 26px
}

@media (max-width:1680px) {
    h6.h6 {
        font-size: 22.75px
    }
}

@media (max-width:1440px) {
    h6.h6 {
        font-size: 19.5px
    }
}

@media (max-width:1280px) {
    h6.h6 {
        font-size: 17.33333333px
    }
}

@media (max-width:1024px) {
    h6.h6 {
        font-size: 13.86666667px
    }
}

@media (max-width:1680px) {
    h6.h6 {
        font-size: 22px
    }
}

@media (max-width:1440px) {
    h6.h6 {
        font-size: 18px
    }
}

@media (max-width:1024px) {
    h6.h6 {
        font-size: 16px
    }
}

@keyframes run {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes run2 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(-360deg)
    }
}

#progress {
    animation: circleProgress 20s infinite
}

@keyframes circleProgress {
    0% {
        stroke-dashoffset: 314
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes show {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    100% {
        transform: translateY(0px);
        opacity: 1
    }
}

@keyframes fd {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@keyframes ripple {
    0% {
        opacity: .8;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2)
    }
}

.cle {
    clear: both;
    width: 0;
    height: 0;
    display: block;
    overflow: hidden;
    font-size: 0
}

.imgmid {
    display: inline-block;
    display: inline;
    zoom: 1;
    height: 100%;
    width: 1px;
    margin-left: -1px;
    vertical-align: middle;
    font-size: 0
}

* {
    scrollbar-color: #e5e5e5 #f7f7f9;
    scrollbar-width: thin
}

::-webkit-scrollbar {
    width: 5px
}

@media (max-width:990px) {
    ::-webkit-scrollbar {
        width: 2px
    }
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 2px rgba(0, 0, 0, .3);
    background: #eaeaea;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 2px #000;
    background: #2f3133
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #2f3133
}

.layui-btn {
    height: 100%;
    border-radius: 0;
    background: #da251d
}

.layui-laypage {
    width: 100%;
    height: auto;
    margin: 2vw 0 0;
    text-align: center
}

.layui-laypage>* {
    height: 34px !important;
    line-height: 34px !important;
    margin: 0 5px !important;
    background: #fff !important;
    font-size: 14px !important;
    color: #999 !important;
    border-radius: 0 !important
}

.layui-laypage span.layui-laypage-curr {
    border-color: #da251d
}

.layui-laypage span.layui-laypage-curr .layui-laypage-em {
    background: 0 0
}

.layui-laypage span.layui-laypage-curr em {
    color: #da251d;
    font-size: 14px !important
}

.layui-laypage span.layui-laypage-spr {
    padding: 0;
    border: 0;
    background: none !important
}

.layui-laypage a {
    border-color: #ddd;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.layui-laypage a:hover {
    border-color: #da251d !important;
    color: #da251d !important
}

.layui-laypage a.layui-disabled:hover {
    color: #999 !important;
    border-color: #ddd !important
}

@media (max-width:1024px) {
    .layui-laypage {
        margin: 40px 0 0
    }
}

@media (max-width:768px) {
    .layui-laypage {
        margin: 30px 0 0
    }

    .layui-laypage>* {
        height: 24px !important;
        line-height: 24px !important;
        margin: 0 2px !important;
        font-size: 12px !important
    }

    .layui-laypage a {
        padding: 0 10px
    }

    .layui-laypage span.layui-laypage-curr {
        padding: 0 10px
    }

    .layui-laypage span.layui-laypage-curr em {
        font-size: 12px !important
    }
}

.header_box {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
  @media screen and (min-width:1920px) {
    .w1800{
      max-width: unset !important;
    }
  }
.header_box .header_main {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.header_box .header_main::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .center {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.header_box .header_main .logo {
    /* width: 30%;
    max-width: 166px; */
    height: 100%;
    font-size: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.header_box .header_main .logo img {
    /* max-height: 80%; */
    height: 70%;
    vertical-align: middle
}
.header_r{
    display: flex;
    justify-content: right;
}
.header_r .pcc_nav{
    margin-right: 3vw;
}
@media screen and (max-width:1500px) {
    .header_box .header_main .logo img {
        height: 60%;
    } 
    .header_box .header_main .column .tel_box.active,.header_box .header_main .column .search {
        margin-left: 1vw;
    }
    
}
.header_box .header_main .nav {
    width: auto;
    height: 100%
}

.header_box .header_main .nav ul {
    width: 100%;
    height: 100%
}

.header_box .header_main .nav ul li {
    width: auto;
    height: 100%;
    float: left
}

.header_box .header_main .nav ul li>a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.header_box .header_main .nav ul li>a::after {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    background: #da251d;
    transform: translateX(-50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}
.wline3{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;

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

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

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

}
.header_box .header_main .nav ul li>a .subtitle {
    font-size: 10px;
    line-height: 15px;
    color: #999
}

.header_box .header_main .nav ul li>a .title {
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}

.header_box .header_main .nav ul li:hover>a::after,
.header_box .header_main .nav ul li a.active::after {
    width: 100%
}
.header_box .header_main .nav ul li:hover .title,
.header_box .header_main .nav ul li:hover .subtitle,
.header_box .header_main .nav ul li .active .title,
.header_box .header_main .nav ul li .active .subtitle{
    color: var(--hcolor);
}

.header_box .header_main .nav ul li:hover .one_nav,
.header_box .header_main .nav ul li:hover .two_nav {
    opacity: 1;
    margin: 0;
    visibility: initial;
    height: auto;
    /* display: block; */
}

.header_box .header_main .nav ul li .one_nav {
    /* display: none; */
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    border-radius: 0 !important;
    opacity: 0;
    visibility: hidden;
    margin-top: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.header_box .header_main .nav ul li .one_nav::before {
    content: '';
    width: 50%;
    height: 100%;
    border-top: 1px solid #d9d9d9;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #fff
}

.header_box .header_main .nav ul li .one_nav::after {
    content: '';
    width: 100%;
    height: 100%;
    border-top: 1px solid #d9d9d9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #f5f5f5
}

.header_box .header_main .nav ul li .one_nav .n_center {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    border-top: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info {
    width: 30%;
    padding: 2.6vw 4vw;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .title {
    font-family: sy_m;
    font-size: 30px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .details {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #999
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink::before {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #999
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    line-height: 1;
    padding-bottom: 15px;
    color: #999;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .nt {
    width: auto;
    flex: 1;
    font-size: 16px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .icon i {
    font-size: 24px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a.active::before,
.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink:hover::before {
    width: 100%;
    left: 0
}

.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a.active a,
.header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink:hover a {
    color: #da251d
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box {
    width: 70%;
    padding: 2.6vw 4vw;
    padding-right: 0;
    background: #fff
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main {
    width: 100%;
    height: auto;
    overflow: hidden
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item {
    width: 30%;
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title {
    width: 100%;
    height: auto;
    overflow: hidden
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 20px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a::before {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #e5e5e5
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .txt {
    font-family: sy_m;
    font-size: 18px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .icon i {
    font-size: 24px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a.active,
.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a:hover {
    color: #da251d
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a.active::before,
.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a:hover::before {
    width: 100%;
    left: 0
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu {
    width: 100%;
    height: calc(6 * 30px + 25px);
    margin-top: 20px;
    padding-right: 10px;
    overflow: hidden;
    overflow-y: auto
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one {
    width: 100%;
    height: auto;
    margin-top: 5px;
    line-height: 30px;
    overflow: hidden
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one a {
    font-size: 16px;
    color: #666;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one a.active,
.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one a:hover {
    color: #da251d
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one:first-child {
    margin: 0
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box {
    width: 100%;
    height: 2px;
    margin-top: 2.6vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .pager {
    flex: 1;
    align-self: end;
    height: 100%;
    background: #e5e5e5;
    position: relative
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .pager .swiper-pagination-progressbar-fill {
    background: #da251d
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .n_btn {
    width: auto;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-left: 1.5vw;
    position: relative;
    z-index: 1;
    margin-top: -15px;
    color: #999;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .n_btn i {
    font-size: 20px
}

.header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .n_btn:hover {
    color: #da251d
}

@media (max-width:1440px) {
    .header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .title {
        font-size: 24px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .details {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .nt {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .icon i {
        font-size: 20px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .txt {
        font-size: 16px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .icon i {
        font-size: 20px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one a {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .n_btn i {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .header_box .header_main .nav ul li .one_nav {
        border-radius: 50px 0 0
    }
}

@media (max-width:1024px) {
    .header_box .header_main .nav ul li .one_nav .n_center {
        border-radius: 40px 0 0
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info {
        padding: 30px 40px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .title {
        font-size: 20px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .title_box .details {
        font-size: 12px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .nt {
        font-size: 12px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_info .nlink a .icon i {
        font-size: 16px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box {
        padding: 30px 40px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .txt {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .title a .icon i {
        font-size: 16px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .n_main .n_content .item .menu .one a {
        font-size: 12px
    }

    .header_box .header_main .nav ul li .one_nav .n_center .n_box .pager_box .n_btn i {
        font-size: 12px
    }
}

.header_box .header_main .nav ul li .two_nav {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    border-radius: 60px 0 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.header_box .header_main .nav ul li .two_nav::before {
    content: '';
    width: 50%;
    height: 100%;
    border-top: 1px solid #d9d9d9;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #f5f5f5
}

.header_box .header_main .nav ul li .two_nav::after {
    content: '';
    width: 100%;
    height: 100%;
    border-top: 1px solid #d9d9d9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff
}

.header_box .header_main .nav ul li .two_nav .n_center {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    border-top: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav {
    width: 25%;
    padding: 2.6vw;
    padding-left: 0 !important
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item {
    width: 48%;
    height: auto;
    float: left;
    overflow: hidden
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item a {
    line-height: 1;
    font-family: sy_m;
    font-size: 20px
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item a.active,
.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item a:hover {
    color: #da251d
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item:nth-child(2n) {
    float: right
}

.header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item:nth-child(2n)~.item {
    margin-top: 1.5vw
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box {
    width: 75%;
    padding: 2.6vw 4vw;
    padding-right: 0 !important;
    background: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box {
    flex: 1;
    margin-right: 2vw
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .title {
    font-family: sy_m;
    font-size: 36px;
    line-height: 1
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .details {
    height: calc(5em * 1.8);
    margin-top: 15px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    overflow: hidden;
    overflow-y: auto
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a {
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 12px 30px;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .nt {
    font-size: 18px;
    color: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .icon {
    width: 24px;
    height: 24px;
    margin-left: 20px;
    border-radius: 50%;
    background: #da251d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #fff;
    box-shadow: 5px 5px 10px 0 rgba(218, 37, 29, .2)
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .icon i {
    line-height: 1;
    font-size: 18px
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a:hover {
    border-color: #da251d;
    background: #da251d
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a:hover .nt {
    color: #fff
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a:hover .icon {
    background: #fff;
    color: #da251d
}

.header_box .header_main .nav ul li .two_nav .n_center .n_box .img {
    width: 40%
}

@media (max-width:1440px) {
    .header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item a {
        font-size: 18px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .title {
        font-size: 30px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .details {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .nt {
        font-size: 16px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .icon {
        width: 20px;
        height: 20px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .icon i {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .header_box .header_main .nav ul li .two_nav {
        border-radius: 50px 0 0
    }
}

@media (max-width:1440px) {
    .header_box .header_main .nav ul li .two_nav .n_center .n_subnav {
        padding: 30px 20px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_subnav .item a {
        font-size: 16px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box {
        padding: 30px 40px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .title {
        font-size: 24px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .details {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a {
        padding: 12px 20px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .nt {
        font-size: 14px
    }

    .header_box .header_main .nav ul li .two_nav .n_center .n_box .info_box .nlink a .icon {
        margin-left: 12px
    }
}

.header_box .header_main .nav ul li:first-child~li {
    margin-left: 3vw
}
@media screen and (max-width:1500px) {
    .header_box .header_main .nav ul li:first-child~li {
        margin-left: 2vw;
    }
    
}
@media screen and (max-width:1200px) {
    .header_box .w1800{
        padding: 0 20px;
    }
    
}
.header_box .header_main .column {
    width: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.header_box .header_main .column .lang_box {
    width: 100%;
    flex: 1;
    /* height: 100%; */
    position: relative;
    z-index: 1;
    cursor: pointer
}
.header_box .header_main .column .lang_box span{
    font-size: 14px;display: block;
    margin-top: -4px;
}
.header_box .header_main .column .lang_box .icon {
    /* width: 30px;
    height: 100%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #111;
    font-size: 0;
    overflow: hidden
}

.header_box .header_main .column .lang_box .icon i {
    display: inline-block;
    font-size: 24px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .column .lang_box .lang_body {
    width: 100px;
    height: auto;
    position: absolute;
    top: 150%;
    left: 50%;
    margin-top: 5px;
    margin-left: -50px;
    background: #fff;
    border-top: 2px solid #da251d;
    text-align: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .column .lang_box .lang_body .item {
    width: 100%;
    height: auto;
    overflow: hidden
}

.header_box .header_main .column .lang_box .lang_body .item a {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.header_box .header_main .column .lang_box .lang_body .item a:hover {
    color: #da251d
}

.header_box .header_main .column .lang_box:hover .icon {
    color: #da251d
}

.header_box .header_main .column .lang_box:hover .lang_body {
    visibility: initial;
    opacity: 1;
    margin-top: 0
}

.header_box .header_main .column .search {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 1vw;
    position: relative;
    z-index: 2;
    cursor: pointer
}

.header_box .header_main .column .search i {
    font-size: 28px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .column .search:hover {
    color: #da251d
}

.header_box .header_main .column .tel_box.active {
    margin-left: 1vw
}

.header_box .header_main .column .tel_box {
    margin-left: 2.6vw;
    position: relative;
    z-index: 2
}
.header_box .header_main .column .tel_box .iconfont{
    font-size: 30px;
}
.header_box .header_main .column .tel_box .subtitle {
    font-size: 12px;
    line-height: 15px;
    color: #999;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header_box .header_main .column .tel_box .title {
    flex-flow: 'Arial';
    font-size: 18px;
    line-height: 1.5;
    margin-left: .5vw;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}

@media (max-width:1024px) {
    .header_box .header_main .column .tel_box {
        display: none
    }
}

@media (max-width:1200px) {
    .header_box .header_main .logo {
        width: 30%
    }
}

@media (max-width:1024px) {
    .header_box .header_main .logo {
        width: 30%
    }

    .header_box .header_main .logo img {
        max-height: 60%
    }

    .header_box .header_main .column .nav ul li a {
        font-size: 15px
    }

    .header_box .header_main .column .search {
        width: 36px;
        height: 36px
    }

    .header_box .header_main .column .search i {
        font-size: 20px
    }
}

.header_box.index_active .header_main::before {
    border-radius: 0 0 0 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.header_box.page_active {
    height: 100px
}

.header_box.page_active+.header_nbsp {
    height: 100px
}

.header_box.page_active .header_main::before {
    box-sizing: border-box;
    border-bottom: 1px solid #e9e9e9
}
.header_box.page_active .header_main::before {
    border-radius: 0 0 0 60px;
}
.header_box.page_active .header_main .center {
    background-color: #deedfc;
    /* border-radius: 0 0 0 60px; */
}
.header_box.page_active .header_main .column .nav ul li:hover>a,
.header_box.page_active .header_main .column .nav ul li a.active {
    color: #da251d
}

.header_box.page_active .header_main .column .nav ul li:hover>a::after,
.header_box.page_active .header_main .column .nav ul li a.active::after {
    background: #da251d
}

@media (max-width:1440px) {
    .header_box .header_main .center .logo {
        /* max-width: 150px */
    }

    .header_box .header_main .center .nav ul li a .title {
        font-size: 15px
    }

    .header_box .header_main .center .nav ul li:first-child~li {
        margin-left: 2.2vw
    }

    .header_box .header_main .center .column .lang_box .icon i {
        font-size: 20px
    }

    .header_box .header_main .center .column .search {
        height: 36px;
        margin-left: 1.5vw
    }

    .header_box .header_main .center .column .search i {
        font-size: 22px
    }

    .header_box .header_main .center .column .tel_box {
        margin-left: 2
    }

    .header_box .header_main .center .column .tel_box.active {
        margin-left: 1vw
    }

    .header_box .header_main .center .column .tel_box .title {
        font-size: 15px
    }
}

@media (max-width:1280px) {
    .header_box {
        height: 90px
    }

    .header_box.index_active .header_main::before {
        border-radius: 0 0 0 50px
    }

    .header_box .header_main .center .logo {
        /* max-width: 130px; */
        width: 18%;
    }
    .header_box .header_main .logo img {
        height: auto;
    }

    .header_box .header_main .center .nav ul li a .title {
        font-size: 14px
    }

    .header_box .header_main .center .column .search i {
        font-size: 22px
    }

    .header_box .header_main .center .column .tel_box .subtitle {
        font-size: 10px
    }

    .header_box .header_main .center .column .tel_box .title {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .header_box.index_active .header_main::before {
        border-radius: 0 0 0 40px
    }

    .header_box .header_main .center .nav ul li:first-child~li {
        margin-left: 3vw
    }

    .header_box .header_main::before {
        border-radius: 0 0 0 45px
    }
}

@media (max-width:990px) {
    .header_box {
        display: none
    }
}

.header_nbsp {
    width: 100%;
    height: 120px;
    overflow: hidden
}

@media (max-width:1440px) {
    .header_nbsp {
        height: 100px
    }
}

@media (max-width:1280px) {
    .header_nbsp {
        height: 80px
    }
}

.search_box {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
    background: #fff;
    padding-top: 100px;
    display: none;
    overflow: hidden
}

.search_box .search_main {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.search_box .search_head {
    width: 100%;
    height: auto;
    flex: 1;
    overflow: hidden
}

.search_box .search_head .search_main {
    width: 100%;
    height: auto;
    margin: 2.6vw auto;
    overflow: hidden
}

.search_box .search_head .search_main .search_form {
    width: 100%;
    height: 80px;
    overflow: hidden
}

.search_box .search_head .search_main .search_form form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background: #f5f5f5;
    overflow: hidden
}

.search_box .search_head .search_main .search_form form .layui_icon {
    width: 120px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #999;
    overflow: hidden
}

.search_box .search_head .search_main .search_form form .layui_icon i {
    font-size: 30px
}

.search_box .search_head .search_main .search_form form .layui_input {
    flex: 1
}

.search_box .search_head .search_main .search_form form .layui_input .layui-input {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 0 20px 0 0;
    background: 0 0;
    font-size: 24px;
    overflow: hidden
}

.search_box .search_head .search_main .search_form form .layui_submit {
    width: 20%;
    max-width: 200px;
    height: 100%;
    overflow: hidden
}

.search_box .search_head .search_main .search_form form .layui_submit .layui-btn {
    width: 100%;
    height: 100%;
    background: #da251d;
    font-size: 24px
}

.search_box .search_head .search_main .search_hot {
    width: 100%;
    height: auto;
    margin: 1.5vw 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.search_box .search_head .search_main .search_hot .title {
    line-height: 2;
    font-size: 18px;
    color: #999
}

.search_box .search_head .search_main .search_hot .details {
    margin-left: 20px;
    flex: 1
}

.search_box .search_head .search_main .search_hot .details a {
    margin-right: 20px;
    padding-right: 20px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    color: #999;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    line-height: 2;
    font-size: 18px
}

.search_box .search_head .search_main .search_hot .details a::after {
    content: '';
    width: 1px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    margin-top: -5px;
    background: #999
}

.search_box .search_head .search_main .search_hot .details a:last-child::after {
    padding: 0;
    display: none
}

.search_box .search_head .search_main .search_hot .details a:hover {
    color: #da251d
}

.search_box .search_head .search_main .search_title {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    padding-bottom: 20px;
    font-size: 30px;
    color: #000;
    border-bottom: 2px solid #eee;
    overflow: hidden
}

.search_box .search_head .search_main .search_info {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.search_box .search_head .search_main .search_info .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.search_box .search_head .search_main .search_info .menu ul li {
    margin-right: 3vw
}

.search_box .search_head .search_main .search_info .menu ul li a {
    font-size: 18px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.search_box .search_head .search_main .search_info .menu ul li a:hover {
    color: #da251d
}

.search_box .search_head .search_main .search_info .menu ul li ul {
    display: block;
    margin-top: 20px
}

.search_box .search_head .search_main .search_info .menu ul li ul li {
    margin: 10px 0 0
}

.search_box .search_head .search_main .search_info .menu ul li ul li a {
    line-height: 1;
    font-size: 14px;
    color: #999
}

.search_box .search_head .search_main .search_info .menu ul li ul li:first-child {
    margin-top: 0
}

.search_box .search_head .search_main .search_info .menu ul li:last-child {
    margin-right: 0
}

.search_box .search_head .search_main .search_info .follow_box {
    width: auto;
    height: auto
}

.search_box .search_head .search_main .search_info .follow_box .title {
    font-size: 18px;
    color: #000;
    text-align: right
}

.search_box .search_head .search_main .search_info .follow_box .qrcode {
    font-size: 0;
    margin-top: 20px
}

.search_box .search_body {
    width: 100%;
    height: auto;
    background: url(../images/coloedfdfbag1.jpg) no-repeat center / cover;
    overflow: hidden
}

.search_box .search_body .body_main {
    width: 100%;
    height: auto;
    margin: 1.5vw auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.search_box .search_body .body_main .contact {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.search_box .search_body .body_main .contact .content {
    width: auto;
    height: auto
}

.search_box .search_body .body_main .contact .content .title {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    opacity: .8
}

.search_box .search_body .body_main .contact .content .phone {
    margin-top: 5px;
    font-size: 24px;
    color: #fff
}

.search_box .search_body .body_main .contact .more {
    width: auto;
    height: 50px;
    margin-left: 5vw;
    overflow: hidden
}

.search_box .search_body .body_main .contact .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    border-radius: 6px;
    background: #fff;
    color: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.search_box .search_body .body_main .contact .more a .icon i {
    font-size: 24px
}

.search_box .search_body .body_main .contact .more a .title {
    margin-left: 10px;
    font-size: 16px;
    white-space: nowrap
}

.search_box .search_body .body_main .contact .more a:hover {
    border-radius: 50px
}

.search_box .search_body .body_main .close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
    cursor: pointer
}

.search_box .search_body .body_main .close .title {
    font-size: 18px;
    margin-right: 20px
}

.search_box .search_body .body_main .close .icon {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.search_box .search_body .body_main .close .icon i {
    font-size: 18px
}

.search_box .search_body .body_main .close:hover .icon {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

@media (max-width:1440px) {
    .search_box .search_head .search_main .search_form {
        height: 70px
    }

    .search_box .search_head .search_main .search_form form .layui_icon i {
        font-size: 24px
    }

    .search_box .search_head .search_main .search_form form .layui_input .layui-input {
        font-size: 18px
    }

    .search_box .search_head .search_main .search_form form .layui_submit .layui-btn {
        font-size: 18px
    }

    .search_box .search_head .search_main .search_hot .title,
    .search_box .search_head .search_main .search_hot .details a {
        font-size: 16px
    }

    .search_box .search_head .search_main .search_title {
        font-size: 24px;
        padding-bottom: 12px
    }

    .search_box .search_head .search_main .search_info .menu ul li a {
        font-size: 16px
    }

    .search_box .search_head .search_main .search_info .menu ul li ul li a {
        font-size: 13px
    }

    .search_box .search_head .search_main .search_info .follow_box .title {
        font-size: 16px
    }
}

@media (max-width:1200px) {
    .search_box .search_head .search_main .search_form {
        height: 60px
    }

    .search_box .search_head .search_main .search_form form .layui_icon i {
        font-size: 20px
    }

    .search_box .search_head .search_main .search_form form .layui_input .layui-input {
        font-size: 16px
    }

    .search_box .search_head .search_main .search_form form .layui_submit .layui-btn {
        font-size: 16px
    }

    .search_box .search_head .search_main .search_hot .title,
    .search_box .search_head .search_main .search_hot .details a {
        font-size: 14px
    }

    .search_box .search_head .search_main .search_title {
        font-size: 20px;
        padding-bottom: 10px
    }

    .search_box .search_head .search_main .search_info .menu ul li a {
        font-size: 14px
    }

    .search_box .search_head .search_main .search_info .menu ul li ul li a {
        font-size: 12px
    }

    .search_box .search_head .search_main .search_info .follow_box .title {
        font-size: 14px
    }
}

.m_header_box {
    width: 100%;
    height: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    box-shadow: 0 1px 0 #eee
}

.m_header_box .header_title {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    position: relative;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.m_header_box .header_title .logo {
    width: auto;
    height: 100%;
    overflow: hidden
}

.m_header_box .header_title .logo img {
    max-height: 90%;
    /* max-height: 50%; */
    vertical-align: middle
}

.m_header_box .header_title .menu_btn {
    width: 30px;
    height: 30px;
    position: relative;
    overflow: hidden
}

.m_header_box .header_title .menu_btn::after,
.m_header_box .header_title .menu_btn::before,
.m_header_box .header_title .menu_btn i {
    width: 70%;
    height: 2px;
    display: block;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -35%;
    transform-origin: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.m_header_box .header_title .menu_btn::before {
    content: '';
    margin-top: -8px
}

.m_header_box .header_title .menu_btn::after {
    content: '';
    margin-top: 6px
}

.m_header_box .header_title .menu_btn.active i {
    opacity: 0
}

.m_header_box .header_title .menu_btn.active::before {
    margin-top: -1px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    border-radius: 5px;
    background: #da251d
}

.m_header_box .header_title .menu_btn.active::after {
    margin-top: -1px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    border-radius: 5px;
    background: #da251d
}

.m_header_box .header_body {
    width: 100%;
    height: calc(100vh - 60px);
    background: #f7f7f7;
    overflow: hidden;
    display: none
}

.m_header_box .header_body .menu_info {
    width: 100%;
    height: 100%;
    padding: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.m_header_box .header_body .menu_nav {
    width: 100%;
    height: auto;
    flex: 1;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto
}

.m_header_box .header_body .menu_nav ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    overflow: hidden
}

.m_header_box .header_body .menu_nav ul li .one {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.m_header_box .header_body .menu_nav ul li .one a {
    padding: 20px 0;
    display: block;
    font-size: 14px;
    color: #282f36;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative
}

.m_header_box .header_body .menu_nav ul li .one a .subtitle {
    font-size: 14px;
    margin-right: 10px
}

.m_header_box .header_body .menu_nav ul li .one a .title {
    font-size: 14px
}

.m_header_box .header_body .menu_nav ul li .one .icon {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: -10px;
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 0;
    color: #282f36;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.m_header_box .header_body .menu_nav ul li .one .icon i {
    font-size: 12px
}

.m_header_box .header_body .menu_nav ul li .one.active a {
    color: #da251d
}

.m_header_box .header_body .menu_nav ul li .one.active .icon {
    color: #da251d
}

.m_header_box .header_body .menu_nav ul li .one.active.is_active .icon {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

.m_header_box .header_body .menu_nav ul li ul {
    border-top: 1px solid #da251d;
    display: none
}

.m_header_box .header_body .menu_nav ul li ul li {
    border: 0;
    margin: 15px 0
}

.m_header_box .header_body .menu_nav ul li ul li a {
    font-size: 14px;
    padding: 0 0 0 20px;
    color: #333;
    position: relative;
    display: block;
}

.m_header_box .header_body .menu_nav ul li ul li a .icon {
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    color: #333
}

.m_header_box .header_body .menu_nav ul li ul li a .icon i {
    font-size: 10px
}

.m_header_box .header_body .menu_nav ul li ul li a.active {
    color: #da251d
}
.m_header_box .header_body .menu_nav ul li ul li a::after {
    content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background: #999;
    margin-top: -1px;
}
.m_header_box .header_body .menu_nav ul li ul li a.active .icon {
    color: #da251d
}

.m_header_box .header_body .menu_nav ul li ul li ul {
    border: 0;
    display: none
}

.m_header_box .header_body .menu_nav ul li ul li ul li a {
    padding: 10px 0 10px 35px;
    font-size: 14px;
    color: #999
}

.m_header_box .header_body .menu_nav ul li ul li ul li a:before {
    content: '';
    width: 5px;
    height: 1px;
    background: #999;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -1.5px;
    z-index: 1
}

.m_header_box .header_body .menu_nav ul li ul li ul li a.active:before {
    background: #da251d
}

.m_header_box .header_body .menu_form {
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding: 0 20px;
    overflow: hidden
}

.m_header_box .header_body .menu_form .center {
    width: 100%;
    height: 50px;
    background: #fff;
    overflow: hidden
}

.m_header_box .header_body .menu_form .center form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.m_header_box .header_body .menu_form .center form input {
    flex: 1;
    height: 100%;
    padding: 0 15px;
    font-size: 14px;
    color: #282f36;
    border: 0
}

.m_header_box .header_body .menu_form .center form button {
    width: 70px
}

.m_header_box .header_body .menu_form .center form button i {
    font-size: 18px
}

.m_header_box .header_body .menu_lang {
    width: 100%;
    height: auto;
    margin-bottom: 80px;
    line-height: 40px;
    margin-top: 40px;
    padding: 0 20px;
    font-size: 0;
    overflow: hidden
}

.m_header_box .header_body .menu_lang a {
    display: inline-block;
    padding: 0 12px;
    background: #fff;
    border-radius: 50px;
    font-size: 16px;
    margin-right: 15px;
    color: #282f36
}

.m_header_box .header_body .menu_lang a.active {
    background: #da251d;
    color: #fff
}

.m_header_box .header_body .menu_lang a:last-child {
    margin-right: 0
}

@media (max-width:990px) {
    .m_header_box {
        display: block
    }
}



@media (max-width:990px) {
    .m_header_nbsp {
    width: 100%;
    height: 60px;
    display: none;
    overflow: hidden
}
    .header_nbsp {
        display: none
    }

    .m_header_nbsp {
        display: block
    }
}

.idx_title {
    width: 100%;
    height: auto;
    text-align: center
}

.idx_title .subtitle {
    font-family: sy_m;
    font-size: 28px;
    line-height: 1;
    color: #111
}

.idx_title .subtitle.active {
    color: #da251d
}

.idx_title .title {
    margin-top: 10px;
    font-family: sy_m;
    font-size: 36px;
    color: #111;
    line-height: 1.2
}



.idx_title .title span {
    color: #da251d
}

.idx_title .txt {
    margin-top: 15px;
    font-size: 16px;
    color: #666
}

@media (max-width:1600px) {
    .idx_title .title {
        font-size: 38px
    }

    .idx_title .subtitle {
        font-size: 26px
    }
}

@media (max-width:1440px) {
    .idx_title .title {
        font-size: 34px
    }

    .idx_title .subtitle {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    .idx_title .title {
        font-size: 30px
    }

    .idx_title .subtitle {
        font-size: 20px
    }

    .idx_title .txt {
        margin-top: 10px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .idx_title .title {
        font-size: 24px
    }

    .idx_title .subtitle {
        font-size: 16px
    }

    .idx_title .txt {
        font-size: 12px
    }
}

@media (max-width:480px) {
    .idx_title .title {
        font-size: 22px
    }
}

.idx_banner {
    width: 100%;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden
}

.idx_banner ul {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.idx_banner ul li {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    pointer-events: initial !important;
    overflow: hidden
}

.idx_banner ul li .center {
    width: 100%;
    height: 100%;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

@media (max-width:990px) {
    .idx_banner ul li .center {
        height: 100%;
        top: 0;
        display: none
    }
}

.idx_banner ul li .center .info {
    width: 100%;
    height: auto;
    color: #fff
}

.idx_banner ul li .center .info .title {
    font-family: sy_m;
    font-size: 80px;
    line-height: 1.2
}

@media (max-width:1680px) {
    .idx_banner ul li .center .info .title {
        font-size: 70px
    }
}

@media (max-width:1440px) {
    .idx_banner ul li .center .info .title {
        font-size: 60px
    }
}

@media (max-width:1280px) {
    .idx_banner ul li .center .info .title {
        font-size: 53.33333333px
    }
}

@media (max-width:1024px) {
    .idx_banner ul li .center .info .title {
        font-size: 42.66666667px
    }
}

.idx_banner ul li .center .info .links {
    margin-top: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.idx_banner ul li .center .info .links .item {
    margin-right: 1vw;
    padding: 10px 2vw;
    border-radius: 25px;
    border: 2px solid #fff;
    line-height: 1;
    font-size: 24px
}

@media (max-width:1680px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 21px
    }
}

@media (max-width:1440px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 18px
    }
}

@media (max-width:1280px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 16px
    }
}

@media (max-width:1024px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 12.8px
    }
}

@media (max-width:1680px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 20px
    }
}

@media (max-width:1440px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 18px
    }
}

@media (max-width:1280px) {
    .idx_banner ul li .center .info .links .item {
        font-size: 16px
    }
}

.idx_banner ul li .center .info .links .item:last-child {
    margin-right: 0
}

.idx_banner ul li .images {
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: hidden
}

.idx_banner ul li .images img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.idx_banner ul li.active {
    z-index: 2
}

.idx_banner .pager_box {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 2;
    font-size: 0
}

.idx_banner .pager_box .center {
    width: 100%;
    height: auto
}

.idx_banner .pager_box .center .info {
    width: 100%;
    height: 20px;
    position: relative;
    z-index: 1
}

.idx_banner .pager_box .dot {
    width: 10px;
    height: auto;
    position: absolute;
    right: 4px;
    bottom: 30vh;
    font-size: 0
}

.idx_banner .pager_box .dot span {
    width: 10px;
    height: 10px;
    display: block;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 10px;
    opacity: .5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.idx_banner .pager_box .dot span:hover,
.idx_banner .pager_box .dot span.active {
    opacity: 1;
    background: #fff
}

.idx_banner .pager_box .pager {
    width: 3em;
    height: 3em;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: bottom top;
    font-family: hs_r;
    font-size: 18px
}

@media (max-width:1280px) {
    .idx_banner .pager_box .pager {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .idx_banner {
        height: auto;
        position: relative
    }

    .idx_banner ul li .images img {
        min-height: 250px
    }

    .idx_banner .pager_box {
        bottom: 20px
    }

    .idx_banner .pager_box .center .info {
        height: auto
    }

    .idx_banner .pager_box .dot {
        width: 100%;
        position: relative;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_banner .pager_box .dot span {
        margin: 0 5px 0 0
    }

    .idx_banner .pager_box .dot span:last-child {
        margin: 0
    }

    .idx_banner .pager_box .pager {
        display: none
    }
}

@media (max-width:768px) {
    .idx_banner .pager_box {
        bottom: 15px
    }

    .idx_banner .pager_box .dot span {
        width: 6px;
        height: 6px
    }
}

.banner_nbsp {
    width: 100%;
    height: 100vh;
    overflow: hidden
}

@media (max-width:990px) {
    .banner_nbsp {
        display: none
    }
}
.wqd-section-three{ background: #ecf4fc;}
.idx_solution {
    width: 100%;
    height: auto;
    background: #ecf4fc;
    /* background: #f5f5f5; */
    position: relative;
    z-index: 2;
    overflow: hidden
}
.i_product_BOX{
    background: #fcfcfc !important;
}
.i_product_BOX .center .product_box {
    width: 100% !important;
    height: auto;
    padding-left: 0 !important;

}
.i_product_BOX  .center {
    display: block !important;
}

.idx_solution .center {
    width: 100%;
    height: auto;
    margin: 4.6vw auto 0
}


.idx_solution .center .solution_box {
    width: 100%;
    height: auto;
    margin-top: 3.6vw;
    padding-bottom: 7.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

.idx_solution .center .solution_box::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #e5e5e5
}

.idx_solution .center .solution_box .solution_tab {
    width: 32.85%;
    height: auto;
    position: relative;
    z-index: 2
}

.idx_solution .center .solution_box .solution_tab .item {
    width: 100%;
    height: 20%;
    margin-left: 3vw;
    padding: 0 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.idx_solution .center .solution_box .solution_tab .item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -3vw;
    z-index: 2;
    margin: -3px 0 0 -3px;
    background: #da251d
}

.idx_solution .center .solution_box .solution_tab .item::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #da251d;
    position: absolute;
    top: 50%;
    left: -3vw;
    z-index: 1;
    margin: -11px 0 0 -11px;
    background: #f5f5f5
}

.idx_solution .center .solution_box .solution_tab .item::before,
.idx_solution .center .solution_box .solution_tab .item::after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_solution .center .solution_box .solution_tab .item .content {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.idx_solution .center .solution_box .solution_tab .item .content .icon {
    width: 40px;
    height: auto;
    color: #222;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_solution .center .solution_box .solution_tab .item .content .icon i {
    font-size: 30px
}

.idx_solution .center .solution_box .solution_tab .item .content .info {
    margin-left: 1vw
}

.idx_solution .center .solution_box .solution_tab .item .content .info .title {
    font-family: sy_m;
    font-size: 28px;
    color: #222
}

@media (max-width:1680px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 24.5px
    }
}

@media (max-width:1440px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 21px
    }
}

@media (max-width:1280px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 18.66666667px
    }
}

@media (max-width:1024px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 14.93333333px
    }
}

@media (max-width:1680px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 24px
    }
}

@media (max-width:1440px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 22px
    }
}

@media (max-width:1024px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 18px
    }
}

.idx_solution .center .solution_box .solution_tab .item .content .info .details {
    font-family: sy_l;
    font-size: 16px;
    color: #666
}

@media (max-width:1680px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 14px
    }
}

@media (max-width:1440px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 12px
    }
}

@media (max-width:1280px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 10.66666667px
    }
}

@media (max-width:1024px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 8.53333333px
    }
}

@media (max-width:1680px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        font-size: 14px
    }
}

.idx_solution .center .solution_box .solution_tab .item:nth-child(2) .content {
    opacity: .75
}

.idx_solution .center .solution_box .solution_tab .item:nth-child(3) .content {
    opacity: .5
}

.idx_solution .center .solution_box .solution_tab .item:nth-child(4) .content {
    /* opacity: .25 */
}

.idx_solution .center .solution_box .solution_tab .item.active {
    background: #fff;
    border-radius: 0 2.6vw
}

.idx_solution .center .solution_box .solution_tab .item.active::before,
.idx_solution .center .solution_box .solution_tab .item.active::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.idx_solution .center .solution_box .solution_tab .item.active .content {
    opacity: 1
}

.idx_solution .center .solution_box .solution_tab .item.active .content .icon {
    color: #da251d
}

.idx_solution .center .solution_box .solution_tab .item:hover .content {
    opacity: 1
}

.idx_solution .center .solution_box .solution_img {
    width: 50%;
    height: auto;
    border-radius: 0 6.25vw;
    overflow: hidden
}

.idx_solution .center .solution_box .solution_img .pb {
    padding-bottom: 77.14%
}

.idx_solution .center .solution_box .solution_img .swiper_box {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.idx_solution .center .solution_box .solution_img .swiper_box ul {
    width: 100%;
    height: 100%
}

.idx_solution .center .solution_box .solution_img .swiper_box ul li {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden
}

.idx_solution .center .solution_box .solution_img .swiper_box ul li img {
    vertical-align: middle
}

@media (max-width:1024px) {
    .idx_solution .center {
        margin-top: 50px
    }

    .idx_solution .center .solution_box {
        margin-top: 40px;
        padding-bottom: 60px
    }

    .idx_solution .center .solution_box .solution_tab .item {
        margin-left: 30px
    }

    .idx_solution .center .solution_box .solution_tab .item::before {
        width: 4px;
        height: 4px;
        margin: -2px 0 0 -2px;
        left: -30px
    }

    .idx_solution .center .solution_box .solution_tab .item::after {
        width: 16px;
        height: 16px;
        margin: -9px 0 0 -9px
    }
}

@media (max-width:990px) {
    .idx_solution .center .solution_box {
        display: block
    }

    .idx_solution .center .solution_box::after {
        display: none
    }

    .idx_solution .center .solution_box .solution_tab {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px 20px
    }

    .idx_solution .center .solution_box .solution_tab .item {
        height: auto;
        padding: 10px;
        margin: 0;
        overflow: hidden
    }

    .idx_solution .center .solution_box .solution_tab .item::before,
    .idx_solution .center .solution_box .solution_tab .item::after {
        display: none
    }

    .idx_solution .center .solution_box .solution_tab .item .content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_solution .center .solution_box .solution_tab .item .content .icon {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        width: 100%;
        text-align: center
    }

    .idx_solution .center .solution_box .solution_tab .item .content .info .details {
        display: none
    }

    .idx_solution .center .solution_box .solution_img {
        width: 100%;
        max-width: 700px;
        margin: 30px auto 0;
        border-radius: 0
    }
}

@media (max-width:768px) {
    .idx_solution .center {
        margin-top: 40px
    }

    .idx_solution .center .solution_box {
        margin-top: 30px;
        padding-bottom: 40px
    }

    .idx_solution .center .solution_box .solution_tab .item .content {
        display: block
    }

    .idx_solution .center .solution_box .solution_tab .item .content .icon {
        margin: 0 auto
    }

    .idx_solution .center .solution_box .solution_tab .item .content .icon i {
        font-size: 24px
    }

    .idx_solution .center .solution_box .solution_tab .item .content .info {
        margin-top: 5px
    }

    .idx_solution .center .solution_box .solution_tab .item .content .info .title {
        font-size: 16px
    }
}

@media (max-width:480px) {
    .idx_solution .center .solution_box .solution_tab {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px 10px
    }
}

.idx_about {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.idx_about .center {
    width: 100%;
    height: auto;
    margin: 2.8vw auto 7.1vw;
    position: relative;
    z-index: 1
}

.idx_about .center .about_box {
    width: 100%;
    height: auto
}

.idx_about .center .about_box .about_main {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.idx_about .center .about_box .about_main .images {
    width: 54.6875%;
    font-size: 0;
    text-align: center;
    overflow: hidden;
}
.idx_about .center .about_box .about_main .images .pc{
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.idx_about .center .about_box .about_main .idx_title {
    flex: 1;
    padding: 3vw 0 0 3.8vw;
    text-align: left;
    align-self: center
}

.idx_about .center .about_box .about_main .idx_title .details {
    margin-top: 2vw;
    font-size: 18px;
    line-height: 2;
    font-family: sy_l;
    color: #666
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 15.75px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 13.5px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 9.6px
    }
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 16px
    }
}

.idx_about .center .about_box .about_main .idx_title .more {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-top: 2.6vw
}

.idx_about .center .about_box .about_main .idx_title .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.idx_about .center .about_box .about_main .idx_title .more a .icon {
    height: 20px;
    padding-right: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_about .center .about_box .about_main .idx_title .more a .icon i {
    width: 4vw;
    min-width: 30px;
    height: 1px;
    display: block;
    background: #da251d;
    border-radius: 2px
}

.idx_about .center .about_box .about_main .idx_title .more a .icon::before,
.idx_about .center .about_box .about_main .idx_title .more a .icon::after {
    content: '';
    width: 8px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    background: #da251d;
    transform-origin: right;
    border-radius: 2px
}

.idx_about .center .about_box .about_main .idx_title .more a .icon::before {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-top: -.5px
}

.idx_about .center .about_box .about_main .idx_title .more a .icon::after {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    margin-top: -.5px
}

.idx_about .center .about_box .about_main .idx_title .more a .words {
    padding-left: 1vw;
    font-size: 16px;
    line-height: 1;
    color: #da251d
}

.idx_about .center .about_box .about_number {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.idx_about .center .about_box .about_number .number_box {
    width: 54.6875%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding: 0 4vw 1.5vw 1vw;
    text-align: center;
}

.idx_about .center .about_box .about_number .number_box .item .icon {
    color: #da251d
}

.idx_about .center .about_box .about_number .number_box .item .icon i {
    font-size: 30px
}

.idx_about .center .about_box .about_number .number_box .item .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-family: Arial;
    line-height: 1;
    margin-top: 10px;
    justify-content: center;
}

.idx_about .center .about_box .about_number .number_box .item .number .beat {
    font-size: 36px
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 31.5px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 27px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 19.2px
    }
}

.idx_about .center .about_box .about_number .number_box .item .number .sup {
    margin-left: 2px;
    font-size: 20px
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 17.5px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 15px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 13.33333333px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 10.66666667px
    }
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 16px
    }
}

.idx_about .center .about_box .about_number .number_box .item .title {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1;
    color: #666
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 14px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 12px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 10.66666667px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 8.53333333px
    }
}

@media (max-width:1680px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 14px
    }
}

.idx_about .center .about_box .about_number .images {
    position: relative;
    z-index: 1;
    width: 400px;
    height: 240px;
    overflow: hidden;
    border-radius: 0 50px;
    
}

.idx_about .center .about_box .about_number .images .play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 0 80px;
    color: #fff;
    cursor: pointer;
    overflow: hidden
}

.idx_about .center .about_box .about_number .images .play i {
    font-size: 60px
}

.idx_about .center .about_box .about_number .images .img {
    font-size: 0;
    border-radius: 0 80px;
    text-align: center;
    overflow: hidden
}

.idx_about .center .about_box .about_number .images .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.idx_about .center .about_box .symbol {
    width: 4vw;
    height: auto;
    position: absolute;
    right: -5vw;
    top: 6vw;
    z-index: -1
}

.idx_about .center .about_box .title_bg {
    position: absolute;
    bottom: 0;
    left: 90%
}

.idx_about .center .about_box .title_bg .fonttext {
    font-family: Arial;
    font-size: 260px;
    line-height: .8em;
    letter-spacing: -.5vw;
    color: transparent;
    background: linear-gradient(to top, #fff 15%, #ecf0f4);
    -webkit-background-clip: text;
    opacity: .65
}

@media (max-width:1680px) {
    .idx_about .center .about_box .title_bg .fonttext {
        font-size: 227.5px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .title_bg .fonttext {
        font-size: 195px
    }
}

@media (max-width:1280px) {
    .idx_about .center .about_box .title_bg .fonttext {
        font-size: 173.33333333px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .title_bg .fonttext {
        font-size: 138.66666667px
    }
}

@media (max-width:1440px) {
    .idx_about .center .about_box .symbol {
        right: 0
    }

    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 24px
    }
}

@media (max-width:1200px) {
    .idx_about .center .about_box .symbol {
        right: 20px
    }
}

@media (max-width:1024px) {
    .idx_about .center .about_box .about_main .idx_title {
        padding: 30px 0 0 30px
    }

    .idx_about .center .about_box .about_main .idx_title .details {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.6
    }

    .idx_about .center .about_box .about_main .idx_title .more {
        margin-top: 30px
    }

    .idx_about .center .about_box .about_main .idx_title .more a .words {
        padding-left: 15px;
        font-size: 14px
    }

    .idx_about .center .about_box .symbol {
        width: 30px
    }

    .idx_about .center .about_box .title_bg {
        left: 80%
    }
}

@media (max-width:990px) {
    .idx_about .center .about_box .about_main {
        display: block;
        width: 100%
    }

    .idx_about .center .about_box .about_main .images {
        width: 100%
    }

    .idx_about .center .about_box .about_main .images img {
        width: 100%
    }

    .idx_about .center .about_box .about_main .idx_title {
        padding: 0;
        margin-top: 30px
    }

    .idx_about .center .about_box .about_number {
        display: block;
        width: 100%;
        margin: 50px 0 0
    }

    .idx_about .center .about_box .about_number .number_box {
        width: 100%;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px 20px
    }

    .idx_about .center .about_box .about_number .number_box .item {
        background: #f5f5f5;
        text-align: center;
        padding: 30px
    }

    .idx_about .center .about_box .about_number .number_box .item .number {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_about .center .about_box .about_number .images {
        margin-top: 20px
    }

    .idx_about .center .about_box .about_number .images .img {
        border-radius: 0
    }

    .idx_about .center .about_box .symbol,
    .idx_about .center .about_box .title_bg {
        display: none
    }
}

@media (max-width:768px) {
    .idx_about .center .about_box .about_main .idx_title .details {
        font-size: 12px
    }

    .idx_about .center .about_box .about_number .number_box {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px
    }

    .idx_about .center .about_box .about_number .number_box .item {
        padding: 15px
    }

    .idx_about .center .about_box .about_number .number_box .item .icon i {
        font-size: 20px
    }

    .idx_about .center .about_box .about_number .number_box .item .number .beat {
        font-size: 20px
    }

    .idx_about .center .about_box .about_number .number_box .item .number .sup {
        font-size: 12px
    }

    .idx_about .center .about_box .about_number .number_box .item .title {
        font-size: 10px
    }

    .idx_about .center .about_box .about_number .number_box .item:first-child {
        /* grid-column: span 2 */
    }

    .idx_about .center .about_box .about_number .images {
        margin-top: 10px
    }

    .idx_about .center .about_box .about_number .images .play i {
        font-size: 48px
    }
}

@media (max-width:1024px) {
    .idx_about .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .idx_about .center {
        margin: 40px 0
    }
}

.layui-layer {
    max-width: 1400px
}

.layui-layer .layui-layer-setwin a {
    background: 0 0;
    position: relative;
    z-index: 1;
    background: #da251d;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.layui-layer .layui-layer-setwin a::before,
.layui-layer .layui-layer-setwin a::after {
    content: '';
    width: 60%;
    height: 2px;
    position: absolute;
    left: 20%;
    top: 50%;
    background: #fff;
    border-radius: 2px;
    margin-top: -1px
}

.layui-layer .layui-layer-setwin a::before {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.layui-layer .layui-layer-setwin a::after {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg)
}

.layui-layer .layui-layer-setwin a:hover {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

.layui_video {
    width: 100%;
    height: 100%;
    display: none;
    font-size: 0
}

.layui_video video {
    width: 100%;
    height: 100%;
    background: #000
}

.idx_make {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_make .make_big {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 90px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.idx_make .make_big .make_info {
    width: 50%;
    height: auto;
    padding-right: 5.2vw;
    padding-left: calc((100% - 1400px) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

.idx_make .make_big .make_info .idx_title {
    flex: 0 0 50%;
    padding: 1vw 0 0;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.idx_make .make_big .make_info .idx_title .subtitle,
.idx_make .make_big .make_info .idx_title .title {
    color: #fff
}

.idx_make .make_big .make_info .idx_title .details {
    margin-top: 15px;
    font-size: 18px;
    line-height: 2;
    color: #bcc0c9
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 15.75px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 13.5px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 9.6px
    }
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 16px
    }
}

.idx_make .make_big .make_info .number_box {
    width: 100%;
    max-width: 500px;
    height: auto;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.idx_make .make_big .make_info .number_box .items {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    overflow: hidden
}

.idx_make .make_big .make_info .number_box .items .item {
    width: 50%;
    height: auto;
    margin-bottom: 3vw;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.idx_make .make_big .make_info .number_box .items .item .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-family: Arial;
    line-height: 1
}

.idx_make .make_big .make_info .number_box .items .item .number .beat {
    font-size: 42px
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 36.75px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 31.5px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 28px
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 22.4px
    }
}

.idx_make .make_big .make_info .number_box .items .item .number .sup {
    font-size: 20px;
    margin-left: 5px
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 17.5px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 15px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 13.33333333px
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 10.66666667px
    }
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 16px
    }
}

.idx_make .make_big .make_info .number_box .items .item .title {
    margin-top: 10px;
    font-family: sy_l;
    font-size: 16px;
    line-height: 1
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 14px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 12px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 10.66666667px
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 8.53333333px
    }
}

@media (max-width:1680px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 14px
    }
}

@media (max-width:1520px) {
    .idx_make .make_big .make_info {
        padding-left: 60px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 30px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 14px;
        line-height: 1.6
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_info {
        padding-left: 30px
    }
}

@media (max-width:990px) {
    .idx_make .make_big .make_info {
        width: 100%;
        padding: 0
    }

    .idx_make .make_big .make_info .idx_title {
        text-align: center;
        padding: 0 20px
    }

    .idx_make .make_big .make_info .number_box {
        width: 100%;
        max-width: 100%;
        margin: 40px auto 0
    }

    .idx_make .make_big .make_info .number_box .items {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .idx_make .make_big .make_info .number_box .items .item {
        width: 100%;
        text-align: center;
        margin: 0 !important;
        border: 1px solid rgba(255, 255, 255, .06);
        border-left: 0;
        border-bottom: 0;
        padding: 30px
    }

    .idx_make .make_big .make_info .number_box .items .item .number {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_make .make_big .make_info .number_box .items .item:nth-child(2n) {
        border-right: 0
    }
}

@media (max-width:768px) {
    .idx_make .make_big .make_info .idx_title .details {
        font-size: 12px
    }

    .idx_make .make_big .make_info .number_box .items .item .number .beat {
        font-size: 24px
    }

    .idx_make .make_big .make_info .number_box .items .item .number .sup {
        font-size: 12px
    }

    .idx_make .make_big .make_info .number_box .items .item .title {
        font-size: 12px
    }
}

.idx_make .make_big .make_box {
    width: 50%;
    height: auto;
    position: relative;
    z-index: 1;
    border-left: 1px solid rgba(255, 255, 255, .5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden
}

.idx_make .make_big .make_box .make_main {
    width: 100%;
    height: auto;
    flex: 0 0 50%;
    padding: 3vw;
    padding-left: 7.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.idx_make .make_big .make_box .make_main .items {
    flex: 1;
    padding-right: 5.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap
}

.idx_make .make_big .make_box .make_main .items .item {
    width: 30%;
    margin-right: 5%;
    text-align: center
}

.idx_make .make_big .make_box .make_main .items .item .img {
    width: 100%;
    height: auto;
    font-size: 0;
    overflow: hidden
}

.idx_make .make_big .make_box .make_main .items .item .img .pb {
    padding-bottom: 30%
}

.idx_make .make_big .make_box .make_main .items .item .img img {
    vertical-align: middle
}

.idx_make .make_big .make_box .make_main .items .item .title {
    margin-top: 20px;
    font-size: 22px;
    color: #bcc0c9
}

@media (max-width:1680px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 19.25px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 16.5px
    }
}

@media (max-width:1280px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 14.66666667px
    }
}

@media (max-width:1024px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 11.73333333px
    }
}

@media (max-width:1680px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 18px
    }
}

@media (max-width:1440px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 16px
    }
}

.idx_make .make_big .make_box .make_main .items .item:nth-child(3n)~.item {
    margin-top: 5%
}

.idx_make .make_big .make_box .make_main .items .item:nth-child(3n) {
    margin-right: 0
}

.idx_make .make_big .make_box .make_main .links {
    width: 1em;
    font-size: 14px;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.idx_make .make_big .make_box .make_main .links .line {
    width: 1px;
    height: 3.6vw;
    display: block;
    position: relative;
    z-index: 1
}

.idx_make .make_big .make_box .make_main .links .line::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    opacity: .5
}

.idx_make .make_big .make_box .make_main .links .line::after {
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_make .make_big .make_box .make_main .links .line.first {
    order: -1
}

.idx_make .make_big .make_box .make_main .links .line.first::after {
    bottom: 0
}

.idx_make .make_big .make_box .make_main .links .line.last::after {
    top: 0
}

.idx_make .make_big .make_box .make_main .links a {
    color: #fff;
    margin: 15px 0;
    opacity: .5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_make .make_big .make_box .make_main .links a:hover {
    opacity: 1
}

.idx_make .make_big .make_box .make_main .links a:hover~.line::after {
    height: 50%
}

.idx_make .make_big .make_box .make_main:first-child~.make_main {
    border-top: 1px solid rgba(255, 255, 255, .5)
}

@media (max-width:1024px) {
    .idx_make .make_big .make_box .make_main {
        padding: 30px
    }

    .idx_make .make_big .make_box .make_main .items {
        padding-right: 20px
    }

    .idx_make .make_big .make_box .make_main .items .item .img {
        padding: 0 15%
    }

    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 14px
    }

    .idx_make .make_big .make_box .make_main .links {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .idx_make .make_big .make_box {
        width: 100%;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, .06);
        border-left: 0;
        margin-top: 0
    }

    .idx_make .make_big .make_box .make_main {
        padding: 30px 20px;
        display: block;
        border-top: 0
    }

    .idx_make .make_big .make_box .make_main .items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px
    }

    .idx_make .make_big .make_box .make_main .items .item {
        width: 100%;
        margin: 0
    }

    .idx_make .make_big .make_box .make_main .links {
        width: 100%;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        margin-top: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .idx_make .make_big .make_box .make_main .links .line {
        display: none
    }

    .idx_make .make_big .make_box .make_main .links a {
        margin: 0;
        padding: 8px 20px;
        background: #da251d;
        color: #fff;
        opacity: 1;
        border-radius: 30px
    }

    .idx_make .make_big .make_box .make_main:last-child {
        padding-bottom: 0
    }
}

@media (max-width:768px) {
    .idx_make .make_big .make_box .make_main .items .item .title {
        font-size: 12px
    }

    .idx_make .make_big .make_box .make_main .links {
        font-size: 10px
    }
}

.idx_make .make_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/make_bg.jpg) no-repeat center / cover;
    background-attachment: fixed;
    overflow: hidden
}

@media (max-width:990px) {
    .idx_make .make_big {
        min-height: auto;
        display: block;
        margin: 50px 0
    }
}

.idx_news {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    background: #f5f5f5;
    overflow: hidden
}

.idx_news .center {
    width: 100%;
    height: auto;
    margin: 6vw auto;
    overflow: hidden
}

.idx_news .center .news_box {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_news .center .news_box .item {
    width: 100%;
    overflow: hidden
}

.idx_news .center .news_box .item .news_info {
    width: 23.5%;
    height: auto;
    margin-top: 1.5vw;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_news .center .news_box .item .news_info a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    overflow: hidden
}

.idx_news .center .news_box .item .news_info .images {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_news .center .news_box .item .news_info .images .more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #da251d;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1;
    margin-top: 12%;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_news .center .news_box .item .news_info .images .pb {
    padding-bottom: 65.9%
}

.idx_news .center .news_box .item .news_info .images .ab {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_news .center .news_box .item .news_info .images img {
    width: 100%;
    object-fit: cover
}

.idx_news .center .news_box .item .news_info .info {
    width: 100%;
    height: auto;
    margin-top: 1.2vw;
    overflow: hidden
}

.idx_news .center .news_box .item .news_info .info .title {
    font-family: sy_m;
    font-size: 18px;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

@media (max-width:1680px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 15.75px
    }
}

@media (max-width:1440px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 13.5px
    }
}

@media (max-width:1280px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 9.6px
    }
}

@media (max-width:1680px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 16px
    }
}

.idx_news .center .news_box .item .news_info .info .details {
    margin-top: 8px;
    line-height: 1.57;
    font-size: 14px;
    color: #666
}

.idx_news .center .news_box .item .news_info .info .time {
    margin: 15px 0;
    font-family: Arial;
    font-size: 12px;
    line-height: 1;
    color: #999
}

.idx_news .center .news_box .item .news_info .info .time i {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 12px
}

.idx_news .center .news_box .item .news_info:hover .images .more {
    margin-top: 0;
    opacity: 1
}

.idx_news .center .news_box .item .news_info:hover .images .ab {
    filter: blur(3px)
}

.idx_news .center .news_box .item .news_info:hover .info .title {
    color: #da251d
}

.idx_news .center .news_box .item .news_list {
    width: 100%;
    height: auto;
    flex: 1;
    margin-top: 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.idx_news .center .news_box .item .news_list .one {
    width: 100%;
    height: auto;
    box-sizing: initial;
    padding: 2vw 0;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.idx_news .center .news_box .item .news_list .one a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    overflow: hidden
}

.idx_news .center .news_box .item .news_list .one .title {
    font-family: sy_m;
    font-size: 18px;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media (max-width:1680px) {
    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 15.75px
    }
}

@media (max-width:1440px) {
    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 13.5px
    }
}

@media (max-width:1280px) {
    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 9.6px
    }
}

@media (max-width:1680px) {
    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 16px
    }
}

.idx_news .center .news_box .item .news_list .one .details {
    margin-top: 8px;
    line-height: 1.57;
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.idx_news .center .news_box .item .news_list .one .time {
    margin-top: 15px;
    font-family: Arial;
    font-size: 12px;
    line-height: 1;
    color: #999
}

.idx_news .center .news_box .item .news_list .one .time i {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 12px
}

.idx_news .center .news_box .item .news_list .one:first-child {
    padding-top: 0
}

.idx_news .center .news_box .item .news_list .one::before,
.idx_news .center .news_box .item .news_list .one::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0
}

.idx_news .center .news_box .item .news_list .one::before {
    background: #e5e5e5;
    z-index: 1
}

.idx_news .center .news_box .item .news_list .one::after {
    width: 0;
    z-index: 2;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.idx_news .center .news_box .item .news_list .one:hover .title {
    color: #da251d
}

.idx_news .center .news_box .item .news_list .one:hover::after {
    width: 90%
}

.idx_news .center .news_box .news_title {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #111;
    overflow: hidden
}

.idx_news .center .news_box .news_title span {
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
    z-index: 1
}

.idx_news .center .news_box .news_title span::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #da251d
}

.idx_news .center .news_box .item.active {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

@media (max-width:1280px) {
    .idx_news .center .news_box .item .news_info .info .title {
        font-size: 14px
    }

    .idx_news .center .news_box .item .news_info .info .details {
        font-size: 12px
    }

    .idx_news .center .news_box .item .news_list .one .title {
        font-size: 14px
    }

    .idx_news .center .news_box .item .news_list .one .details {
        font-size: 12px
    }
}

@media (max-width:1200px) {
    .idx_news .center .news_box .item .news_list .one .details {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block
    }
}

@media (max-width:1024px) {
    .idx_news .center .news_box {
        margin-top: 40px
    }

    .idx_news .center .news_box .item .news_info {
        margin-top: 30px
    }

    .idx_news .center .news_box .item .news_info .info {
        margin-top: 20px
    }
}

@media (max-width:990px) {
    .idx_news .center .news_box {
        display: grid;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-gap: 30px 20px
    }

    .idx_news .center .news_box .item {
        width: 100%;
        margin: 0
    }

    .idx_news .center .news_box .item .news_info {
        background: #fff;
        padding: 15px
    }

    .idx_news .center .news_box .item.active {
        position: relative;
        grid-column: span 2
    }

    .idx_news .center .news_box .item.active .news_list .one {
        background: #fff;
        margin-top: 10px;
        padding: 15px !important;
        box-sizing: border-box
    }

    .idx_news .center .news_box .item.active .news_list .one::before,
    .idx_news .center .news_box .item.active .news_list .one::after {
        display: none
    }

    .idx_news .center .news_box .item.active .news_list .one:first-child {
        margin-top: 0
    }
}

@media (max-width:768px) {
    .idx_news .center .news_box {
        margin-top: 30px
    }

    .idx_news .center .news_box .item .news_info {
        margin-top: 15px;
        width: 100%;
    }

    .idx_news .center .news_box .item .news_info .info .time {
        font-size: 10px
    }

    .idx_news .center .news_box .item .news_info .info .time i {
        font-size: 10px
    }

    .idx_news .center .news_box .item.active .news_list {
        margin-top: 15px
    }

    .idx_news .center .news_box .item.active .news_list .one .details {
        font-size: 12px
    }

    .idx_news .center .news_box .item.active .news_list .one .time {
        font-size: 10px
    }

    .idx_news .center .news_box .item.active .news_list .one .time i {
        font-size: 10px
    }

    .idx_news .center .news_box .news_title {
        font-size: 14px
    }

    .idx_news .center .news_box .news_title span::after {
        height: 1px
    }
}

@media (max-width:640px) {
    .idx_news .center .news_box {
        display: block
    }

    .idx_news .center .news_box .item,
    .idx_news .center .news_box .item.active {
        margin-top: 30px
    }

    .idx_news .center .news_box .item:first-child {
        margin-top: 0
    }
}

@media (max-width:1024px) {
    .idx_news .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .idx_news .center {
        margin: 40px 0
    }
}

.footer_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    background: #222;
    overflow: hidden
}

.footer_box .footer_main {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    margin: 3.6vw auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.footer_box .footer_main .f_info {
    width: 22%;
}
.footer_box .footer_main .f_info .logo{
    width: 48%;
}

.footer_box .footer_main .f_info .hot_text {
    width: 100%;
    height: auto;
    margin-top: 15px;
    overflow: hidden
}

.footer_box .footer_main .f_info .hot_text .txt {
    display: inline-block;
    padding: 6px 1vw;
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    font-family: sy_l;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    width: 100%;
    text-align: center;
}

.footer_box .footer_main .f_info .share {
    margin-top: 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.footer_box .footer_main .f_info .share .item {
    position: relative;
    z-index: 1
}

.footer_box .footer_main .f_info .share .item .img {
    width: 100px;
    position: absolute;
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.footer_box .footer_main .f_info .share .item .icon {
    color: #696969;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.footer_box .footer_main .f_info .share .item .icon i {
    font-size: 34px
}

.footer_box .footer_main .f_info .share .item:hover .img {
    margin-left: 10px;
    visibility: initial;
    opacity: 1
}

.footer_box .footer_main .f_info .share .item:hover .icon {
    color: #fff
}

.footer_box .footer_main .f_nav {
    width: 25%;
}

.footer_box .footer_main .f_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_box .footer_main .f_nav ul li{
    width: 50%;
}

.footer_box .footer_main .f_nav ul li .title {
    line-height: 2.5
}

.footer_box .footer_main .f_nav ul li .title a {
    padding-bottom: 8px;
    font-size: 16px;
    color: #fff;
    opacity: .5;
    position: relative;
    z-index: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.footer_box .footer_main .f_nav ul li .title a::after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.footer_box .footer_main .f_nav ul li .title a:hover {
    opacity: 1;
    color: #fff
}

.footer_box .footer_main .f_nav ul li .title a:hover::after {
    width: 100%
}

.footer_box .footer_main .f_nav ul li .menu {
    width: 100%;
    height: auto;
    margin-top: 1.2vw;
    overflow: hidden
}

.footer_box .footer_main .f_nav ul li .menu .one {
    width: 100%;
    height: auto;
    line-height: 1.2;
    overflow: hidden
}

.footer_box .footer_main .f_nav ul li .menu .one a {
    font-family: sy_l;
    font-size: 14px;
    color: #fff;
    opacity: .5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
}

.footer_box .footer_main .f_nav ul li .menu .one a:hover {
    opacity: 1
}

.footer_box .footer_main .f_nav ul li .menu .one:first-child~.one {
    margin-top: 10px
}
.f_contact{
    color: #999;
    width: 50%;
}
.f_h2{
    font-size: 20px;
    font-weight: 600;
    color: #999;
    margin-bottom: 2%;
}
.f_contact p{
    line-height: 2.5;
}
.f_contact p img{
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    margin-right: 6px;
}

.footer_box .footer_copy {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.footer_box .footer_copy::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #333
}

.footer_box .footer_copy .center {
    width: 100%;
    height: auto;
    margin: 2vw auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.footer_box .footer_copy .center .copy {
    padding-right: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    line-height: 1.5
}

.footer_box .footer_copy .center .copy .one {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.footer_box .footer_copy .center .copy .one::after {
    content: '';
    width: 1px;
    height: 10px;
    margin: 0 1.5vw;
    background: #666
}

.footer_box .footer_copy .center .copy .one:last-child::after {
    display: none
}

.footer_box .footer_copy .center .copy span,
.footer_box .footer_copy .center .copy a {
    font-size: 14px;
    color: #666;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.footer_box .footer_copy .center .copy span img,
.footer_box .footer_copy .center .copy a img {
    vertical-align: middle;
    margin-right: 15px
}

.footer_box .footer_copy .center .copy a:hover {
    color: #fff
}

.footer_box .footer_copy .center .scroll_top {
    align-self: center
}

.footer_box .footer_copy .center .scroll_top a {
    color: #fff
}

@media (max-width:1280px) {
    .footer_box .footer_main .f_info .hot_text .txt {
        font-size: 12px
    }

    .footer_box .footer_main .f_info .share .item .icon i {
        font-size: 24px
    }

    .footer_box .footer_main .f_nav ul li .title a {
        font-size: 14px
    }

    .footer_box .footer_main .f_nav ul li .menu .one a {
        font-size: 12px
    }

    .footer_box .footer_copy .center .copy span,
    .footer_box .footer_copy .center .copy a {
        font-size: 12px
    }

    .footer_box .footer_copy .center .scroll_top i {
        font-size: 14px
    }
}

@media (max-width:990px) {
    .footer_box .footer_main {
        display: none
    }
}

@media (max-width:640px) {
    .footer_box .footer_main {
        display: block;
        margin: 30px 0
    }

    .footer_box .footer_main .f_info {
        width: 100%
    }

    .footer_box .footer_main .f_info .logo {
        max-width: 100px
    }

    .footer_box .footer_main .f_info .hot_text .txt {
        padding: 6px 15px
    }

    .footer_box .footer_main .f_nav {
        display: none
    }

    .footer_box .footer_copy .center {
        display: block;
        margin: 15px 0
    }

    .footer_box .footer_copy .center .copy {
        padding: 0
    }

    .footer_box .footer_copy .center .copy .one {
        display: block;
        margin-right: 20px
    }

    .footer_box .footer_copy .center .copy .one::after {
        display: none
    }

    .footer_box .footer_copy .center .copy span,
    .footer_box .footer_copy .center .copy a {
        display: inline-block;
        font-size: 10px
    }

    .footer_box .footer_copy .center .copy span::after,
    .footer_box .footer_copy .center .copy a::after {
        display: none
    }

    .footer_box .footer_copy .center .copy span img,
    .footer_box .footer_copy .center .copy a img {
        max-width: 10px;
        margin-right: 8px
    }

    .footer_box .footer_copy .center .scroll_top {
        display: none
    }
}

.pendant_box {
    width: 60px;
    height: auto;
    position: fixed;
    right: -60px;
    bottom: 10%;
    z-index: 20;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pendant_box .pendant_center {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05)
}

.pendant_box .pendant_center .isshow {
    width: 20px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -20px;
    cursor: pointer;
    background: #f5f5f5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.pendant_box .pendant_center .isshow .icon {
    width: 100%;
    height: 100%;
    letter-spacing: -2px;
    color: #666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pendant_box .pendant_center .isshow i {
    font-size: 12px
}

.pendant_box .pendant_center .isshow:hover {
    background: #da251d
}

.pendant_box .pendant_center .isshow:hover .icon {
    color: #fff
}

.pendant_box .pendant_center .isshow.active {
    background: #da251d
}

.pendant_box .pendant_center .isshow.active .icon {
    color: #fff;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg)
}

.pendant_box .pendant_center .pendant_item {
    width: 100%;
    height: auto;
    margin-top: 5px;
    padding: 15px;
    cursor: pointer;
    position: relative;
    z-index: 1
}

.pendant_box .pendant_center .pendant_item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #da251d;
    border-radius: 6px 0 0 6px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pendant_box .pendant_center .pendant_item .icon {
    width: 100%;
    height: auto;
    text-align: center;
    color: #fff;
    font-size: 0;
    overflow: hidden
}

.pendant_box .pendant_center .pendant_item .icon i {
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    vertical-align: top
}

.pendant_box .pendant_center .pendant_item .title {
    width: 100%;
    height: auto;
    margin-top: 10px;
    line-height: 1;
    text-align: center;
    font-size: 14px;
    color: #fff;
    overflow: hidden
}

.pendant_box .pendant_center .item_first {
    margin-top: 0
}

.pendant_box .pendant_center .pendant_item:hover {
    z-index: 2
}

.pendant_box .pendant_center .pendant_item:hover .info {
    visibility: initial;
    margin-right: 0;
    opacity: 1
}

.pendant_box .pendant_center .item_qrcode .info {
    width: 240px;
    height: auto;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pendant_box .pendant_center .item_qrcode .info .center {
    width: calc(100% - 10px);
    height: 100%;
    padding: 5px 10px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-top: 3px solid #da251d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    overflow: hidden
}

.pendant_box .pendant_center .item_qrcode .info .center .img {
    width: 50%;
    height: auto;
    overflow: hidden
}

.pendant_box .pendant_center .item_qrcode .info .center .txt {
    flex: 1;
    margin-left: 10px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #333
}

.pendant_box .pendant_center .item_qrcode .info .center .txt p {
    color: #da251d
}

.pendant_box .pendant_center .item_phone .info {
    width: auto;
    height: auto;
    padding-right: 10px;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pendant_box .pendant_center .item_phone .info .center {
    width: 100%;
    height: auto;
    padding: 15px 20px 20px;
    background: #fff;
    position: relative;
    z-index: 2;
    border-top: 3px solid #da251d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    overflow: hidden
}

.pendant_box .pendant_center .item_phone .info .center .title {
    text-align: left;
    font-size: 16px;
    color: #6666;
    overflow: hidden;
    white-space: nowrap
}

.pendant_box .pendant_center .item_phone .info .center .phone {
    margin-top: 10px;
    font-size: 24px;
    color: #da251d;
    text-align: left;
    overflow: hidden;
    white-space: nowrap
}

.pendant_box .pendant_center .line {
    width: 70%;
    height: 1px;
    background: #eee;
    margin: 0 auto;
    overflow: hidden
}

.pendant_box .scroll_top {
    width: 100%;
    height: 54px;
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #da251d;
    border-radius: 6px 0 0 6px;
    color: #fff;
    text-align: center;
    cursor: pointer
}

@media (max-width:1366px) {
    .pendant_box .pendant_center .pendant_item .icon i {
        font-size: 18px
    }

    .pendant_box .pendant_center .pendant_item .title {
        font-size: 12px;
        line-height: 1.2
    }

    .pendant_box .pendant_center .item_qrcode .info {
        width: 200px
    }

    .pendant_box .pendant_center .item_qrcode .info .center .txt {
        font-size: 14px
    }

    .pendant_box .scroll_top {
        padding: 5px 15px
    }

    .pendant_box .scroll_top i {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .pendant_box {
        display: none
    }
}

.w100 {
    width: 100%;
    height: auto;
    overflow: hidden
}

.h100 {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.p_box {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.p_main {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .p_main {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .p_main {
        margin: 40px 0
    }
}

.p_info {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden
}

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

@media (max-width:768px) {
    .p_info {
        margin-top: 30px
    }
}

.block_a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    overflow: hidden
}

.p_nav {
    width: 100%;
    height: auto;
    padding: 18px 0;
    background: #f5f5f5;
    overflow: hidden
}

.navigation {
    width: 100%;
    height: auto;
    font-size: 0;
    overflow: hidden
}
.navigation,
.navigation a,
.navigation span,
.navigation i {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #999;
    vertical-align: middle;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.navigation span {
    color: #da251d
}

.navigation i {
    font-size: 20px;
    margin: 0 10px
}

.navigation a:hover {
    color: #da251d
}

@media (max-width:1440px) {
.navigation,
    .navigation a,
    .navigation span,
    .navigation i {
        font-size: 15px
    }
}

@media (max-width:1024px) {
.navigation,

    .navigation a,
    .navigation span {
        font-size: 14px
    }

    .navigation i {
        font-size: 12px
    }
}

@media (max-width:768px) {
.navigation,

    .navigation a,
    .navigation span {
        font-size: 12px
    }

    .navigation i {
        margin: 0 5px
    }
}

@media (max-width:480px) {
.navigation,

    .navigation a,
    .navigation span {
        font-size: 10px
    }

    .navigation i {
        margin: 0 4px
    }
}

.page_banner {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* margin-top: -60px; */

}
@media screen and (max-width:996px) {
    .page_banner {
       
        margin-top: 0px;
    
    }
}
.page_banner .center {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden
}

.page_banner .center .info {
    width: 100%;
    height: auto;
    color: #fff;
    text-align: center;
    padding: 0 20px
}

.page_banner .center .info .title {
    font-family: sy_m;
    font-size: 60px
}

@media (max-width:1680px) {
    .page_banner .center .info .title {
        font-size: 52.5px
    }
}

@media (max-width:1440px) {
    .page_banner .center .info .title {
        font-size: 45px
    }
}

@media (max-width:1280px) {
    .page_banner .center .info .title {
        font-size: 40px
    }
}

@media (max-width:1024px) {
    .page_banner .center .info .title {
        font-size: 32px
    }
}

.page_banner .center .info .subtitle {
    font-size: 30px;
    line-height: 1
}

@media (max-width:1680px) {
    .page_banner .center .info .subtitle {
        font-size: 26.25px
    }
}

@media (max-width:1440px) {
    .page_banner .center .info .subtitle {
        font-size: 22.5px
    }
}

@media (max-width:1280px) {
    .page_banner .center .info .subtitle {
        font-size: 20px
    }
}

@media (max-width:1024px) {
    .page_banner .center .info .subtitle {
        font-size: 16px
    }
}

@media (max-width:1680px) {
    .page_banner .center .info .subtitle {
        font-size: 24px
    }
}

@media (max-width:1440px) {
    .page_banner .center .info .subtitle {
        font-size: 22px
    }
}

@media (max-width:1024px) {
    .page_banner .center .info .subtitle {
        font-size: 18px
    }
}

.page_banner .images {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_banner .images .img {
    width: 100%;
    height: auto;
    font-size: 0;
    overflow: hidden
}

.page_banner .images .img img {
    width: 100%;
    min-height: 300px;
    max-height: 50vh;
    object-fit: cover
}

@media (max-width:990px) {
    .page_banner .images .img img {
        min-height: 220px;
        object-fit: cover
    }
}

@media (max-width:768px) {
    .page_banner .center .info .title {
        font-size: 24px
    }

    .page_banner .center .info .subtitle {
        font-size: 14px
    }
}

.page_banner_nbsp {
    width: 100%;
    height: auto;
    overflow: hidden
}

.sidebar_box {
    width: 100%;
    height: 100%;
    position: sticky;
    top: 130px
}

.sidebar_box .s_title {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #da251d;
    padding: 20px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.sidebar_box .s_title .icon {
    background: rgba(255, 255, 255, .1);
    padding: 10px 10px 6px;
    line-height: 1;
    border-radius: 5px;
    font-size: 0
}

.sidebar_box .s_title .icon i {
    font-size: 40px
}

.sidebar_box .s_title .info {
    flex: 1;
    margin-left: 20px
}
@media screen and (max-width:1400px) {
    .sidebar_box .s_title .icon i {
        font-size: 36px
    }.sidebar_box .s_title .info {
        flex: 1;
        margin-left: 14px
    }
}
.sidebar_box .s_title .info .subtitle {
    font-size: 16px;
    line-height: 1
}

.sidebar_box .s_title .info .title {
    margin-top: 10px;
    font-family: sy_m;
    font-size: 24px;
    line-height: 1
}

.sidebar_box .sidebar_nav {
    width: 100%;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    overflow: hidden
}

.sidebar_box .sidebar_nav .menu {
    width: 100%;
    height: auto;
    background: #fff;
    overflow: hidden
}

.sidebar_box .sidebar_nav .menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #e5e5e5;
    overflow: hidden
}

.sidebar_box .sidebar_nav .menu ul li a {
    padding: 20px 30px;
    padding-right: 40px;
    display: block;
    font-size: 18px;
    color: #282f36;
    line-height: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative
}

.sidebar_box .sidebar_nav .menu ul li a .icon {
    width: 12px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: -10px;
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 0;
    color: #282f36;
    text-indent: 0 !important;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.sidebar_box .sidebar_nav .menu ul li a .icon i {
    font-size: 24px
}

.sidebar_box .sidebar_nav .menu ul li a .txt {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.sidebar_box .sidebar_nav .menu ul li a.active {
    color: #da251d
}
.sidebar_box .sidebar_nav .menu ul .active .pp_a{
    color: #da251d
}
.sidebar_box .sidebar_nav .menu ul li a.active .icon {
    color: #da251d
}

.sidebar_box .sidebar_nav .menu ul li a:hover {
    color: #da251d
}

.sidebar_box .sidebar_nav .menu ul li a:hover .icon {
    color: #da251d
}

.sidebar_box .sidebar_nav .menu ul li a.is_active.active .icon {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

.sidebar_box .sidebar_nav .menu ul li ul {
    width: 100%;
    height: auto;
    padding: 10px 30px;
    border-top: 1px solid #da251d;
    display: none;
    overflow: hidden
}

.sidebar_box .sidebar_nav .menu ul li ul li {
    border: 0
}

.sidebar_box .sidebar_nav .menu ul li ul li a {
    padding: 12px 15px;
    font-size: 18px;
    color: #666;
    position: relative;
    z-index: 1
}

.sidebar_box .sidebar_nav .menu ul li ul li a::after {
    content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    background: #999;
    margin-top: -1px
}

.sidebar_box .sidebar_nav .menu ul li ul li a.active {
    color: #da251d
}

.sidebar_box .sidebar_nav .menu ul li ul li a.active::after {
    background: #da251d
}
.sidebar_box .sidebar_nav .menu ul li .SonList .active a {
    color: #da251d
}
.sidebar_box .sidebar_nav .menu ul li .SonList .active a::after {
    background: #da251d
}
.sidebar_box .sidebar_con {
    width: 100%;
    height: auto;
    margin-top: 1.2vw;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    overflow: hidden
}

.sidebar_box .sidebar_con .title {
    width: 100%;
    height: auto;
    padding: 20px 30px;
    font-family: sy_m;
    font-size: 24px;
    color: #111;
    overflow: hidden
}

.sidebar_box .sidebar_con .items {
    width: 100%;
    height: auto;
    padding: 0 1.5vw 30px;
    overflow: hidden
}

.sidebar_box .sidebar_con .items .img {
    width: 100%;
    height: auto;
    font-size: 0;
    overflow: hidden
}

.sidebar_box .sidebar_con .items .img img {
    width: 100%
}

.sidebar_box .sidebar_con .items .item {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.sidebar_box .sidebar_con .items .item .icon {
    margin-right: 10px;
    color: #da251d
}

.sidebar_box .sidebar_con .items .item .icon i {
    font-size: 14px
}

.sidebar_box .sidebar_con .items .item .txt {
    font-size: 14px;
    color: #999
}

.sidebar_box .sidebar_con .items .item:first-child {
    margin: 0
}

.sidebar_box .sidebar_con .items .more {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.sidebar_box .sidebar_con .items .more::before,
.sidebar_box .sidebar_con .items .more::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.sidebar_box .sidebar_con .items .more::after {
    width: 0;
    border-radius: 0 50% 50% 0;
    z-index: 2;
    background: #fff;
    opacity: .1
}

.sidebar_box .sidebar_con .items .more a {
    width: 100%;
    height: auto;
    display: block;
    padding: 12px;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 3;
    overflow: hidden
}

.sidebar_box .sidebar_con .items .more:hover::after {
    width: 100%;
    border-radius: 0
}

@media (max-width:1440px) {
    .sidebar_box .sidebar_nav .menu ul li a {
        /* font-size: 14px */
    }

    .sidebar_box .sidebar_nav .menu ul li a .icon i {
        font-size: 18px
    }

    .sidebar_box .sidebar_con {
        margin-top: 20px
    }

    .sidebar_box .sidebar_con .title {
        padding: 10px 30px;
        font-size: 20px
    }

    .sidebar_box .sidebar_con .items {
        padding: 0 30px 30px
    }

    .sidebar_box .sidebar_con .items .item .icon i {
        font-size: 14px
    }

    .sidebar_box .sidebar_con .items .item .txt {
        font-size: 14px
    }

    .sidebar_box .sidebar_con .items .icons .icon {
        max-width: 24px
    }
}

@media (max-width:1280px) {
    .sidebar_box .s_title {
        padding: 20px
    }

    .sidebar_box .s_title .icon i {
        font-size: 30px
    }

    .sidebar_box .s_title .info {
        margin-left: 15px
    }

    .sidebar_box .s_title .info .subtitle {
        font-size: 14px
    }

    .sidebar_box .s_title .info .title {
        margin-top: 5px;
        font-size: 20px
    }

    .sidebar_box .sidebar_nav .menu ul li a {
        padding: 20px;
        /* padding-right: 30px */
    }

    .sidebar_box .sidebar_nav .menu ul li a .icon {
        right: 15px
    }

    .sidebar_box .sidebar_nav .menu ul li ul {
        padding: 10px 20px
    }

    .sidebar_box .sidebar_con .title {
        padding: 20px;
        font-size: 18px
    }

    .sidebar_box .sidebar_con .items {
        padding: 0 20px 20px
    }

    .sidebar_box .sidebar_con .items .more a {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .sidebar_box .s_title .info .title {
        font-size: 18px
    }

    .sidebar_box .sidebar_con .title {
        font-size: 16px
    }

    .sidebar_box .sidebar_con .items .item .txt {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .sidebar_box {
        display: none
    }
    .page_product .sidebar_box{
        display: block;
    }
     .sidebar_box {
        width: 100% !important;
        position: static;
        margin-bottom: 6%;
    }
    .sidebar_box .sidebar_con{
        display: none;
    }
    .sidebar_box .s_title {
        padding: 10px;
    }
    .sidebar_box .s_title .icon i {
        font-size: 16px;
    }
    .sidebar_box .s_title .info .subtitle {
        display: none;
    }
    .sidebar_box .sidebar_nav .menu ul li a {
        padding: 14px 20px;
        padding-right: 30px;
    }
    .pro_details .product_text .center .text_details img{
        display: block;
        width: 100% !important;
        height: auto !important;
    }
    .page_down .center .down_box .down_list ul {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.page_box {
    width: 100%;
    height: auto
}

.page_title {
    text-align: center
}

.page_title .subtitle {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 20px;
    color: #da251d
}

.page_title .title {
    width: 100%;
    height: auto;
    line-height: 1;
    font-family: sy_m;
    font-size: 42px;
    color: #111
}

.page_title .title span {
    color: #da251d
}

.page_title .details {
    width: 100%;
    height: auto;
    margin-top: 10px;
    font-size: 16px;
    color: #666
}

.page_title .line {
    width: 100%;
    height: 3px;
    margin-top: 30px;
    overflow: hidden
}

.page_title .line::after {
    content: '';
    width: 40px;
    height: 100%;
    display: block;
    margin: 0 auto;
    background: #da251d
}

.page_title.active {
    text-align: left
}

.page_title.active .line::after {
    margin: 0
}

@media (max-width:1440px) {
    .page_title .subtitle {
        font-size: 18px
    }

    .page_title .title {
        font-size: 36px
    }
}

@media (max-width:1280px) {
    .page_title .subtitle {
        font-size: 16px
    }

    .page_title .title {
        font-size: 34px
    }
}

@media (max-width:1024px) {
    .page_title .subtitle {
        font-size: 14px
    }

    .page_title .title {
        font-size: 30px
    }

    .page_title .details {
        font-size: 14px
    }

    .page_title .line {
        margin-top: 20px
    }
}

@media (max-width:768px) {
    .page_title .title {
        font-size: 28px
    }
}

@media (max-width:640px) {
    .page_title .title {
        font-size: 26px
    }
}

@media (max-width:480px) {
    .page_title .title {
        font-size: 24px
    }
}

@media (max-width:360px) {
    .page_title .title {
        font-size: 20px
    }

    .page_title .details {
        font-size: 12px
    }

    .page_title .line {
        height: 2px;
        margin-top: 15px
    }
}

@media (max-width:1024px) {
    .page_title.active {
        text-align: center
    }

    .page_title.active .line::after {
        margin: 0 auto
    }
}

.page_case {
    width: 100%;
    height: auto;
    padding: 2.6vw 0;
    position: relative;
    z-index: 1;
    background: #f5f5f5
}

.page_case .center {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_case .center .sidebar_box {
    width: 24%
}

.page_case .center .case_box {
    width: 76%;
    height: auto;
    padding-left: 3vw
}

.page_case .center .case_box .case_list {
    width: 100%;
    height: auto
}

.page_case .center .case_box .case_list ul {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1vw
}

.page_case .center .case_box .case_list ul li {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-top: 5px solid #da251d;
    overflow: hidden
}

.page_case .center .case_box .case_list ul li a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    overflow: hidden
}

.page_case .center .case_box .case_list ul li .img {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_case .center .case_box .case_list ul li .img .pb {
    padding-bottom: 70%
}

.page_case .center .case_box .case_list ul li .img img {
    vertical-align: middle
}

.page_case .center .case_box .case_list ul li .info {
    width: 100%;
    height: auto;
    flex: 1;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.page_case .center .case_box .case_list ul li .info .title {
    font-family: sy_m;
    font-size: 18px;
    line-height: 1.8;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_case .center .case_box .case_list ul li .info .details {
    width: 100% ;
    /* height: calc(2em * 1.8); */
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.page_case .center .case_box .case_list ul li .info .more {
    width: 100%;
    height: 18px;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #da251d
}

.page_case .center .case_box .case_list ul li .info .more .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background: #da251d;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_case .center .case_box .case_list ul li .info .more .icon::before,
.page_case .center .case_box .case_list ul li .info .more .icon::after {
    content: '';
    width: 24%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 38%;
    margin-top: -.5px;
    transform-origin: right center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_case .center .case_box .case_list ul li .info .more .icon::before {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.page_case .center .case_box .case_list ul li .info .more .icon::after {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg)
}

.page_case .center .case_box .case_list ul li .info .more .word {
    width: auto;
    height: 20px;
    font-size: 14px;
    margin-left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_case .center .case_box .case_list ul li:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1)
}

.page_case .center .case_box .case_list ul li:hover .info .title {
    color: #da251d
}

.page_case .center .case_box .case_list ul li:hover .info .more .word {
    text-indent: 10px
}

@media (max-width:1024px) {
    .page_case .center .case_box {
        padding-left: 40px
    }

    .page_case .center .case_box .case_list ul {
        grid-gap: 20px
    }
}

@media (max-width:990px) {
    .page_case .center .case_box {
        width: 100%;
        padding: 0
    }
}

@media (max-width:768px) {
    .page_case .center .case_box .case_list ul {
        grid-template-columns: repeat(2, 1fr) !important;
    }
.page_case .center .case_box .case_list ul li .info{
    padding: 10px;
}
    .page_case .center .case_box .case_list ul li .info .title {
        font-size: 16px
    }

    .page_case .center .case_box .case_list ul li .info .more {
        margin-top: 6px
    }

    .page_case .center .case_box .case_list ul li .info .more .icon {
        width: 18px;
        height: 18px
    }
}

@media (max-width:480px) {
    .page_case .center .case_box .case_list ul {
        grid-template-columns: auto
    }
}

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

.case_details {
    width: 100%;
    height: auto;
    overflow: hidden
}

.case_details .case_head {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    overflow: hidden
}

.case_details .case_head .case_center {
    width: 100%;
    height: auto;
    margin: 30px auto 4vw;
    overflow: hidden
}

.case_details .case_head .case_center .center {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.case_details .case_head .case_center .center .images {
    width: 44.87%;
    height: auto;
    background: #fff;
    overflow: hidden
}

.case_details .case_head .case_center .center .images .pb {
    padding-bottom: 70%
}

.case_details .case_head .case_center .center .images .swiper_box {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.case_details .case_head .case_center .center .images .swiper_box ul {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.case_details .case_head .case_center .center .images .swiper_box ul li {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.case_details .case_head .case_center .center .images .swiper_box ul li img {
    vertical-align: middle
}

.case_details .case_head .case_center .center .images .swiper_box .pager {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 2vw;
    left: 0;
    z-index: 2;
    font-size: 0;
    text-align: center;
    overflow: hidden
}

.case_details .case_head .case_center .center .images .swiper_box .pager span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d7d7d7;
    opacity: 1;
    margin: 0 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.case_details .case_head .case_center .center .images .swiper_box .pager span.active,
.case_details .case_head .case_center .center .images .swiper_box .pager span:hover {
    background: #da251d
}

.case_details .case_head .case_center .center .info {
    width: 55.13%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding-left: 7.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.case_details .case_head .case_center .center .info .title {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    font-family: sy_m;
    font-size: 36px;
    line-height: 1.6;
    color: #111;
    overflow: hidden
}

@media (max-width:1680px) {
    .case_details .case_head .case_center .center .info .title {
        font-size: 31.5px
    }
}

@media (max-width:1440px) {
    .case_details .case_head .case_center .center .info .title {
        font-size: 27px
    }
}

@media (max-width:1280px) {
    .case_details .case_head .case_center .center .info .title {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    .case_details .case_head .case_center .center .info .title {
        font-size: 19.2px
    }
}

.case_details .case_head .case_center .center .info .title::before,
.case_details .case_head .case_center .center .info .title::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #e5e5e5
}

.case_details .case_head .case_center .center .info .title::after {
    width: 20%;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.case_details .case_head .case_center .center .info .details {
    margin-top: 30px;
    padding-right: 10px;
    flex: 1;
    font-size: 16px;
    color: #666;
    line-height: 1.66;
    overflow: hidden;
    overflow-y: auto
}

.case_details .case_head .case_center .center .info .details p {
    margin-top: 10px;
    padding-left: 20px;
    position: relative;
    z-index: 1
}

.case_details .case_head .case_center .center .info .details p::after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 2px;
    z-index: 1;
    background: #da251d;
    border-radius: 50%;
    margin-top: -2.5px
}

.case_details .case_head .case_center .center .info .details p:first-child {
    margin: 0
}

@media (max-width:1024px) {
    .case_details .case_head .case_center {
        margin: 20px 0 50px
    }

    .case_details .case_head .case_center .center .images .swiper_box .pager {
        bottom: 20px
    }

    .case_details .case_head .case_center .center .images .swiper_box .pager span {
        width: 8px;
        height: 8px
    }

    .case_details .case_head .case_center .center .info .title {
        font-size: 24px
    }

    .case_details .case_head .case_center .center .info .details {
        font-size: 14px
    }
}

@media (max-width:990px) {
    .case_details .case_head .case_center .center .images {
        width: 100%
    }

    .case_details .case_head .case_center .center .info {
        width: 100%;
        height: auto;
        position: relative;
        margin: 30px 0 0;
        padding: 0
    }
}

@media (max-width:768px) {
    .case_details .case_head .case_center .center .info .title {
        font-size: 20px
    }
}

.case_details .case_link {
    width: 100%;
    height: auto;
    background: #fff;
    position: sticky;
    top: 120px;
    z-index: 10;
    overflow: hidden
}

.case_details .case_link::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #d3d3d3
}

.case_details .case_link .center {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.case_details .case_link .center .links {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.case_details .case_link .center .links a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: sy_m;
    font-size: 20px;
    color: #999;
    margin-right: 3vw;
    position: relative;
    z-index: 1
}

.case_details .case_link .center .links a::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.case_details .case_link .center .links a.active,
.case_details .case_link .center .links a:hover {
    color: #da251d
}

.case_details .case_link .center .links a.active::after,
.case_details .case_link .center .links a:hover::after {
    width: 100%
}

@media (max-width:1024px) {
    .case_details .case_link .center .links {
        height: 60px
    }

    .case_details .case_link .center .links a {
        font-size: 18px;
        margin-right: 20px
    }

    .case_details .case_link .center .product_btn a {
        font-size: 14px
    }

    .case_details .case_link .center .product_btn a i {
        font-size: 14px;
        margin-right: 10px
    }
}

@media (max-width:768px) {
    .case_details .case_link .center .links {
        width: 100%;
        height: 50px
    }

    .case_details .case_link .center .links a {
        font-size: 16px;
        padding: 0
    }
}

@media (max-width:1440px) {
    .case_details .case_link {
        top: 100px
    }
}

@media (max-width:1280px) {
    .case_details .case_link {
        top: 80px
    }
}

@media (max-width:990px) {
    .case_details .case_link {
        top: 60px
    }
}

@media (max-width:768px) {
    .case_details .case_link .center .product_btn {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 20
    }

    .case_details .case_link .center .product_btn a {
        width: 50%;
        height: 50px;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        font-size: 16px
    }

    .case_details .case_link .center .product_btn a i {
        font-size: 16px
    }
}

.case_details .case_text {
    width: 100%;
    height: auto;
    overflow: hidden
}

.case_details .case_text .center {
    width: 100%;
    height: auto;
    margin: 3vw auto;
    overflow: hidden
}

.case_details .case_text .center .text_details {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    overflow: hidden
}

.case_details .case_text .center .text_details b {
    font-family: sy_m;
    font-weight: initial
}

.case_details .case_text .center .text_details p {
    margin: 15px 0 0
}

.case_details .case_text .center .text_details p:first-child {
    margin: 0
}

.case_details .case_text .center .text_details img {
    vertical-align: middle;
    max-width: 100%
}

.case_details .case_text .center .text_details table {
    font-size: 18px;
    width: 100%;
    color: #666;
    border-width: 1px;
    border-color: #d8dcdd;
    border-collapse: collapse
}

.case_details .case_text .center .text_details table th {
    border-width: 1px;
    padding: 15px 1.5vw;
    border-style: solid;
    border-color: #d8dcdd;
    text-align: left;
    vertical-align: middle;
    background: #f5f5f5;
    color: #111;
    font-weight: 400
}

.case_details .case_text .center .text_details table td {
    font-size: 16px;
    border-width: 1px;
    padding: 15px 1.5vw;
    border-style: solid;
    border-color: #d8dcdd;
    text-align: left;
    vertical-align: middle
}

@media (max-width:1024px) {
    .case_details .case_text .center {
        margin: 30px 0 40px
    }

    .case_details .case_text .center .text_details {
        font-size: 14px
    }

    .case_details .case_text .center .text_details table {
        font-size: 16px
    }

    .case_details .case_text .center .text_details table td {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .case_details .case_text .center .text_details table {
        font-size: 14px
    }

    .case_details .case_text .center .text_details table td {
        font-size: 12px
    }
}

.page_product {
    width: 100%;
    height: auto;
    padding: 2.6vw 0;
    position: relative;
    z-index: 1;
    background: #f5f5f5
}

.page_product .center {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_product .center .sidebar_box {
    width: 18%
}

.page_product .center .product_box {
    width: 80%;
    height: auto;
    /* padding-left: 3vw */
}
@media screen and (max-width:1200px) {
    .page_product .center .sidebar_box {
        width: 20%
    }
    .page_product .center .product_box {
        width: 78%;
    }
}
.page_product .center .product_box .product_list {
    width: 100%;
    height: auto
}

.page_product .center .product_box .product_list ul {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.2vw
}
@media screen and (max-width:1500px) {
    .page_product .center .product_box .product_list ul {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1.6vw
    }
}
.i_product_BOX .center .product_box .product_list ul {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1vw;
}
.page_product .center .product_box .product_list ul li {
    width: 100%;
    height: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .img .pb {
    /* padding-bottom: 70% */
}

.page_product .center .product_box .product_list ul li .img img {
    vertical-align: middle;padding: 0px;
}

.page_product .center .product_box .product_list ul li .content {
    width: 100%;
    height: auto;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .info {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    overflow: hidden
}
@media screen and (max-width:1400px) {
    .page_product .center .product_box .product_list ul li .content .info {
        padding: 10px;
    }
}
.page_product .center .product_box .product_list ul li .content .info .title_box {
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .info .title_box .subtitle {
    font-size: 14px;
    color: #999
}

.page_product .center .product_box .product_list ul li .content .info .title_box .title {
    margin-top: 5px;
    font-family: sy_m;
    font-size: 18px;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_product .center .product_box .product_list ul li .content .info .title_box::before,
.page_product .center .product_box .product_list ul li .content .info .title_box::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #e5e5e5
}

.page_product .center .product_box .product_list ul li .content .info .title_box::after {
    width: 0;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_product .center .product_box .product_list ul li .content .info .details {
    width: 100%;
    height: auto;
    margin-top: 10px;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .info .details p {
    margin-top: 5px;
    padding-left: 20px;
    font-size: 14px;
    color: #666;
    position: relative;
    z-index: 1
}

.page_product .center .product_box .product_list ul li .content .info .details p:first-child {
    margin: 0
}

.page_product .center .product_box .product_list ul li .content .info .details p::after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 2px;
    z-index: 1;
    background: #acacac;
    border-radius: 50%;
    margin-top: -2.5px
}

.page_product .center .product_box .product_list ul li .content .more_btn {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .more_btn .more {
    width: 50%;
    height: auto;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .more_btn .more a {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-bottom: 0;
    border-left: 0;
    line-height: 1;
    color: #999;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.page_product .center .product_box .product_list ul li .content .more_btn .more a .words {
    font-size: 14px
}

.page_product .center .product_box .product_list ul li .content .more_btn .more a .icon {
    margin-left: 10px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_product .center .product_box .product_list ul li .content .more_btn .more a .icon i {
    font-size: 14px
}

.page_product .center .product_box .product_list ul li .content .more_btn .more:last-child a {
    border-right: 0
}

.page_product .center .product_box .product_list ul li .content .more_btn .more:hover a {
    border-color: #da251d;
    background: #da251d;
    color: #fff
}

.page_product .center .product_box .product_list ul li:hover .content .info .title_box .title {
    color: #da251d
}

.page_product .center .product_box .product_list ul li:hover .content .info .title_box::after {
    width: 100%
}

@media (max-width:1024px) {
    .page_product .center .product_box {
        /* padding-left: 30px    */
    }

    .page_product .center .product_box .product_list ul {
        grid-gap: 20px
    }

    .page_product .center .product_box .product_list ul li .content .info .details p {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .page_product .center .product_box {
        width: 100%;
        padding: 0
    }

    .page_product .center .product_box .product_list ul li .content .more_btn .more a {
        border: 0;
        background: #da251d;
        color: #fff
    }

    .page_product .center .product_box .product_list ul li .content .more_btn .more:last-child a {
        background: #ccc
    }
}

@media (max-width:768px) {
    .page_product .center .product_box .product_list ul {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 10px !important ;
    }
    .page_product .center .product_box .product_list ul li .content .info .details {
    font-size: 14px;
}
}

@media (max-width:480px) {
    .page_product .center .product_box .product_list ul {
        grid-template-columns: auto
    }

    .page_product .center .product_box .product_list ul li .content .info {
        padding: 15px
    }

    .page_product .center .product_box .product_list ul li .content .info .title_box {
        padding-bottom: 10px
    }

    .page_product .center .product_box .product_list ul li .content .info .title_box .subtitle {
        font-size: 12px
    }

    .page_product .center .product_box .product_list ul li .content .info .title_box .title {
        font-size: 16px
    }

    .page_product .center .product_box .product_list ul li .content .more_btn .more a {
        padding: 8px 10px
    }

    .page_product .center .product_box .product_list ul li .content .more_btn .more a .words {
        font-size: 11px
    }
}

@media (max-width:990px) {
    .page_product .center {
        display: block
    }
}

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

.pro_details {
    width: 100%;
    height: auto;
    overflow: hidden
}

.pro_details .pro_head {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    overflow: hidden
}

.pro_details .pro_head .pro_center {
    width: 100%;
    height: auto;
    margin: 30px auto 4vw;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images {
    width: 44.87%;
    height: auto;
    background: #fff;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images .pb {
    padding-bottom: 70%
}

.pro_details .pro_head .pro_center .center .images .swiper_box {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images .swiper_box ul {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images .swiper_box ul li {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images .swiper_box ul li img {
    vertical-align: middle
}

.pro_details .pro_head .pro_center .center .images .swiper_box .pager {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 2vw;
    left: 0;
    z-index: 2;
    font-size: 0;
    text-align: center;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .images .swiper_box .pager span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d7d7d7;
    opacity: 1;
    margin: 0 5px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pro_details .pro_head .pro_center .center .images .swiper_box .pager span.active,
.pro_details .pro_head .pro_center .center .images .swiper_box .pager span:hover {
    background: #da251d
}

.pro_details .pro_head .pro_center .center .info {
    width: 55.13%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding-left: 7.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .info .title_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .info .title_box .subtitle {
    font-size: 20px;
    color: #333
}

.pro_details .pro_head .pro_center .center .info .title_box .title {
    font-family: sy_m;
    font-size: 36px;
    line-height: 1.6;
    color: #111
}

@media (max-width:1680px) {
    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 31.5px
    }
}

@media (max-width:1440px) {
    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 27px
    }
}

@media (max-width:1280px) {
    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 19.2px
    }
}

.pro_details .pro_head .pro_center .center .info .title_box::before,
.pro_details .pro_head .pro_center .center .info .title_box::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #e5e5e5
}

.pro_details .pro_head .pro_center .center .info .title_box::after {
    width: 20%;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pro_details .pro_head .pro_center .center .info .details {
    margin-top: 30px;
    padding-right: 10px;
    flex: 1;
    font-size: 16px;
    color: #666;
    line-height: 1.66;
    overflow: hidden;
    overflow-y: auto
}

.pro_details .pro_head .pro_center .center .info .details p {
    margin-top: 10px;
    padding-left: 20px;
    position: relative;
    z-index: 1
}

.pro_details .pro_head .pro_center .center .info .details p::after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: .6em;
    left: 2px;
    z-index: 1;
    background: #da251d;
    border-radius: 50%
}

.pro_details .pro_head .pro_center .center .info .details p:first-child {
    margin: 0
}

.pro_details .pro_head .pro_center .center .info .more {
    width: 150px;
    height: auto;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .info .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 10px;
    line-height: 1;
    color: #fff;
    position: relative;
    z-index: 3
}

.pro_details .pro_head .pro_center .center .info .more a .icon {
    margin-right: 15px
}

.pro_details .pro_head .pro_center .center .info .more a .icon i {
    font-size: 20px
}

.pro_details .pro_head .pro_center .center .info .more a .words {
    font-size: 14px
}

.pro_details .pro_head .pro_center .center .info .more::before,
.pro_details .pro_head .pro_center .center .info .more::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #da251d
}

.pro_details .pro_head .pro_center .center .info .more::after {
    width: 0;
    border-radius: 0 50% 50% 0;
    z-index: 2;
    background: #fff;
    opacity: .1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pro_details .pro_head .pro_center .center .info .more:hover::after {
    width: 100%;
    border-radius: 0
}

.pro_details .pro_head .pro_center .center .info .phone {
    width: auto;
    height: auto;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.pro_details .pro_head .pro_center .center .info .phone .icon {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 50%;
    background: #da251d;
    margin-right: 15px;
    color: #fff
}

.pro_details .pro_head .pro_center .center .info .phone .icon i {
    font-size: 20px
}

.pro_details .pro_head .pro_center .center .info .phone .words {
    font-size: 14px;
    color: #333
}

.pro_details .pro_head .pro_center .center .info .phone .words span {
    font-size: 24px;
    color: #da251d
}

@media (max-width:1280px) {
    .pro_details .pro_head .pro_center .center .info .details {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .pro_details .pro_head .pro_center {
        margin: 20px 0 50px
    }

    .pro_details .pro_head .pro_center .center .images .swiper_box .pager {
        bottom: 20px
    }

    .pro_details .pro_head .pro_center .center .images .swiper_box .pager span {
        width: 8px;
        height: 8px
    }

    .pro_details .pro_head .pro_center .center .info {
        padding-left: 40px
    }

    .pro_details .pro_head .pro_center .center .info .title_box .subtitle {
        font-size: 16px
    }

    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 24px
    }

    .pro_details .pro_head .pro_center .center .info .details {
        margin-top: 20px;
        font-size: 14px
    }
}

@media (max-width:990px) {
    .pro_details .pro_head .pro_center .center .images {
        width: 100%
    }

    .pro_details .pro_head .pro_center .center .info {
        width: 100%;
        height: auto;
        position: relative;
        margin: 30px 0 0;
        padding: 0
    }
}

@media (max-width:768px) {
    .pro_details .pro_head .pro_center .center .info .title_box .subtitle {
        font-size: 14px
    }

    .pro_details .pro_head .pro_center .center .info .title_box .title {
        font-size: 20px
    }

    .pro_details .pro_head .pro_center .center .info .details {
        font-size: 12px
    }

    .pro_details .pro_head .pro_center .center .info .more {
        width: 120px
    }

    .pro_details .pro_head .pro_center .center .info .more a .icon {
        margin-right: 10px
    }

    .pro_details .pro_head .pro_center .center .info .more a .icon i {
        font-size: 14px
    }

    .pro_details .pro_head .pro_center .center .info .more a .words {
        font-size: 12px
    }
}

.pro_details .product_link {
    width: 100%;
    height: auto;
    background: #fff;
    position: sticky;
    top: 120px;
    z-index: 10;
    overflow: hidden
}

.pro_details .product_link::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #d3d3d3
}

.pro_details .product_link .center {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.pro_details .product_link .center .links {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.pro_details .product_link .center .links a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: sy_m;
    font-size: 20px;
    color: #999;
    margin-right: 3vw;
    position: relative;
    z-index: 1
}

.pro_details .product_link .center .links a::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pro_details .product_link .center .links a.active,
.pro_details .product_link .center .links a:hover {
    color: #da251d
}

.pro_details .product_link .center .links a.active::after,
.pro_details .product_link .center .links a:hover::after {
    width: 100%
}

.pro_details .product_link .center .product_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: none
}

.pro_details .product_link .center .product_btn a {
    height: 40px;
    padding: 0 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #666;
    margin-right: 20px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.pro_details .product_link .center .product_btn a i {
    font-size: 20px;
    margin-right: 15px;
    vertical-align: middle
}

.pro_details .product_link .center .product_btn a.active {
    background: #da251d
}

.pro_details .product_link .center .product_btn a:hover {
    background: #da251d;
    border-radius: 25px
}

.pro_details .product_link .center .product_btn a:last-child {
    margin-right: 0
}

@media (max-width:1024px) {
    .pro_details .product_link .center .links {
        height: 60px
    }

    .pro_details .product_link .center .links a {
        font-size: 18px;
        margin-right: 20px
    }

    .pro_details .product_link .center .product_btn a {
        font-size: 14px
    }

    .pro_details .product_link .center .product_btn a i {
        font-size: 14px;
        margin-right: 10px
    }
}

@media (max-width:768px) {
    .pro_details .product_link .center .links {
        width: 100%;
        height: 50px
    }

    .pro_details .product_link .center .links a {
        font-size: 16px;
        padding: 0
    }
}

@media (max-width:1440px) {
    .pro_details .product_link {
        top: 100px
    }
}

@media (max-width:1280px) {
    .pro_details .product_link {
        top: 80px
    }
}

@media (max-width:990px) {
    .pro_details .product_link {
        top: 60px
    }
}

@media (max-width:768px) {
    .pro_details .product_link .center .product_btn {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 20
    }

    .pro_details .product_link .center .product_btn a {
        width: 50%;
        height: 50px;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        font-size: 16px
    }

    .pro_details .product_link .center .product_btn a i {
        font-size: 16px
    }
}

.pro_details .product_text {
    width: 100%;
    height: auto;
    overflow: hidden
}

.pro_details .product_text .center {
    width: 100%;
    height: auto;
    margin: 3vw auto;
    overflow: hidden
}

.pro_details .product_text .center .text_details {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    overflow: hidden
}

.pro_details .product_text .center .text_details b {
    font-family: sy_m;
    font-weight: initial
}

.pro_details .product_text .center .text_details p {
    margin: 15px 0 0
}

.pro_details .product_text .center .text_details p:first-child {
    margin: 0
}

.pro_details .product_text .center .text_details img {
    vertical-align: middle;
    max-width: 100%
}

.pro_details .product_text .center .text_details table {
    font-size: 18px;
    width: 100%;
    color: #666;
    border-width: 1px;
    border-color: #d8dcdd;
    border-collapse: collapse
}

.pro_details .product_text .center .text_details table th {
    border-width: 1px;
    padding: 15px 1.5vw;
    border-style: solid;
    border-color: #d8dcdd;
    text-align: left;
    vertical-align: middle;
    background: #f5f5f5;
    color: #111;
    font-weight: 400
}

.pro_details .product_text .center .text_details table td {
    font-size: 16px;
    border-width: 1px;
    padding: 15px 1.5vw;
    border-style: solid;
    border-color: #d8dcdd;
    text-align: left;
    vertical-align: middle
}

@media (max-width:1024px) {
    .pro_details .product_text .center {
        margin: 30px 0 40px
    }

    .pro_details .product_text .center .text_details {
        font-size: 14px
    }

    .pro_details .product_text .center .text_details table {
        font-size: 16px
    }

    .pro_details .product_text .center .text_details table td {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .pro_details .product_text .center .text_details table {
        font-size: 14px
    }

    .pro_details .product_text .center .text_details table td {
        font-size: 12px
    }
}

.product_good {
    width: 100%;
    height: auto;
    padding: 5.2vw 0;
    background: #fafafa;
    overflow: hidden
}

.product_good .good_box {
    width: 100%;
    height: auto;
    margin-top: 4vw;
    overflow: hidden
}

.product_good .good_box .good_list {
    width: 100%;
    height: auto;
    margin-top: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.product_good .good_box .good_list .img {
    width: 48%;
    height: auto;
    font-size: 0
}

.product_good .good_box .good_list .items {
    width: 48%;
    height: 100%;
    align-self: center
}

.product_good .good_box .good_list .items .item {
    margin-top: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.product_good .good_box .good_list .items .item .number {
    width: 3vw;
    font-size: 0
}

.product_good .good_box .good_list .items .item .info {
    flex: 1;
    margin-left: 20px
}

.product_good .good_box .good_list .items .item .info .title {
    font-size: 24px;
    line-height: 1.5;
    color: #111
}

.product_good .good_box .good_list .items .item .info .title span {
    color: #da251d
}

.product_good .good_box .good_list .items .item .info .details {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #999
}

.product_good .good_box .good_list .items .item:first-child {
    margin: 0
}

@media (max-width:1440px) {
    .product_good .good_box .good_list .items .item .info .title {
        font-size: 22px
    }

    .product_good .good_box .good_list .items .item .info .details {
        font-size: 15px
    }
}

@media (max-width:1280px) {
    .product_good .good_box .good_list .items .item .info .title {
        font-size: 20px
    }

    .product_good .good_box .good_list .items .item .info .details {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .product_good .good_box .good_list {
        margin-top: 30px
    }

    .product_good .good_box .good_list .items .item {
        margin-top: 20px
    }

    .product_good .good_box .good_list .items .item .number {
        width: 20px
    }

    .product_good .good_box .good_list .items .item .info .title {
        font-size: 18px
    }
}

@media (max-width:768px) {
    .product_good .good_box .good_list {
        display: block
    }

    .product_good .good_box .good_list .img {
        width: 100%
    }

    .product_good .good_box .good_list .items {
        width: 100%;
        margin-top: 30px
    }

    .product_good .good_box .good_list .items .item {
        margin-top: 30px
    }

    .product_good .good_box .good_list .items .item .number {
        width: 30px
    }
}

@media (max-width:768px) {
    .product_good .good_box .good_list .items .item .info .title {
        font-size: 16px
    }

    .product_good .good_box .good_list .items .item .info .details {
        font-size: 12px
    }
}

.product_good .good_box .good_list:first-child {
    margin: 0
}

.product_good .good_box .good_list:nth-child(2n) {
    flex-direction: row-reverse
}

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

    .product_good .good_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .product_good {
        padding: 40px 0
    }

    .product_good .good_box {
        margin-top: 30px
    }
}

.page_oem {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_oem::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/line_bg2.png) no-repeat bottom / cover;
    background-attachment: fixed;
    opacity: .05
}

.page_oem .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.page_oem .center .oem_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_oem .center .oem_box .img {
    width: 50%
}

.page_oem .center .oem_box .info {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
   
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden
}
.page_oem .center .oem_box .info {
    right: 0;
    padding-left: 3vw;
}
.page_oem .center .oem_box2 .img{
    float: right;
}
.page_oem .center .oem_box2 .info {
    left: 0;
    padding-right: 3vw;
}
.page_oem .center .oem_box .info .details {
    margin-top: 2vw;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    overflow: hidden
}

.page_oem .center .oem_box .info .details p {
    margin-top: 15px
}

.page_oem .center .oem_box .info .details p:first-child {
    margin-top: 0
}

@media (max-width:1280px) {
    .page_oem .center .oem_box .info .details {
        font-size: 16px
    }
}

@media (max-width:1024px) {
    .page_oem .center .oem_box .info {
        width: 100%;
        height: auto;
        position: relative;
        padding: 0
    }

    .page_oem .center .oem_box .info .details {
        margin-top: 30px;
        font-size: 14px
    }

    .page_oem .center .oem_box .img {
        width: 100%;
        margin-top: 30px
    }
}

@media (max-width:1024px) {
    .page_oem .center {
        margin: 40px 0
    }
}

.page_make {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_make .center {
    width: 100%;
    height: auto;
    margin: 4vw auto
}

.page_make .center .make_list {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    overflow: hidden
}

.page_make .center .make_list .item {
    width: 30%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_make .center .make_list .item .details {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 2;
    padding: 20px;
    font-size: 16px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_make .center .make_list .item .img {
    width: 100%;
    height: auto;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.page_make .center .make_list .item .img .pb {
    padding-bottom: 66.5%
}

.page_make .center .make_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page_make .center .make_list .item:hover .details {
    bottom: 0;
    opacity: 1
}

@media (max-width:1024px) {
    .page_make .center .make_list {
        margin-top: 30px
    }

    .page_make .center .make_list .item .details {
        padding: 10px;
        font-size: 14px
    }
}

@media (max-width:990px) {
    .page_make .center .make_list .item .details {
        position: relative;
        bottom: 0;
        background: 0 0;
        color: #666;
        margin-top: 10px;
        padding: 0;
        opacity: 1;
        text-align: center
    }
}

@media (max-width:1024px) {
    .page_make .center {
        margin: 40px 0
    }
}

.page_process {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    overflow: hidden
}

.page_process .center {
    width: 100%;
    height: auto;
    margin: 4vw auto
}

.page_process .center .page_title {
    text-align: center
}

.page_process .center .page_title .line::after {
    margin: 0 auto
}

.page_process .center .process_table {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_process .center .process_table .table_item {
    width: calc(50% - 1.5vw)
}

.page_process .center .process_table .table_item table {
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center
}

.page_process .center .process_table .table_item table th {
    padding: 15px;
    background: #da251d;
    font-size: 16px;
    color: #fff;
    vertical-align: middle
}

.page_process .center .process_table .table_item table td {
    padding: 15px;
    font-size: 16px;
    color: #999;
    vertical-align: middle
}

@media (max-width:1024px) {
    .page_process .center .process_table {
        margin-top: 30px
    }
}

@media (max-width:768px) {
    .page_process .center .process_table {
        display: block
    }

    .page_process .center .process_table .table_item {
        width: 100%;
        margin-top: 20px
    }

    .page_process .center .process_table .table_item table th {
        width: 25%;
        font-size: 14px
    }

    .page_process .center .process_table .table_item table td {
        font-size: 14px
    }

    .page_process .center .process_table .table_item:first-child {
        margin: 0
    }
}

@media (max-width:480px) {
    .page_process .center .process_table .table_item table th {
        padding: 10px;
        font-size: 12px
    }

    .page_process .center .process_table .table_item table td {
        font-size: 12px;
        padding: 10px
    }
}

@media (max-width:1024px) {
    .page_process .center {
        margin: 40px 0
    }
}

.page_quality {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_quality .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    overflow: hidden
}

.page_quality .center .quality_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 3vw;
    overflow: hidden
}

.page_quality .center .quality_box .quality_img {
    width: 50%;
    height: auto;
    position: relative;
    z-index: 2
}

.page_quality .center .quality_box .quality_img .pb {
    padding-bottom: 70%;
    z-index: 1
}

.page_quality .center .quality_box .quality_img .swiper_box {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.page_quality .center .quality_box .quality_img .swiper_box ul li {
    pointer-events: initial !important;
    font-size: 0
}

.page_quality .center .quality_box .quality_img .swiper_box ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page_quality .center .quality_box .quality_img .quality_btn {
    width: 3.6vw;
    height: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    margin-top: -1.5vw;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.page_quality .center .quality_box .quality_img .quality_btn i {
    font-size: 24px
}

.page_quality .center .quality_box .quality_img .quality_btn.next {
    right: -3.6vw
}

.page_quality .center .quality_box .quality_img .quality_btn:hover {
    background: #da251d
}

.page_quality .center .quality_box .quality_text {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding-left: 3.6vw;
    background: #f5f5f5
}

.page_quality .center .quality_box .quality_text ul {
    width: 100%;
    height: 100%
}

.page_quality .center .quality_box .quality_text ul li {
    width: 100%;
    height: 100%;
    padding: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.page_quality .center .quality_box .quality_text ul li .title {
    font-family: sy_m;
    font-size: 30px
}

.page_quality .center .quality_box .quality_text ul li .details {
    margin-top: 1vw;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    overflow: hidden;
    overflow-y: auto
}

.page_quality .center .quality_box .quality_text ul li .details p {
    margin-top: 10px
}

.page_quality .center .quality_box .quality_text ul li .details p:first-child {
    margin: 0
}

@media (max-width:1440px) {
    .page_quality .center .quality_box .quality_img .quality_btn {
        width: 60px;
        height: 50px;
        margin-top: -30px
    }

    .page_quality .center .quality_box .quality_img .quality_btn i {
        font-size: 20px
    }

    .page_quality .center .quality_box .quality_img .quality_btn.next {
        right: -60px
    }

    .page_quality .center .quality_box .quality_text {
        padding-left: 60px
    }

    .page_quality .center .quality_box .quality_text ul li .title {
        font-size: 24px
    }
}

@media (max-width:1280px) {
    .page_quality .center .quality_box .quality_img .quality_btn {
        width: 50px;
        height: 50px;
        margin-top: -25px
    }

    .page_quality .center .quality_box .quality_img .quality_btn i {
        font-size: 16px
    }

    .page_quality .center .quality_box .quality_img .quality_btn.next {
        right: -50px
    }

    .page_quality .center .quality_box .quality_text {
        padding-left: 50px
    }

    .page_quality .center .quality_box .quality_text ul li .title {
        font-size: 20px
    }

    .page_quality .center .quality_box .quality_text ul li .details {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .page_quality .center .quality_box {
        margin-top: 30px
    }

    .page_quality .center .quality_box .quality_img .quality_btn {
        width: 40px;
        height: 40px;
        margin-top: -20px
    }

    .page_quality .center .quality_box .quality_img .quality_btn i {
        font-size: 14px
    }

    .page_quality .center .quality_box .quality_img .quality_btn.next {
        right: -40px
    }

    .page_quality .center .quality_box .quality_text {
        padding-left: 40px
    }

    .page_quality .center .quality_box .quality_text ul li {
        padding: 30px 20px;
        padding-right: 10px
    }
}

@media (max-width:768px) {
    .page_quality .center .quality_box .quality_img {
        width: 100%
    }

    .page_quality .center .quality_box .quality_img .quality_btn i {
        font-size: 14px
    }

    .page_quality .center .quality_box .quality_img .quality_btn.prev {
        right: auto;
        left: 0
    }

    .page_quality .center .quality_box .quality_img .quality_btn.next {
        right: 0
    }

    .page_quality .center .quality_box .quality_text {
        width: 100%;
        height: auto;
        position: initial;
        padding: 0
    }

    .page_quality .center .quality_box .quality_text ul {
        height: auto
    }

    .page_quality .center .quality_box .quality_text ul li {
        height: auto;
        max-height: 200px;
        padding: 20px
    }

    .page_quality .center .quality_box .quality_text ul li .title {
        font-size: 16px
    }

    .page_quality .center .quality_box .quality_text ul li .details {
        margin-top: 20px;
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .page_quality .center {
        margin: 40px 0
    }
}

.page_workshop {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    overflow: hidden
}

.page_workshop .center {
    width: 100%;
    height: auto;
    margin: 4vw auto
}

.page_workshop .center .workshop_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_workshop .center .workshop_box ul {
    width: 100%;
    height: auto
}

.page_workshop .center .workshop_box ul li {
    width: 0;
    height: auto;
    background: #fff;
    overflow: hidden
}

.page_workshop .center .workshop_box ul li .pb {
    padding-bottom: 70%
}

.page_workshop .center .workshop_box ul li img {
    vertical-align: middle
}

.page_workshop .center .workshop_box .workshop_btn {
    width: 40px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    z-index: 2;
    margin-top: -30px;
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.page_workshop .center .workshop_box .workshop_btn i {
    font-size: 24px
}

.page_workshop .center .workshop_box .workshop_btn.prev {
    left: 0
}

.page_workshop .center .workshop_box .workshop_btn.next {
    right: 0
}

.page_workshop .center .workshop_box .workshop_btn:hover {
    background: #da251d
}

@media (max-width:1024px) {
    .page_workshop .center .workshop_box {
        margin-top: 30px
    }
}

@media (max-width:768px) {
    .page_workshop .center .workshop_box .workshop_btn {
        /* display: none */
    }
}

@media (max-width:1024px) {
    .page_workshop .center {
        margin: 40px 0
    }
}

.page_about {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_about .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    overflow: hidden
}

.page_about .center .page_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_about .center .page_box .img {
    width: 50%;
    height: auto;
    font-size: 0;
    text-align: center;
    overflow: hidden
}

.page_about .center .page_box .info {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 3vw;
    overflow: hidden
}

.page_about .center .page_box .info .details {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    padding-right: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    overflow-y: auto
}

.page_about .center .page_box .info .details p {
    margin-top: 15px
}

.page_about .center .page_box .info .details p:first-child {
    margin: 0
}

.page_about .center .page_number {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5vw;
    overflow: hidden
}

.page_about .center .page_number .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
    border-radius: 0 50px;
    overflow: hidden
}

.page_about .center .page_number .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #da251d;
    opacity: .04
}

.page_about .center .page_number .item .icon i {
    font-size: 40px;
    color: #da251d
}

.page_about .center .page_number .item .info {
    margin-top: 10px
}

.page_about .center .page_number .item .info .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #111
}

.page_about .center .page_number .item .info .number .beat {
    font-size: 40px;
    line-height: 1;
    margin-right: 5px
}

.page_about .center .page_number .item .info .number .sup {
    font-size: 18px
}

.page_about .center .page_number .item .info .title {
    margin-top: 5px;
    font-size: 16px;
    color: #666
}

@media (max-width:1440px) {
    .page_about .center .page_number .item .icon i {
        font-size: 36px
    }

    .page_about .center .page_number .item .info .number .beat {
        font-size: 36px
    }
}

@media (max-width:1280px) {
    .page_about .center .page_number .item {
        border-radius: 0 40px
    }

    .page_about .center .page_number .item .icon i {
        font-size: 30px
    }

    .page_about .center .page_number .item .info .number .beat {
        font-size: 30px
    }

    .page_about .center .page_number .item .info .number .sup {
        font-size: 16px
    }

    .page_about .center .page_number .item .info .title {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .page_about .center {
        margin: 40px 0
    }

    .page_about .center .page_box .img {
        width: 100%;
        margin-top: 30px
    }

    .page_about .center .page_box .info {
        width: 100%;
        position: initial;
        padding: 0
    }

    .page_about .center .page_box .info .details {
        font-size: 14px;
        margin-top: 30px;
        padding: 0
    }

    .page_about .center .page_number {
        margin-top: 30px;
        grid-gap: 1px
    }

    .page_about .center .page_number .item {
        border-radius: 0
    }

    .page_about .center .page_number .item .icon i {
        font-size: 26px
    }

    .page_about .center .page_number .item .info .number .beat {
        font-size: 26px
    }

    .page_about .center .page_number .item .info .number .sup {
        font-size: 14px
    }
}

@media (max-width:480px) {
    .page_about .center .page_box .info .details {
        font-size: 12px
    }

    .page_about .center .page_number {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr)
    }

    .page_about .center .page_number .item:first-child {
        /* grid-column: span 2 */
    }

    .page_about .center .page_number .item .icon i {
        font-size: 24px
    }

    .page_about .center .page_number .item .info .number .beat {
        font-size: 20px
    }

    .page_about .center .page_number .item .info .number .sup {
        font-size: 12px
    }

    .page_about .center .page_number .item .info .title {
        font-size: 12px
    }
}

.page_culture {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: no-repeat center / cover;
    background-attachment: fixed;
    overflow: hidden
}

.page_culture .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_culture .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_culture .center {
        margin: 40px 0
    }
}

.page_culture .center .page_title .subtitle,
.page_culture .center .page_title .title {
    color: #fff
}

.page_culture .center .page_title .line::after {
    background: #fff
}

.page_culture .center .culture_list {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5vw;
    overflow: hidden
}

.page_culture .center .culture_list .item {
    width: 100%;
    height: auto;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 2vw;
    text-align: center;
    border-radius: 0 50px;
    overflow: hidden
}

.page_culture .center .culture_list .item .title {
    font-family: sy_m;
    padding-bottom: 15px;
    font-size: 20px
}

.page_culture .center .culture_list .item .details {
    font-size: 16px;
    line-height: 1.6;
    opacity: .6
}

.page_culture .center .culture_list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    opacity: .1
}

@media (max-width:1024px) {
    .page_culture .center .culture_list {
        margin-top: 40px;
        grid-gap: 1px
    }

    .page_culture .center .culture_list .item {
        border-radius: 0;
        padding: 30px 20px
    }

    .page_culture .center .culture_list .item .title {
        font-size: 18px
    }

    .page_culture .center .culture_list .item .details {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_culture .center .culture_list {
        margin-top: 30px
    }
}

@media (max-width:480px) {
    .page_culture .center .culture_list {
        grid-template-columns: repeat(2, 1fr)
    }

    .page_culture .center .culture_list .item:first-child {
        grid-column: span 2
    }

    .page_culture .center .culture_list .item {
        padding: 20px 15px
    }

    .page_culture .center .culture_list .item .title {
        padding-bottom: 10px;
        font-size: 16px
    }

    .page_culture .center .culture_list .item .details {
        font-size: 12px
    }
}

.page_history {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_history .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_history .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_history .center {
        margin: 40px 0
    }
}

.page_history .center .history_title {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_history .center .history_title .history_info {
    width: 65%;
    max-width: 700px;
    height: auto
}

.page_history .center .history_title .history_info .title {
    font-family: sy_m;
    font-size: 24px;
    color: #da251d
}

.page_history .center .history_title .history_info .details {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.66
}

.page_history .center .history_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_history .center .history_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_history .center .history_box {
        margin-top: 30px
    }
}

.page_history .center .history_box .year_box {
    width: 100%;
    height: auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_history .center .history_box .year_box .year_main {
    width: 100%;
    height: auto;
    padding: 0 10px;
    overflow: hidden
}

.page_history .center .history_box .year_box .year_main ul {
    padding: 20px 0
}

.page_history .center .history_box .year_box .year_main ul li {
    width: 20%;
    position: relative;
    z-index: 1;
    cursor: pointer
}

.page_history .center .history_box .year_box .year_main ul li::before,
.page_history .center .history_box .year_box .year_main ul li::after {
    content: '';
    width: 110%;
    height: 110%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    box-sizing: border-box
}

.page_history .center .history_box .year_box .year_main ul li::before {
    z-index: -1
}

.page_history .center .history_box .year_box .year_main ul li::after {
    z-index: -2;
    border: 1px dashed #d9d9d9
}

.page_history .center .history_box .year_box .year_main ul li .ab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 24px;
    color: #111;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_history .center .history_box .year_box .year_main ul li:hover,
.page_history .center .history_box .year_box .year_main ul li.active {
    z-index: 2
}

.page_history .center .history_box .year_box .year_main ul li:hover::before,
.page_history .center .history_box .year_box .year_main ul li.active::before {
    background: #da251d
}

.page_history .center .history_box .year_box .year_main ul li:hover::after,
.page_history .center .history_box .year_box .year_main ul li.active::after {
    opacity: 0
}

.page_history .center .history_box .year_box .year_main ul li:hover .ab,
.page_history .center .history_box .year_box .year_main ul li.active .ab {
    color: #fff
}

.page_history .center .history_box .year_box .year_btn {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px dashed #d9d9d9;
    position: absolute;
    top: 50%;
    z-index: 2;
    margin-top: -30px;
    color: #d9d9d9;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.page_history .center .history_box .year_box .year_btn i {
    font-size: 18px
}

.page_history .center .history_box .year_box .year_btn.prev {
    left: 0
}

.page_history .center .history_box .year_box .year_btn.next {
    right: 0
}

.page_history .center .history_box .year_box .year_btn:hover {
    background: #da251d;
    border-color: #da251d;
    border-style: solid;
    color: #fff
}

.page_history .center .history_box .swiper_box {
    width: 100%;
    height: auto;
    margin-top: 2vw;
    overflow: hidden
}

.page_history .center .history_box .swiper_box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.page_history .center .history_box .swiper_box ul li .year {
    font-size: 24px;
    color: #111;
    position: relative;
    z-index: 1;
    padding-left: 40px
}

.page_history .center .history_box .swiper_box ul li .year::after {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: calc(.5em - 2px);
    left: 0;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid #d9d9d9
}

.page_history .center .history_box .swiper_box ul li .details {
    flex: 1;
    margin-left: 3vw;
    font-size: 24px;
    font-family: sy_m;
    color: #333
}

.page_history .center .history_box .swiper_box ul li .details p {
    margin-top: 10px;
    padding-left: 60px;
    position: relative;
    z-index: 1
}

.page_history .center .history_box .swiper_box ul li .details p::after {
    content: '';
    width: 40px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    margin-top: 1px;
    background: #d9d9d9
}

.page_history .center .history_box .swiper_box ul li .details p:first-child {
    margin: 0
}

@media (max-width:1440px) {
    .page_history .center .history_box .swiper_box ul li .details {
        font-size: 22px
    }
}

@media (max-width:1280px) {
    .page_history .center .history_box .swiper_box ul li .details {
        font-size: 20px
    }
}

@media (max-width:1024px) {
    .page_history .center .history_box .swiper_box {
        margin-top: 30px
    }

    .page_history .center .history_box .swiper_box ul li .year {
        font-size: 20px
    }

    .page_history .center .history_box .swiper_box ul li .year::after {
        width: 10px;
        height: 10px
    }

    .page_history .center .history_box .swiper_box ul li .details {
        font-size: 18px
    }
}

@media (max-width:990px) {
    .page_history .center .history_box .year_box {
        padding: 0 60px
    }

    .page_history .center .history_box .year_box .year_main {
        padding: 0
    }

    .page_history .center .history_box .year_box .year_main ul {
        padding: 0
    }

    .page_history .center .history_box .year_box .year_main ul li::before,
    .page_history .center .history_box .year_box .year_main ul li::after {
        width: 100%;
        height: 100%
    }

    .page_history .center .history_box .year_box .year_btn {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        border: 0;
        background: #ccc;
        color: #fff
    }

    .page_history .center .history_box .year_box .year_btn i {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_history .center .history_box .year_box {
        padding: 0 50px
    }

    .page_history .center .history_box .year_box .year_main ul li .ab {
        font-size: 16px
    }

    .page_history .center .history_box .year_box .year_btn {
        width: 30px;
        height: 30px;
        margin-top: -15px
    }

    .page_history .center .history_box .year_box .year_btn i {
        font-size: 12px
    }

    .page_history .center .history_box .swiper_box {
        margin-top: 30px
    }

    .page_history .center .history_box .swiper_box ul li {
        display: block
    }

    .page_history .center .history_box .swiper_box ul li .year {
        color: #da251d;
        padding-left: 30px
    }

    .page_history .center .history_box .swiper_box ul li .details {
        margin: 10px 0 0;
        font-size: 14px
    }

    .page_history .center .history_box .swiper_box ul li .details p {
        margin-top: 5px;
        padding-left: 30px
    }

    .page_history .center .history_box .swiper_box ul li .details p::after {
        display: none
    }
}

@media (max-width:480px) {
    .page_history .center .history_box .swiper_box ul li .details {
        font-size: 14px
    }
}

@media (max-width:1024px) {
    .page_history .center .history_title .page_title {
        text-align: left
    }

    .page_history .center .history_title .page_title .line::after {
        margin: 0
    }

    .page_history .center .history_title .history_info .title {
        font-size: 20px
    }

    .page_history .center .history_title .history_info .details {
        font-size: 14px
    }
}

@media (max-width:990px) {
    .page_history .center .history_title {
        display: block
    }

    .page_history .center .history_title .history_info {
        width: 100%;
        max-width: 100%;
        margin-top: 30px
    }

    .page_history .center .history_title .history_info .title {
        font-size: 20px
    }

    .page_history .center .history_title .history_info .details {
        margin-top: 15px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_history .center .history_title .history_info {
        margin-top: 20px
    }

    .page_history .center .history_title .history_info .title {
        font-size: 16px
    }

    .page_history .center .history_title .history_info .details {
        margin-top: 10px
    }
}

.page_honor {
    width: 100%;
    height: auto;
    background: #fff;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    z-index: 1
}

.page_honor::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/line_bg.png) no-repeat center / cover;
    background-attachment: fixed;
    opacity: .08
}

.page_honor .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    z-index: 3;
    overflow: hidden;
    position: relative;
    z-index: 2
}

@media (max-width:1024px) {
    .page_honor .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_honor .center {
        margin: 40px 0
    }
}

.page_honor .center .honor_title {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_honor .center .honor_title .honor_tab {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.page_honor .center .honor_title .honor_tab span {
    margin-right: 20px;
    padding: 15px 2vw;
    line-height: 1;
    border-radius: 0 20px;
    background: #999;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_honor .center .honor_title .honor_tab span:last-child {
    margin-right: 0
}

.page_honor .center .honor_title .honor_tab span.active,
.page_honor .center .honor_title .honor_tab span:hover {
    background: #da251d
}

.page_honor .center .honor_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_honor .center .honor_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_honor .center .honor_box {
        margin-top: 30px
    }
}

.page_honor .center .honor_box .honor_main {
    width: 100%;
    height: auto
}

.page_honor .center .honor_box .honor_main .honor_list {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_honor .center .honor_box .honor_main .honor_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.page_honor .center .honor_box .honor_main .honor_list ul li {
    width: 20%;
    height: auto;
    background: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_honor .center .honor_box .honor_main .honor_list ul li .img {
    width: 100%;
    height: auto;
    text-align: center;
    overflow: hidden
}

.page_honor .center .honor_box .honor_main .honor_list ul li .img .pb {
    padding-bottom: 141.5%
}

.page_honor .center .honor_box .honor_main .honor_list ul li .img .ab {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_honor .center .honor_box .honor_main .honor_list ul li .img img {
    vertical-align: middle
}

.page_honor .center .honor_box .honor_main .honor_list ul li .title {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    text-align: center;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_honor .center .honor_box .honor_main .honor_list ul li .title::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #000;
    opacity: .5;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_honor .center .honor_box .honor_main .honor_list ul li:hover .img .ab {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}

.page_honor .center .honor_box .honor_main .honor_list ul li:hover .title::after {
    background: #da251d
}

@media (max-width:1024px) {
    .page_honor .center {
        margin: 50px 0
    }

    .page_honor .center .honor_title .page_title {
        text-align: left
    }

    .page_honor .center .honor_title .page_title .line::after {
        margin: 0
    }

    .page_honor .center .honor_title .honor_tab span {
        padding: 10px 15px;
        border-radius: 0 10px;
        font-size: 16px
    }

    .page_honor .center .honor_box .honor_main .honor_list ul li .title {
        padding: 8px 15px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_honor .center {
        margin: 40px 0
    }

    .page_honor .center .honor_title {
        display: block
    }

    .page_honor .center .honor_title .honor_tab {
        margin-top: 20px
    }

    .page_honor .center .honor_title .honor_tab span {
        margin-right: 10px;
        font-size: 14px;
        border-radius: 0
    }
}

.page_team {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_team .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_team .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_team .center {
        margin: 40px 0
    }
}

.page_team .center .team_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #f5f5f5
}
.team_img_list li{
    float: left;
    width: 24%;
    margin-right: 1%;
}
.team_img_list li:nth-child(2n-1){
    margin-right: 0;
}
.team_img_list li:nth-child(2),.team_img_list li:nth-child(3){
    margin-bottom: 2%;
}
.team_img_list li:first-child{
    width: 50%;
    margin-right: 1%;
    margin-bottom: 2%

}
@media screen and (max-width:800px) {
    .team_img_list li:first-child{
        width: 100%;
        margin-right: 0%;
    }
    .team_img_list li{
        width: 49%;
        margin-right: 2%;
    }
    .team_img_list li:nth-child(2n+1){
        margin-right: 0;
    }
}
@media (max-width:1024px) {
    .page_team .center .team_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_team .center .team_box {
        margin-top: 30px
    }
}

.page_team .center .team_box .team_images {
    width: 50%;
    height: auto;
    overflow: hidden
}

.page_team .center .team_box .team_images .pb {
    padding-bottom: 70%
}

.page_team .center .team_box .team_images .swiper_box {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.page_team .center .team_box .team_images .swiper_box ul {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.page_team .center .team_box .team_images .swiper_box ul li {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.page_team .center .team_box .team_images .swiper_box ul li img {
    vertical-align: middle
}

.page_team .center .team_box .team_main {
    width: 50%;
    height: 100%;
    padding: 2vw 2.6vw;
    padding-right: 2vw;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden
}

.page_team .center .team_box .team_main .content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_team .center .team_box .team_main .team_text {
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden
}

.page_team .center .team_box .team_main .team_text ul {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.page_team .center .team_box .team_main .team_text ul li {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column
}

.page_team .center .team_box .team_main .team_text ul li .title {
    font-family: sy_m;
    font-size: 24px;
    color: #da251d
}

.page_team .center .team_box .team_main .team_text ul li .details {
    margin-top: 20px;
    padding-right: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    overflow: hidden;
    overflow-y: auto
}

.page_team .center .team_box .team_main .team_text ul li .details p {
    margin-top: 10px
}

.page_team .center .team_box .team_main .team_text ul li .details p:first-child {
    margin: 0
}

.page_team .center .team_box .team_main .pager {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.page_team .center .team_box .team_main .team_btn {
    width: 50px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(0, 0, 0, .2);
    color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer
}

.page_team .center .team_box .team_main .team_btn i {
    font-size: 14px
}

.page_team .center .team_box .team_main .team_btn.next {
    margin-left: 1px;
    background: #da251d
}

.page_team .center .team_box .team_main .team_btn:hover {
    background: #da251d
}

@media (max-width:1024px) {
    .page_team .center .team_box .team_main {
        padding: 20px;
        padding-right: 10px
    }

    .page_team .center .team_box .team_main .team_text ul li .title {
        font-size: 20px
    }

    .page_team .center .team_box .team_main .team_text ul li .details {
        margin-top: 10px;
        font-size: 14px
    }
}

@media (max-width:990px) {
    .page_team .center .team_box .team_images {
        width: 100%
    }

    .page_team .center .team_box .team_main {
        width: 100%;
        height: auto;
        position: relative
    }

    .page_team .center .team_box .team_main .content {
        height: auto
    }

    .page_team .center .team_box .team_main .team_text {
        height: auto;
        position: relative
    }

    .page_team .center .team_box .team_main .team_text ul {
        height: auto
    }

    .page_team .center .team_box .team_main .team_text ul li {
        height: auto
    }

    .page_team .center .team_box .team_main .team_text ul li .details {
        height: 180px
    }
}

@media (max-width:768px) {
    .page_team .center .team_box .team_main .team_text ul li .title {
        font-size: 18px
    }

    .page_team .center .team_box .team_main .team_btn {
        width: 36px;
        height: 30px
    }
}

@media (max-width:480px) {
    .page_team .center .team_box .team_main .team_text ul li .title {
        font-size: 16px
    }

    .page_team .center .team_box .team_main .team_text ul li .details {
        font-size: 12px
    }
}

.page_process {
    width: 100%;
    height: auto;
    font-size: 0;
    text-align: center;
    overflow: hidden
}

.page_partner {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_partner .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_partner .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_partner .center {
        margin: 40px 0
    }
}

.page_partner .center .page_title {
    max-width: 1400px;
    text-align: center
}

.page_partner .center .partner_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_partner .center .partner_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_partner .center .partner_box {
        margin-top: 30px
    }
}

.page_partner .center .partner_box .partner_swiper {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_partner .center .partner_box .partner_swiper ul {
    width: 100%;
    height: auto;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear
}

.page_partner .center .partner_box .partner_swiper ul li {
    padding: 10px;
    text-align: center;
    cursor: pointer
}

.page_partner .center .partner_box .partner_swiper ul li .pb {
    border: 1px solid #d9d9d9;
    padding-bottom: 37.87%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #fff
}

.page_partner .center .partner_box .partner_swiper ul li .ab {
    /*filter: brightness(0) invert(0.8);*/
    filter: none !important;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_partner .center .partner_box .partner_swiper ul li img {
    max-width: 98%;
    max-height: 98%;
    vertical-align: middle
}

.page_partner .center .partner_box .partner_swiper ul li:hover .pb {
    box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

.page_partner .center .partner_box .partner_swiper ul li:hover .ab {
    filter: none
}

@media (max-width:1024px) {
    .page_partner .center {
        margin: 40px 0
    }

    .page_partner .center .partner_box {
        margin-top: 30px
    }

    .page_partner .center .partner_box .partner_swiper ul li {
        padding: 5px
    }
}

.page_partner.active {
    background: #f5f5f5
}

.page_down {
    width: 100%;
    height: auto;
    padding: 2.6vw 0;
    background: #f5f5f5
}

.page_down .center {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_down .center .sidebar_box {
    width: 24%
}

.page_down .center .down_box {
    width: 72%;
    height: auto
}

.page_down .center .down_box .down_list {
    width: 100%;
    height: auto
}

.page_down .center .down_box .down_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5vw
}

.page_down .center .down_box .down_list ul li {
    width: 100%;
    height: auto;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.page_down .center .down_box .down_list ul li a {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden
}

.page_down .center .down_box .down_list ul li a .down_head {
    width: 100%;
    height: auto;
    padding: 20px 1vw 20px 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden
}

.page_down .center .down_box .down_list ul li a .down_head .icon {
    width: 58px;
    height: auto;
    color: #da251d;
    font-size: 0;
    filter: saturate(0);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_down .center .down_box .down_list ul li a .down_head .title {
    flex: 1;
    padding: 0 .5vw 0 1.5vw;
    font-size: 24px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

@media (max-width:1680px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 21px
    }
}

@media (max-width:1440px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 18px
    }
}

@media (max-width:1280px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 16px
    }
}

@media (max-width:1024px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 12.8px
    }
}

@media (max-width:1680px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 20px
    }
}

@media (max-width:1440px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 18px
    }
}

@media (max-width:1280px) {
    .page_down .center .down_box .down_list ul li a .down_head .title {
        font-size: 16px
    }
}

.page_down .center .down_box .down_list ul li a .down_body {
    width: 100%;
    height: auto;
    border-top: 1px solid #e9e9e9;
    padding: 10px 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.page_down .center .down_box .down_list ul li a .down_body .txt {
    font-size: 14px;
    color: #999
}

.page_down .center .down_box .down_list ul li a .down_body .icon {
    color: #999;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_down .center .down_box .down_list ul li a .down_body .icon i {
    font-size: 14px
}

.page_down .center .down_box .down_list ul li:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1)
}

.page_down .center .down_box .down_list ul li:hover a .down_head .icon {
    filter: none
}

.page_down .center .down_box .down_list ul li:hover a .down_head .title {
    padding: 0 0 0 2vw;
    color: #da251d
}

.page_down .center .down_box .down_list ul li:hover a .down_body .icon {
    color: #da251d
}

@media (max-width:1024px) {
    .page_down .center .down_box .down_list ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px
    }

    .page_down .center .down_box .down_list ul li a .down_head {
        padding: 20px
    }

    .page_down .center .down_box .down_list ul li a .down_head .icon {
        filter: none
    }

    .page_down .center .down_box .down_list ul li a .down_head .title {
        padding: 0 10px 0 20px
    }

    .page_down .center .down_box .down_list ul li a .down_body {
        padding: 10px 20px
    }

    .page_down .center .down_box .down_list ul li:hover a .down_head .title {
        padding: 0 0 0 30px
    }
}

@media (max-width:990px) {
    .page_down .center .down_box {
        width: 100%
    }
}

@media (max-width:768px) {
    .page_down .center .down_main .down_list ul {
        display: block
    }

    .page_down .center .down_main .down_list ul li {
        margin-top: 20px
    }

    .page_down .center .down_main .down_list ul li a .down_head .icon {
        width: 50px
    }

    .page_down .center .down_main .down_list ul li:first-child {
        margin: 0
    }

    .page_down .center .down_main .layui-laypage {
        margin-top: 30px
    }
}

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

.page_faq {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_faq .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_faq .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_faq .center {
        margin: 40px 0
    }
}

.page_faq .center .faq_box {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden
}

@media (max-width:1024px) {
    .page_faq .center .faq_box {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_faq .center .faq_box {
        margin-top: 30px
    }
}

.page_faq .center .faq_box .faq_list {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 1.5vw
}

.page_faq .center .faq_box .faq_list .item .title_box {
    width: 100%;
    height: auto;
    padding: 30px;
    background: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item .title_box .dot {
    font-family: sy_m;
    font-size: 20px;
    line-height: 1;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_faq .center .faq_box .faq_list .item .title_box .title {
    flex: 1;
    padding: 0 20px;
    font-family: sy_m;
    font-size: 20px;
    color: #333;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item .title_box .icon {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_faq .center .faq_box .faq_list .item .title_box .icon::before,
.page_faq .center .faq_box .faq_list .item .title_box .icon::after {
    content: '';
    position: absolute;
    z-index: 1;
    background: #999
}

.page_faq .center .faq_box .faq_list .item .title_box .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    transform: translateX(-50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_faq .center .faq_box .faq_list .item .title_box .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    margin-left: -1px
}

.page_faq .center .faq_box .faq_list .item .content {
    width: 100%;
    height: auto;
    display: none;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item .content .info {
    width: 100%;
    height: auto;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    border: 1px solid #f5f5f5;
    border-top: 0;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item .content .info .dot {
    font-family: sy_m;
    font-size: 20px;
    line-height: 1;
    color: #333
}

.page_faq .center .faq_box .faq_list .item .content .info .details {
    flex: 1;
    margin-left: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    overflow: hidden
}

.page_faq .center .faq_box .faq_list .item .content .info .details p {
    margin-top: 15px
}

.page_faq .center .faq_box .faq_list .item .content .info .details p:first-child {
    margin: 0
}

.page_faq .center .faq_box .faq_list .item:hover .title_box .dot,
.page_faq .center .faq_box .faq_list .item:hover .title_box .title {
    color: #da251d
}

.page_faq .center .faq_box .faq_list .item.active .title_box .dot,
.page_faq .center .faq_box .faq_list .item.active .title_box .title {
    color: #da251d
}

.page_faq .center .faq_box .faq_list .item.active .title_box .icon {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

.page_faq .center .faq_box .faq_list .item.active .title_box .icon::before {
    width: 0
}

.page_faq .center .faq_box .faq_list .item.active .title_box .icon::after {
    background: #da251d
}

.page_faq .center .faq_box .faq_list .item:first-child {
    margin: 0
}

@media (max-width:1024px) {

    .page_faq .center .faq_box .faq_list .item .title_box .dot,
    .page_faq .center .faq_box .faq_list .item .title_box .title {
        font-size: 18px
    }

    .page_faq .center .faq_box .faq_list .item .title_box .icon {
        width: 14px;
        height: 14px
    }

    .page_faq .center .faq_box .faq_list .item .content .info .dot {
        font-size: 18px
    }

    .page_faq .center .faq_box .faq_list .item .content .info .details {
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_faq .center .faq_box .faq_list .item .title_box {
        padding: 20px
    }

    .page_faq .center .faq_box .faq_list .item .title_box .dot,
    .page_faq .center .faq_box .faq_list .item .title_box .title {
        font-size: 16px
    }

    .page_faq .center .faq_box .faq_list .item .title_box .title {
        padding: 0 10px
    }

    .page_faq .center .faq_box .faq_list .item .title_box .icon {
        width: 10px;
        height: 10px
    }

    .page_faq .center .faq_box .faq_list .item .content .info {
        padding: 20px
    }

    .page_faq .center .faq_box .faq_list .item .content .info .dot {
        font-size: 16px
    }

    .page_faq .center .faq_box .faq_list .item .content .info .details {
        margin-left: 10px
    }
}

.page_rd {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_rd .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    position: relative;
    z-index: 3;
    overflow: hidden;
    overflow: initial
}

@media (max-width:1024px) {
    .page_rd .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_rd .center {
        margin: 40px 0
    }
}

.page_rd .center .rd_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.page_rd .center .rd_title .rd_more a {
    display: block;
    padding: 14px 2vw;
    background: #da251d;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 0 10px;
    overflow: hidden
}

.page_rd .center .rd_title .rd_more a::after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 50% 50% 0;
    opacity: .1;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_rd .center .rd_title .rd_more a:hover::after {
    width: 100%;
    border-radius: 0
}

.page_rd .center .rd_menu {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1vw;
    overflow: initial
}

@media (max-width:1024px) {
    .page_rd .center .rd_menu {
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_rd .center .rd_menu {
        margin-top: 30px
    }
}

.page_rd .center .rd_menu .item {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #111;
    overflow: hidden
}

.page_rd .center .rd_menu .item .icon {
    color: #da251d
}

.page_rd .center .rd_menu .item .icon i {
    font-size: 48px
}

.page_rd .center .rd_menu .item .title {
    margin-top: 20px;
    font-family: sy_m;
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.page_rd .center .rd_menu .item .details {
    width: 100%;
    height: calc(3em * 1.8);
    margin-top: 15px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    overflow-y: auto
}

.page_rd .center .rd_menu .item .show {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #d9d9d9;
    font-size: 16px;
    color: #666
}

.page_rd .center .rd_menu .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-top: 10px;
    line-height: 1
}

.page_rd .center .rd_menu .item .info .beat {
    font-size: 40px;
    font-weight: 700
}

.page_rd .center .rd_menu .item .info .sup {
    margin: 0 0 8px 10px
}

@media (max-width:1440px) {
    .page_rd .center .rd_menu .item .icon i {
        font-size: 40px
    }

    .page_rd .center .rd_menu .item .title {
        font-size: 22px
    }

    .page_rd .center .rd_menu .item .info .beat {
        font-size: 36px
    }
}

@media (max-width:1280px) {
    .page_rd .center .rd_menu .item .title {
        font-size: 20px
    }

    .page_rd .center .rd_menu .item .details {
        font-size: 14px
    }

    .page_rd .center .rd_menu .item .show {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 14px
    }

    .page_rd .center .rd_menu .item .info .beat {
        font-size: 30px
    }

    .page_rd .center .rd_menu .item .info .sup {
        font-size: 14px;
        margin-bottom: 5px
    }
}

@media (max-width:1024px) {
    .page_rd .center .rd_menu {
        grid-gap: 20px
    }

    .page_rd .center .rd_menu .item {
        padding: 20px
    }

    .page_rd .center .rd_menu .item .title {
        font-size: 18px
    }

    .page_rd .center .rd_menu .item .info .beat {
        font-size: 26px
    }

    .page_rd .center .rd_menu .item .info .sup {
        margin-bottom: 3px
    }
}

@media (max-width:768px) {
    .page_rd .center .rd_menu {
        grid-template-columns: auto
    }

    .page_rd .center .rd_menu .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center
    }

    .page_rd .center .rd_menu .item .title {
        margin: 0;
        margin-left: 20px
    }

    .page_rd .center .rd_menu .item .details {
        height: auto;
        max-height: calc(3em * 1.8)
    }

    .page_rd .center .rd_menu .item .show {
        width: 100%
    }
}

@media (max-width:480px) {
    .page_rd .center .rd_menu .item .icon i {
        font-size: 30px
    }

    .page_rd .center .rd_menu .item .details,
    .page_rd .center .rd_menu .item .show {
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .page_rd .center .rd_title .page_title {
        text-align: left
    }

    .page_rd .center .rd_title .page_title .line::after {
        margin: 0
    }

    .page_rd .center .rd_title .rd_more a {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 0 5px
    }
}

.page_good {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f5f5f5
}

.page_good .page_title {
    margin: 4vw auto
}

.page_good .good_box {
    width: 100%;
    height: auto;
    background: #fff;
    overflow: hidden
}

.page_good .good_box .good_item {
    width: 100%;
    height: auto;
    margin: 4vw 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.page_good .good_box .good_item .img {
    width: 50%;
    font-size: 0;
    overflow: hidden
}

.page_good .good_box .good_item .img img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover
}

.page_good .good_box .good_item .good_info {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 2.6vw;
    padding-right: calc((100% - 1400px) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden
}

.page_good .good_box .good_item .good_info .info {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden
}

.page_good .good_box .good_item .good_info .info .title_box {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden
}

.page_good .good_box .good_item .good_info .info .title_box .icon {
    max-width: 60px;
    font-size: 0;
    margin-right: 20px
}

.page_good .good_box .good_item .good_info .info .title_box .txt {
    flex: 1;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_good .good_box .good_item .good_info .info .title_box .txt .subtitle {
    font-size: 30px;
    opacity: .1;
    line-height: 1
}

.page_good .good_box .good_item .good_info .info .title_box .txt .title {
    margin-top: 5px;
    font-family: sy_m;
    font-size: 30px;
    line-height: 1
}

.page_good .good_box .good_item .good_info .info .title_box .number {
    font-size: 40px;
    color: #da251d;
    opacity: .2
}

.page_good .good_box .good_item .good_info .info .details {
    margin-top: 20px;
    padding-right: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    overflow: hidden;
    overflow-y: auto
}

.page_good .good_box .good_item .good_info .info .details p {
    margin-top: 15px
}

.page_good .good_box .good_item .good_info .info .details p:first-child {
    margin: 0
}

.page_good .good_box .good_item .good_info .items {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-top: 2vw;
    overflow: hidden
}

.page_good .good_box .good_item .good_info .items .item {
    width: auto;
    height: auto;
    background: #eef1f7;
    margin-right: 20px;
    padding: 12px 1.5vw;
    border-radius: 0 10px 0 0
}

.page_good .good_box .good_item .good_info .items .item .title {
    font-size: 15px;
    color: #666
}

.page_good .good_box .good_item .good_info .items .item .number {
    margin-top: 10px;
    font-family: sy_m;
    font-size: 24px;
    line-height: 1;
    color: #333
}

.page_good .good_box .good_item .good_info .items .item:nth-child(2n) {
    background: #20293a
}

.page_good .good_box .good_item .good_info .items .item:nth-child(2n) .title,
.page_good .good_box .good_item .good_info .items .item:nth-child(2n) .number {
    color: #fff
}

.page_good .good_box .good_item .good_info .items .item:last-child {
    margin: 0
}

.page_good .good_box .good_item:first-child {
    margin-top: 0
}

.page_good .good_box .good_item:first-child .good_info {
    padding-top: 2vw
}

.page_good .good_box .good_item:nth-child(2n) {
    flex-direction: row-reverse
}

.page_good .good_box .good_item:nth-child(2n) .good_info {
    right: auto;
    left: 0;
    padding: 0 2.6vw;
    padding-left: calc((100% - 1400px) / 2)
}

@media (max-width:1520px) {
    .page_good .good_box .good_item .good_info {
        padding-right: 60px
    }

    .page_good .good_box .good_item:nth-child(2n) .good_info {
        padding-left: 60px
    }
}

@media (max-width:1440px) {
    .page_good .good_box .good_item .good_info .info .title_box .icon {
        max-width: 47px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .title {
        font-size: 24px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .subtitle {
        font-size: 20px
    }

    .page_good .good_box .good_item .good_info .info .title_box .number {
        font-size: 36px
    }

    .page_good .good_box .good_item .good_info .info .details {
        font-size: 14px
    }

    .page_good .good_box .good_item .good_info .info .details p {
        margin-top: 10px
    }

    .page_good .good_box .good_item .good_info .items .item .title {
        font-size: 14px
    }

    .page_good .good_box .good_item .good_info .items .item .number {
        margin-top: 5px;
        font-size: 20px
    }
}

@media (max-width:1280px) {
    .page_good .good_box .good_item .good_info .info .title_box .icon {
        max-width: 37px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .title {
        font-size: 20px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .subtitle {
        font-size: 16px
    }

    .page_good .good_box .good_item .good_info .info .title_box .number {
        font-size: 30px
    }

    .page_good .good_box .good_item .good_info .info .details {
        font-size: 14px
    }

    .page_good .good_box .good_item .good_info .info .details p {
        margin-top: 10px
    }

    .page_good .good_box .good_item .good_info .items .item .title {
        font-size: 12px
    }

    .page_good .good_box .good_item .good_info .items .item .number {
        margin-top: 5px;
        font-size: 18px
    }
}

@media (max-width:1024px) {
    .page_good .good_box .good_item {
        display: block;
        margin: 40px 0 !important
    }

    .page_good .good_box .good_item .img {
        width: 100%
    }

    .page_good .good_box .good_item .good_info {
        width: 100%;
        margin-top: 30px;
        padding: 0 !important;
        position: relative;
        display: block
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .title {
        font-size: 20px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .subtitle {
        font-size: 14px
    }

    .page_good .good_box .good_item .good_info .info .title_box .number {
        font-size: 24px
    }

    .page_good .good_box .good_item .good_info .items {
        margin-top: 30px
    }

    .page_good .good_box .good_item .good_info .items .item .title {
        font-size: 12px
    }

    .page_good .good_box .good_item .good_info .items .item .number {
        margin-top: 5px;
        font-size: 18px
    }
}

@media (max-width:768px) {
    .page_good .good_box .good_item {
        margin: 30px 0 !important
    }

    .page_good .good_box .good_item .good_info {
        margin-top: 20px
    }

    .page_good .good_box .good_item .good_info .info .title_box .icon {
        max-width: 30px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .title {
        font-size: 18px
    }

    .page_good .good_box .good_item .good_info .info .title_box .txt .subtitle {
        font-size: 12px
    }

    .page_good .good_box .good_item .good_info .info .title_box .number {
        font-size: 20px
    }

    .page_good .good_box .good_item .good_info .info .details {
        font-size: 12px
    }

    .page_good .good_box .good_item .good_info .items {
        margin-top: 20px
    }

    .page_good .good_box .good_item .good_info .items .item {
        padding: 10px 12px;
        margin-right: 5px
    }

    .page_good .good_box .good_item .good_info .items .item .number {
        font-size: 14px
    }
}

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

@media (max-width:990px) {
    .page_good .good_box {
        padding: 0 20px
    }
}

@media (max-width:1024px) {
    .page_good .page_title {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_good .page_title {
        margin: 40px 0
    }
}

.page_path {
    width: 100%;
    height: auto;
    background: url(../images/bg3.jpg) no-repeat center / cover;
    overflow: hidden
}

.page_path .center {
    width: 100%;
    height: auto;
    margin: 4vw auto;
    z-index: 3;
    overflow: hidden;
    margin: 5.2vw auto;
    position: relative;
    z-index: 1;
    overflow: initial
}

@media (max-width:1024px) {
    .page_path .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_path .center {
        margin: 40px 0
    }
}

.page_path .center .path_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1
}

.page_path .center .path_box .path_main {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.page_path .center .path_box .path_main .path_info {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0
}

.page_path .center .path_box .path_main .path_info .info_box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.page_path .center .path_box .path_main .path_info .info_box .item {
    width: 150px;
    height: 100%;
    position: absolute
}

.page_path .center .path_box .path_main .path_info .info_box .item::after {
    content: '';
    width: 70%;
    height: 70%;
    position: absolute;
    top: 15%;
    left: 15%;
    z-index: -1;
    background: #fff;
    opacity: .5;
    border-radius: 50%;
    animation: ripple 1.5s linear infinite
}

.page_path .center .path_box .path_main .path_info .info_box .item .info {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.page_path .center .path_box .path_main .path_info .info_box .item .info .icon {
    color: #da251d
}

.page_path .center .path_box .path_main .path_info .info_box .item .info .icon i {
    font-size: 40px
}

.page_path .center .path_box .path_main .path_info .info_box .item .info .title {
    margin: 5px 0;
    font-family: sy_m;
    font-size: 18px;
    line-height: 1.6
}

.page_path .center .path_box .path_main .path_info .info_box .item .info .number {
    font-size: 16px;
    color: #999
}

.page_path .center .path_box .path_main .path_info .info_box .item .more {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -10px;
    margin-left: 50px;
    border-radius: 50%;
    background: #c0c3cf;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
    animation: slbsd 3s linear infinite
}

.page_path .center .path_box .path_main .path_info .info_box .item:first-child {
    left: 30%
}

.page_path .center .path_box .path_main .path_info .info_box .item:nth-child(2) {
    left: 50%
}

.page_path .center .path_box .path_main .path_info .info_box .item:nth-child(3) {
    left: 70%
}

.page_path .center .path_box .path_main .path_info .info_box .item:nth-child(4) {
    left: 90%
}

.page_path .center .path_box .path_main .path_info .info_box .item:last-child .more {
    left: 65%;
    margin-left: 0;
    top: 125%;
    animation-name: slbsdt
}

.page_path .center .path_box .path_main .path_info .info_box .item:nth-child(4) .more i {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg)
}

@keyframes slbsd {

    0%,
    100% {
        transform: translateX(-5px)
    }

    50% {
        transform: translateX(5px)
    }
}

@keyframes slbsdt {

    0%,
    100% {
        transform: translateY(-5px)
    }

    50% {
        transform: translateY(5px)
    }
}

.page_path .center .path_box .path_main .path_info.active {
    top: auto;
    bottom: 0
}

.page_path .center .path_box .path_main .path_info.active .info_box .item .more {
    left: -80%;
    margin-left: 70px;
    margin-top: -20px
}

.page_path .center .path_box .path_main .path_info.active .info_box .item .more i {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg)
}

.page_path .center .path_box .path_main .path_info.active .info_box .item:first-child {
    left: 90%
}

.page_path .center .path_box .path_main .path_info.active .info_box .item:nth-child(2) {
    left: 72%
}

.page_path .center .path_box .path_main .path_info.active .info_box .item:nth-child(3) {
    left: 54%
}

.page_path .center .path_box .path_main .path_info.active .info_box .item:nth-child(4) {
    left: 36%
}
.page_path .center .path_box .path_main .path_info.active .info_box .item:nth-child(5) {
    left: 18%
}
.page_path .center .path_box .path_main .path_info.active .info_box .item:last-child .more {
    display: none
}

@media (max-width:1440px) {
    .page_path .center .path_box .path_main .path_info {
        height: 140px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item {
        width: 140px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .title {
        font-size: 16px
    }
}

@media (max-width:1280px) {
    .page_path .center .path_box .path_main .path_info {
        height: 120px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item {
        width: 120px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .title {
        font-size: 14px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .number {
        font-size: 12px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .more {
        margin-left: 40px
    }

    .page_path .center .path_box .path_main .path_info.active .info_box .item .more {
        margin-left: 50px
    }
}

@media (max-width:1200px) {
    .page_path .center .path_box .path_main .path_info {
        height: 100px;
        top: 4%
    }

    .page_path .center .path_box .path_main .path_info .info_box .item {
        width: 100px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .title {
        font-size: 12px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .number {
        font-size: 12px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .more {
        width: 24px;
        height: 24px;
        margin-left: 40px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item:last-child .more {
        left: 75%
    }

    .page_path .center .path_box .path_main .path_info.active {
        top: auto;
        bottom: 2%
    }

    .page_path .center .path_box .path_main .path_info.active .info_box .item .more {
        margin-left: 40%;
        margin-top: -10px
    }
}

@media (max-width:1024px) {
    .page_path .center .path_box .path_main {
        position: relative
    }

    .page_path .center .path_box .path_main .path_info {
        height: auto;
        position: initial;
        margin-top: 40px
    }

    .page_path .center .path_box .path_main .path_info .info_box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 1px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item {
        width: 100%;
        position: relative;
        left: 0 !important;
        top: 0;
        margin: 0 auto
    }

    .page_path .center .path_box .path_main .path_info .info_box .item::after {
        display: none
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info {
        border-radius: 0;
        padding: 20px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .title {
        font-size: 12px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .info .number {
        font-size: 12px
    }

    .page_path .center .path_box .path_main .path_info .info_box .item .more {
        display: none
    }

    .page_path .center .path_box .path_main .path_info.active {
        margin-top: 1px
    }

    .page_path .center .path_box .path_main .path_info.active .info_box .item .more {
        margin-left: 40%;
        margin-top: -10px
    }
}

@media (max-width:768px) {
    .page_path .center .path_box .path_main .path_info {
        margin-top: 30px
    }

    .page_path .center .path_box .path_main .path_info .info_box {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1px
    }
}

.page_path .center .path_box .path_bg {
    font-size: 0;
    text-align: center
}

@media (max-width:1024px) {
    .page_path .center .path_box .path_bg {
        display: none
    }
}

@media (max-width:1024px) {
    .page_path .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_path .center {
        margin: 40px 0
    }
}

.news_header {
    width: 100%;
    height: auto;
    padding: 5.2vw 0;
    position: relative;
    z-index: 2;
    background: #f5f5f5;
    overflow: hidden
}

.news_header::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/icon_logo.png) no-repeat 95% center / auto 80%;
    opacity: .02
}

.news_header .news_swiper {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.news_header .news_swiper .news_center {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_img {
    width: 40%;
    height: auto;
    background: #fff;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_img .pb {
    padding-bottom: 66.5%
}

.news_header .news_swiper .news_center .news_img .swiper_box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_img .swiper_box ul li {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 0;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_img .swiper_box ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news_header .news_swiper .news_center .swiper_pager {
    width: auto;
    height: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    font-size: 0;
    text-align: center;
    overflow: hidden
}

.news_header .news_swiper .news_center .swiper_pager span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #da251d;
    margin: 0 0 0 8px;
    opacity: .3;
    border-radius: 50%;
    position: relative;
    vertical-align: top;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.news_header .news_swiper .news_center .swiper_pager .active {
    opacity: 1;
    background: #da251d
}

.news_header .news_swiper .news_center .news_info {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 4vw;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_info .item {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_info .item .info {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 10px 0 40px;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_info .item .title a {
    font-family: sy_m;
    font-size: 36px;
    line-height: 1.5;
    color: #111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

@media (max-width:1680px) {
    .news_header .news_swiper .news_center .news_info .item .title a {
        font-size: 31.5px
    }
}

@media (max-width:1440px) {
    .news_header .news_swiper .news_center .news_info .item .title a {
        font-size: 27px
    }
}

@media (max-width:1280px) {
    .news_header .news_swiper .news_center .news_info .item .title a {
        font-size: 24px
    }
}

@media (max-width:1024px) {
    .news_header .news_swiper .news_center .news_info .item .title a {
        font-size: 19.2px
    }
}

.news_header .news_swiper .news_center .news_info .item .title a:hover {
    color: #da251d
}

.news_header .news_swiper .news_center .news_info .item .time {
    width: 100%;
    height: auto;
    margin: 1vw 0 1.5vw;
    line-height: 1.5;
    position: relative;
    font-size: 16px;
    color: #999
}

.news_header .news_swiper .news_center .news_info .item .time i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 10px
}

.news_header .news_swiper .news_center .news_info .item .textarea {
    width: 100%;
    height: auto;
    padding-right: 10px;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_info .item .more {
    display: inline-block;
    position: relative;
    z-index: 1;
    position: absolute;
    bottom: 0
}

.news_header .news_swiper .news_center .news_info .item .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center
}

.news_header .news_swiper .news_center .news_info .item .more a .icon {
    height: 20px;
    padding-right: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.news_header .news_swiper .news_center .news_info .item .more a .icon i {
    width: 3vw;
    min-width: 30px;
    height: 1px;
    display: block;
    background: #da251d;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.news_header .news_swiper .news_center .news_info .item .more a .icon::before,
.news_header .news_swiper .news_center .news_info .item .more a .icon::after {
    content: '';
    width: 8px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    background: #da251d;
    transform-origin: right;
    border-radius: 2px
}

.news_header .news_swiper .news_center .news_info .item .more a .icon::before {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-top: -.5px
}

.news_header .news_swiper .news_center .news_info .item .more a .icon::after {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    margin-top: -.5px
}

.news_header .news_swiper .news_center .news_info .item .more a .words {
    padding-left: 1vw;
    font-size: 16px;
    line-height: 1;
    color: #da251d
}

.news_header .news_swiper .news_center .news_info .item .more a:hover .icon i {
    width: 4vw
}

@media (max-width:1440px) {
    .news_header .news_swiper .news_center .news_img {
        width: 50%
    }

    .news_header .news_swiper .news_center .news_info {
        width: 50%
    }

    .news_header .news_swiper .news_center .news_info .item .time {
        font-size: 14px
    }

    .news_header .news_swiper .news_center .news_info .item .title {
        font-size: 28px
    }

    .news_header .news_swiper .news_center .news_info .item .textarea {
        font-size: 16px
    }

    .news_header .news_swiper .news_center .news_info .item .more {
        margin-top: 30px
    }
}

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

    .news_header .news_swiper .news_center .news_info .item .time {
        font-size: 12px
    }

    .news_header .news_swiper .news_center .news_info .item .title {
        font-size: 24px
    }

    .news_header .news_swiper .news_center .news_info .item .textarea {
        font-size: 15px
    }

    .news_header .news_swiper .news_center .news_info .item .more a .words {
        font-size: 14px;
        padding-left: 10px
    }

    .news_header .news_swiper .news_center .news_info .item .more a .icon i {
        font-size: 9px
    }
}

@media (max-width:990px) {
    .news_header .news_swiper .news_center .news_img {
        width: 100%
    }

    .news_header .news_swiper .news_center .swiper_pager {
        height: 6px
    }

    .news_header .news_swiper .news_center .swiper_pager span {
        width: 6px;
        height: 6px
    }

    .news_header .news_swiper .news_center .news_info {
        width: 100%;
        height: auto;
        margin-top: 30px;
        position: relative;
        padding: 0
    }
}

@media (max-width:768px) {
    .news_header {
        padding: 40px 0
    }

    .news_header .news_swiper .news_center .news_info {
        margin-top: 20px
    }

    .news_header .news_swiper .news_center .news_info .item .info {
        padding-top: 0
    }

    .news_header .news_swiper .news_center .news_info .item .info .title a {
        font-size: 16px
    }

    .news_header .news_swiper .news_center .news_info .item .info .time {
        margin: 10px 0;
        font-size: 12px
    }

    .news_header .news_swiper .news_center .news_info .item .info .time i {
        font-size: 12px
    }

    .news_header .news_swiper .news_center .news_info .item .info .textarea {
        font-size: 12px
    }

    .news_header .news_swiper .news_center .news_info .item .info .more a .icon::before,
    .news_header .news_swiper .news_center .news_info .item .info .more a .icon::after {
        width: 6px;
        right: 1px
    }

    .news_header .news_swiper .news_center .news_info .item .info .more a .words {
        font-size: 12px
    }
}

.page_news {
    width: 76%;
    margin-left: 2%;
    height: auto;
    overflow: hidden
}

.page_news .new_box {
    width: 100%;
    height: auto;
    /* padding: 2%; */
    /* margin: 3.6vw auto 7.2vw */
}

.page_news .new_box .news_list {
    width: 100%;
    height: auto
}

.page_news .new_box .news_list ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap:1vw
}

.page_news .new_box .news_list ul li {
    width: 100%;
    height: auto;
    background: #f1f1f1;
    position: relative;
    z-index: 1;
    /* box-shadow: 0 0 30px rgba(0, 0, 0, .1); */
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    overflow: hidden
}

.page_news .new_box .news_list ul li a .images {
    width: 35%;
    height: 200px;
    overflow: hidden;
}


.page_news .new_box .news_list ul li a .info {
    width: 100%;
    height: auto;
    padding: .6vw 2vw;
    overflow: hidden
}

.page_news .new_box .news_list ul li a .info .title {
    width: 100%;
    height: auto;
    font-size: 24px;
    line-height: 1.5;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_news .new_box .news_list ul li a .info .time {
    margin-top: 4px;
    font-size: 14px;
    color: #999
}

.page_news .new_box .news_list ul li a .info .time i {
    font-size: 14px;
    vertical-align: middle;
    margin-right: 10px
}

.page_news .new_box .news_list ul li a .info .details {
    width: 100%;
    height: calc(2em * 1.6);
    margin: 10px 0 10px;
    line-height: 1.6;
    font-size: 16px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.page_news .new_box .news_list ul li a .info .more {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: #999
}

.page_news .new_box .news_list ul li a .info .more i {
    font-size: 20px
}

.page_news .new_box .news_list ul li::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_news .new_box .news_list ul li:hover {
    /* transform: translateY(-10px); */
    z-index: 2;

}

.page_news .new_box .news_list ul li:hover a .info .title {
    color: #da251d
}

.page_news .new_box .news_list ul li:hover a .info .more {
    text-indent: 1em;
    color: #da251d
}

.page_news .new_box .news_list ul li:hover::after {
    width: 100%
}

.page_news .new_box .layui-laypage {
    margin-top: 4vw
}

@media (max-width:1440px) {
    .page_news .new_box .news_list ul li a .info .title {
        font-size: 20px
    }
}

@media (max-width:1024px) {
    .page_news .new_box {
        margin: 50px 0
    }

    .page_news .new_box .news_list ul {
        grid-gap: 20px 20px
    }

    .page_news .new_box .news_list ul li {
        /* box-shadow: 0 0 20px rgba(0, 0, 0, .1) */
    }

    .page_news .new_box .news_list ul li a .info {
        padding: 15px 20px
    }

    .page_news .new_box .news_list ul li a .info .title {
        font-size: 18px
    }

    .page_news .new_box .news_list ul li a .info .time {
        margin-top: 15px;
        font-size: 12px
    }

    .page_news .new_box .news_list ul li a .info .details {
        font-size: 14px
    }

    .page_news .new_box .layui-laypage {
        margin-top: 40px
    }
}

@media (max-width:990px) {
    .page_news .new_box .news_list ul {
        grid-template-columns: repeat(2, 1fr)
    }

    .page_news .new_box .news_list ul li:hover {
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .page_news .new_box {
        margin: 40px 0
    }
.page_news .new_box .news_list ul li a.flex{flex-wrap: wrap;}
.page_news .new_box .news_list ul li a .images {
    width: 100%;
    padding: 10px;
    padding-bottom: 0;
    height: 200px;
    overflow: hidden;
}
    .page_news .new_box .news_list ul {
        grid-gap: 15px 15px
    }

    .page_news .new_box .news_list ul li a .info {
        padding: 20px 15px 15px
    }

    .page_news .new_box .news_list ul li a .info .title {
        font-size: 16px
    }

    .page_news .new_box .news_list ul li a .info .time {
        margin-top: 10px
    }

    .page_news .new_box .news_list ul li a .info .details {
        margin: 10px 0
    }

    .page_news .new_box .news_list ul li:hover {
        transform: translateY(0)
    }

    .page_news .new_box .layui-laypage {
        margin-top: 30px
    }
}

@media (max-width:480px) {
    .page_news .new_box .news_list ul {
        grid-template-columns: 1fr
    }

    .page_news .new_box .news_list ul li a .info .details {
        font-size: 12px
    }
}

.page_news_details {
    width: 100%;
    height: auto
}

.page_news_details .news_box {
    width: 100%;
    height: auto;
    margin: 3.6vw auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_news_details .news_box .news_info {
    width: 68.57%;
    height: auto;
    overflow: hidden
}

.page_news_details .news_box .news_info .news_title {
    padding-bottom: 1vw;
    border-bottom: 1px solid #eeee
}

.page_news_details .news_box .news_info .news_title .title h1 {
    font-family: sy_m;
    font-size: 40px;
    color: #000
}

@media (max-width:1680px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 35px
    }
}

@media (max-width:1440px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 30px
    }
}

@media (max-width:1280px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 26.66666667px
    }
}

@media (max-width:1024px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 21.33333333px
    }
}

@media (max-width:1680px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 34px
    }
}

@media (max-width:1440px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 26px
    }
}

@media (max-width:1280px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 22px
    }
}

@media (max-width:1024px) {
    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 20px
    }
}

.page_news_details .news_box .news_info .news_title .time {
    width: 100%;
    height: auto;
    margin-top: 1.5vw;
    font-size: 16px;
    color: #999;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap
}

.page_news_details .news_box .news_info .news_title .time i {
    margin-right: 10px;
    font-size: 16px
}

.page_news_details .news_box .news_info .news_details {
    width: 100%;
    height: auto;
    margin: 20px 0 0;
    text-align: justify;
    overflow: hidden
}

.page_news_details .news_box .news_info .news_details * {
    font-size: 16px;
    color: #666;
    line-height: 1.8
}

.page_news_details .news_box .news_info .news_details p {
    margin: 1.5vw 0 0
}

.page_news_details .news_box .news_info .news_details p:first-child {
    margin: 0
}

.page_news_details .news_box .news_info .news_details img {
    max-width: 100%;
    font-size: 0;
    display: block
}

.page_news_details .news_box .news_info .pager_active {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
    position: relative;
    z-index: 1
}

.page_news_details .news_box .news_info .pager_active .prev,
.page_news_details .news_box .news_info .pager_active .next {
    width: 100%;
    height: auto;
    line-height: 1
}

.page_news_details .news_box .news_info .pager_active .prev a,
.page_news_details .news_box .news_info .pager_active .next a {
    max-width: 100%;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.page_news_details .news_box .news_info .pager_active .prev a:hover,
.page_news_details .news_box .news_info .pager_active .next a:hover {
    color: #da251d
}

.page_news_details .news_box .news_info .pager_active .next {
    margin-top: 1.5vw
}

.page_news_details .news_box .news_info .pager_active .return {
    width: 140px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.page_news_details .news_box .news_info .pager_active .return a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #da251d;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    overflow: hidden
}

.page_news_details .news_box .news_info .pager_active .return a:hover {
    border-radius: 23px
}

.page_news_details .news_box .sidebar_box {
    width: 22%
}

@media (max-width:1024px) {
    .page_news_details .news_box {
        margin: 50px 0
    }

    .page_news_details .news_box .news_info .news_title {
        padding-bottom: 15px
    }

    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 24px
    }

    .page_news_details .news_box .news_info .news_title .time {
        margin-top: 10px;
        font-size: 14px
    }

    .page_news_details .news_box .news_info .news_title .time i {
        font-size: 14px
    }

    .page_news_details .news_box .news_info .news_details * {
        font-size: 14px
    }

    .page_news_details .news_box .news_info .news_details p {
        margin-top: 15px
    }

    .page_news_details .news_box .news_info .pager_active {
        margin-top: 40px
    }

    .page_news_details .news_box .news_info .pager_active .prev a,
    .page_news_details .news_box .news_info .pager_active .next a {
        font-size: 14px
    }
}

@media (max-width:990px) {
    .page_news_details .news_box .sidebar_box {
        display: none
    }

    .page_news_details .news_box .news_info {
        width: 100%;
        float: initial
    }
}

@media (max-width:768px) {
    .idx_about .center .about_box .about_number .images{
        width: 100%;
    }
    .page_news_details .news_box {
        margin: 40px 0
    }

    .page_news_details .news_box .news_info .news_title .title h1 {
        font-size: 18px;
        padding-top: 20px;
    }

    .page_news_details .news_box .news_info .news_title .time {
        font-size: 12px
    }

    .page_news_details .news_box .news_info .news_title .time i {
        font-size: 12px
    }
}

@media (max-width:990px) {
    .page_news_details {
        overflow: hidden
    }
}

.page_contact {
    width: 100%;
    height: auto;
    overflow: hidden
}

.page_contact .center {
    width: 100%;
    height: auto;
    margin: 5.2vw auto;
    overflow: hidden
}

.page_contact .center .contact_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: hidden
}

.page_contact .center .contact_box .info {
    flex: 1;
    margin-right: 4vw;
    position: relative;
    z-index: 1
}

.page_contact .center .contact_box .info::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../images/map_c.png) no-repeat center / 100% auto;
    opacity: .03
}

.page_contact .center .contact_box .info .contact_info {
    width: 100%;
    height: auto;
    margin-top: 40px
}

.page_contact .center .contact_box .info .contact_info .title_box {
    width: 100%;
    height: auto
}

.page_contact .center .contact_box .info .contact_info .title_box .title {
    font-size: 24px;
    color: #111;
    letter-spacing: 1px
}

.page_contact .center .contact_box .info .contact_info .title_box .subtitle {
    font-size: 14px;
    color: #ababab
}

.page_contact .center .contact_box .info .contact_info .items {
    width: 100%;
    height: auto;
    margin-top: 30px
}

.page_contact .center .contact_box .info .contact_info .items .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    margin: 15px 0 0;
    overflow: hidden
}

.page_contact .center .contact_box .info .contact_info .items .item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #da251d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 0;
    margin-right: 15px;
    color: #fff
}

.page_contact .center .contact_box .info .contact_info .items .item .icon i {
    font-size: 12px
}

.page_contact .center .contact_box .info .contact_info .items .item .title {
    flex: 1;
    font-size: 14px;
    color: #333
}

.page_contact .center .contact_box .info .contact_info .items .item:first-child {
    margin: 0
}

.page_contact .center .contact_box .map {
    width: 50%;
    height: 500px;
    font-size: 0;
    position: relative;
    z-index: 1;
    border: 1px solid #e5e5e5;
    overflow: hidden
}
.page_contact .center .contact_box .map iframe{
    width: 100% !important;
    height: 100% !important;
}
.page_contact .center .contact_box .map img {
    min-width: 1040px;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

@media (max-width:1024px) {
    .page_contact .center .contact_box {
        display: block
    }

    .page_contact .center .contact_box .info {
        width: 100%;
        margin: 0
    }

    .page_contact .center .contact_box .info .contact_info .title_box .title {
        font-size: 20px
    }

    .page_contact .center .contact_box .map {
        width: 100%;
        margin-top: 40px
    }
}

@media (max-width:768px) {
    .page_contact .center .contact_box .info .contact_info {
        margin-top: 30px
    }

    .page_contact .center .contact_box .info .contact_info .title_box .title {
        font-size: 18px
    }

    .page_contact .center .contact_box .info .contact_info .title_box .subtitle {
        font-size: 12px
    }

    .page_contact .center .contact_box .info .contact_info .items {
        margin-top: 20px
    }

    .page_contact .center .contact_box .info .contact_info .items .item .icon {
        width: 24px;
        height: 24px
    }

    .page_contact .center .contact_box .info .contact_info .items .item .icon i {
        font-size: 10px
    }

    .page_contact .center .contact_box .info .contact_info .items .item .title {
        font-size: 12px
    }

    .page_contact .center .contact_box .map {
        height: 350px;
        margin-top: 30px
    }
}

@media (max-width:1024px) {
    .page_contact .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_contact .center {
        margin: 40px 0
    }
}

.page_welcome {
    width: 100%;
    height: auto;
    background: #f5f5f5;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_welcome::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/line_bg.png) no-repeat center / cover;
    background-attachment: fixed;
    opacity: .08
}

.page_welcome .center {
    width: 100%;
    height: auto;
    margin: 5.2vw auto;
    position: relative;
    z-index: 2;
    overflow: hidden
}

.page_welcome .center .welcome_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    overflow: hidden
}

.page_welcome .center .welcome_box .page_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.page_welcome .center .welcome_box .item {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 5px;
    padding: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_welcome .center .welcome_box .item::after {
    content: '';
    z-index: 1;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #da251d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_welcome .center .welcome_box .item .icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 0;
    color: #da251d
}

.page_welcome .center .welcome_box .item .icon i {
    font-size: 48px
}

.page_welcome .center .welcome_box .item .info {
    flex: 1
}

.page_welcome .center .welcome_box .item .info .title {
    font-size: 24px;
    font-family: sy_m
}

.page_welcome .center .welcome_box .item .info .details {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: #666
}

.page_welcome .center .welcome_box .item:hover::after {
    width: 100%;
    border-radius: 0
}

@media (max-width:1024px) {
    .page_welcome .center .welcome_box {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px 20px
    }

    .page_welcome .center .welcome_box .page_title {
        grid-column: span 4
    }

    .page_welcome .center .welcome_box .item {
        display: block;
        padding: 20px
    }

    .page_welcome .center .welcome_box .item .info {
        margin-top: 20px
    }

    .page_welcome .center .welcome_box .item .info .title {
        font-size: 15px
    }

    .page_welcome .center .welcome_box .item .info .details {
        font-size: 14px;
        line-height: 1.6
    }
}

@media (max-width:768px) {
    .page_welcome .center .welcome_box {
        display: block
    }

    .page_welcome .center .welcome_box .page_title {
        margin-bottom: 30px
    }

    .page_welcome .center .welcome_box .item {
        margin-bottom: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex
    }

    .page_welcome .center .welcome_box .item .icon {
        width: 40px;
        height: 40px
    }

    .page_welcome .center .welcome_box .item .icon i {
        font-size: 36px
    }

    .page_welcome .center .welcome_box .item .info {
        margin: 0 0 0 15px
    }

    .page_welcome .center .welcome_box .item:last-child {
        margin: 0
    }
}

@media (max-width:480px) {
    .page_welcome .center .welcome_box .item .icon {
        width: 30px;
        height: 30px
    }

    .page_welcome .center .welcome_box .item .icon i {
        font-size: 30px
    }

    .page_welcome .center .welcome_box .item .info .details {
        margin-top: 5px;
        font-size: 12px
    }
}

@media (max-width:1024px) {
    .page_welcome .center {
        margin: 50px 0
    }
}

@media (max-width:768px) {
    .page_welcome .center {
        margin: 40px 0
    }
}

.page_feed {
    width: 100%;
    height: auto;
    background: #da251d;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_feed .center {
    width: 100%;
    height: auto;
    margin: 5.2vw auto;
    position: relative;
    z-index: 2
}

.page_feed .center .feed_title {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.page_feed .center .feed_title .page_title .title {
    color: #fff
}

.page_feed .center .feed_title .page_title .details {
    color: #fff
}

.page_feed .center .feed_title .page_title .line::after {
    background: #fff
}

.page_feed .center .feed_title .feed_tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff
}

.page_feed .center .feed_title .feed_tel .icon {
    margin-right: 20px
}

.page_feed .center .feed_title .feed_tel .icon i {
    font-size: 48px
}

.page_feed .center .feed_title .feed_tel .info .title {
    font-size: 16px;
    line-height: 1
}

.page_feed .center .feed_title .feed_tel .info .phone {
    margin-top: 5px;
    font-family: sy_m;
    font-size: 24px
}

.page_feed .center .feed_list {
    width: 100%;
    height: auto;
    margin-top: 2.6vw
}

.page_feed .center .feed_list .layui-form .layui_item {
    width: 100%;
    height: auto;
    margin-top: 14px
}

.page_feed .center .feed_list .layui-form .layui_item:first-child {
    margin-top: 0
}

.page_feed .center .feed_list .layui-form .layui_item.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 14px
}

.page_feed .center .feed_list .layui-form .layui_item .layui_block {
    width: 100%;
    height: 64px;
    overflow: hidden
}

.page_feed .center .feed_list .layui-form .layui_item .layui-input {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 0 20px;
    font-size: 16px;
    color: #111;
    overflow: hidden
}

.page_feed .center .feed_list .layui-form .layui_item .layui-textarea {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 10px 20px;
    font-size: 16px;
    color: #111;
    line-height: 1.5;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    overflow-y: auto
}

.page_feed .center .feed_list .layui-form .layui_item .layui-btn {
    width: 100%;
    height: 64px;
    background: 0 0;
    font-size: 16px;
    color: #666;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_feed .center .feed_list .layui-form .layui_item .layui-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    background: #fff
}

.page_feed .center .feed_list .layui-form .layui_item .layui-btn::after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 50% 50% 0;
    background: #da251d;
    opacity: .1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.page_feed .center .feed_list .layui-form .layui_item .layui-btn:hover {
    opacity: 1;
    color: #da251d
}

.page_feed .center .feed_list .layui-form .layui_item .layui-btn:hover::after {
    width: 100%;
    border-radius: 0
}

@media (max-width:1024px) {
    .page_feed .center {
        margin: 50px 0
    }

    .page_feed .center .feed_title {
        display: block
    }

    .page_feed .center .feed_title .feed_tel {
        display: none
    }

    .page_feed .center .feed_list {
        margin-top: 40px
    }

    .page_feed .center .feed_list .layui-form .layui_item {
        margin-top: 10px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui_block {
        height: 50px;
        grid-gap: 10px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui-input {
        font-size: 14px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui-textarea {
        min-height: 150px;
        font-size: 14px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui-btn {
        height: 50px;
        font-size: 14px
    }
}

@media (max-width:768px) {
    .page_feed .center {
        margin: 40px 0
    }
}

@media (max-width:480px) {
    .page_feed .center .feed_list {
        margin-top: 30px
    }

    .page_feed .center .feed_list .layui-form .layui_item.active {
        grid-template-columns: auto;
        grid-gap: 10px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui-input {
        padding: 0 15px
    }

    .page_feed .center .feed_list .layui-form .layui_item .layui-textarea {
        padding: 10px 15px
    }
}

.page_feed .feed_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden
}

.page_feed .feed_bg .items {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page_feed .feed_bg .items .itemblock {
    width: 4vw;
    height: 6vw;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 50%;
    opacity: .04;
    border-radius: 2px;
    margin: -100px 0 0 -100px;
    box-shadow: 0 0 10px #000
}
.mb4vw{
    margin-bottom: 4vw;
}
.ml1vw{
    margin-left: 1vw;
}
.app_foot_fixed{display: none;}
@media screen and (max-width:767px) {
    .i_product_BOX .w1400{
        padding: 0 10px;
    }
    .i_product_BOX .center .product_box .product_list ul {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 10px;
    }
    .i_product_BOX .center .product_box .product_list ul li .content .info {
        padding: 5px;
    }
    .i_product_BOX .center .product_box .product_list ul li .content .more_btn .more {
        width: 100%;
    }
    .i_product_BOX .center .product_box .product_list ul li .content .more_btn .more2{
        display: none;
    }
    .footer_main {
        display: none !important;
    }
    .footer_box .footer_copy .center .copy {
        justify-content: center;
    }

    .app_foot_box{
        height: 68px;
    }
    .app_foot_fixed{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        background-color: #fff;
        box-shadow: 0px 8px 36.8px 3.2px rgb(0 0 7 / 8%);
    }
    .app_foot_box .iconfont{
        font-size: 28px;
        display: block;
    }
    .app_foot_fixed ul li{
        width: calc(100%/4);
        text-align: center;
        height: 68px;
    }
    .app_foot_fixed ul li  img{
        height: 32px;
        margin: 4px auto;
        display: block;
        
        
    }
    .app_foot_fixed ul li {
        font-size: 15px;
        display: block;
    
    } 
    .a_active a,.a_active i{
        color: #da251d;
    }
    .m_header_box .header_body .menu_nav ul li .active .appa_son_ul{
        display: block;

    }
   
    
}

/* 客服 */

.online-div {
    position: fixed;
    top: 25%;

    right: -1px;
    z-index: 999999;
    transition: all 1.5s;
    -moz-transition: all 1.5s;
    /*Firefox4*/-webkit-transition: all 1.5s;
    /*Safariï¿½?Chrome*/-o-transition: all 1.5s;
    /*Opera*/

}
.online-div .online-ul-show {
	cursor: pointer;
	float: left;
	width: 27px;
	height: 108px;
	text-align: center;
	color: #FFFFFF;
	background: #29a7e2;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	line-height: 50px;
	transform: rotate(0deg) translate(0px, 150px);
	-webkit-transform: rotate(0deg) translate(0px, 150px);
	/*Safariï¿½?Chrome*/-moz-transform: rotate(0deg) translate(0px, 150px);
	-moz-transform: rotate(0deg) translate(0px, 150px);
	-ms-transform: rotate(0deg) translate(0px, 150px);
	-o-transform: rotate(0deg) translate(0px, 150px);
}
.online-div .online-ul {
	float: left;
	background: url(../images/kefu1.png) no-repeat top left;
	list-style: none;
	padding: 0px;
	box-shadow: rgb(0 0 0 / 15%) 0px 1px 15px;
}
.online-div .online-ul li {
	position: relative;
}
.online-div .online-ul a {
	width: 152px;
	height: 60px;
	display: block;
	/*background: #EEE;*/
	-moz-opacity: 0;
	filter: alpha(opacity=40);
	opacity: 0.4;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
}
.online-div .online-ul a:hover {
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	opacity: 0.4;
}

.online-ul li ._sig {
	visibility: hidden;
	position: absolute;
	bottom: -40px;
	padding: 0 5px;
	right: 90px;
	width: 170px;
	/*height:60px;*/
	border-radius: 3px;
	text-align: center;
	background: #fff;
	border: 1px solid #e8e8e8;
	transform: scale(0);
	-webkit-transform: scale(0);
	transition: all ease .3s;
	-webkit-transition: all ease .3s;
	transform-origin: right center;
	-webkit-transform-origin: right center;
	padding-bottom: 10px;
}
.online-ul li ._sig h4 {
	margin: 15px auto;
}
._sig i {
	position: absolute;
	right: -14px;
	top: 35%;
	width: 11px;
	height: 17px;
	background: url(../images/icoo.png)no-repeat;
}
.online-ul li:hover ._sig {
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1!important;
}




.online-ul li:first-child a {
	height: 321px;
}

@media screen and (max-width:990px) {
    .online-div{display: none;}
    .page_news{width: 100%;margin-left: 0;}
    .page_news_details .news_box {
        margin-top: 0;
    }
}


.i_product   .product_list ul {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr) !important;
        grid-gap: 1.6vw;
        margin: 40px 0 20px;
    }

.YFCX_BOX .item{
    width: 50%;
    color: #fff;
    padding: 20px 0;
}
.YFCX_BOX .item .title{
    font-size: 16px;
    opacity: .5;
}
.YFCX_BOX .item .subtitle{
    font-size: 24px;
    line-height: 50px;
}
.code_{
    grid-template-columns: repeat(1, 1fr) !important;
}
.code_ img{
    position: absolute;
    right: 0;
    top: 0;
}
.code_  .error-msg {
    right: 210px;
}
.pc_header_bx{height: 100px;}
@media screen and (max-width: 1200px) {
    .i_product .product_list ul{
        grid-template-columns: repeat(4, 1fr) !important;
    }
    .page_about .center .page_number {
        grid-gap: 10px;
    }
}

@media screen and (max-width: 900px) {
.pc_header_bx{height: 0px;}

    .i_product .product_list ul{
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .page_product .center .product_box .product_list ul li .content .info {
        padding: 4px 10px;
    }
    .YFCX_BOX  {
        padding: 15px;
    }
    .YFCX_BOX .item .subtitle {
    font-size: 20px;
    line-height: 30px;
}
}
@media screen and (max-width: 767px) {
    .i_product .product_list ul{
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 10px !important;
    }
    .page_product .center .product_box .product_list ul li .content .more_btn .more a {
        padding: 8px 6px;
    }
    .page_product .center .product_box .product_list ul li .content .more_btn .more a .icon {
    margin-left: 4px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
}