﻿@charset "utf-8";

/* base */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: Gotham-Bold;
    src: url(../fonts/gotham-bold.eot);
    src: url(../fonts/gotham-bold.eot) format("embedded-opentype"), url(../fonts/gotham-bold.woff) format("woff"), url(../fonts/gotham-bold.ttf) format("truetype"), url(../fonts/gotham-bold.svg#gotham-bold) format("svg");
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
     font-size: 14px;
    -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;
}

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 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.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,
.img_h:hover img {
    opacity: 0;
}

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;
    width: 90%;
}

.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 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    ::-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;
    font-size: 14px;
    line-height: 28px;
}

.page_pc a {
    display: inline-block;
    color: #ccc;
    margin: 2px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    min-width: 30px;
    padding: 0 10px;
    height: 30px;
    border: solid 1px #e0e0e0;
}

.page_pc a:hover,
.page_pc a.act {
    border-color: #e77a04;
    background: #e77a04;
    color: #fff;
}

.page_pc em {
    font-style: normal;
    font-size: 12px;
    color: #666;
}

.page_sj {
    width: 100px;
    height: 32px;
    background: #e77a04;
    color: #fff;
    display: block;
    margin: 0 auto;
    line-height: 32px;
    display: none;
    text-align: center;
}

/* page */

/* common */
.md {
    position: relative;
    top: -100px;
}
#mb {
    position: relative;
    top: -188px;
}

