@charset "utf-8";

/* base */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'DIN';
    src: url(../fonts/DIN-Regular.otf);
}

@font-face {
    font-family: 'DIN';
    font-weight: bold;
    src: url(../fonts/DIN-Bold.otf);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* font-size: calc(100vw / 7.5); */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out 0.2s;
    -moz-transition: opacity 0.2s ease-in-out 0.2s;
    -ms-transition: opacity 0.2s ease-in-out 0.2s;
    -o-transition: opacity 0.2s ease-in-out 0.2s;
    transition: opacity 0.2s ease-in-out 0.2s;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -moz-outline-style: none;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

b,
strong {
    font-weight: bold;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: normal;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    font-family: inherit;
    line-height: inherit;
    outline: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

.img_h {
    position: relative;
    cursor: pointer;
}

.img_h img {
    display: block;
    opacity: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.img_h img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.img_h.img_ha:hover img {
    opacity: 1;
}

.img_h.img_ha:hover img:nth-child(2) {
    opacity: 0;
}

.a:hover .img_h.img_ha img,
a:hover .img_h.img_ha img,
.img_h:hover img {
    opacity: 0;
}

.a:hover .img_h.img_ha img:nth-child(2),
a:hover .img_h.img_ha img:nth-child(2),
.img_h:hover img:nth-child(2) {
    opacity: 1;
}


.visible-xs {
    display: none !important;
}

.clearfix::after {
    content: '';
    height: 0;
    display: block;
    clear: both;
}

.container {
    margin: 0 auto;
    min-height: 1px;
    max-width: 1400px;
}
.charts-container {
    margin: 0 auto;
    min-height: 1px;
    width: 52%;
    max-width: 1000px;
    height:950px;
    position:relative;
    padding-top:240px;
}
.charts-img
{
    position:absolute;
    left:0;
    top:180px;
    width:100%;
    height:calc(100% - 180px);
}
.line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    line-height: 24px;
}

.line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 72px;
    line-height: 24px;
}

.o_fit video,
.o_fit img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

[dis-select] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[dis-drag] {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.f-dr { /*水平*/
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.f-dc { /*垂直*/
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block; /* IE10失效的解决办法 */
}

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

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

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

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

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

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

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

.f-warp {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs {
        display: block !important;
    }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
    ::-webkit-scrollbar-track-piece {
        background-color: #ccc;
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #666;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #333;
    }
}

/* scrollbar */

/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <a href="javascript:;">上一页</a>
      <a href="javascript:;" class="page_num act">1</a>
      <a href="javascript:;" class="page_num">2</a>
      <a href="javascript:;" class="page_num">3</a>
      <a href="javascript:;">下一页</a>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
    margin: 40px auto;
}

.page_pc {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_pc a {
    font-size: 14px;
    color: #666666;
    margin-left: 10px;
    line-height: 34px;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #dddddd;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.page_pc a:first-child {
    margin-left: 0;
}

.page_pc .jumpPage {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 16px;
    color: #999999;
}

.page_pc .jumpPage input {
    width: 56px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #dddddd;
    margin: 0 10px;
    text-align: center;
}

.page_pc a.prev,
.page_pc a.next {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_pc a.prev img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.page_pc a:hover,
.page_pc a.act {
    color: #fff;
    background-color: #c7000b;
    border: solid 1px #b82124;
}

.page_pc em {
    font-style: normal;
    font-size: 12px;
    color: #666;
}

.page_sj {
    width: 100px;
    height: 32px;
    background: #c7000b;
    color: #fff;
    display: block;
    margin: 0 auto;
    line-height: 32px;
    display: none;
    text-align: center;
}

/* page */

/* common */
.md {
    position: relative;
    top: -100px;
}

.commonP {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.commonP .swiper-pagination-bullet {
}

.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {
}

.common_tit {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.common_tit h3 {
    font-size: 50px;
    font-weight: bold;
    color: #222222;
    line-height: 36px;
}

.common_tit h5 {
    font-size: 18px;
    line-height: 36px;
    color: #666666;
    margin-top: 40px;
}

.common_tit h6 {
    height: 46px;
    background-color: rgba(199, 0, 11, 0.04);
    border-radius: 23px;
    font-size: 18px;
    font-weight: bold;
    line-height: 46px;
    color: #c7000b;
    padding: 0 30px;
    margin: 18px auto 0;
}


#video_model {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

#video_model .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

#video_model .video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 80%;
    max-width: 960px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    background: #252525;
}

#video_model .video .close {
    position: absolute;
    right: -50px;
    top: 0;
    width: 40px;
    z-index: 99999;
    cursor: pointer;
}

#video_model .video_inner {
    width: 100%;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

#video_model .video_inner video {
    display: block;
    width: 100%;
    outline: none;
}

#video_model .video .text {
    padding: 16px 10px 30px;
}

#video_model .video .text h6 {
    font-size: 16px;
    color: #fff;
}

#video_model .video .text p {
    font-size: 12px;
    margin-top: 12px;
    color: #666;
}

/*
<!-- video_model -->
<div id="video_model">
  <div class="mask"></div>
  <div class="video">
    <div class="close"><img src="images/close.png" alt=""></div>
    <div class="video_inner"><video src="" autoplay controls x5-playsinline playsinline webkit-playsinline></video></div>
    <div class="text">
      <h6></h6>
      <p></p>
    </div>
  </div>
</div>
<!-- video_model -->
*/
.common_nav {
    border-bottom: 1px solid #e5e5e5;
}

.common_nav .container {
    display: flex;
    height: 70px;
    background-color: #ffffff;
    overflow-x: auto;
    word-break: keep-all;
}

.common_nav .container .item {
    font-size: 18px;
    color: #333333;
    padding: 0 34px;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.common_nav .container .item.active {
    font-weight: bold;
    color: #c7000b;
    background-color: #f7f8fa;
    border-bottom: 2px solid #c7000b;
}

.common_nav .container .item:hover {
    color: #c7000b;
    background-color: #f7f8fa;
}

/* common */

/* header */
.headerSJ {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background: #fff;
    box-shadow: 0 0 6px rgb(0 0 0 / 51%);
}

.header .header_nav {
    display: flex;
    align-items: center;
    height: 88px;
}

.header .header_nav li {
    margin-left: 50px;
    font-size: 16px;
    color: #333;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header .header_nav li::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #ffffff;
    height: 2px;
    background-color: #c7000b;
    width: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header .header_nav li.active::after,
.header .header_nav li.on::after {
    width: 100%;
}

.header .header_nav li a {
    line-height: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.header .logo img {
    height: 40px;
}

.header .header_nav li.search {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    background: transparent;
    margin-left: 80px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header .header_nav li.search::after,
.header .header_nav li.lang::after {
    display: none;
}

.header .search input {
    background: transparent;
    padding: 0px;
    height: 34px;
    border-radius: 17px;
    border: 0;
    font-size: 16px;
    width: 34px;
    -webkit-transition: opacity .1s ease, width .3s ease .1s;
    -moz-transition: opacity .1s ease, width .3s ease .1s;
    -ms-transition: opacity .1s ease, width .3s ease .1s;
    -o-transition: opacity .1s ease, width .3s ease .1s;
    transition: opacity .1s ease, width .3s ease .1s;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    opacity: 0;
    color: #fff;
}

.header .search:hover input {
    width: 225px;
    padding: 0 17px;
    opacity: 1;
    color: #333;
}

.header .search .img {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 18px;
    cursor: pointer;
}

.header .search .img a{position: absolute;top: 0;left: 0;z-index: 5;width: 100%;height: 100%;background: rgba(0, 0, 0, 0);}


.header .search .img img {
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header .search .img img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

/*.header .search:hover .img img:nth-child(1) {*/
/*  opacity: 0;*/
/*}*/

/*.header .search:hover .img img:nth-child(2) {*/
/*  opacity: 1;*/
/*}*/

.header .lang {
    position: relative;
}

.header .lang::before {
    content: '';
    width: 1px;
    height: 20px;
    background-color: #fff;
    opacity: 0.1;
    position: absolute;
    left: -28px;
    top: 30px;
}

.header.fixed {
    background: #fff;
    box-shadow: 0px 0px 24px rgba(102, 102, 102, 0.08);
}


.header.fixed  .header_nav li a,.header.hei  .header_nav li a {
    color: #222;
}

.header.fixed .header_nav li {
    color: #333;
}

.header.fixed .search .img img:nth-child(1) {
    opacity: 0;
}

.header.fixed .search .img img:nth-child(2) {
    opacity: 1;
}

/*.header.fixed .search:hover .img img:nth-child(1) {*/
/*  opacity: 1;*/
/*}*/

/*.header.fixed .search:hover .img img:nth-child(2) {*/
/*  opacity: 0;*/
/*}*/

.header.fixed .search input {
    background: #333;
    color: #fff;
}

.header .header_nav li .header_nav2 {
    width: 170px;
    background-color: #ffffff;
    border-radius: 6px;
    border: solid 1px #dddddd;
    padding: 18px 0;
    position: absolute;
    top: 80px;
    left: 50%;
    margin-left: -85px;
    display: none;
}

.header .header_nav li .header_nav2 a {
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    color: #333333;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
}

.header .header_nav li .header_nav2 a:hover {
    color: #c7000b;
}

.header_block {
    height: 80px;
    width: 100%;
}

/* header */







#foot{ position: relative;z-index: 3; margin: 0 auto; background: #000 url("../img/foot_bg.png")  no-repeat; background-size: cover;}
#foot .main{ display: block; padding: 110px 0 50px 0; margin: 0 auto;}
#foot .main>.intro{ display: inline-block; float: left;width: 25%;}
#foot .main>.intro>.logo{ text-align: left;}
#foot .main>.intro>.logo>img{display: block; width: 225px;height: auto; margin-bottom: 10px; }
#foot .main>.intro>.hotline{text-align: left; padding: 70px 0 50px 0;}
#foot .main>.intro>.hotline>a{display: block; font-size: 30px; font-weight: bold; color: #fff;transition: all .35s;}
#foot .main>.intro>.hotline>p{ font-size: 14px; color: rgba(255,255,255,.4); padding-top: 30px;}
#foot .main>.intro>.social{text-align: left;}
#foot .main>.intro>.social>.con{ padding: 0;}
#foot .main>.intro>.social>.con>a{display: inline-block; color: rgba(255,255,255,.3); width: 40px; height: 40px; line-height: 40px;text-align: center; font-size: 20px; border: 1px solid rgba(255,255,255,.3); border-radius: 100%; transition: all .35s;}
#foot .main>.intro>.social>.con>a:hover{ color: #fff; border-color: #d70d19; background: #d70d19; transform: translateY(-3px);}
#foot .main>.nav{ display: inline-block; box-sizing: border-box; width:55%;text-align: left;}
#foot .main>.nav>ul{ display: flex;justify-content: space-between; flex-direction: row;}
#foot .main>.nav>ul>li{display:inline-block;}
#foot .main>.nav>ul>li>a{display: block; font-size: 16px; text-transform: uppercase; color: #fff;transition: all .35s;}
#foot .main>.nav>ul>li>a:hover{color: #d70d19;}
#foot .main>.nav>ul>li>div{display: block;padding: 20px 0;}
#foot .main>.nav>ul>li>div>a{display: block;font-size: 14px;padding-bottom: 15px; color: rgba(255,255,255,.4); transition: all .35s;}
#foot .main>.nav>ul>li>div>a:hover{color: rgba(255,255,255,.8);}
#foot .main>.qrcode{width: 20%;text-align: right; float: right;}
#foot .main>.qrcode>img{width: 100%;height: auto;max-width: 150px;margin-top: 24px;}
#foot .main>.qrcode>p{font-size: 16px; padding-right: 38px;color: rgba(255,255,255,1);}
#foot .copy{margin: 0 auto; padding: 30px 0;font-size:16px;color: #666; text-align: left;border-top: 1px solid #454545;}
#foot .copy a{display: inline-block; margin-right: 10px; color: #666;transition: all .35s;}
#foot .copy a:hover{text-decoration: underline;}





















/* banner */
.banner {
    position: relative;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 12%);
}

.banner .swiper-slide {
    overflow: hidden;
    position: relative;
}
.banner .swiper-slide img {
    max-width: inherit;
    width: 100%;
}

.banner .prev {
    position: absolute;
    z-index: 9;
    bottom: 80px;
    outline: none;
    right: calc(50vw - 800px + 60px);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.banner .next {
    position: absolute;
    z-index: 9;
    bottom: 80px;
    outline: none;
    right: calc(50vw - 800px);
}
.banner .prev img:nth-child(1),
.banner .next img:nth-child(1) {
    opacity: .3;
}

.banner .swiper-pagination {
    position: absolute;
    left: calc(50vw - 800px);
    bottom: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(0, 0, 0, 0);
    margin-left: 12px;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
}
.banner .swiper-pagination-bullet:nth-child(1) {
    margin-left: 0;
}

.banner .swiper-pagination-bullet::before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

.banner .swiper-pagination-bullet-active {
    border: 3px solid rgba(0, 0, 0, 0.5);
}
.banner .swiper-pagination-bullet-active::before {
    background: transparent;
}

.banner .swiper-slide .container {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
}

.banner .swiper-slide .text {
    width: 670px;
}

.banner .swiper-slide .text h4 {
    font-size: 64px;
    line-height: 86px;
    letter-spacing: 3px;
    color: #363d4d;
    font-weight: bold;
    -webkit-transition: all .5s ease .2s;
    -moz-transition: all .5s ease .2s;
    -ms-transition: all .5s ease .2s;
    -o-transition: all .5s ease .2s;
    transition: all .5s ease .2s;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.banner .swiper-slide .text h6 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #363d4d;
    opacity: 0.8;
    margin-top: 40px;
    -webkit-transition: all .5s ease .4s;
    -moz-transition: all .5s ease .4s;
    -ms-transition: all .5s ease .4s;
    -o-transition: all .5s ease .4s;
    transition: all .5s ease .4s;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.banner .swiper-slide-active .text h4,
.banner .swiper-slide-active .text h6 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.banner2 {
    position: relative;
}
.banner2 img {
    max-width: inherit;
    width: 100%;
}

.banner2 .text {
    font-size: 56px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner2 .text h6 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 40px;
}

/* banner */

/* index */
.wrapper {
    overflow: hidden;
}

.ind1 {
    position: relative;
    overflow: hidden;
    padding: 5% 0 8%;
    background: #fefdf9;
    box-shadow: 0 5px 5px rgb(0 0 0 / 18%);
}

.ind1 .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.ind1::before {
    content: '';
    width: 100%;
    height: 8px;
    background-image: linear-gradient(0deg,
    #c7000b 0%,
    #ff4b55 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.ind1 .common_tit {
    position: relative;
    z-index: 3;
}

.ind1 .container {
    position: relative;
    z-index: 3;
    margin-top: 6%;
}

.ind1 .container .text {
    width: 52%;
    margin-left: 48%;
}

.ind1 .container .text h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 56px;
    color: #333333;
}

.ind1 .container .text h6 {
    margin-top: 32px;
    font-size: 18px;
    line-height: 34px;
    color: #333333;
}

.ind1 .container .text .nums {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 60px;
}

.ind1 .container .text .nums .line {
    width: 1px;
    height: 60px;
    background-color: #a1a8b2;
    opacity: 0.3;
    margin-bottom: 10px;
}

.ind1 .container .text .nums .item img {
    margin-bottom: 32px;
}

.ind1 .container .text .nums .item h3 {
    font-size: 24px;
    line-height: 30px;
    color: #333333;
}

.ind1 .container .text .nums .item h3 span {
    font-size: 60px;
    font-weight: bold;
    color: #333333;
    margin-right: 10px;
    font-family: 'DIN';
}

.ind1 .container .text .nums .item h5 {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.ind2 {
    position: relative;
}

.ind2 .bgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ind2 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ind2 .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.ind2 .tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 120px;
    font-size: 40px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    background-image: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ind2 .tabs::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.ind2 .tabs .tab:hover,
.ind2 .tabs .tab.active {
    background-image: linear-gradient(90deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%);
}

.ind2 .tabs .tab.active::after {
    content: '';
    height: 5px;
    background-image: linear-gradient(0deg,
    #c7000b 0%,
    #ff4b55 100%);
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.ind2 .tabs .tab img {
    margin-right: 16px;
}

.ind2 .container {
    position: relative;
    z-index: 3;
}

.ind2 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22.5% 0 20%;
    height: 900px;
}

.ind2 .content .left {
    width: 500px;
}

.ind2 .content2 .left {
    width: 720px;
}

.ind2 .content .left h4 {
    font-size: 36px;
    font-weight: bold;
    line-height: 50px;
    color: #333;
}

.ind2 .content .left h6 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333;
    margin-top: 30px;
    text-align: justify;
    min-height: 170px;
}

.ind2 .content2 .left h6 {
    font-size: 24px;
    line-height: 2;
    color: #525966;

}

.ind2 .content .left   a{
    display: block;
    width: 150px;
    line-height: 40px;
    border-radius: 5px;
    background: #fff;
    text-align: center;
}

.ind2 .content .left   a:hover{
    background: #ff4b55;
    color: #fff;
}

.ind2 .content .swiper-pagination {
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    margin-top: 60px;
}


.ind2 .content .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(0, 0, 0, 0);
    margin-right: 12px;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
}

.ind2 .content .swiper-pagination-bullet::before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
}

.ind2 .content .swiper-pagination-bullet-active {
    border: 3px solid rgba(0, 0, 0, 0.5);
}
.ind2 .content .swiper-pagination-bullet-active::before {
    background: transparent;
}

.ind2 .content .right {
    width: 500px;
}

.ind2 .content .right-item {
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
    color: #ffffff;
    height: 72px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
}

.ind2 .content .right-item a{display: block;width: 100%;height: 100%;top: 0;left: 0;z-index: 3;position: absolute;}

.ind2 .content .right-item::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left: 0;
    border-right: 9px solid #fff;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}

.ind2 .content .right-item.active {
    border-bottom-color: #fff;
    background-image: linear-gradient(90deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%);
    color: #ff4b55;
}

.ind2 .content .right-item.active::after {
    opacity: 1;
}

.ind3 {
    position: relative;
    background-image: url(/images/shuju_bg.jpg);
    background-size:cover;
    /*padding: 100px 0;*/
}

.ind3 .video {
    /*margin: 120px auto 0;*/
    display: block;
    width: 100%;
    /*max-width: 90%;*/
}
.ind3 .common_tit {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* index */

/* news */
.news {
    background-color: #f7f8fa;
}

.news1 {
    padding-top: 80px;
}

.news1 .container {
    display: flex;
}

.news1 .container .left {
    flex: 1;
    overflow: hidden;
}
.news1 .container .left .inner {
    height: 100%;
    width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.news1 .container:hover .left .inner {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.news1 .container .right {
    width: 46.25%;
    padding: 48px 60px;
    background: #fff;
    position: relative;
}
.news1 .container .right::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background-color: #c7000b;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news1 .container:hover .right::after {
    width: 100%;
}
.news1 .container .right h6 {
    font-size: 16px;
    line-height: 30px;
    color: #999999;
    display: flex;
    align-items: center;
}

.news1 .container .right h6 img {
    margin-right: 10px;
}

.news1 .container .right h5 {
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
    color: #333333;
    margin-top: 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news1 .container .right h4 {
    font-size: 16px;
    line-height: 30px;
    height: 60px;
    color: #333333;
    margin-top: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.news1 .container:hover .right h5,
.news1 .container:hover .right h4 {
    color: #c7000b;
}

.news1 .container .right span {
    width: 140px;
    height: 42px;
    background-color: #c7000b;
    border-radius: 21px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
}

.news1 .container .right span img {
    margin-left: 20px;
}

.news2 {
    padding: 80px 0 120px;
}

.news2 .container {
    display: flex;
    flex-wrap: wrap;
}

.news2 .container p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #333333;
    margin-bottom: 50px;
    width: 100%;
}

.news2 .container p span {
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    color: #c7000b;
    margin: 0 6px;
}

.news2 .container .item {
    width: 33.33%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    padding: 2.5%;
    position: relative;
}

.news2 .container .item:nth-child(3n + 1) {
    border-right: 1px solid #e5e5e5;
}

.news2 .container .item:nth-child(n + 5) {
    border-bottom: 1px solid #e5e5e5;
}

.news2 .container .item .img {
    border: solid 1px #e5e5e5;
    overflow: hidden;
}

.news2 .container .item .img img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news2 .container .item:hover .img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.news2 .container .item h4 {
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    height: 72px;
    color: #333333;
    margin-top: 40px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news2 .container .item:hover h4 {
    color: #c7000b;
}

.news2 .container .item h6 {
    font-size: 16px;
    line-height: 30px;
    color: #999999;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.news2 .container .item::before {
    content: '';
    width: 0;
    height: 2px;
    background-color: #c7000b;
    position: absolute;
    left: 0;
    top: -1px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news2 .container .item:hover::before {
    width: 100%;
}

.news2 .container .item h6 img {
    margin-right: 10px;
}

.news2 .pagination {
    margin-top: 60px;
}

.news_detail {
    padding: 40px 0;
}

.news_detail .bread {
    display: flex;
    align-items: center;
}

.news_detail .bread a {
    font-size: 16px;
    color: #666666;
}

.news_detail .bread img {
    margin: 0 16px;
}

.news_detail .bread span {
    font-size: 16px;
    color: #c7000b;
}

.news_detail .content {
    max-width: 1000px;
    margin: 0 auto;
}

.news_detail .content .top {
    padding-top: 80px;
}

.news_detail .content .top h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    color: #333333;
}

.news_detail .content .top h6 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.news_detail .content .top h6 span {
    margin: 0 18px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #999999;
    display: flex;
    align-items: center;
}

.news_detail .content .top h6 span img {
    margin-right: 8px;
}

.news_detail .content .mid {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin: 40px 0;
    padding: 40px 0;
}

.news_detail .content .mid p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #333333;
}

.news_detail .content .mid img {
    display: block;
    margin: 0 auto;
}

.news_detail .content .bottom {
    display: flex;
    align-items: center;
}

.news_detail .content .bottom .left {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
}

.news_detail .content .bottom .left p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
}

.news_detail .content .bottom .left p a {
    color: #666666;
}

.news_detail .content .bottom .left p a:hover {
    color: #c7000b;
}

.news_detail .content .bottom .right {
    width: 140px;
    height: 42px;
    line-height: 42px;
    background-color: #c7000b;
    border-radius: 21px;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_detail .content .bottom .right img {
    margin-right: 10px;
}

/* news */

/* result */
.banner_result {
    padding: 92px 0;
}

.banner_result .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 32px;
    color: #333333;
}

.banner_result .container .result_search {
    display: flex;
    align-items: center;
}

.banner_result .container .result_search .inp {
    position: relative;
}

.banner_result .container .result_search input {
    width: 500px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 4px 0px 0px 4px;
    border: solid 1px #e1e4e5;
    border-right: 0;
    font-size: 18px;
    padding: 0 20px;
}

.banner_result .container .result_search .inp img {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    display: none;
}

.banner_result .container .result_search .img {
    width: 100px;
    height: 55px;
    background-color: #c7000b;
    border-radius: 0px 4px 4px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.result .news2 {
    padding-top: 30px;
}

/* result */

/* notice */
.notice1 {
    padding-top: 100px;
}

.notice1 .tit {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
    margin-bottom: 60px;
    text-align: center;
}

.notice1 .container {
}

.notice1 .container .list {
}

.notice1 .container .list .item {
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(22, 36, 75, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.notice1 .container .list .item:hover {
    background-color: #c7000b;
}

.notice1 .container .list .item p {
    font-size: 24px;
    line-height: 30px;
    height: 30px;
    letter-spacing: 1px;
    color: #333;
    margin-left: 18px;
    flex: 1;
    min-width: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.notice1 .container .list .item:hover p {
    color: #fff;
}

.notice1 .container .list .item .time {
    font-size: 16px;
    line-height: 30px;
    color: #999999;
    width: 140px;
    margin-left: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.notice1 .container .list .item:hover .time {
    color: #fff;
}

.notice1 .container .list .item .view,
.notice1 .container .list .item .download {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: solid 1px #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.notice1 .container .list .item:hover .view,
.notice1 .container .list .item:hover .download {
    border-color: #c7000b;
}

.notice1 .pagination {
    margin-top: 60px;
    margin-bottom: 0;
}

.notice2 {
    padding: 120px 0;
}

.notice2 .container {
    height: 320px;
    background: #ffffff url(../images/notic2.png) left center / contain no-repeat;
    box-shadow: 0px 10px 20px 0px rgba(22, 36, 75, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.notice2 .left {
}

.notice2 .left h4 {
    display: flex;
    align-items: flex-end;
}

.notice2 .left h4 span:nth-child(1) {
    font-size: 100px;
    font-weight: bold;
    line-height: 72px;
    color: #c7000b;
    font-family: 'DIN';
}

.notice2 .left h4 span:nth-child(2) {
    margin-left: 20px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #333333;
}

.notice2 .left h4 .em {
    border: 8px solid transparent;
    border-top: 0;
    border-bottom: 12px solid #c7000b;
    margin-left: 10px;
    margin-bottom: 6px;
}
.notice2 .left h4 .emd {
    border: 8px solid transparent;
    border-bottom: 0;
    border-top: 12px solid #237c02;
    margin-left: 10px;
    margin-bottom: 6px;
}
.notice2 .left h5 {
    font-size: 20px;
    letter-spacing: 1px;
    color: #333333;
    margin: 30px 0;
}

.notice2 .left h5 span {
    color: #c7000b;
}

.notice2 .left h6 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #666666;
}

.notice2 .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice2 .right .line {
    width: 1px;
    height: 80px;
    background-color: #dddddd;
    margin: 0 55px;
}

.notice2 .right li h4 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #333333;
}

.notice2 .right li h6 {
    font-size: 50px;
    font-weight: bold;
    line-height: 26px;
    color: #333333;
    margin-top: 20px;
    font-family: 'DIN';
    font-weight: bold;
}

/* notice */

/* product */
.prod1 {
}

.prod1 .tit {
    max-width: 1160px;
    text-align: center;
    padding: 100px 0;
}

.prod1 .tit h4 {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
}

.prod1 .tit h6 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 50px;
}

.prod1 .tit .nums {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.prod1 .tit .nums .line {
    width: 1px;
    height: 60px;
    background-color: #a1a8b2;
    opacity: 0.3;
    margin: 0 80px;
}

.prod1 .tit .nums .item {
}

.prod1 .tit .nums .item h4 {
    font-family: Arial;
    font-size: 32px;
    line-height: 30px;
    color: #333333;
}

.prod1 .tit .nums .item h4 span {
    font-size: 60px;
    font-weight: bold;
    line-height: 30px;
    color: #333333;
    font-family: 'DIN';
    margin-right: 12px;
}

.prod1 .tit .item h6 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.prod2 {
    position: relative;
}
.prod2_nav .container {
    justify-content: center;
}
.prod2_nav .container .item.active {
    background: #fff;
}
.prod2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/prod2_img.png) left center / contain no-repeat;
}

.prod2 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    display: none;
}

.prod2 .container .left {
    width: 570px;
    padding-left: 5%;
    position: relative;
}





.prod2 .container .left h4 {
    font-size: 42px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 2px;
    color: #333333;
}

.prod2 .container .left h4 span {
    color: #c7000b;
}

.prod2 .container .left h6::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #dbdbdb;
    display: block;
    margin: 30px 0;
}

.prod2 .container .left h6 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
    color: #666666;
    max-width: 400px;
}

.prod2 .container .left   a{
    display: block;
    width: 150px;
    line-height: 40px;
    border-radius: 5px;
    background: #fff;
    text-align: center;
    margin: 30px 0 10px;
}

.prod2 .container .left   a:hover{
    background: #df282e;
    color: #fff;
}

.prod2 .container .left .swiper-text {
    /*overflow: visible;*/
}


.prod2 .container .left .lunbox{
    position: absolute;
    width: 86%;
    right: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
}








.prod2 .container .left .swiper-img.swiper-container {
    margin-top: 20px;
}

.prod2 .container .left .swiper-img .swiper-slide {
    background: #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}



.prod2 .container .left .swiper-img .swiper-slide.act {
    border-bottom-color: #c7000b;
    background-color: #f0f1f5;
}


.prod2 .container .left .swiper-imgnew {
    padding-bottom: 10px;
    margin-top: 30px;
}

.prod2 .container .left .swiper-imgnew span{
    background: #e52e2e;
}

.prod2 .container .left .swiper-imgnew .pagination_imgnew{

    top: auto;
    bottom: 0;
}


.prod2 .container .left .swiper-imgnew .swiper-slide {
    background: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}


.prod2 .container .left .swiper-imgnew .swiper-slide.act {
    border-bottom-color: #c7000b;
    background-color: #f0f1f5;
}




.prod2 .container .left .btns {
    position: relative;
    width: 100%;height: 1px;
}

.prod2 .container .left .btns > div {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px 0px 60px 0px rgba(49, 50, 51, 0.04);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 15px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    top: -80px;
    right: -50px;
    z-index: 3;
    border: 1px solid #ddd;
}
.prod2 .container .left .btns > div:hover {
    background: #faf6f6;
}

.prod2 .container .left .btns > div.prev{
    left: -40px;
    right: auto;
}

.prod2 .container .left .btns > div.prev img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.prod2 .container .right {
    flex: 1;
    min-width: 0;
    /*padding: 0 25px;*/
    padding: 0 0 0 50px;
    position: relative;
}

.prod2 .container .right .img {
    width: 100%;
    padding-top: 74.29%;
    position: relative;
    pointer-events: none;
}

.prod2 .container .right .img2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    opacity: 0;

}

.prod2 .container .right img {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.prod2Pagination {
    position: absolute;
    font-family: DIN;
    font-size: 18px;
    line-height: 28px;
    color: #999999;
    z-index: 3;
    right: 0;
    left: auto;
    width: auto;
    bottom: 100px;
}
.prod2Pagination .swiper-pagination-current {
    font-size: 30px;
    color: #666;
    font-weight: bold;
}
.prod2Pagination .swiper-pagination-total {
    font-weight: bold;
}



.prod2Paginationnew {
    position: absolute;
    font-family: DIN;
    font-size: 18px;
    line-height: 28px;
    color: #999999;
    z-index: 3;
    right: 0;
    left: auto;
    width: auto;
    bottom: 100px;
    opacity: 0;
}
.prod2Paginationnew .swiper-pagination-current {
    font-size: 30px;
    color: #666;
    font-weight: bold;
}
.prod2Paginationnew .swiper-pagination-total {
    font-weight: bold;
}

.prod2 .container .right .active {
    display: block;
}

.prod2.act .prod2Pagination{opacity: 0;}


.prod2.act .prod2Paginationnew{opacity: 1;}



.prod2.act .container .left .swiper-text{
    opacity: 0;
    pointer-events: none;
}


.prod2.act .container .left .lunbox{
    opacity: 1;
    pointer-events: visible;
}


.prod2.act .container .right .img1{
    opacity: 0;
}


.prod2.act .container .right .img2{
    opacity: 1;
}





.prod3 {
    padding-bottom: 100px;
}

.prod3 .container {
    position: relative;
}

.prod3 .container .tit {
    position: absolute;
    top: 16%;
    left: 10%;
    font-size: 40px;
    font-weight: bold;
    line-height: 34px;
    letter-spacing: 1px;
    color: #525866;
}

.prod3 .container .tabs {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.prod3 .container .tabs .tab {
    text-align: right;
    font-size: 20px;
    line-height: 22px;
    color: #cccccc;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.prod3 .container .tabs .tab.active {
    color: #e52e2e;
}

.prod3 .container .tabs .tab::after {
    content: '';
    width: 8px;
    height: 32px;
    background-color: transparent;
    -webkit-transform: skewX(-12deg);
    -moz-transform: skewX(-12deg);
    -ms-transform: skewX(-12deg);
    -o-transform: skewX(-12deg);
    transform: skewX(-12deg);
    margin-left: 10px;
}

.prod3 .container .tabs .tab.active::after {
    background-color: #e52e2e;
}

.prod3 .container .content {
    position: relative;
    width: 81.875%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.prod3 .container .content-imgs {
    position: relative;
}
.prod3 .container .content-imgs img {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.prod3 .container .content-imgs img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
}
.prod3 .container .content-imgs img.active {
    opacity: 1;
    visibility: visible;
}

.prod3 .container .ico {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.prod3 .container .ico1 {
    left: 60%;
    top: 34%;
}

.prod3 .container .ico2 {
    left: 26%;
    top: 79%;
}
.prod3 .container .content-texts {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.prod3 .container .content-texts.active {
    opacity: 1;
    visibility: visible;
}

.prod3 .container .content .texts {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.prod3 .container .content .texts span {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 46px;
    height: 48px;
    background-color: #f3f4f6;
    border-radius: 24px;
    font-size: 24px;
    line-height: 48px;
    color: #555a68;
    text-align: center;
    word-break: keep-all;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.prod3 .container .content .texts span:nth-child(1) {
    -webkit-transition: all .3s ease .2s;
    -moz-transition: all .3s ease .2s;
    -ms-transition: all .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .2s;
}
.prod3 .container .content .texts span:nth-child(2) {
    -webkit-transition: all .3s ease .25s;
    -moz-transition: all .3s ease .25s;
    -ms-transition: all .3s ease .25s;
    -o-transition: all .3s ease .25s;
    transition: all .3s ease .25s;
}
.prod3 .container .content .texts span:nth-child(3) {
    -webkit-transition: all .3s ease .3s;
    -moz-transition: all .3s ease .3s;
    -ms-transition: all .3s ease .3s;
    -o-transition: all .3s ease .3s;
    transition: all .3s ease .3s;
}
.prod3 .container .content .texts span:nth-child(4) {
    -webkit-transition: all .3s ease .35s;
    -moz-transition: all .3s ease .35s;
    -ms-transition: all .3s ease .35s;
    -o-transition: all .3s ease .35s;
    transition: all .3s ease .35s;
}
.prod3 .container .content .texts span:nth-child(5) {
    -webkit-transition: all .3s ease .4s;
    -moz-transition: all .3s ease .4s;
    -ms-transition: all .3s ease .4s;
    -o-transition: all .3s ease .4s;
    transition: all .3s ease .4s;
}
.prod3 .container .content .texts span:nth-child(6) {
    -webkit-transition: all .3s ease .45s;
    -moz-transition: all .3s ease .45s;
    -ms-transition: all .3s ease .45s;
    -o-transition: all .3s ease .45s;
    transition: all .3s ease .45s;
}
.prod3 .container .content .texts span:nth-child(7) {
    -webkit-transition: all .3s ease .5s;
    -moz-transition: all .3s ease .5s;
    -ms-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s;
}
.prod3 .container .content .texts span:nth-child(8) {
    -webkit-transition: all .3s ease .55s;
    -moz-transition: all .3s ease .55s;
    -ms-transition: all .3s ease .55s;
    -o-transition: all .3s ease .55s;
    transition: all .3s ease .55s;
}
.prod3 .container .content.active .texts span {
    opacity: 1;
}

.prod3 .container .content .texts span:nth-child(1) {
    left: 2%;
    top: 68%;
}

.prod3 .container .content .texts span:nth-child(2) {
    left: 7%;
    top: 81%;
}

.prod3 .container .content .texts span:nth-child(3) {
    left: 18%;
    top: 90%;
}

.prod3 .container .content .texts span:nth-child(4) {
    left: 31%;
    top: 95%;
}

.prod3 .container .content .texts span:nth-child(5) {
    left: 44%;
    top: 98%;
}

.prod3 .container .content .texts span:nth-child(6) {
    left: 58%;
    top: 96%;
}

.prod3 .container .content .texts span:nth-child(7) {
    left: 71%;
    top: 92%;
}

.prod3 .container .content .texts span:nth-child(8) {
    left: 82%;
    top: 83%;
}

.prod3 .container .content .texts span:nth-child(9) {
    left: 90%;
    top: 71%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(1) {
    left: 2%;
    top: 68%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(2) {
    left: 10%;
    top: 83%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(3) {
    left: 24%;
    top: 92%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(4) {
    left: 38%;
    top: 97%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(5) {
    left: 54%;
    top: 97%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(6) {
    left: 70%;
    top: 92%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(7) {
    left: 82%;
    top: 83%;
}

.prod3 .container .content-texts:nth-child(3) .texts span:nth-child(8) {
    left: 90%;
    top: 72%;
}

.prod4 {
    margin-bottom: 100px;
}

.pro_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
    position: relative;
}

.pro_tit span {
    width: 100px;
    height: 1px;
    background-color: #e5e5e5;
    margin: 0 40px;
}

.pro_tit::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #c7000b;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.prod4 .content {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod4 .content .item {
    /* width: 350px;*/
    flex: 1;
    height: 388px;
    padding: 0 3.75%;
    background-color: #f7f8fa;
    border: solid 1px #f7f8fa;
    margin-right: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.prod4 .content .item:last-child {
    margin-right: 0;
}

.prod4 .content .item:hover {
    background-color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(22, 36, 75, 0.05);
    border-color: #c7000b;
}

.prod4 .content .item h4 {
    font-size: 24px;
    font-weight: bold;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 10px;
}

.prod4 .content .item h4::after {
    content: '';
    width: 40px;
    height: 3px;
    background-color: #c7000b;
    margin: 38px 0;
    display: block;
}

.prod4 .content .item h6 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    text-align: justify;
}

.prod5 {
    background-color: #fafbfc;
    padding: 100px 0;
}

.prod5 .content1 {
    position: relative;
    margin-top: 16%;
}
.prod5 .content1 .item {
    pointer-events: none;
    position: absolute;
    z-index: 9;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.prod5 .content1 .item .dot {
    width: 8px;
    height: 8px;
    position: relative;
    cursor: pointer;
    transform: rotateX(50deg);
}

.prod5 .content1 .item .center {
    width: 8px;
    height: 8px;
    background: #c7000b;
    display: block;
    border-radius: 50%;
    animation: dot1 3s linear infinite;
}

.prod5 .content1 .item .dot1 .center {
    background: #fff;
}

.prod5 .content1 .item .dot2 .center {
    border: 1px solid #fff;
    position: relative;
    z-index: 5;
}

.prod5 .content1 .item .dot2::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(199, 0, 11, 0.8);
    border: solid 2px #c7000b;
    position: absolute;
    left: -21px;
    top: -21px;
    border-radius: 50%;
    z-index: 3;
    animation: dot2 4s linear infinite;
}
.prod5 .content1 .item .dot1::before {
    background: rgba(255, 255, 255, 0.8);
    border: solid 2px #fff;
}

.prod5 .content1 .item .dot2::after {
    content: '';
    width: 100px;
    height: 100px;
    background: rgba(199, 0, 11, 0.1);
    position: absolute;
    left: -46px;
    top: -46px;
    border-radius: 50%;
    z-index: 1;
    animation: dot2 4s linear infinite;
}
.prod5 .content1 .item .dot1::after {
    background: rgba(255, 255, 255, 0.8);
}

.prod5 .content1 .item .text {
    width: 34px;
    line-height: 22px;
    text-align: center;
    position: absolute;
    bottom: 4px;
    left: -29px;
    z-index: 7;
    height: 284px;
    border-right: 1px solid #727e8e;
    font-size: 18px;
    font-weight: bold;
    color: #626973;
}
.prod5 .content1 .item:nth-child(3) .text {
    height: 300px;
}
.prod5 .content1 .item:nth-child(4) .text {
    height: 240px;
}
.prod5 .content1 .item:nth-child(5) .text {
    height: 264px;
}
.prod5 .content1 .item:nth-child(6) .text {
    height: 204px;
}
.prod5 .content1 .item:nth-child(7) .text {
    height: 240px;
}
.prod5 .content1 .item:nth-child(8) .text {
    height: 150px;
}
.prod5 .content1 .item .text span {
    word-break: keep-all;
    white-space: nowrap;
    transform: rotateZ(90deg);
    display: block;
    transform-origin: top left;
    position: relative;
    left: 27px;
    font-family: Arial;
    font-size: 12px;
    letter-spacing: 1px;
    top: 6px;
}
.prod5 .content1 .item .dot1 ~ .text {
    color: #e64545;
    border-right-color: #e64545;
}
.prod5 .content1 .area {
    position: absolute;
    left: 67.5%;
    width: 17.4%;
    height: 27%;
    top: 21%;
}
.prod5 .content1 .area a {
    display: block;
    width: 100%;
    height: 100%;
}
.prod5 .content1 .area span {
    z-index: 3;
}
.prod5 .content1 .area span:nth-child(2) {
    position: absolute;
    left: -5%;
    width: 37.4%;
    height: 31%;
    top: 5%;
    transform: rotate(-23deg);
    transform-origin: top left;
}
.prod5 .content1 .area span:nth-child(3) {
    position: absolute;
    right: -7.5%;
    width: 21.4%;
    height: 31%;
    top: -31%;
    transform: rotate(34deg);
    transform-origin: top left;
    border-radius: 42%;
}
.prod5 .content1 .area span:nth-child(4) {
    position: absolute;
    left: 24%;
    width: 45%;
    height: 38%;
    top: -12.4%;
    border-radius: 50%;
}
.prod5 .content1 .area span:nth-child(5) {
    position: absolute;
    left: -4%;
    width: 60%;
    height: 43%;
    bottom: -18%;
    transform: rotate(19deg);
}
.prod5 .content1 .area span:nth-child(6) {
    position: absolute;
    right: 0;
    width: 21%;
    height: 53%;
    bottom: 0;
}
.prod5 .content1 .area span:nth-child(7) {
    position: absolute;
    right: -5%;
    width: 24%;
    height: 43%;
    bottom: 27%;
    transform: rotate(-20deg);
}
.prod5 .content1 .area span:nth-child(8) {
    position: absolute;
    right: 16%;
    width: 24%;
    height: 43%;
    bottom: -33%;
    transform: rotate(-20deg);
}
.prod5 .content1 .area a {
}
.prod5 .content {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    position: relative;
}

.prod5 .content .left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.prod5 .content .left .inner {
    position: relative;
}

.prod5 .content .left .dot {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.prod5 .content .left .dot span {
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #ffffff;
    position: absolute;
    left: 50%;
    text-align: center;
    background: #c8001b;
    height: 30px;
    min-width: 100%;
    padding: 0 18px;
    white-space: nowrap;
    word-break: keep-all;
    border-radius: 15px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.prod5 .content .right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.prod5 .content .right p {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #666666;
    margin-bottom: 72px;
}

.prod5 .content .right h5 {
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
    margin-bottom: 32px;
}

.prod5 .content .right .box {
    padding: 50px;
    width: 500px;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(22, 36, 75, 0.05);
    border-top: 3px solid #c7000b;
}

.prod5 .content .right .box h6 {
    display: flex;
    align-items: center;
    font-size: 18px;
    min-height: 24px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #333333;
    margin-bottom: 40px;
}

.prod5 .content .right .box h6:last-child {
    margin-bottom: 0;
}

.prod5 .content .right .box h6 img {
    margin-right: 10px;
}
.prod5 .content .back {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 122px;
    height: 40px;
    background-color: #fafbfc;
    border-radius: 20px;
    border: solid 1px #d8dee7;
    font-size: 14px;
    letter-spacing: 1px;
    color: #727e8e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod5 .content .back img {
    margin-right: 8px;
}

/* product */

/* about */
.about {
    padding: 100px 0 30%;
}

.about .container {
    display: flex;
}

.about .tit {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #222222;
    width: 27.5%;
}

.about .tit::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #c7000b;
    display: block;
    margin-top: 36px;
}

.about .text {
    flex: 1;
    padding-right: 10%;
}

.about .text .top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.about .text h6 {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #666666;
    text-align: center;
    margin-top: 20px;
}

.about .text h6 span {
    font-size: 40px;
    font-weight: bold;
    line-height: 36px;
    color: #666666;
}

.about .text h6 img {
    display: block;
    margin: 0 auto;
}

.about .text p {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #666666;
    margin-top: 42px;
}

/* about */

/* honour */
.honour_tit {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #222222;
    text-align: center;
}

.honour1 {
    background-color: #f7f8fa;
    padding-top: 100px;
}

.honour1 .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.honour1 .container .left {
    width: 52.5%;
    position: relative;
    padding-top: 15%;
}

.honour1 .container .left .img {
    position: absolute;
    z-index: 3;
    width: 31.55%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.honour1 .container .left .img1 {
    left: 61%;
    top: 24.3%;
}

.honour1 .container .left .img2 {
    left: 27.4%;
    top: 38.6%;
}

.honour1 .container .left .img3 {
    left: 73.7%;
    top: 60%;
}

.honour1 .container .right {
    width: 47.5%;
    padding: 0 4% 0 8%;
}

.honour1 .container .right .nums {
    display: flex;
    flex-wrap: wrap;
}

.honour1 .container .right .nums .item {
    width: 33.3%;
    margin-top: 60px;
}

.honour1 .container .right .nums h4 {
    font-size: 24px;
    line-height: 30px;
    color: #333333;
}

.honour1 .container .right .nums h4 span {
    font-size: 60px;
    font-weight: bold;
    color: #c7000b;
    background-image: linear-gradient(to top, #df282e, #ff9987);
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'DIN';
}

.honour1 .container .right .nums h6 {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    word-break: keep-all;
    white-space: nowrap;
}

.honour1 .container .right h3 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    text-align: justify;
}

.honour1 .container .right h5 {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1px;
    color: #999999;
    margin-top: 60px;
}

.honour2 {
    padding: 100px 0;
}

.honour2 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.honour2 .container .item {
    width: 255px;
    height: 78px;
    background: url(../images/honour_2.png) center / contain no-repeat;
    margin: 30px 26px;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* honour */

/* power */
.power1 {
    margin: 100px auto;
}

.power1 .container {
}

.power1 .container .tit {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.power1 .container .tit h4 {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
}

.power1 .container .tit h6 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 56px;
}

.power1 .container .content {
    margin: 80px auto 0;
    max-width: 1140px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.power1 .container .content .item {
    text-align: center;
    flex: 1;
}

.power1 .container .content .item img {
}

.power1 .container .content .item h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 30px;
    color: #333333;
    margin-top: 42px;
}

.power1 .container .content .item h4 span {
    font-size: 80px;
    /*letter-spacing: -10px;*/
    font-family: 'DIN';
    font-weight: bold;
    color: #333333;
}

.power1 .container .content .item h6 {
    font-size: 16px;
    line-height: 30px;
    color: #333333;
    margin-top: 32px;
}

.power2 {
}

.power2 .content {
    width: 100%;
    margin: 0 auto;
    height: 228px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 60px;
    letter-spacing: 1px;
    color: #566073;
    padding: 0 5%;
}

.power2 .content .inner {
    position: relative;
}

.power2 .content img {
    position: absolute;
    right: 104%;
    bottom: 100%;
}

.power3 {
    margin: 100px 0;
}

.power3 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.power3 .container .item {
    cursor: pointer;
    flex: 1;
    height: 534px;
    background-color: #fafbfc;
    border: solid 1px #fafbfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6% 4.25% 0px;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
    margin-right: 50px;
}
.power3 .container .item:nth-child(3) {
    margin-right: 0;
}
.power3 .container .item:hover {
    background-color: #ffffff;
    box-shadow: 0px 10px 20px 0px
    rgba(22, 36, 75, 0.05);
    border: solid 1px #c7000b;
}


.power3 .container .item h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
    color: #333333;
    margin-top: 16px;
}

.power3 .container .item h6 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 28px;
    text-align: justify;
    -webkit-transition: all .3s ease, width 0s ease;
    -moz-transition: all .3s ease, width 0s ease;
    -ms-transition: all .3s ease, width 0s ease;
    -o-transition: all .3s ease, width 0s ease;
    transition: all .3s ease, width 0s ease;
}

/* power */

/* culture */
.culture1 {
    padding: 100px 0 calc(100px + 5%);
}

.culture1 .tit,
.culture2 .tit {
    text-align: center;
}

.culture1 .tit h4,
.culture2 .tit h4 {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
}

.culture1 .content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 80px auto 0;
    padding: 0 90px;

}

.culture1 .content .item {
    flex: 1;
    text-align: center;
    position: relative;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.04);
    margin-right: 20px;
    padding: 42px 1% 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.culture1 .content .item:hover {
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
}
.culture1 .content .item:last-child {
    margin-right: 0;
}

.culture1 .content .item .img {
    width: 68px;
    margin: 0 auto;
}

.culture1 .content .item h4 {
    font-size: 28px;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 28px;
}

.culture1 .content .item h6 {
    font-size: 20px;
    line-height: 38px;
    height: 68px;
    letter-spacing: 1px;
    color: #666666;
    margin-top: 20px;
}

.culture2 {
    padding: 120px 0;
}

.culture2 .swiper {
    margin-top: 60px;
    padding: 0 90px;
    position: relative;
}

.culture2 .swiper .prev,
.culture2 .swiper .next {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    margin: auto;
    outline: none;
}

.culture2 .swiper .prev img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.culture2 .swiper .next {
    left: auto;
    right: 0;
}

.culture2 .sPagination {
    width: 300px;
    height: 2px;
    background-color: #e5e5e5;
    border-radius: 1px;
    margin: 60px auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.culture2 .sPagination span {
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    background-color: #c7000b;
    border-radius: 2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

}

/* culture */

/* resp */
.resp {
    padding-top: 100px;
}

.resp .tit {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resp .tit h4 {
    font-size: 50px;
    font-weight: bold;
    line-height: 36px;
    color: #333333;
}

.resp .tit h6 {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    margin-top: 56px;
}

.resp .content {
    padding: 100px 0 120px;
}

.resp .content:nth-child(2n) {
    background: #f7f8fa;
}

.resp .content:nth-child(2n + 1) {
    background: #fff;
}

.resp .content:nth-child(2) {
    background: #f7f8fa url(../images/resp1_bg.jpg) center / cover no-repeat;
}

.resp .content .mTit {
    font-size: 40px;
    font-weight: bold;
    line-height: 34px;
    letter-spacing: 2px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.resp .content .mTit::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #c7000b;
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.resp .content .mTit span {
    width: 100px;
    height: 1px;
    background-color: #e5e5e5;
    margin: 0 40px;
}

.resp .content .swiper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 90px;
    position: relative;
}

.resp .content .swiper .swiper-container {
    width: 75%;
}

.resp .content .swiper .tabs {
    width: 25%;
    padding-right: 5%;
}

.resp .content .swiper .tabs .item {
    font-size: 22px;
    line-height: 66px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
}
.resp .content .swiper .tabs .item::after {
    content: '';
    width: 30px;
    height: 3px;
    background: transparent;
    margin-left: 20px;
}
.resp .content .swiper .tabs .item.active {
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}
.resp .content .swiper .tabs .item.active::after {
    background: #c7000b;
}

.resp .content .swiper .textBox {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 600px;
    height: 275px;
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px
    rgba(22, 36, 75, 0.05);
    border-radius: 8px;
    z-index: 9;
}

.resp .content .swiper .textBox .item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 60px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.resp .content .swiper .textBox .item.active {
    opacity: 1;
    visibility: visible;
}

.resp .content .swiper .textBox .item h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    display: flex;
    align-items: center;
    width: 100%;
}

.resp .content .swiper .textBox .item h4 img {
    margin-right: 12px;
}

.resp .content .swiper .textBox .item h6 {
    margin-top: 32px;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #333333;
    height: 102px;
    text-align: justify;
}

.resp .content .swiper .textBox .ico {
    position: absolute;
    right: 50px;
    top: -10px;
}

.resp .content:nth-child(2n + 1) .swiper .swiper-container {
    order: 2;
}
.resp .content:nth-child(2n + 1) .swiper .tabs {
    padding-right: 0;
    padding-left: 5%;
}
.resp .content:nth-child(2n + 1) .swiper .tabs .item {
    justify-content: flex-start;
}
.resp .content:nth-child(2n + 1) .swiper .tabs .item::after {
    order: -1;
    margin-left: 0;
    margin-right: 20px;
}
.resp .content:nth-child(2n + 1) .swiper .textBox {
    left: 40px;
    right: auto;
}
.resp .content:nth-child(2n + 1) .swiper .textBox .ico {
    left: 50px;
    right: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.resp .content .swiper .textBox .item h4 {
    justify-content: flex-end;
}
.resp .content .swiper .textBox .item h6 {
    text-align: right;
}

/* resp */

/* footer */
.footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    border-bottom: 1px solid #e5e5e5;
}

.footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    border-bottom: 1px solid #e5e5e5;
}

.footer .top .websit {
    width: 150px;
    height: 48px;
    padding: 0 32px;
    background-color: #ffffff;
    border-radius: 24px;
    border: solid 1px #bbbbbb;
    cursor: pointer;
    font-size: 16px;
    color: #666666;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .top .websit span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .top .websit span img {
    margin-left: 12px;
}

.footer .top .websit ul {
    position: absolute;
    width: 210px;
    left: 50%;
    transition: all 0.3s ease;
    margin-left: -105px;
    text-align: center;
    background: #fff;
    top: 140%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / 8%);
}

.footer .top .websit ul li {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    line-height: 40px;
}

.footer .top .websit ul li:hover {
    /*background: #f1f1f1;*/
}
.footer .top .websit ul li a {
    display: block;
}

.footer .top .websit ul li a img{display: inline-block;width: 20px;margin: 0 5px 0 0;}

.footer .top .websit:hover .websitList {
    top: 124%;
    z-index: 8;
    visibility: visible;
    opacity: 1;
}


.footer .content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 20px 0;
}

.footer .content .left {
    width: 18.75%;
    min-width: 240px;
    padding-top: 44px;
}

.footer .content .left .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer .content .left .item .img {
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #bbbbbb;
}

.footer .content .left .item .text {
    padding-left: 14px;
}

.footer .content .left .item .text h4 {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.footer .content .left .item .text h6 {
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    color: #666666;
}

.footer .content .right {
    flex: 1;
    border-left: 1px solid #e5e5e5;
    padding: 40px 0 40px 6.25%;
    display: flex;
}

.footer .content .right .img {
    flex: 1;
    align-self: center;
    position: relative;
}

.footer .content .right .img .item {
    position: absolute;
    z-index: 9;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes dot1 {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dot2 {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(.6);
        -moz-transform: scale(.6);
        -ms-transform: scale(.6);
        -o-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }
}

.footer .content .right .img .item .dot {
    width: 8px;
    height: 8px;
    position: relative;
    cursor: pointer;
}

.footer .content .right .img .item .center {
    width: 8px;
    height: 8px;
    background: #c7000b;
    display: block;
    border-radius: 50%;
    animation: dot1 3s linear infinite;
}

.footer .content .right .img .item .dot2 .center {
    border: 1px solid #fff;
    position: relative;
    z-index: 5;
}

.footer .content .right .img .item .dot2::before {
    content: '';
    width: 50px;
    height: 50px;
    background: rgba(199, 0, 11, 0.8);
    border: solid 2px #c7000b;
    position: absolute;
    left: -21px;
    top: -21px;
    border-radius: 50%;
    z-index: 3;
    animation: dot2 4s linear infinite;
}

.footer .content .right .img .item .dot2::after {
    content: '';
    width: 100px;
    height: 100px;
    background: rgba(199, 0, 11, 0.1);
    position: absolute;
    left: -46px;
    top: -46px;
    border-radius: 50%;
    z-index: 1;
    animation: dot2 4s linear infinite;
}

.footer .content .right .img .item .text {
    width: 54px;
    height: 28px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #666;
    position: absolute;
    top: 16px;
    left: -21px;
    z-index: 7;
    word-break: keep-all;
}

.footer .content .right .img .item .dot1 ~ .text {
    font-size: 16px;
    color: #333;
    top: auto;
    bottom: 22px;
    font-weight: bold;
}

.footer .content .right .group {
    width: 190px;
}

.footer .content .right h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    color: #333333;
    margin-top: 50px;
    margin-bottom: 16px;
}

.footer .content .right li:first-child h4 {
    margin-top: 0;
}

.footer .content .right h6 {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 10px;
}

.footer .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e5e5;
    padding-bottom: 5px;
    height: 86px;
    font-size: 14px;
    line-height: 30px;
    color: #999999;
}

.footer a {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.footer a:hover {
    color: #c7000b;
}

/* footer */

@media (max-width: 1778px) {
    .banner .prev {
        right: calc(5% + 60px);
    }
    .banner .next {
        right: 5%;
    }
    .banner .swiper-pagination {
        left: 5%;
    }
}
@media (max-width: 1600px) {

    .ind2 .content{
        height: 870px;
    }
    .ind2 .content2 .left h6 {
        font-size: 20px;
        line-height: 32px;
    }
    .culture1 .content .item h6 {
        font-size: 16px;
    }
    .prod3 .container .tit {
        left: 4%;
        font-size: 34px!important;
    }
    .notice2 .left h4 span:nth-child(1) {
        font-size: 80px;
    }

    .notice2 .left h4 span:nth-child(2) {
        font-size: 20px;
    }

    .notice2 .right .line {
        margin: 0 30px;
    }
    .resp .content .swiper .textBox {
        right: 20px;
        bottom: 20px;
        width: 500px;
        height: 205px;
    }
    .resp .content .swiper .textBox .item h4 {
        font-size: 26px;
    }
    .resp .content .swiper .textBox .item h6 {
        margin-top: 22px;
        font-size: 16px;
        line-height: 26px;
        height: 78px;
    }
    .power3 .container .item {
        padding-top: 4%;
    }
}
@media (max-width: 1440px) {
    .prod2 .container {
        align-items: flex-end;
    }
    .prod2 .container .left {
        width: 50%;
        padding-left: 0;
    }
    .ind2 .content{
        height: 760px;
    }
    .culture1 .content .item .img {
        width: 52px;
    }
    .banner .swiper-slide .text h4 {
        font-size: 50px;
        line-height: 60px;
    }
    .prod2 .container {
        padding: 40px 0;
    }
    .prod3 .container .content .texts span {
        padding: 0 24px;
        height: 40px;
        border-radius: 20px;
        font-size: 20px;
        line-height: 40px;
    }
    .power2 .content {
        font-size: 28px;
    }
    .notice2 .left h4 span:nth-child(1) {
        font-size: 60px;
    }
    .notice2 .right li h6 {
        font-size: 40px;
    }
    .footer .content .left .item .text h6 {
        font-size: 18px;
    }
    .footer .content .right .group {
        width: 160px;
    }
    .footer .content .right h6 {
        font-size: 15px;
    }
    .honour1 .container .right .nums h4 span {
        font-size: 50px;
    }
    .banner2 .text {
        font-size: 42px;
    }
    .banner2 .text h6 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 20px;
    }
    .common_tit h3,
    .honour_tit,
    .tit,
    .tit > h4 {
        font-size: 40px!important;
    }
    .resp .content .mTit,
    .pro_tit {
        font-size: 32px;
    }
    .resp .content .swiper .tabs .item {
        font-size: 20px;
        line-height: 54px;
    }
    .resp .content .swiper .tabs .item.active {
        font-size: 26px;
    }
    .news1 .container .right h5 {
        font-size: 28px;
    }
    .news2 .container .item h4 {
        font-size: 20px;
        line-height: 32px;
        height: 64px;
    }
    .ind1 .container .text .nums .item h3 span {
        font-size: 50px;
    }
    .power1 .container .content .item h4 span {
        font-size: 64px;
    }
    .notice1 .container .list .item p {
        font-size: 20px;
    }
    .header .header_nav li {
        margin-left: 30px;
    }
    .header .header_nav li.search {
        margin-left: 60px;
    }
    .ind2 .tabs .tab {
        font-size: 32px;
    }
    .prod1 .tit .nums .item h4 span {
        font-size: 50px;
    }
}
@media (max-width: 1360px) {
    .ind2 .content2 .left h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .honour2 .container .item {
        width: 240px;
        height: 70px;
        margin: 20px 16px;
        font-size: 16px;
        line-height: 24px;
    }
    .notice2 .right .line {
        margin: 0 18px;
    }
    .ind1 .container .text h4 {
        font-size: 16px;
        line-height: 36px;
    }
    .ind1 .container .text h6 {
        font-size: 16px;
        line-height: 26px;
        margin-top: 0px;
    }
    .ind1 .common_tit {
        text-align: left;
        align-items: start;
    }
}
@media (max-width: 1280px) {}
@media (max-width: 1024px) {
    .header {
        display: none;
    }
    .headerSJ {
        display: block;
        position: fixed;
        left: 0px;
        top: 0px;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
        z-index: 99;
        width: 100%;
        background-color: #fff;
        padding: 0px 0px;
    }

    .headerSJ .headerSC {
        padding: 0px 5%;
        height: 60px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .headerSJ .logo img {
        height: 24px;
    }

    .headerSJ .navbar {
        position: relative;
        padding: 7px 10px;
        margin-right: 0px;
        background-color: transparent;
        background-image: none;
        border: 1px solid #c7000b;
        border-radius: 4px;
        outline: none;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    .headerSJ .navbar.active {
        border-color: transparent;
        padding: 7px 0px;
        margin-right: -4px;
    }

    .headerSJ .navbar .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        background-color: #c7000b;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    .headerSJ .navbar.active .icon-bar:nth-child(1) {
        -webkit-transform:translateY(6px)  rotate(45deg);
        -moz-transform:translateY(6px)  rotate(45deg);
        -ms-transform:translateY(6px)  rotate(45deg);
        -o-transform:translateY(6px)  rotate(45deg);
        transform:translateY(6px)  rotate(45deg);
    }
    .headerSJ .navbar.active .icon-bar:nth-child(2) {
        opacity: 0;
    }
    .headerSJ .navbar.active .icon-bar:nth-child(3) {
        -webkit-transform:translateY(-6px)  rotate(-45deg);
        -moz-transform:translateY(-6px)  rotate(-45deg);
        -ms-transform:translateY(-6px)  rotate(-45deg);
        -o-transform:translateY(-6px)  rotate(-45deg);
        transform:translateY(-6px)  rotate(-45deg);
    }

    .headerSJ .navbar .icon-bar + .icon-bar {
        margin-top: 4px;
    }

    .headerSJ .navwrap {
        position: fixed;
        top: 100%;
        left: 0%;
        width: 100%;
        height: 100%;
        z-index: 1100;
        background-color: #fff;
        opacity: 0;
    }

    .headerSJ .navwrap .nav {
        padding: 30px 5% 0px 5%;
    }

    .headerSJ .navwrap .nav li {
        line-height: 75px;
        border-bottom: 1px dashed #dbdbdb;
        /*padding: 0px 5%;*/
    }

    .headerSJ .navwrap .nav li a {
        display: block;
        color: #333;
        font-size: 16px;
    }

    .headerSJ .navwrap .nav li.child {
        padding-left: 20px;
    }
    .headerSJ .navwrap .nav li.child a {
        font-size: 15px;
    }
    .headerSJ .navwrap .nav ul {
        padding-top: 20px;
    }
    .headerSJ .navwrap .nav ul a:after {
        content: "";
        background: url(../img/right.png) no-repeat;
        background-size: 25px;
        width: 26px;
        height: 26px;
        display: inline-block;
        float: right;
        position: relative;
        top: 25px;
    }

    .headerSJ .navwrap .closeSJ {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .headerSJ .navwrap .nav .SJbod {
        display: none;
    }

    .headerSJ .navwrap .nav .SJbod dd a {
        height: 36px;
        line-height: 36px;
        font-size: 14px;
        padding: 0px 5%;
    }

    .headerSJ .navwrap .nav .plus a {
        position: relative;
    }

    .headerSJ .navwrap .nav .plus a::before,
    .headerSJ .navwrap .nav .plus a::after {
        content: '';
        width: 16px;
        height: 2px;
        background: #c7000b;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        right: 0;
        top: 20px;
    }
    .headerSJ .navwrap .nav .plus a::after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .headerSJ .navwrap .nav .minus a::after {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .headerSJ .navwrap .nav .lan .SJtit a {
        display: inline-block;
    }

    .headerSJ .navwrap .nav .lan .SJtit span {
        color: #fff;
        font-size: 16px;
        display: inline-block;
        padding: 0px 5px;
    }
    .header_search_m {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header_search_m input {
        border: 1px solid #c7000b;
        border-right: 0;
        flex: 1;
        height: 40px;
        padding: 0 10px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .header_search_m .img {
        background: #c7000b;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .header_search_m .img img {
        width: 16px;
    }

    .wrapper {
        padding-top: 60px;
    }
    .banner .swiper-slide .text {
        width: 450px;
    }
    .banner .swiper-slide .text h4 {
        font-size: 40px;
        line-height: 50px;
    }
    .banner .swiper-slide .text h6 {
        font-size: 16px;
        line-height: 24px;
    }
    .ind1 .container .text .nums .item h3 {
        font-size: 18px;
    }
    .ind1 .container .text .nums .item h3 span {
        font-size: 40px;
    }
    .footer .content .right .group {
        display: none;
    }
    .prod2 .container .right {
        margin-left: 0;
    }
    .prod2 .container .left {
        width: 480px;
    }
    .prod2 .container .left h4 {
        font-size: 32px;
        line-height: 48px;
    }
    .prod2 .container .left h6 {
        font-size: 16px;
        line-height: 24px;
        max-width: 360px;
    }
    .prod2 .container .left h6::before {
        margin: 20px 0;
    }
    .prod2 .container .left .swiper-container {
        margin-top: 40px;
    }
    .common_nav .container .item {
        font-size: 16px;
    }
    .common_tit h3,
    .honour_tit,
    .tit,
    .tit > h4 {
        font-size: 32px!important;
    }
    .common_tit h6 {
        height: 36px;
        border-radius: 18px;
        font-size: 16px;
        line-height: 36px;
        padding: 0 20px;
    }
    .common_tit h5,
    .tit h6 {
        font-size: 16px!important;
        line-height: 28px!important;
        margin-top: 30px!important;
    }
    .resp .content .mTit,
    .pro_tit {
        font-size: 28px;
    }
    .prod5 .content .right .box {
        padding: 40px;
        width: 400px;
    }
    .prod5 .content .right h5 {
        font-size: 24px;
    }
    .prod5 .content .left .dot {
        width: 50px;
    }
    .prod5 .content .left .dot span {
        font-size: 12px;
        line-height: 24px;
    }
    .power1 .container .content .item h4 span {
        font-size: 50px;
    }
    .power2 .content {
        font-size: 22px;
        height: 180px;
    }
    .power3 .container .item h4 {
        font-size: 24px;
    }
    .power3 .container .item h6 {
        margin-top: 10px;
    }
    .honour1 .container .right {
        padding: 0 0 0 6%;
    }
    .honour1 .container .right h3 {
        font-size: 16px;
        line-height: 26px;
    }
    .honour1 .container .right .nums .item {
        margin-top: 40px;
    }
    .honour1 .container .right .nums h4 span {
        font-size: 40px;
    }
    .honour1 .container .right h5 {
        font-size: 14px;
        margin-top: 40px;
    }
    .notice2 .container {
        padding: 0 40px;
    }
    .notice2 .right li h4 {
        font-size: 16px;
    }
    .notice2 .right li h6 {
        font-size: 32px;
    }
    .notice2 .left h4 span:nth-child(1) {
        font-size: 60px;
    }

    .notice2 .left h4 span:nth-child(2) {
        font-size: 16px;
    }
    .notice2 .left h5 {
        font-size: 16px;
    }
    .notice2 .left h6 {
        font-size: 14px;
    }
    .notice2 .right .line {
        margin: 0 12px;
    }
    .about .text {
        padding-right: 0;
    }
    .about .text h6 {
        font-size: 16px;
    }
    .resp .content .swiper .tabs .item {
        font-size: 18px;
        line-height: 40px;
    }
    .resp .content .swiper .tabs .item.active {
        font-size: 22px;
    }
    .resp .content .swiper .textBox .item h6 {
        margin-top: 12px;
        font-size: 14px;
        line-height: 24px;
        height: 72px;
    }
    .resp .content .swiper .textBox .item h4 {
        font-size: 20px;
    }
    .resp .content .swiper .textBox .item h4 img {
        width: 24px;
    }
    .resp .content .swiper .textBox {
        width: 400px;
        height: 160px;
    }
    .resp .content .swiper .textBox .item {
        padding: 0 8%;
    }
    .resp .content .swiper .textBox .ico {
        width: 30px;
    }
    .header_block {
        display: none;
    }
    .prod3 .container .tit {
        font-size: 24px!important;
    }
    .about .text p {
        font-size: 16px;
        line-height: 28px;
    }
    .culture1 .content .item h4 {
        font-size: 22px;
        line-height: 32px;
    }

    .culture1 .content .item h6 {
        font-size: 16px;
        line-height: 28px;
    }

    .ind2 .content{
        height: 600px;
    }
}

@media (max-width: 768px) {

    .ind2 .content{
        height: 420px;
    }


    #video_model .video .close {
        right: 0px;
        top: -50px;
    }
    .banner2 .text {
        font-size: 28px;
    }
    .banner2 .text h6 {
        font-size: 14px;
        line-height: 24px;
        margin: 10px auto 0;
        width: 90%;
        text-align: center;
    }
    .news_detail .bread {
        display: none;
    }
    .news_detail .content .top {
        padding-top: 0;
    }
    .news_detail .content .top h1 {
        font-size: 24px;
    }
    .news_detail .content .top h6 span {
        margin: 0 10px;
        font-size: 14px;
        letter-spacing: 0px;
    }
    .news_detail .content .top h6 span img {
        margin-right: 4px;
    }
    .news_detail .content .bottom .left {
        padding-right: 0;
    }
    .news_detail .content .bottom .right {
        display: none;
    }
    .footer .content {
        flex-direction: column;
    }
    .footer .content .left {
        width: 100%;
        position: relative;
    }
    .footer .content .right {
        width: 100%;
        border-left: 0;
    }
    .footer .content .left .ewm {
        position: absolute;
        top: 46px;
        right: 0;
    }
    .footer .bottom {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
    }
    .footer .top label {
        width: 120px;
        padding: 0 12px;
        overflow: hidden;
    }
    .footer .top select {
        height: 40px;
    }
    .news1 .container {
        flex-direction: column;
    }
    .news1 .container .left {
        height: 200px;
        width: 100%;
        flex: inherit;
    }
    .news1 .container .right {
        width: 100%;
        padding: 20px 5%;
    }
    .news1 .container .right span {
        margin-top: 20px;
    }
    .news1 .container .right h5 {
        font-size: 20px;
        line-height: 32px;
    }
    .news1 .container .right h4 {
        font-size: 14px;
        line-height: 24px;
        height: 48px;
    }
    .news1 .container .right h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .news2 .container .item {
        width: 100%;
        padding: 5%;
    }
    .news2 .container .item h4 {
        margin-top: 10px;
    }
    .news2 .container .item h6 {
        font-size: 14px;
        margin-top: 10px;
        line-height: 24px;
    }
    .common_nav .container {
        height: 50px;
    }
    .common_nav .container .item {
        padding: 0 16px;
    }
    .about {
        padding-top: 60px;
        padding-bottom: 210px;
        background-size: 240% !important;
    }
    .about .text p {
        margin-top: 20px;
        text-align: justify;
    }
    .about .container {
        flex-direction: column;
    }
    .about .tit {
        width: 100%;
        text-align: center;
    }
    .about .text {
        margin-top: 40px;
    }
    .about .tit::after {
        margin: 20px auto 0;
    }
    .about .text h6 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .about .text h6 span {
        font-size: 26px;
        position: relative;
        top: 1px;
    }
    .about .text h6 img {
        width: 40px;
    }
    .culture1 {
        padding: 60px 0;
    }
    .culture1 .content {
        flex-direction: column;
        margin-top: 0;
    }
    .culture1 .content .item {
        width: 100%;
        margin-top: 20px;
    }
    .culture1 .content .item:first-child {
        margin-top: 40px;
    }
    .culture1 .content .item h4 {
        margin-top: 20px;
    }
    .culture2 {
        padding: 60px 0;
    }
    .culture2 .swiper {
        margin-top: 40px;
    }
    .resp {
        padding-top: 60px;
    }
    .resp .content {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .resp .content .mTit span {
        display: none;
    }
    .resp .content .swiper {
        flex-direction: column;
        margin-top: 60px;
    }
    .resp .content .swiper .swiper-container {
        width: 100%;
    }
    .resp .content .swiper .tabs {
        display: none;
    }
    .resp .content:nth-child(2n + 1) .swiper .swiper-container {
        order: initial;
    }
    .resp .content:nth-child(2n + 1) .swiper .textBox {
        left: 0;
    }
    .resp .content .swiper .textBox .ico {
        display: none;
    }
    .resp .content .swiper .textBox {
        position: relative;
        background: transparent;
        box-shadow: none;
        width: 100%;
        right: 0;
        bottom: 0;
    }
    .resp .content .swiper .textBox .item h4 {
        justify-content: flex-start;
    }
    .resp .content .swiper .textBox .item h6 {
        text-align: left;
    }
    .resp .content .swiper .textBox .item {
        padding: 0;
    }
    .resp .content .swiper .swiper-pagination-bullet,
    .culture2 .swiper .swiper-pagination-bullet {
        background: #c7000b;
    }
    .notice1 .container .list .item {
        padding: 20px 5%;
        height: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .notice1 .container .list .item > .img_h {
        margin-bottom: 10px;
    }
    .notice1 .container .list .item p {
        margin-left: 12px;
        flex: inherit;
        width: calc(100% - 32px);
        font-size: 18px;
        margin-bottom: 10px;
    }

    .notice1 .container .list .item .time {
        font-size: 14px;
        margin-left: 32px;
    }

    .notice1 .container .list .item .view,
    .notice1 .container .list .item .download {
        width: 36px;
        height: 36px;
        margin-left: 20px;
    }
    .notice2 .container {
        flex-direction: column;
        padding: 40px 5%;
        height: auto;
    }
    .notice2 .left h4 span:nth-child(1) {
        font-size: 50px;
        line-height: 50px;
    }
    .notice2 .left h4 span:nth-child(2) {
        font-size: 14px;
    }
    .notice2 .right {
        flex-wrap: wrap;
    }
    .notice2 .right .line {
        display: none;
    }
    .notice2 .right li {
        width: 50%;
        margin-top: 20px;
        text-align: center;
    }
    .notice2 .right li h6 {
        margin-top: 4px;
    }
    .power1 .container .content {
        margin-top: 0;
        flex-direction: column;
    }
    .power1 .container .content .item {
        margin-top: 60px;
        width: 100%;
    }
    .power1 .container .content .item h4 {
        font-size: 28px;
        margin-top: 22px;
    }
    .power1 .container .content .item h6 {
        margin-top: 22px;
    }
    .power2 .content {
        font-size: 16px;
        height: 180px;
        line-height: 24px;
        text-align: center;
        background-position: left !important;
    }
    .power2 .content img {
        width: 20px;
    }
    .power3 .container {
        flex-direction: column;
    }
    .power3 .container .item {
        margin-right: 0;
        margin-bottom: 20px;
        height: auto;
        padding: 40px
        5%;
    }
    .honour1 .container {
        flex-direction: column;
    }
    .honour1 .container .left {
        width: 100%;
        padding-top: 28%;
    }
    .honour1 .container .right {
        width: 100%;
        padding: 20px 0 60px;
    }
    .honour1 .container .right .nums h4 {
        font-size: 20px;
    }
    .honour1 .container .right .nums h6 {
        font-size: 14px;
    }
    .honour1 .container .right .nums .item {
        margin-top: 20px;
    }
    .honour2 .container .item {
        width: 46%;
        height: 70px;
        margin: 0;
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 4%;
    }
    .honour2 .container .item:nth-child(2n) {
        margin-left: 8%;
    }
    .prod1 .tit .nums .line {
        display: none;
    }
    .prod1 .tit .nums .item {
        flex: 1;
    }
    .prod1 .tit .nums .item h4 {
        font-size: 20px;
    }
    .prod1 .tit .nums .item h4 span {
        font-size: 40px;
        margin-right: 0;
    }
    .pro_tit span {
        display: none;
    }
    .prod4 .content {
        flex-direction: column;
        margin-top: 50px;
    }
    .prod4 .content .item {
        width: 100%;
        height: auto;
        margin: 0;
        margin-top: 20px;
        padding: 40px 5%;
    }
    .prod4 .content .item h4 {
        font-size: 20px;
    }
    .prod4 .content .item h4::after {
        margin: 20px 0;
    }

    .prod4 .content .item h6 {
        font-size: 16px;
        line-height: 28px;
    }
    .prod5 .content {
        flex-direction: column;
    }
    .prod5 .content .left {
        width: 100%;
    }
    .prod5 .content .right {
        width: 100%;
        margin-top: 40px;
    }
    .prod5 .content .right .inner {
        width: 100%;
    }
    .prod5 .content .right .box {
        width: 100%;
        padding: 5%;
    }
    .prod5 .content .right p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 32px;
    }
    .prod3 .container {
        padding: 0px 0 80px;
    }
    .prod3 .container .tit {
        top: -40px;
        left: 0;
        font-size: 20px!important;
    }
    .prod3 .container .content {
        width: 100%;
    }
    .prod3 .container .content img.visible-xs {
        position: static;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }
    .prod3 .container .tabs .tab {
        font-size: 16px;
        margin-top: 10px;
    }

    .prod3 .container .tabs .tab::after {
        width: 6px;
        height: 20px;
        margin-left: 10px;
    }
    .prod2 {
        background-size: 150% auto !important;
        background-position: 99% 89% !important;
        background-color: #eeeff3 !important;
    }
    .prod2 .container .left {
        width: 100%;
        padding-left: 0;
    }
    .prod2 .container {
        flex-direction: column;
    }
    .prod2 .container .right {
        width: 100%;
        padding: 0;
    }
    .banner .swiper-slide .text h4 {
        font-size: 28px;
        line-height: 40px;
    }
    .ind1 {
        padding: 60px 12px;
    }
    .ind1 .video {
        display: none;
    }
    .ind1 .container .text {
        width: 100%;
        margin: 0;
    }
    .ind1 .container .text .nums {
        flex-wrap: wrap;
        margin-top: 0;
    }
    .ind1 .container .text .nums .line {
        display: none;
    }
    .ind1 .container .text .nums .item {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
    }
    .ind1 .container .text .nums .item img {
        margin-bottom: 20px;
    }
    .ind1 .container .text h6 p {
        text-align: justify;
    }
    .ind2 .tabs .tab {
        font-size: 22px;
        height: 80px;
    }
    .ind2 .tabs .tab img {
        width: 28px;
        margin-right: 6px;
    }
    .ind2 .content {
        flex-direction: column;
        padding-top: 140px;
    }
    .ind2 .content .left {
        width: 100%;
    }
    .ind2 .content .left h4 {
        font-size: 28px;
        line-height: 40px;
    }
    .ind2 .content .left h6 {
        font-size: 16px;
        line-height: 28px;
        margin-top: 20px;
    }
    .ind2 .content .right {
        display: none;
    }

    .prod2 .container .left .btns {
        position: relative;
        display: flex;
        justify-content: center;
        margin: 20px 0;
        height: auto;
    }

    .prod2 .container .left .btns > div {
        width: 48px;
        height: 48px;
        position: relative;
        top: 0;
        right: 0;
        left: 0;
    }

    .prod2 .container .left .btns > div.prev{
        left: 0;
    }
    .footer .top > img {
        width: 120px;
    }
    .culture2 .swiper {
        padding: 0;
    }
    .honour2,
    .prod5,
    .prod1 .tit,
    .ind3 {
        padding: 60px 0;
    }
    .prod2 .container {
        padding-top: 60px;
    }
    .prod2 .container .left h4 {
        font-size: 24px;
        line-height: 36px;
    }
    .prod3 {
        margin-top: 40px;
        padding-bottom: 60px;
    }
    .prod1 .tit .nums {
        margin-top: 30px;
    }
    .prod4 {
        margin-bottom: 60px;
    }
    .power1 {
        margin: 60px auto;
    }
    .power3 {
        margin: 60px 0;
    }
    .honour1 {
        padding-top: 60px;
    }
    .notice1 {
        padding-top: 60px;
    }
    .notice1 .tit {
        margin-bottom: 40px;
    }
    .notice2 {
        padding: 60px 0;
    }
    .news1 {
        padding-top: 60px;
    }
    .news2 {
        padding: 60px 0;
    }
    .news2 .pagination {
        margin-bottom: 0;
    }
    .result .news2 {
        padding-top: 60px;
    }
    .banner_result .container {
        flex-direction: column;
    }
    .banner_result .container .result_search {
        margin-top: 20px;
        width: 100%;
    }
    .banner_result .container .result_search input {
        width: 100%;
        height: 48px;
    }
    .banner_result .container .result_search .inp {
        flex: 1;
    }
    .banner_result .container .result_search .img {
        width: 48px;
        height: 48px;
    }
    .banner_result .container .result_search .img img {
        width: 20px;
    }
    .banner_result .container {
        font-size: 28px;
    }
    .banner_result {
        padding: 60px 0;
    }
    .ind3 .common_tit {
        position: static;
    }
    .prod2::before {
        display: none;
    }
    .prod2 .container .right img {
        top: 8%;
        width: 94%;
        left: 3%;
    }
    .banner .prev {
        right: 52%;
        bottom: 40px;
        display: none;
    }
    .banner .next {
        right: auto;
        left: 52%;
        bottom: 40px;
        display: none;
    }

    .culture1 .content {
        padding: 0;

    }
    .prod3 .container .ico {
        width: 24px;
    }

    .prod3 .container .ico1 {
        top: 26%;
    }

    .prod3 .container .ico2 {
        top: 59%;
    }
    .power1 .container .tit h6 {
        text-align: justify;
    }
    .ind2 .container {
        width: 100%;
    }
    .ind2 .container .content {
        padding-left: 5%;
        padding-right: 5%;
    }
    .ind2 .container .content2 {
        background: rgba(203, 219, 235, 0.6);
    }
    .banner .swiper-pagination {
        left: 0;
        right: 0;
        bottom: 20px;
    }

    .prod2Pagination {
        bottom: 40px;
        font-size: 16px;
    }
    .prod2Pagination .swiper-pagination-current {
        font-size: 20px;
    }


    .prod2Paginationnew {
        bottom: 40px;
        font-size: 16px;
    }
    .prod2Paginationnew .swiper-pagination-current {
        font-size: 20px;
    }

    .prod2 .container .left .lunbox{width: 100%;}

    .prod5 .content1 .item .text {
        border: 0;
        width: 54px;
        height: 28px !important;
        line-height: 22px;
        text-align: center;
        font-size: 12px;
        color: #666;
        position: absolute;
        top: 16px;
        left: -23px;
        z-index: 7;
        word-break: keep-all;
    }
    .prod5 .content1 .item .text span {
        display: none;
    }
    .prod5 .content1 .area {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .prod5 .content1 .area span {
        display: none;
    }
    .prod5 .content .back {

        position: static;
        margin-top: 20px;
    }
    .charts-container{
        width: 80%;
        height: 450px;
        padding-top: 30px;
    }
    #main{
        height: 400px !important;
    }


}