.commonP {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.commonP .swiper-pagination-bullet {
}

.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {
}

.common_tit {
}

.common_tit h3 {
}

.common_tit h5 {
}


#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 */

/* header */
.headerSJ {
    display: none;
}

/* header */

/* menu */

/* menu */

/* banner */
.banner {
    position: relative;
}

.banner .swiper-slide {
    overflow: hidden;
    position: relative;
}

/* banner */

/* index */
.wrapper {
    overflow: hidden;
}

/* index */

/* footer */

/* footer */

@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: 999;
        width: 100%;
        background-color: #fff;
        padding: 0px 0px;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }
    .headerSJ.index {
        background: transparent;
        box-shadow: none;
    }
    .headerSJ.index .headerSC {
        height: 60px;
    }

    .headerSJ .headerSC {
        padding: 0px 5%;
        height: 50px;
        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;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    .headerSJ .logo img {
        height: 36px;
    }

    .headerSJ .search_btn {
        width: 26px;
        margin-right: 20px!important;
    }

    .headerSJ .navbar {
        position: relative;
        padding: 0;
        margin-right: 0px;
        background-color: transparent;
        background-image: none;
        border: 0;
        border-radius: 0px;
        outline: none;
    }

    .headerSJ .navbar .icon-bar {
        display: block;
        width: 28px;
        height: 3px;
        border-radius: 1px;
        background-color: #fb9c00;
    }

    .headerSJ .navbar .icon-bar + .icon-bar {
        margin-top: 4px;
    }

    .headerSJ .navwrap {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1100;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
    }

    .headerSJ .navwrap .nav {
        padding: 60px 5% 0px 5%;
    }

    .headerSJ .navwrap .nav li {
        line-height: 52px;
        padding: 0px 5%;
        text-align: center;
    }

    .headerSJ .navwrap .nav li a {
        display: block;
        color: #fff;
        font-size: 16px;
    }

    .headerSJ .navbg {
        position: fixed;
        right: 28px;
        top: 20px;
        z-index: 1101;
        display: none;
    }

    .headerSJ .navwrap .nav .SJbod {
        display: none;
    }

    .headerSJ .navwrap .nav .SJbod dd a {
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .headerSJ .navwrap .nav .plus a {
        background: url(https://sc.jiguangculture.com/images/plus.png) right center no-repeat;
    }

    .headerSJ .navwrap .nav .minus a {
        background: url(https://sc.jiguangculture.com/images/minus.jpg) right center no-repeat;
    }

    .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;
    }

    .wrapper {
        /*padding-top: 60px;*/
    }
}

@media (max-width: 768px) {
    #video_model .video .close {
        right: 0px;
        top: -50px;
    }
}

#header {
}
.header {
    box-shadow: 0px 3px 7px 0px rgba(110, 110, 110, 0.18);
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.header.index .container {
    height: 100px;
}
.header .container {
    height: 80px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.header .logo img {
    width: 100px;
}

.header .header_nav li {
    font-size: 16px;
    color: #000000;
    margin-left: 82px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.header .header_nav li.wb,
.header .header_nav li.wx,
.header .header_nav li.search_btn {
    position: relative;
    margin-left: 20px;
}
.header .header_nav li.wx .ewm {
    position: absolute;
    left: -40px;
    top: 60px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.header .header_nav li.wx:hover .ewm {
    opacity: 1;
    visibility: visible;
}

.header .header_nav li.on,
.header .header_nav li.active {
    color: #ee9f1d;
}

.header.index {
    box-shadow: none;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header.index .header_nav li {
    color: #fff;
}

.header.index .header_nav li.on,
.header.index .header_nav li.active {
    color: #ee9f1d;
}

.footer {
    background: #f9f9f9;
}

.footer .top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 72px 0 100px;
}

.footer .top .item {
    flex: 1
}

.footer .top .item .tit {
    font-size: 18px;
    line-height: 38px;
    color: #333333;
}

.footer .top .item .line {
    max-width: 161px;
    width: 90%;
    height: 2px;
    background-color: #bfbfbf;
    margin-top: 10px;
}

.footer .top .item p {
    font-size: 16px;
    line-height: 38px;
    color: #999999;
    margin-top: 10px;
}

.footer .top .item h6 {
    font-size: 16px;
    line-height: 38px;
    color: #999999;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-left: 26px;
    position: relative;
}

.footer .top .item h6 img {
    position: absolute;
    top: 6px;
    left: 0;
}

.footer .top .ewms {
    display: flex;
    align-items: flex-start;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer .top .ewms .inner {
    margin-right: 16px;
    font-size: 14px;
    line-height: 32px;
    color: #333;
}

.footer .top .ewms .ewm {
    width: 128px;
    height: 128px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .bottom {
    font-size: 16px;
    color: #999999;
    line-height: 70px;
    text-align: center;
    border-top: 1px solid #d9d9d9;
}

@charset "utf-8";

/* 首页样式 */
.i_banner {
    /*height: 997px;*/
}

.i_banner .swiper-slide {
    /*height: 997px;*/
    /*background: url("https://sc.jiguangculture.com/images/banner.png") no-repeat 0 0;*/
    /*background-size: 100% 100%;*/
    position: relative;
    background: #fff;
}
.i_banner .swiper-slide img.hidden-xs,
.i_banner .swiper-slide video.hidden-xs {
    display: block;
    width: 100%;
    height: calc(975vw / 19.2);
    object-fit: cover;
}

.i_banner .swiper-slide .text {
    position: absolute;
    top: 35%;
    left: 5%;
    max-width: 50%;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}

.i_banner .swiper-slide .read_more {
    width: 15rem;
    height: 5rem;
    border-radius: 10px;
    background-color: #ee9f1d;
    position: absolute;
    top: 60%;
    left: 5%;
    color: #fff;
    text-align: center;
    line-height: 5rem;
    font-size: 1rem;
    font-family: SourceHanSansCN-Normal;
    opacity: 0;
    -webkit-transform: translateY(140px);
    -moz-transform: translateY(140px);
    -ms-transform: translateY(140px);
    -o-transform: translateY(140px);
    transform: translateY(140px);
}
.i_banner .swiper-slide .read_more::after {
    content: '';
    position: absolute;
    left: -.3rem;
    top: -.3rem;
    width: 15.6rem;
    height: 5.6rem;
    border-radius: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border: 1px solid #ee9f1d;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.i_banner .swiper-slide .read_more:hover::after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.i_banner .swiper-slide-active .text,
.i_banner .swiper-slide-active .read_more {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .8s ease .4s;
    -moz-transition: all .8s ease .4s;
    -ms-transition: all .8s ease .4s;
    -o-transition: all .8s ease .4s;
    transition: all .8s ease .4s;
}

.i_banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: auto;
    left: 7rem;
    bottom: 5rem;
}

.i_banner .swiper-pagination-bullet {
    width: 2.86rem;
    height: 0.36rem;
    background-color: #fff;
    border-radius: 0;
    opacity: 1;
}

.i_banner .swiper-pagination-bullet-active {
    background-color: #ee9f1d;
}

.i_content_1 {
    /*height: 163.5rem;*/
}

.i_content_1>h3 {
    margin-top: 14.64rem;
    text-align: center;
    color: #000;
    font-size: 4rem;
}

.i_content_1_tit {
    text-align: center;
}

.i_content_1_tit>p:nth-child(1) {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #333333;
    margin-bottom: 1.64rem;
}

.i_content_1_tit>p:nth-child(2) {
    font-size: 1.57rem;
    letter-spacing: 0.31rem;
    color: #9b9b9b;
}

.i_content_1_text {
    margin: 4.43rem auto 0;
    text-align: center;
    font-size: 1rem;
    line-height: 2.32rem;
    letter-spacing: 0.02rem;
    color: #666666;
}

.i_content_1_count {
    height: 16.07rem;
    background-color: #ffffff;
    box-shadow: 0rem 0.21rem 0.69rem 0.02rem rgba(0, 0, 0, 0.03);
    margin: 6.14rem auto 14.64rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.i_content_1_count>li h2 {
    color: #ee9f1d;
    font-weight: bold;
    margin-bottom: 1.86rem;
    font-size: 2.57rem;
}

.i_content_1_count>li h2 span {
    margin-right: 10px;
    font-size: 5.14rem;
}

.i_content_1_count>li h6 {
    font-size: 1.43rem;
    font-weight: bold;
    color: #333;
}

.i_content_2 {
    height: 56.36rem;
    background: url("https://sc.jiguangculture.com/images/about.png") no-repeat 0 0;
    background-size: 100% 100%;
    position: relative;
}

.i_content_2::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.i_content_2_tit {
    position: absolute;
    top: 15.64rem;
    left: 7.14rem;
}

.i_content_2 .i_content_2_tit>p:nth-child(1) {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #fefefe;
    margin-bottom: 2rem;
}

.i_content_2 .i_content_2_tit>p:nth-child(2) {
    font-size: 1.57rem;
    font-style: italic;
    letter-spacing: 0.31rem;
    color: #ee9f1d;
}

.i_content_2_con {
    position: absolute;
    bottom: 8.64rem;
    left: 0;
    width: 100%;
    padding: 0 7.24rem 0 7.07rem;
    display: flex;
    justify-content: space-between;
}

.i_content_2_con li {
    width: 24%;
    height: 290px;
    padding: 4rem 1.93rem 0 2.5rem;
    border-radius: 0.29rem;
    background-color: rgba(255, 255, 255, .94);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_2_con li .i_content_2_con_tit {
    font-size: 1.54rem;
    color: #333333;
    margin-bottom: 3rem;
    position: relative;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_2_con li .i_content_2_con_tit::after {
    content: "";
    width: 2.36rem;
    height: 0.21rem;
    background-color: #ee9f1d;
    position: absolute;
    top: 2.93rem;
    left: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_2_con li .i_content_2_con_text {
    font-size: 1rem;
    color: #666666;
    line-height: 2rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_2_con li.active,
.i_content_2_con li:hover {
    background-color: rgba(238, 159, 29, .94);
}

.i_content_2_con li.active>.i_content_2_con_tit,
.i_content_2_con li:hover>.i_content_2_con_tit {
    color: #fff;
}

.i_content_2_con li.active>.i_content_2_con_text,
.i_content_2_con li:hover>.i_content_2_con_text {
    color: #fff;
}

.i_content_2_con li.active .i_content_2_con_tit::after,
.i_content_2_con li:hover .i_content_2_con_tit::after {
    content: "";
    width: 2.36rem;
    height: 0.21rem;
    background-color: #fff;
    position: absolute;
    top: 2.93rem;
    left: 0;
}

.i_content_3 {
    height: 79.86rem;
    background-color: #f9f9f9;
}

.i_content_3_tit {
    padding-top: 15.29rem;
    margin: 0 auto;
    text-align: center;
}

.i_content_3_tit h2 {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #333333;
    margin-bottom: 2rem;
}

.i_content_3_tit h6 {
    font-size: 1.57rem;
    letter-spacing: 0.31rem;
    color: #9b9b9b;
    font-style: italic;
    margin-bottom: 3.64rem;
}

.i_content_3_con {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
}

.i_content_3_con li {
    width: 32%;

}
.icontent_3_con_top {
    overflow: hidden;
}
.icontent_3_con_top img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
a:hover .icontent_3_con_top 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);
}

.i_content_3_con_bottom {
    height: 15.86rem;
    border: 1px solid #e5e5e5;
    padding: 0 2.57rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_3_con_bottom .content {
    padding: 3.43rem 0 1.57rem;
    border-bottom: 1px solid #e6e6e6;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_3_con_bottom .content>p:first-child {
    /*width: 50%;*/
    font-size: 1.29rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.57rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_3_con_bottom .content>p:last-child {
    font-size: 1.14rem;
    color: #666666;
    line-height: 2.05rem;
    letter-spacing: 0.02rem;
}

.i_content_3_con_bottom .to {
    padding-top: 1rem;
    font-size: 1.29rem;
    color: #666666;
    position: relative;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_3_con>li:hover .i_content_3_con_bottom .content p:nth-child(1) {
    color: #efa124;
}

.i_content_3_con>li:hover .i_content_3_con_bottom .to {
    color: #efa124;
}

.i_content_3_con>li .to::after {
    content: "";
    width: 2.5rem;
    height: 0.79rem;
    background: url("https://sc.jiguangculture.com/images/arrow.png") no-repeat 0 0;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 1.71rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.i_content_3_con>li:hover .to::after {
    background: url("https://sc.jiguangculture.com/images/arrow_a.png") no-repeat 0 0;
    background-size: 100% 100%;
}

.i_content_4 {
    /*height: 69.86rem;*/
    background-color: #fff;
    padding-bottom: 20px;
}

.partners {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.partners .inner {
    width: 14%;
    margin-bottom: 5.57rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    padding: 2px 16px;
}
.partners .inner:hover {
    box-shadow: 0px 3px 10px 0px
    rgba(0, 0, 0, 0.07);
}

/* service页面样式 */

.b_position {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-top: -10%;
    background-color: #f7f8fa;
    padding: 114px 34px 160px;
}

.b_position li {
    width: 24%;
    height: 278px;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, .94);
    padding: 4.06rem 1.69rem 0 2.19rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.b_position li.active,
.b_position li:hover {
    background-color: #ee9f1d;
}

.b_position li.active>p,
.b_position li:hover>p {
    color: #fff !important;
}

.b_position li.active>p:nth-child(1):after,
.b_position li:hover>p:nth-child(1):after {
    content: "";
    width: 2.06rem;
    height: 0.19rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 2.5rem;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.b_position li>p {

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.b_position li>p:first-child {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 3.31rem;
    position: relative;
}

.b_position li>p:first-child::after {
    content: "";
    width: 2.06rem;
    height: 0.19rem;
    background-color: #ee9f1d;
    position: absolute;
    left: 0;
    top: 2.5rem;
}

.b_position li>p:last-child {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.75rem;
}

.ind1 .sulation {
    border-bottom: 1px solid #ccc;
    position: relative;
    margin-top: 80px;
    padding-bottom: 160px;
}

.ind1 .sulation .box {
    /*position: absolute;*/
    /*top: 30.94rem;*/
    /*left: 6.25rem;*/
}

.sulation .box h2 {
    font-size: 7.66rem;
    color: rgba(230, 230, 230, .26);
}

.sulation .box h4 {
    font-size: 3rem;
    letter-spacing: 0.3rem;
    margin-bottom: 3.06rem;
}

.sulation .box .content {
    display: flex;
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sulation .box .content .left_img {
    width: 34%;
    margin-right: 4.06rem;
    box-shadow: -3.13rem 2.44rem 1px #f5f5f5;
}

.sulation .box .content .right {
    /*width: calc(100% - 42.87rem);*/
    position: relative;
    flex: 1;
    /*padding: 6rem 7.63rem 0 0;*/
}

.sulation .box .content .right::before {
    content: "";
    width: 3.75rem;
    height: 0.25rem;
    background-color: #e77a04;
    position: absolute;
    left: 0;
    top: -1.44rem;
}

.sulation .box .content .right>p:nth-child(1) {
    font-size: 1.13rem;
    line-height: 2.59rem;
    color: #666666;
    margin-bottom: 4.44rem;
}

.sulation .box .content .right>p:nth-child(2) {
    font-size: 1.13rem;
    line-height: 2.59rem;
    color: #333333;
    margin-bottom: 4.25rem;
}

.sulation .box .content .right>p:nth-child(2)>span {
    font-size: 1.5rem;
    color: #efa42a;
}

.sulation .box .content .right>p:nth-child(3) {
    font-size: 1.13rem;
    color: #666666;
    line-height: 2.59rem;
}

.phase_1 {
    margin-top: 120px;
}

.phase_1 .title {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.3rem;
    padding-top: 10.63rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.phase_1 .title>span {
    margin-right: 20px;
}

.phase_1 .part_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6.63rem;
    margin-bottom: 180px;
}

.phase_1 .part_1 .left {
    width: 45%;
    position: relative;
}

.phase_1 .part_1 .left::before {
    content: "";
    width: 3.75rem;
    height: 0.25rem;
    background-color: #e77a04;
    position: absolute;
    top: -64px;
    /*left: 6.31rem;*/
}

.phase_1 .part_1 .left>p:first-child {
    font-size: 2.25rem;
    letter-spacing: 0.23rem;
    margin-bottom: 5.19rem;
}

.phase_1 .part_1 .left>p:last-child {
    font-size: 1.13rem;
    line-height: 2.59rem;
    color: #666666;
}

.phase_1 .part_1 .right {
    width: 50%;
}

.phase_1 .part_2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

.phase_1 .part_2 .text {
    background-color: #f5f5f5;
    position: relative;
    width: 78%;
    margin-left: -40%;
    top: -80px;
    padding: 134px 34px 120px 34%;
}

.phase_1 .part_2 .text h3 {
    position: relative;
}
.phase_1 .part_2 .text h3::before {
    content: "";
    width: 3.75rem;
    height: 0.25rem;
    background-color: #e77a04;
    position: absolute;
    top: -40px;
    left: 0;
}

.phase_1 .part_2>img {
    position: relative;
    z-index: 3;
    /*top: 6.5rem;*/
    /*left: 6.25rem;*/
    width: 52%;
}

.phase_1 .part_2 .bg {
    width: 95%;
    height: 26.81rem;
    background-color: #e77a04;
    position: absolute;
    top: 320px;
    z-index: -1;
    left: 0;
}

.phase_1 .part_2 .text h3 {
    font-size: 2.25rem;
    letter-spacing: 0.23rem;
    margin-bottom: 5rem;
}

.phase_1 .part_2 .text p {
    font-size: 1.13rem;
    line-height: 2.59rem;
    color: #666666;
}
.phase_1 .part_2 h2 {
    font-size: 7.66rem;
    color: #f78f1f;
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}
.phase_1 .produce {
    font-size: 1rem;
    line-height: 2.22rem;
    color: #666666;
    text-align: center;
    padding: 2.56rem 18.5rem;
}
.phase_1:last-child {
    /*height: 134rem;*/
}
.phase_1:last-child .right {
    /*background: url("https://sc.jiguangculture.com/images/service2_3.png") no-repeat 0 0;*/
    /*background-size: 100% 100%;*/
}
.phase_1:last-child .text {
    /*width: 84.31rem;*/
    /*height: 48.5rem;*/
}
.phase_1:last-child .bg {
    top: 30rem;
}
.phase_1:last-child .part_1 {
    margin-top: 5.25rem;
}

/*  关于我们 */
.a_banner {
    height: 73rem;
    position: relative;
}
.a_banner .content {
    width: 90rem;
    height: 49rem;
    background-color: #eeeeee;
    position: absolute;
    right: 8rem;
    top: 12rem;
    padding: 11rem 3rem 0 39rem;
}
.a_banner .content h2 {
    font-size: 9rem;
    color: #e6e6e6;
    position: relative;
    /* margin-bottom: 3rem; */
}
.a_banner .content h2::after {
    content: "关于我们";
    position: absolute;
    font-size: 3.43rem;
    color: #000;
    letter-spacing: 0.34rem;
    top: 3.64rem;
    left: 0;
}
.a_banner .content p {
    font-size: 1rem;
    line-height: 3rem;
    color: #333333;
}
.a_banner .swiper-container {
    width: 858px;
    position: absolute;
    left: 4.14rem;
    top: 17.64rem;
}
.a_banner .swiper-container .swiper-pagination {
    text-align: right;
    padding: 0 2.93rem 2.93rem 0;
}
.a_banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}
.a_banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ee9f1d;
}
.a_content .count {
    /*height: 54rem;*/
    margin-top: 160px;
    position: relative;
}
.a_content .count .img {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.a_content .count .img img {
    width: 20%;
    /*height: 50%;*/
}
.a_content .outer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.a_content .number {
    display: flex;
    width: 60%;
    height: 100%;
    padding: 12.86rem 0;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.a_content .number li {
    width: 33.3%;
    text-align: center;
}
.a_content .number li >p:first-child span:nth-child(1) {
    font-size: 4.29rem;
    letter-spacing: 0.43rem;
    color: #ee9f1d;
}
.a_content .number li >p:first-child span:nth-child(2) {
    font-size: 1.71rem;
    letter-spacing: 0.43rem;
    color: #ffffff;
}
.a_content .number li >p:last-child {
    font-size: 1.71rem;
    color: #e6e6e6;
    letter-spacing: 0.17rem;
}
.a_content .text {
    width: 40%;
    top: 15.7rem;
}
.a_content .text .title {
    margin-bottom: 7rem;
}
.a_content .text .title h2 {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #ffffff;
}
.a_content .text .title h4 {
    font-size: 1.57rem;
    font-style: italic;
    letter-spacing: 0.34rem;
    letter-spacing: 0.31rem;
    color: #ffffff;
}
.a_content .text .content {
    font-size: 1.14rem;
    line-height: 2.75rem;
    color: #e6e6e6;
}
.a_content .content_1 {
    margin: 160px auto;
}
.a_content .content_1 ul {
    display: flex;
    justify-content: space-between;
}
.a_content .content_1 ul >li {
    /* flex-grow: 1; */
    height: 22vw;
    width: 33.3%;
    /* background-color: blue; */
    border: 2px solid #fff;
    position: relative;
}
.a_content .content_1 ul:first-child >li {
    width: 25%;
}
.a_content .content_1 ul:first-child >li:first-child {
    width: 50%;
}
.a_content .content_1 ul:first-child >li:first-child a {
    display: block;
    /*width: 57.36rem;*/
    /* flex-grow: 2; */
    padding: 6% 10% 0 8%;
    background-color: #f1f1f1;
    position: relative;
    height: 100%;
}
.a_content .content_1 ul:first-child >li:first-child img {
    position: absolute;
    right: 8%;
    bottom: 16%;
    width: 40px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.a_content .content_1 ul:first-child >li:first-child a:hover img {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
}
.a_content .content_1 ul li .img {
    height: 100%;
}
.a_content .content_1 ul li .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 159, 29, 0.9);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 24px 60px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.a_content .content_1 ul li .text h4 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 5px;
    color: #ffffff;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.a_content .content_1 ul li .text .line {
    width: 14px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px 0;
    opacity: 0;
    -webkit-transform: translateY(160px);
    -moz-transform: translateY(160px);
    -ms-transform: translateY(160px);
    -o-transform: translateY(160px);
    transform: translateY(160px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.a_content .content_1 ul li .text h5 {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0;
    -webkit-transform: translateY(220px);
    -moz-transform: translateY(220px);
    -ms-transform: translateY(220px);
    -o-transform: translateY(220px);
    transform: translateY(220px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.a_content .content_1 ul li .text h6 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-top: 20px;
    opacity: 0;
    -webkit-transform: translateY(280px);
    -moz-transform: translateY(280px);
    -ms-transform: translateY(280px);
    -o-transform: translateY(280px);
    transform: translateY(280px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.a_content .content_1 ul li:hover .text {
    opacity: 1;
    visibility: visible;
}
.a_content .content_1 ul li:hover .text h4,
.a_content .content_1 ul li:hover .text h5,
.a_content .content_1 ul li:hover .text h6,
.a_content .content_1 ul li:hover .text .line {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.a_content .content_1 h2 {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #333333;
    margin-bottom: 1.21rem;
}
.a_content .content_1 h4 {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 0.31rem;
    color: #9b9b9b;
    margin-bottom: 1.93rem;
}
.a_content .content_1 p {
    font-size: 16px;
    line-height: 2.25rem;
    letter-spacing: 0.23rem;
    color: #666666;
}
.a_content .content_1 img {
    width: 100%;
}
.a_content .content_2 {
    background-color: #f1f1f1;
}
.a_content .content_2 .title {
    padding-top: 11.29rem;
    padding-bottom: 4rem;
    margin: 0 auto;
    text-align: center;
}
.a_content .content_2 .title h2 {
    font-size: 3.43rem;
    letter-spacing: 0.34rem;
    color: #333333;
}
.a_content .content_2 .title h4 {
    font-size: 1.57rem;
    letter-spacing: 0.31rem;
    color: #9b9b9b;
    font-style: italic;
}
.a_content .content_2 .swiper-button-prev {
    width: 72px;
    height: 72px;
    background-image: url("https://sc.jiguangculture.com/images/left.png");
    background-size: 100% 100% !important;
    top: 56px;
    left: -125px;
}
.a_content .content_2 .swiper-button-next {
    width: 72px;
    height: 72px;
    background-image: url("https://sc.jiguangculture.com/images/right.png");
    background-size: 100% 100% !important;
    top: 56px;
    right: -125px;
}
#swiper-history {
    width: 70%;
    /* max-width: 820px; */
    position: relative;
    margin: 55px auto 0;
}
#swiper-history .swiper-container {
    height: 430px;
    margin: 0 auto;
}
#swiper-history .short-line {
    height: 72px;
    border-bottom: 1px dashed #007aff;
    width: 30px;
    position: absolute;
    top: 0px;
}
#swiper-history .long-line {
    height: 72px;
    border-bottom: 1px solid #ee9f1d;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
#swiper-history .swiper-slide span {
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    transition: 700ms;
}
#swiper-history .swiper-slide img {
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
#swiper-history .swiper-slide-active img {
    opacity: 1;
}
#swiper-history .swiper-slide .detail {
    font-size: 18px;
    font-style: italic;
    height: 20px;
    line-height: 20px;
    top: 110px;
    letter-spacing: 3.6px;
    color: #333333;
    opacity: 0;
}
#swiper-history .swiper-slide .date {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 4.4px;
    color: #ee9f1d;
    position: absolute;
    top: 27px;
    opacity: 0;
}
#swiper-history .swiper-slide .imgs {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translate(-50%);
}
#swiper-history .swiper-slide-active span {
    transition: 700ms 700ms;
}
#swiper-history .swiper-pagination-bullets {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    width: 23px;
    top: 60px;
    height: 23px;
    line-height: 10px;
    transition: 700ms;
}
#swiper-history .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}
#swiper-history .swiper-pagination-bullet {
    display: inline-block;
    width: 23px;
    height: 23px;
    background: #ee9f1d;
    /* border: 1px solid #007aff; */
    opacity: 1;
    line-height: 9px;
}
#swiper-history .swiper-pagination-bullet-active {
    background: #ee9f1d;
}
#swiper-history .swiper-button-next, #swiper-history .swiper-button-prev {
    background-size: 20px auto;
}

/* contact */
.contact1 .inner {
    margin-top: 165px;
    width: 72%;
    padding: 40px 0;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact1 .inner .left {
    width: 77.6%;
    margin-left: -38.8%;
}
.contact1 .inner .left video {
    max-width: 100%;
    display: block;
}

.contact1 .inner .left .swiper-pagination {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: auto;
    width: auto;
}

.contact1 .inner .left .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.contact1 .inner .left .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ee9f1d;
}

.contact1 .inner .text {
    padding: 0 42px;
    flex: 1;
    position: relative;
    height: 100%;
}

.contact1 .inner .text .t_inner {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.contact1 .inner .text .t_inner.act {
    opacity: 1;
    visibility: visible;
}

.contact1 .inner .text h3 {
    font-family: "Times New Roman";
    font-size: 6.6vw;
    line-height: 86px;
    font-weight: bold;
    color: #e6e6e6;
    position: relative;
}

.contact1 .inner .text h3 span {
    position: absolute;
    font-size: 2.8vw;
    line-height: 38px;
    letter-spacing: 5px;
    color: #000000;
    left: 0;
    line-height: 86px;
    font-weight: 200;
}

.contact1 .inner .text h6 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 52px;
    color: #333333;
}

.contact1 .inner .text .ewms {
    display: flex;
    text-align: center;
    margin-top: 20px;
}

.contact1 .inner .text .ewms .ewm {
    margin-right: 16px;
}

.contact1 .inner .text .ewms .img {
    width: 128px;
    height: 128px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact1 .inner .text .ewms .ewm p {
    font-size: 14px;
    line-height: 32px;
    color: #666666;
}

.contact2 {
    margin-top: 100px;
}

.contact2 h4 {
    font-size: 30px;
    line-height: 52px;
    color: #000000;
}

.contact2 .right {
    width: 100%;
}

.contact2 .right .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.contact2 .right .top input {
    height: 48px;
    border: solid 1px #eeeeee;
    font-size: 16px;
    line-height: 52px;
    color: #333;
    padding: 0 24px;
    width: 48%;
}

.contact2 .right .top input::placeholder {
    color: #999;
}

.contact2 .right .bottom {
    margin-top: 20px;
}

.contact2 .right .bottom textarea {
    height: 102px;
    border: solid 1px #eeeeee;
    display: block;
    padding: 24px;
    color: #333;
    width: 100%;
    resize: none;
}

.contact2 .right .bottom textarea::placeholder {
    color: #999;
}

.contact2 .right .bottom button {
    width: 124px;
    height: 34px;
    background-color: #e77a04;
    font-size: 14px;
    line-height: 34px;
    color: #ffffff;
    border: 0;
    outline: none;
    display: block;
    margin: 18px auto 0;
}

.contact3 {
    margin-top: 60px;
    position: relative;
}

.contact3 #mapContainer {
    width: 100%;
    height: 560px;
}

.contact3 #mapContainer .amap-info-sharp,
.contact3 #mapContainer .amap-info-close {
    display: none;
}

.contact3 #mapContainer .amap-info-content.amap-info-outer {
    width: 200px;
    height: 80px;
    background-color: rgba(199, 136, 32, 0.9);
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 16px 22px;
    border: 0;
    left: -14px;
    top: -40px;
    position: relative;
    overflow: visible;
}

.contact3 #mapContainer .amap-info-content.amap-info-outer::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    border: 10px solid transparent;
    border-top-color: rgba(199, 136, 32, 0.9);
    top: 100%;
    width: 0;
    margin: 0 auto;
}
.contact3 .outer {
    position: absolute;
    top: 87px;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact3 .left {
    width: 500px;
    height: 386px;
    background-color: rgba(255, 255, 255, 0.4);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.contact3 .outer .inner {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 84px 64px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.contact3 .outer .line {
    width: 100%;
    height: 1px;
    background-color: #a3a3a3;
    margin: 28px 0;
}

.contact3 .outer h4 {
    font-size: 30px;
    line-height: 52px;
    color: #000000;
}

.contact3 .outer h6 {
    font-size: 16px;
    line-height: 38px;
    color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-left: 26px;
    position: relative;
}

.contact3 .outer h6 img {
    position: absolute;
    top: 6px;
    left: 0;
}
.contact3 .right {
    width: 192px;
}
.contact3 .right h4 {
    box-sizing: content-box;
    width: 192px;
    height: 48px;
    line-height: 48px;
    background-color: #e8e8e8;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
}
.contact3 .right h4:hover {
    background-color: #ee9f1d;
    color: #fff;
}
.contact3 .right .img {
    background-color: #e8e8e8;
    width: 64px;
    cursor: pointer;
}
.contact3 .right .img:hover {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    background-color: #ee9f1d;
}
.contact3 .right .img:first-child {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.contact3 .right .img:last-child {
    margin-top: 5px;
}
.contact3 .right h4.active {
    color: #fff;
    background-color: #ee9f1d;
}

/* contact */
/* news */
.banner_news {
    position: relative;
}

.banner_news .text {
    position: absolute;
    left: 5%;
    top: 30%;
    max-width: 40%;
}
.banner_service .text {
    max-width: 90%;
}

.banner_news .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
}

.banner_news .inner a {
    width: 24%;
    font-size: 18px;
    height: 108px;
    text-align: center;
    line-height: 108px;
    color: #000000;
    background: #fff;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.banner_news .inner a:hover,
.banner_news .inner a.active {
    color: #fff;
    background: #ee9f1d;
}

.news {
    margin-top: 100px;
}

.news .list {
}

.news .list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4% 0;
    border-bottom: 1px solid #ccc;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.news .list .item:first-child {
    border-top: 1px solid #ccc;
}

.news .list .item .img {
    width: 25%;
    overflow: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.news .list .item .img img {
    display: block;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: scale(1.08) translateX(4%);
    -moz-transform: scale(1.08) translateX(4%);
    -ms-transform: scale(1.08) translateX(4%);
    -o-transform: scale(1.08) translateX(4%);
    transform: scale(1.08) translateX(4%);
}
.news .list .item:hover {
    background: #fb9c00;
    color: #fff;
}
.news .list .item:hover .img {
    -webkit-transform: translateX(8%);
    -moz-transform: translateX(8%);
    -ms-transform: translateX(8%);
    -o-transform: translateX(8%);
    transform: translateX(8%);
}
.news .list .item:hover .img img {
    -webkit-transform: scale(1.08) translateX(-4%);
    -moz-transform: scale(1.08) translateX(-4%);
    -ms-transform: scale(1.08) translateX(-4%);
    -o-transform: scale(1.08) translateX(-4%);
    transform: scale(1.08) translateX(-4%);
}

.news .list .item .text {
    padding-left: 4%;
    flex: 1;
    color: #666;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.news .list .item:hover .text {
    color: #fff;
    -webkit-transform: translateX(-1.4%);
    -moz-transform: translateX(-1.4%);
    -ms-transform: translateX(-1.4%);
    -o-transform: translateX(-1.4%);
    transform: translateX(-1.4%);
}

.news .list .item .text h4 {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    padding-bottom: 10px;
    border-bottom: solid 1px #e5e5e5;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.news .list .item:hover .text h4 {
    color: #fff;
}

.news .list .item .text h5 {
    font-size: 16px;
    line-height: 34px;
    margin-top: 14px;
}

.news .list .item .text h6 {
    font-size: 16px;
    margin-top: 80px;
}

.news_detail {
    margin: 100px auto;
}

.news_detail h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 38px;
    color: #000000;
    text-align: center;
}

.news_detail h6 {
    font-size: 16px;
    color: #999999;
    text-align: center;
    margin-top: 20px;
}

.news_detail .inner {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 30px;
    padding: 30px 0;
}

.news_detail p {
    font-size: 16px;
    line-height: 38px;
    color: #666666;
}

.news_detail img {
    margin: 20px auto;
    display: block;
}

.news_detail .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 72px;
}

.news_detail .bottom .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_detail .bottom .right a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 66px;
}

.news_detail .bottom a img {
    margin: 0 6px;
}

/* news */

/* anchor */
.anchor1 .inner .text h5,
.anchor1 .inner .text h6 {
    font-size: 18px;
    line-height: 32px;
    color: #ee9f1d;
    font-weight: bold;
}

.anchor1 .inner .text h5 span {
    color: #000;
}

.anchor1 .inner .text h5 span a {
    text-decoration: underline;
}

.anchor1 .inner .text h6 span {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}

.anchor2 {
    padding-bottom: 80px;
}

.anchor2 .item {
    float: left;
    width: 27%;
    margin-right: 9.5%;
    margin-top: 10%;
    position: relative;
}

.anchor2 .item:nth-child(3n) {
    margin-right: 0;
}

.anchor2 .item .img {
    overflow: hidden;
}
.anchor2 .item .img img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.anchor2 .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);
}

.anchor2 .item .text {
    text-align: center;
    background: rgba(242, 242, 242, 0.8);
    color: #333333;
    padding: 28px 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.anchor2 .item:hover .text {
    background: rgba(255, 143, 38, 0.8);
    color: #fff;
}

.anchor2 .item .text h4 {
    font-size: 24px;
    font-weight: bold;
}

.anchor2 .item .text h6 {
    font-size: 18px;
    margin-top: 20px;
}

/* anchor */

/* video */
.video2 {
    margin: 180px auto;
}

.video2 .title {
    text-align: center;
    font-size: 48px;
    letter-spacing: 5px;
    color: #000000;
}

.video2 .list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.video2 .list .item {
    width: 14%;
    text-align: center;
    margin-top: 100px;
}

.video2 .list .icon {
    max-width: 118px;
    width: 90%;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video2 .list .icon img:nth-child(1) {
    opacity: 1;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video2 .list .icon img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video2 .list .item p {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video2 .list .item:hover .icon {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background: #fb9c00;
}
.video2 .list .item:hover img:nth-child(1) {
    opacity: 0;
}
.video2 .list .item:hover img:nth-child(2) {
    opacity: 1;
}
.video2 .list .item:hover p {
    color: #fb9c00;
}

.video3 {
    margin-bottom: 120px;
}

.video3 .list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.video3 .list .item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
    overflow: hidden;
}

.video3 .list .item:nth-child(3n) {
    margin-right: 0;
}

.video3 .list .item .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 159, 29, 0.9);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 24px 60px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video3 .list .item .text h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 5px;
    color: #ffffff;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video3 .list .item .text .line {
    width: 14px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px 0;
    opacity: 0;
    -webkit-transform: translateY(160px);
    -moz-transform: translateY(160px);
    -ms-transform: translateY(160px);
    -o-transform: translateY(160px);
    transform: translateY(160px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video3 .list .item .text h5 {
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0;
    -webkit-transform: translateY(220px);
    -moz-transform: translateY(220px);
    -ms-transform: translateY(220px);
    -o-transform: translateY(220px);
    transform: translateY(220px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video3 .list .item .text h6 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-top: 20px;
    opacity: 0;
    -webkit-transform: translateY(280px);
    -moz-transform: translateY(280px);
    -ms-transform: translateY(280px);
    -o-transform: translateY(280px);
    transform: translateY(280px);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video3 .list .item:hover .text {
    opacity: 1;
    visibility: visible;
}
.video3 .list .item:hover .text h4,
.video3 .list .item:hover .text h5,
.video3 .list .item:hover .text h6,
.video3 .list .item:hover .text .line {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.i_content_5 {
    margin: 180px auto;
}
.i_content_5 .text {
    margin-top: 100px;
    position: relative;
}
.i_content_5 .text .changes {
    position: relative;
    width: 100%;
}
.i_content_5 .text .changes .change {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    padding-left: 23.3%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.i_content_5 .text .changes .change:nth-child(1) {
    position: relative;
}
.i_content_5 .text .changes .change.act {
    opacity: 1;
    z-index: 3;
}
.i_content_5 .text .block1 {
    border-left: 4px solid #000;
    padding-left: 40px;
    width: 39%;
    position: relative;
}
.i_content_5 .text .block1 .innerr {
    position: absolute;
    left: 0;
    right: 0;
}
.i_content_5 .text .block1 h4 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}
.i_content_5 .text .block1 h5 {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-top: 24px;
}
.i_content_5 .text .block1 h6 {
    margin-top: 28px;
}
.i_content_5 .text .block1 a {
    text-decoration: underline;
    font-size: 16px;
    font-weight: bold;
    color: #e79d23;
}
.i_content_5 .text .block2 {
    margin-left: 4.25%;
    width: 26.5%;
    font-size: 16px;
    line-height: 28px;
    color: #666;
}
.i_content_5 .text .block3 {
    position: absolute;
    left: 40px;
    top: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: left bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}
.i_content_5 .text .block3 .curr {
    color: #e8e8e8;
    margin: 0 4px;
}
.i_content_5 .text .block3 .total {
    color: #e79d23;
    margin: 0 2px;
}
.i_content_5 .text .block3 .outer {
    height: 3px;
    width: 224px;
    background-color: #e8e8e8;
}
.i_content_5 .text .block3 .innerr {
    height: 3px;
    background-color: #e79d23;

}
.i_content_5 .inner {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.i_content_5 .inner .swiper1,
.i_content_5 .inner .swiper3,
.i_content_5 .inner .swiper4 {
    width: 20%;
}
.i_content_5 .inner .swiper1 .swiper-container,
.i_content_5 .inner .swiper2 .swiper-container,
.i_content_5 .inner .swiper3 .swiper-container,
.i_content_5 .inner .swiper4 .swiper-container {
    overflow: visible;
}
.i_content_5 .inner .swiper1 .swiper-slide span,
.i_content_5 .inner .swiper2 .swiper-slide span,
.i_content_5 .inner .swiper3 .swiper-slide span,
.i_content_5 .inner .swiper4 .swiper-slide span {
    max-width: 80%;
    width: 305px;
    position: absolute;
    bottom: 70px;
    left: -30px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000;
}
.i_content_5 .inner .swiper2 {
    width: 30%;
    position: relative;
}
.i_content_5 .inner .swiper2 .next {
    position: absolute;
    width: 172px;
    left: 112%;
    top: 10%;
    outline: none;
}
.i_content_5 .inner .swiper2 .prev {
    position: absolute;
    width: 172px;
    right: 112%;
    top: 10%;
    outline: none;
}
.i_content_5 .inner .swiper2 .swiper-slide span {
    background-color: #e79d23;
}

/* video */

.search_btn {
    cursor: pointer;
    width: 26px;
}
.search_box {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.search_box .container {
    height: 100px;
}
.search_box img {
    margin-right: 48px;
    width: 26px;
}
.search_box .search-input {
    flex: 1;
    margin-right: 48px;
    height: 48px;
    font-size: 16px;
    border: 0;
}
.search_box .search-input::placeholder {
    color: #b3b3b3;
}
.search_box button {
    width: 104px;
    height: 48px;
    background-color: #000000;
    border-radius: 10px;
    border: 0;
    color: #fff;
    font-size: 16px;
}
.search_box .close {
    width: 42px;
    height: 42px;
    background-color: #333333;
    border-radius: 50%;
    position: relative;
    margin-left: 56px;
}
.search_box .close::before,
.search_box .close::after {
    content: '';
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 24px;
    width: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 2px;
}
.search_box .close::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search_box.act {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.result1 {
    padding-top: 80px;
    height: 246px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: GJJXQJW;
    font-size: 60px;
    font-weight: bold;
    color: #000000;
}
.result2 {
    margin: 64px auto 0;
    width: 90%;
}
.result2 .left {
    width: 70%;
    display: flex;
}
.result2 .left input {
    height: 80px;
    background-color: #f6f6f6;
    border-radius: 40px;
    border: solid 1px #dcdcdc;
    font-size: 18px;
    padding: 0 36px;
    flex: 1;
}
.result2 .left button {
    width: 24%;
    height: 80px;
    background-color: #ed9e1f;
    border-radius: 40px;
    border: 0;
    margin-left: 16px;
    font-size: 18px;
    color: #fff;
}
.result2 .right {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
}
.result2 .right img {
    margin-left: 14px;
    width: 20px;
}
.result3 {
    margin: 120px auto 64px;
    width: 90%;
}
.result3 div {
    width: 364px;
    height: 108px;
    border: solid 1px #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000000;
    margin-right: 30px;
}
.result3 div.active {
    background: #ed9e1f;
    color: #fff;
    border-color: #ed9e1f;
    cursor: pointer;
}
.result-tip {
    margin: 0 auto;
    min-height: 1px;
    width: 90%;
    font-size: 18px;
    color: #333333;
}
.result-tip span {
    color: #ed9e1f;
    font-size: 24px;
}
.result-tip em {
    font-style: normal;
    color: #ed9e1f;
}
.result-tip + div {
    margin-top: 80px;
}
.result-tip + div.zblist .item:nth-child(-n + 3) {
    margin-top: 0;
}
@media (max-width: 1600px) {
    .header .header_nav li {
        margin-left: 62px;
    }
    .header .header_nav li.wb,
    .header .header_nav li.wx,
    .header .header_nav li.search_btn {
        margin-left: 20px;
    }
    .contact3 .left {
        width: 440px
    }
    .contact3 .outer .inner {
        padding: 54px 44px;
    }
    .a_content .number li >p:first-child span:nth-child(1) {
        font-size: 3.6rem;
    }
    .a_content .number li >p:last-child,
    .a_content .number li >p:first-child span:nth-child(2) {
        font-size: 1.5rem;
    }
}
@media (max-width: 1366px) {
    #mb {
        position: relative;
        top: -160px;
    }
    .header .header_nav li {
        margin-left: 50px;
    }
    .header .header_nav li.wb,
    .header .header_nav li.wx,
    .header .header_nav li.search_btn {
        margin-left: 20px;
    }
    .contact1 .inner .text h6 {
        line-height: 32px;
    }
    .video2 .list .item p {
        font-size: 15px;
    }
    .banner_news .inner a {
        height: 80px;
        line-height: 80px;
    }
    .contact3 .left {
        width: 400px
    }
    .contact3 .outer .inner {
        padding: 54px 34px;
    }
    .a_content .number li >p:first-child span:nth-child(1) {
        font-size: 3.2rem;
    }
    .a_content .number li >p:last-child,
    .a_content .number li >p:first-child span:nth-child(2) {
        font-size: 1.3rem;
    }

    .result1 {
        height: 206px;
        font-size: 44px;
    }

    .result2 .left input {
        height: 60px;
        border-radius: 30px;
    }

    .result2 .left button {
        height: 60px;
        border-radius: 30px;
    }

    .result3 div {
        width: 284px;
        height: 78px;
    }
}

@media (max-width: 768px) {
    #mb {
        position: relative;
        top: -98px;
    }
    #header {
        height: auto;
    }
    .contact1 .inner {
        display: block;
        margin: 40px 0 0;
        width: 100%;
        padding-top: 0;
    }
    .contact1 .inner .left {
        width: 100%;
        margin: 0;
    }
    .contact1 .inner .text h3 {
        font-size: 58px;
    }
    .contact1 .inner .text h3 span {
        font-size: 26px;
    }
    .contact1 .inner .text {
        padding: 0 5%;
    }
    .contact1 .inner .text h6 {
        font-size: 16px;
        line-height: 28px;
        margin-top: 0;
    }
    .contact1 .inner .left .swiper-pagination {
        right: 10px;
        bottom: 10px;
    }
    .contact1 .inner .text .t_inner {
        display: none;
        position: relative;
        padding: 0;
    }
    .contact1 .inner .text .t_inner.act {
        display: block;
    }
    .anchor1 .inner .text h5, .anchor1 .inner .text h6 {
        font-size: 15px;
    }
    .contact2 {
        /*margin-top: 40px;*/
        flex-direction: column;
    }
    .contact2 h4 {
        font-size: 24px;
    }
    .contact2 .right {
        width: 100%;
        order: -1;
        padding-bottom: 76px;
    }
    .contact3 {
        margin-top: 24px;
    }
    .anchor2 {
        padding: 100px 0 60px;
    }
    .anchor2 .item {
        width: 48%;
        margin-right: 4%;
        margin-top: 4%;
    }
    .anchor2 .item:nth-child(3n) {
        margin-right: 4%;
    }
    .anchor2 .item:nth-child(2n) {
        margin-right: 0%;
    }
    .anchor2 .item .text {
        padding: 12px 5%;
    }
    .anchor2 .item .text h4 {
        font-size: 16px;
    }
    .anchor2 .item .text h6 {
        font-size: 14px;
        margin-top: 0px;
    }
    .contact1 {
        margin-top: 60px;
    }
    .video2 {
        margin: 100px auto;
    }
    .video2 .title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    .video2 .list .item {
        width: 25%;
        margin-top: 30px;
    }
    .video2 .list .item p {
        font-size: 12px;
        padding: 0 5%;
    }
    .video2 .list .item p br {
        display: none;
    }
    .video3 {
        margin-bottom: 100px;
    }
    .video3 .list .item {
        width: 49%;
    }
    .video3 .list .item:nth-child(3n) {
        margin-right: 2%;
    }
    .video3 .list .item:nth-child(2n) {
        margin-right: 0%;
    }
    .video3 .list .item .text {
        padding: 10px 5%;
    }
    .video3 .list .item .text .line {
        display: none;
    }
    .video3 .list .item .text h4 {
        font-size: 20px;
        line-height: 24px;
    }
    .video3 .list .item .text h5 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 6px;
    }
    .video3 .list .item .text h6 {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        margin-top: 6px;
    }
    .footer .top {
        padding: 20px 0;
    }
    .footer .top .item p {
        font-size: 14px;
        line-height: 24px;
    }
    .footer .top .item .tit,
    .footer .top .item .line {
        display: none;
    }
    .footer .top .item h6 {
        font-size: 15px;
        margin: 0;
    }
    .footer .bottom {
        font-size: 12px;
        line-height: 40px;
    }
    .banner_news .inner {
        left: 5%;
        right: 5%;
    }
    .banner_news .inner a {
        height: 48px;
        line-height: 48px;
        font-size: 15px;
    }
    .news {
        /*margin-top: 40px;*/
        padding-bottom: 60px;
    }
    .news .list .item {
        padding: 40px 0;
        display: block;
    }
    .news .list .item .img {
        width: 100%;
    }
    .news .list .item .text {
        padding-left: 0;
        margin-top: 40px;
    }
    .news .list .item .text h6 {
        margin-top: 10px;
        text-align: right;
    }
    .news .list .item:hover .img {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .news .list .item:hover {
        background: transparent;
    }
    .news .list .item:hover .text h4 {
        color: #000;
    }
    .news .list .item:hover .text {
        color: #666;
    }
    .news_detail {
        /*margin: 40px auto;*/
    }
    .news_detail h3 {
        font-size: 24px;
    }
    .news_detail h6 {
        font-size: 14px;
        margin-top: 10px;
    }
    .news_detail .bottom {
        margin-top: 40px;
    }
    .news_detail .bottom .left img {
        width: 28px;
    }
    .news_detail .bottom .right a {
        margin-left: 30px;
    }
    .news_detail .bottom .right img {
        width: 14px;
    }
    .a_content .count .img img {
        width: 50%;
    }
    .a_content .outer {
        display: block;
    }
    .a_content .number {
        width: 100%;
        height: 46%;
        padding: 30% 0 20%;
    }
    .a_content .number li {
        width: 50%;
    }
    .a_content .number li >p:first-child span:nth-child(1) {
        font-size: 28px;
    }
    .a_content .number li >p:first-child span:nth-child(2),
    .a_content .number li >p:last-child {
        font-size: 16px;
    }
    .a_content .text {
        width: 100%;
    }
    .a_content .text .title {
        margin-bottom: 20px;
    }
    .a_content .text .title h2 {
        font-size: 40px;
    }
    .a_content .count {
        margin-top: 100px;
    }
    .a_content .content_1 {
        margin: 100px auto;
    }
    .a_content .content_1 ul {
        display: block;
    }
    .a_content .content_1 ul >li {
        width: 100% !important;
        height: 240px;
    }
    .a_content .content_1 h2 {
        font-size: 32px;
    }
    .a_content .content_1 h4 {
        margin-top: 10px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .a_content .content_1 p {
        font-size: 15px;
        letter-spacing: 0;
    }
    .a_content .content_1 ul:first-child >li:first-child img {
        bottom: 8%;
        right: 4%;
    }
    .a_content .content_1 ul li .text {
        padding: 16px 5%;
    }
    .a_content .content_1 ul li .text h4 {
        font-size: 18px;
        font-style: normal;
    }
    .a_content .content_1 ul li .text h6 {
        font-size: 15px;
        margin-top: 0px;
    }
    .a_content .content_2 .title {
        padding-top: 40px;
    }
    .a_content .content_2 .title h2 {
        font-size: 24px;
    }
    .a_content .content_2 .title h4 {
        font-size: 18px;
    }
    .a_content .i_content_4 .i_content_3_tit {
        /*padding-top: 40px;*/
    }
    .a_content .i_content_4 .i_content_3_tit h2 {
        font-size: 24px;
    }
    .a_content .i_content_4 .i_content_3_tit h4 {
        font-size: 18px;
    }

    .partners .inner {
        width: 33%;
        margin-bottom: 10px;
    }
    .b_position {
        padding: 20px 5%;
        flex-wrap: wrap;
    }
    .b_position li {
        background: rgba(238, 159, 29, .7);
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
        padding: 20px 5%;
        height: auto;
        text-align: center;
    }
    .ind1 .sulation {
        margin: 100px auto;
        padding-bottom: 40px;
    }
    .sulation .box h2 {
        font-size: 40px;
    }
    .sulation .box h4 {
        font-size: 22px;
        letter-spacing: 0;
    }
    .sulation .box .content {
        display: block;
        padding: 0;
    }
    .sulation .box .content .left_img {
        width: 100%;
        box-shadow: none;
    }
    .sulation .box .content .right {
        margin-top: 40px;
    }
    .sulation .box .content .right::before {
        display: none;
    }
    .sulation .box .content .right>p:nth-child(1),
    .sulation .box .content .right>p:nth-child(2) {
        margin-bottom: 10px;
    }
    .phase_1 {
        margin: 100px auto;
    }
    .phase_1 .title {
        padding-top: 0px;
        font-size: 24px;
        letter-spacing: 0
    }
    .phase_1 .title>span {
        margin-right: 10px;
    }
    .phase_1 .title img {
        width: 32px;
    }
    .phase_1 .part_1 {
        display: block;
        margin: 60px auto;
    }
    .phase_1:last-child .part_1 {
        margin-top: 20px;
    }
    .phase_1 .part_1 .left {
        width: 100%;
    }
    .phase_1 .part_1 .left::before {
        top: -26px;
    }
    .phase_1 .part_1 .left>p:first-child {
        font-size: 20px;
        letter-spacing: 0;
        margin-bottom: 20px;
    }
    .phase_1 .part_1 .right {
        width: 100%;
        margin-top: 20px;
    }
    .phase_1 .part_2 {
        flex-direction: column;
    }
    .phase_1 .part_2>img {
        width: 100%;
        order: 1
    }
    .phase_1 .part_2 .text {
        width: 100%;
        top: 0;
        padding: 0;
        background: transparent;
        margin: 0;
    }
    .phase_1 .part_2 .text h3 {
        font-size: 20px;
        letter-spacing: 0;
        margin-bottom: 20px;
    }
    .phase_1 .part_2 .text h3::before {
        top: -26px;
    }
    .phase_1 .part_2 .bg,
    .phase_1 .part_2 h2 {
        display: none;
    }
    .phase_1 .part_2>img {
        margin-top: 20px;
    }
    .phase_1 .produce {
        padding: 20px 5% 40px;
        text-align: left;
    }
    .i_banner .swiper-slide .text {
        max-width: 80%;
    }
    .i_banner .swiper-slide .read_more {
        width: 120px;
        height: 40px;
        line-height: 40px;
    }
    .i_banner .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        width: 100%;
        left: 0;
        bottom: 10px;
    }
    .i_content_1>h3 {
        margin-top: 80px;
    }
    .i_content_1_tit>p:nth-child(1) {
        font-size: 28px;
        letter-spacing: 0;
        margin-bottom: 10px;
        letter-spacing: -1px;
    }
    .i_content_1_text {
        text-align: left;
        margin-top: 20px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 6.96rem;
    }
    .i_content_1_count {
        height: auto;
        padding: 20px 5%;
        margin: 40px auto;
        flex-wrap: wrap;
    }
    .i_content_1_count>li {
        margin-bottom: 10px;
        width: 50%;
    }
    .i_content_1_count>li h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .i_content_1_count>li h2 span {
        font-size: 36px;
    }
    .i_content_2 {
        height: auto;
        padding: 40px 5% 20px;
        background-size: cover;
    }
    .i_content_2_tit {
        position: relative;
        left: 0;
        top: 0;
    }
    .i_content_2_con {
        position: relative;
        padding: 20px 0;
        top: 0;
        left: 0;
        flex-wrap: wrap;
    }
    .i_content_2_con li {
        background: rgba(238, 159, 29, .7);
        width: 100%;
        height: auto;
        margin-top: 20px;
        padding: 20px 5%;
    }
    .i_content_2 .i_content_2_tit>p:nth-child(1) {
        font-size: 24px;
        letter-spacing: 0;
        color: #fefefe;
        margin-bottom: 10px;
        text-align: center;
    }
    .i_content_2 .i_content_2_tit>p:nth-child(2) {
        text-align: center;
    }
    .i_content_3 {
        height: auto;
    }
    .i_content_3_tit {
        padding-top: 100px;
    }
    .i_content_3_tit h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .i_content_3_tit h6 {
        margin-bottom: 10px;
    }
    .i_content_3_con {
        display: block;
    }
    .i_content_3_con li {
        width: 100%;
        margin-top: 20px;
        display: none;
    }
    .i_content_3_con li:first-child {
        display: block;
    }
    .i_content_3_con_bottom {
        padding: 0px 5% 20px;
        height: auto;
    }
    .i_content_3_con_bottom .content {
        padding: 10px 0;
    }
    .i_content_4 {
        padding-bottom: 100px;
    }
    .i_content_5 {
        margin: 100px auto;
    }
    .i_content_5 .text {
        margin-top: 40px;
        padding-left: 5%;
        display: block;
    }
    .i_content_5 .text .changes .change {
        padding-right: 5%;
        padding-left: 0;
        display: block;
    }
    .i_content_5 .text .block1 {
        border-left: 2px solid #000;
        padding-left: 10px;
        width: 100%;
    }
    .i_content_5 .text .block1 h4 {
        font-size: 22px;
    }
    .i_content_5 .text .block1 h5 {
        font-size: 15px;
        margin-top: 14px;
    }
    .i_content_5 .text .block1 h6 {
        margin-top: 14px;
    }
    .i_content_5 .text .block2 {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .i_content_5 .text .block3 {
        display: none;
    }
    .i_content_5 .swiper1,
    .i_content_5 .swiper3,
    .i_content_5 .swiper4 {
        display: none;
    }
    .i_content_5 .inner {
        padding: 0 5%;
    }
    .i_content_5 .inner .swiper2 {
        width: 100%;
        overflow: hidden;
    }
    .i_content_5 .inner .swiper2 .swiper-slide span {
        width: 200px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }
    .i_content_5 .inner .swiper2 .prev,
    .i_content_5 .inner .swiper2 .next {
        display: none;
    }
    #swiper-historym {
        padding-bottom: 40px;
    }
    #swiper-historym .swiper-slide {
        text-align: center;
    }
    #swiper-historym .swiper-slide h5 {
        font-size: 28px;
        font-style: italic;
        letter-spacing: 4.4px;
        color: #ee9f1d;
    }
    #swiper-historym .swiper-slide img {
        width: 80%;
        display: block;
        margin: 10px auto;
    }
    #swiper-historym .swiper-slide h4 {
        font-size: 18px;
        color: #666;
    }
    .swiper2 .swiper-pagination {
        position: relative;
    }
    .swiper2 .swiper-pagination .swiper-pagination-bullet {
        margin: 10px 4px;
        background: #ccc;
        opacity: 1;
    }
    .swiper2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #ee9f1d;
    }

    .i_banner .swiper-slide .read_more::after {
        display: none;
    }
    .news .list .item .text h4 {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .news .list .item .text h5 {
        margin-top: 6px;
        line-height: 28px;
    }
    .contact3 #mapContainer {
        height: 320px;
    }
    .contact3 .outer {
        position: relative;
        flex-direction: column;
        top: 0;
        right: 0;
        width: 100%;
        padding: 20px 5% 100px;
    }
    .contact3 .outer .right {
        order: -1;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .contact3 .outer .right .img {
        display: none;
    }
    .contact3 .outer .right h4 {
        width: 48%;
        margin: 2px;
    }
    .contact3 .outer .right h4.active {
        padding-right: 0;
    }
    .contact3 .left {
        width: 100%;
        height: 280px;
    }
    .contact3 .outer .inner {
        padding: 20px 0;
    }
    .contact3 .left h4 {
        font-size: 24px;
        line-height: 36px;
    }
    .contact3 .left .line {
        margin: 16px 0;
    }
    .footer .top .ewms {
        margin-top: 20px;
    }
    .i_content_2_con li .i_content_2_con_tit {
        color: #fff;
        margin-bottom: 0px;
        font-size: 18px;
        text-align: center;
    }
    .i_content_2_con li .i_content_2_con_tit::after {
        display: none;
    }
    .i_content_2_con li .i_content_2_con_text {
        display: none;
    }
    .b_position li>p:first-child {
        margin-bottom: 0px;
        font-size: 18px;
        color: #fff;
    }
    .b_position li>p:first-child::after {
        display: none;
    }
    .b_position li>p:last-child {
        font-size: 12px;
        line-height: 18px;
        display: none;
        padding-top: 8px;
    }
    .search_box .container {
        height: 60px;
    }
    .search_box img {
        display: none;
    }
    .search_box .search-input {
        height: 32px;
        margin-right: 10px;
        font-size: 14px;
    }
    .search_box button {
        width: 60px;
        height: 32px;
        border-radius: 4px;
        font-size: 14px;
    }
    .search_box .close {
        width: 20px;
        height: 20px;
        margin-left: 16px;
        background: transparent;
    }
    .search_box .close::before,
    .search_box .close::after {
        background: #000;
    }
    .video2 .list {
        justify-content: flex-start;
    }
    .i_banner .swiper-slide video.visible-xs,
    .i_banner .swiper-slide img.visible-xs {
        object-fit: cover;
        height: 100vh;
        display: block;
        width: 100%;
    }

    .result1 {
        height: 120px;
        font-size: 24px;
        padding-top: 50px;
    }

    .result2 {
        margin: 24px auto 0;
    }

    .result2 .left {
        width: 100%;
    }

    .result2 .left input {
        height: 40px;
        border-radius: 20px;
        font-size: 15px;
        padding: 0 20px;
    }

    .result2 .left button {
        height: 40px;
        border-radius: 20px;
        font-size: 15px;
        width: 80px;
        margin-left: 10px;
    }

    .result2 .right {
        display: none;
    }

    .result3 {
        margin: 24px auto 24px;
    }

    .result3 div {
        width: auto;
        height: 40px;
        flex: 1;
        margin-right: 10px;
    }

    .result3 div:last-child {
        margin-right: 0;
    }

    .result-tip {
        font-size: 15px;
    }

    .result-tip span {
        font-size: 20px;
    }

    .result-tip + div {
        margin-top: 20px;
    }
    .result-tip + div.zblist .item:nth-child(3) {
        margin-top: 4%;
    }
}
