/* Reset */
/* @font-face {
    font-family: '思源黑体';
    src: url('../font/思源黑体.ttf');
    src:
        url('../font/思源黑体.ttf') format('truetype');
} */

/* @font-face {
    font-family: 'Source Han Sans CN Normal';
    src: url('../font/SourceHanSansCNNormal.ttf');
    src:
        url('../font/SourceHanSansCNNormal.ttf') format('truetype');
} */

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/CenturyGothic.ttf');
}

@font-face {
    font-family: 'HeroicCondensed';
    src: url('../font/HeroicCondensed-Medium.otf');
}

@font-face {
    font-family: 'Ailerons';
    src: url('../font/Ailerons_0.ttf');
}

@font-face {
    font-family: 'Source Han Sans CN Normal';
    src: url('../font/SourceHanSansCNNormal.ttf');
}

@font-face {
    font-family: '思源黑体';
    src: url('../font/思源黑体.ttf');
}

body,
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Century Gothic';
    font-family: '思源黑体';
    background-color: #4e4846;//#1e1d1d;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
textarea {
    outline-style: none;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
i {
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
    line-height: 1em;
    word-wrap: break-word;
}

i {
    font-style: normal;
    font-family: 'Source Han Sans CN Normal';
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

p {
    word-wrap: break-word;
}

a:active {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
    color: white;
}

a:link {
    text-decoration: none !important;
    color: white;
}

a:visited {
    text-decoration: none !important;
    color: white;
}

a {
    text-decoration: none !important;
    color: white;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.container {
    width: 1170px;
}

.swiper-container img {
    width: 100%;
}

/* Global style */

#html,
.windowHeight {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

/* Navbar */

/* 菜单按钮 */

.nav .btn-nav {
    position: fixed;
    top: 50px;
    left: 100px;
    background: transparent;
    border: none;
    padding: 10px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    z-index: 99999;
}

.nav .btn-nav:focus {
    outline: 0;
}

.nav .icon-bar {
    display: block;
    margin: 6px 0;
    width: 70px;
    height: 8px;
    background-color: #cc9831;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0;
}

.nav .btn-nav:hover .icon-bar {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #000;
}

.nav .animated .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg);
}

.nav .animated .bottom {
    -webkit-transform: translateY(-3px) rotateZ(-45deg);
    -moz-transform: translateY(-3px) rotateZ(-45deg);
    -ms-transform: translateY(-3px) rotateZ(-45deg);
    -o-transform: translateY(-3px) rotateZ(-45deg);
    transform: translateY(-3px) rotateZ(-45deg);
}

.nav .nav-a {
    position: fixed;
    z-index: 9999;
    right: 100px;
    top: 50px;
    width: 130px;
    height: 80px;
    display: block;
    background: url(../image/logo.png) no-repeat;
}

/* 菜单页 */

/* 左 */

.nav-content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 0;
    background-image: url(../image/index-1.jpg);
    background-repeat: round;
    display: block;
    width: 100%;
    z-index: 9997;
}

.hideNav {
    -webkit-animation: hideNav 1s ease forwards;
    -moz-animation: hideNav 1s ease forwards;
    -o-animation: hideNav 1s ease forwards;
    animation: hideNav 1s ease forwards;
}

@keyframes hideNav {
    from {
        left: 0;
    }

    to {
        left: -100%;
    }
}

@-webkit-keyframes hideNav {
    from {
        left: 0;
    }

    to {
        left: -100%;
    }
}

@-moz-keyframes hideNav {
    from {
        left: 0;
    }

    to {
        left: -100%;
    }
}

@-o-keyframes hideNav {
    from {
        left: 0;
    }

    to {
        left: -100%;
    }
}

.showNav {
    -webkit-animation: showNav 1s ease forwards;
    -moz-animation: showNav 1s ease forwards;
    -o-animation: showNav 1s ease forwards;
    animation: showNav 1s ease forwards;
}

@keyframes showNav {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

@-webkit-keyframes showNav {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

@-moz-keyframes showNav {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

@-o-keyframes showNav {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

.nav-content .nav-list {
    list-style: none;
    padding: 0;
    position: relative;
    top: 22.5%;
}

.nav-content .nav-list .nav-item {
    margin: 30px auto;
    margin-left: 42%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.nav-content .nav-list .nav_i_1 {
    -webkit-animation: nav_i_1 0s ease forwards;
    -moz-animation: nav_i_1 0s ease forwards;
    -o-animation: nav_i_1 0s ease forwards;
    animation: nav_i_1 0s ease forwards;
}

.nav-content .nav-list .nav-item-left {
    margin-left: 30%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

@-webkit-keyframes nav_i_1 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes nav_i_1 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.item-anchor {
    color: #fff;
    font-size: 28px;
    position: relative;
    text-decoration: none;
    padding: 10px;
}

.item-anchor span {
    font-family: '思源黑体';
    color: #D7CEBD
}

.item-anchor {
    font-family: 'Century Gothic';
}

.item-anchor:hover,
.item-anchor:focus {
    color: #CE992E;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.item-anchor:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    left: 0;
    bottom: 0;
    z-index: 9;
    background: transparent;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after {
    width: 100%;
    background: #FCA311;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/* 右 */

.nav-content_1 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    right: 0;
    background: #302f2d;
    display: block;
    width: 100%;
    z-index: 9998;
}

.hidden_1 {
    display: none;
}

.nav-content_1 .nav-list_1 {
    position: relative;
    top: 30%;
}

.nav-content_1 .nav-list_1 .item-anchor i {
    font-size: 18px;
    font-weight: normal;
    font-family: "思源黑体";
}

.nav-content_1 .nav-list_1 .item-anchor:hover i {
    color: #CE992E;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.nav-content_1 .nav-list_1 .nav-item_1 {
    margin-top: 30px;
}

.nav-content_1 .nav-list_1 .nav-item_1 .nav-item_1 a {
    margin-left: 10%;
    font-size: 18px;
    font-weight: normal;
}

.showNav_1 {
    -webkit-animation: showNav_1 1s ease forwards;
    -moz-animation: showNav_1 1s ease forwards;
    -o-animation: showNav_1 1s ease forwards;
    animation: showNav_1 1s ease forwards;
    box-shadow: -2px 0px 300px #000;
}

@keyframes showNav_1 {
    from {
        left: 100%;
    }

    to {
        left: 50%;
    }
}

@-webkit-keyframes showNav_1 {
    from {
        left: 100%;
    }

    to {
        left: 50%;
    }
}

@-moz-keyframes showNav_1 {
    from {
        left: 100%;
    }

    to {
        left: 50%;
    }
}

@-o-keyframes showNav_1 {
    from {
        left: 100%;
    }

    to {
        left: 50%;
    }
}

.hideNav_1 {
    -webkit-animation: hideNav_1 1s ease forwards;
    -moz-animation: hideNav_1 1s ease forwards;
    -o-animation: hideNav_1 1s ease forwards;
    animation: hideNav_1 1s ease forwards;
}

@keyframes hideNav_1 {
    from {
        left: 50%;
    }

    to {
        left: 100%;
    }
}

@-webkit-keyframes hideNav_1 {
    from {
        left: 50%;
    }

    to {
        left: 100%;
    }
}

@-moz-keyframes hideNav_1 {
    from {
        left: 50%;
    }

    to {
        left: 100%;
    }
}

@-o-keyframes hideNav_1 {
    from {
        left: 50%;
    }

    to {
        left: 100%;
    }
}

.nav-content_1 .nav-list_1 .nav_i_2 {
    -webkit-animation: nav_i_2 0s ease forwards;
    -moz-animation: nav_i_2 0s ease forwards;
    -o-animation: nav_i_2 0s ease forwards;
    animation: nav_i_2 0s ease forwards;
}

.nav-content_1 .nav-list_1 .nav-item_1 a {
    margin-left: 10%;
    font-size: 18px;
    font-weight: normal;
}

@-webkit-keyframes nav_i_2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes nav_i_2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* 菜单页结束 */

/* Navbar End */

/* Swiper */

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-image: none;
    font-size: 4em;
}

.swiper-button-next {
    right: 35px;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* Swiper End */

/* Index */

.index {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.index .bg1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 110%;
    z-index: -10;
}

.index .bg2 {
    position: absolute;
    left: 10%;
    bottom: -10%;
    width: 50%;
    height: 130%;
    z-index: -10;
}

.index_3 .bg2 {
    display: none !important;
}

.index .col-md-6 {
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .index .col-md-6 {
        width: none;
    }
}

.index_1,
.index_2,
.index_3,
.index_4,
.index_5,
.index_6 {
    position: relative;
}

.index_2,
.index_3,
.index_4,
.index_5,
.index_6 {
    padding: 0;
    margin: 0;
}

.index_1 .row,
.index_2 .row,
.index_3 .row,
.index_4 .row,
.index_5 .row,
.index_6 .row {
    margin: 0 auto;
}

.index_1 h5,
.index_2 h5,
.index_3 h5,
.index_4 h5,
.index_5 h5,
.index_6 h5 {
    width: 500px;
    line-height: 20px;
    margin: 0 auto;
    font-family: 'Century Gothic';
}

.index_1 p,
.index_2 p,
.index_3 p,
.index_4 p,
.index_5 p,
.index_6 p {
    font-family: 'Ailerons';
    font-size: 50px;
    margin: 20px 0;
}

.index_1 b,
.index_2 b,
.index_3 b,
.index_4 b,
.index_5 b,
.index_6 b {
    font-family: 'HeroicCondensed';
    font-size: 48px;
    margin: 20px 0;
    font-weight: normal;
}

.index_1 .b,
.index_2 .b,
.index_3 .b,
.index_4 .b,
.index_5 .b,
.index_6 .b {
    font-family: 'Century Gothic';
    font-size: 18px;
}

.index_2 .i,
.index_3 .i,
.index_4 .i,
.index_5 .i,
.index_6 .i {
    font-family: "Source Han Sans CN Normal";
    font-size: 18px;
    margin: 1em 0;
    font-weight: bold;
}

.index_1 i,
.index_2 i,
.index_3 i,
.index_4 i,
.index_5 i,
.index_6 i {
    font-size: 14px;
    font-weight: bolder;
    line-height: 30px;
}

.index_2>div,
.index_3>div,
.index_4>div,
.index_5>div,
.index_6>div {
    position: relative;
}

.yellowBox {
    height: 5px;
    background-color: #F9D395;
}

.index_1 {
    height: 100vh;
    background-image: url(../image/index-1.jpg);
    background-repeat: round;
}

.index_1 h5 {
    position: relative;
    top: 250px;
    width: 380px;
    font-weight: normal;
}

.index_1 p {
    font-family: "Source Han Sans CN Normal";
    font-size: 30px;
    font-weight: bolder;
}

.index_1 i {
    font-family: "思源黑体";
    font-size: 14px;
    font-weight: bolder;
    letter-spacing: 4px;
}

.index_2 {
    padding-bottom: 8%;
}

.index_2 h5 {
    margin-top: 250px;
}

.index_2 .img {
    width: 51%;
    position: absolute;
    right: 0;
    bottom: 10%;
}

.index .index3left {
    display: none;
}

.index_3 h5 {
    margin-top: 50%;
}

.index_3 .yellowBox {
    width: 30%;
    position: absolute;
    left: 30%;
    top: 32%;
    z-index: 2;
}

.index_4 h5 {
    margin-top: 50%;
}

.index_4 img {
    margin-top: 100px;
}

.index_5 {
    height: 926px;
    margin-top: 10%;
}

.index_5 .index_5Text {
    position: absolute;
    left: 10%;
    bottom: 8%;
}

.index_5 .index_5Text p {
    padding-left: 30px;
    margin-bottom: 50px;
}

.index_5 .index_5Text div {
    padding: 30px 30px 80px;
    background-color: #4e4846;//332C2A;
}

.index_5 .index_5Text div h5 {
    width: 400px;
}

.index_5 .index_5Img {
    width: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -9;
}

.index_5 .yellowBox {
    width: 25%;
    position: absolute;
    left: 25%;
    bottom: 12%;
}

.index_6 h5 {
    width: 480px;
    margin: 300px auto;
    padding-left: 60px;
}

.index_6 h5 p {
    position: relative;
    right: 60px;
}

.index_7 {
    width: 1100px;
    margin: 0 auto;
}

.index_7 img {
    height: 611.66px;
}

/* Index End */

/* Product */

.product>h1 {
    color: #d7cebd;
    line-height: 1.5em;
    font-size: 50px;
    margin-top: 200px;
    margin-bottom: 1em;
    padding-left: 1.5em;
    font-family: "Century Gothic";
}

.product>h1>i {
    font-weight: bolder;
    color: #d7cebd;
    font-family: "思源黑体";
}

.product .swiper-container {
    width: 900px;
    height: auto;
    margin-left: 3.9em;
}

.product_2 {
    margin: 5em 0;
    width: 100%;
    background-image: url("../image/index-1.jpg");
    background-repeat: round;
}

.product_2>div {
    width: 600px;
    margin: 20% auto;
}

.product_2>div>h1 {
    color: #d7cebd;
    font-size: 30px;
    font-family: "Century Gothic";
}

.product_2>div>h2 {
    font-size: 20px;
    margin-top: 1em;
    font-family: "思源黑体";
}

.product_2>div>h1>i {
    color: #d7cebd;
    font-size: 30px;
    font-weight: bolder;
    font-family: "思源黑体";
}

.product_2>div>h2>i {
    font-size: 14px;
    font-family: "Century Gothic";
}

.product_2>div>h2>.i {
    font-size: 20px;
    font-family: "Century Gothic";
}

.product_2>div>h3 {
    margin-top: 1em;
    font-size: 1em;
    line-height: 2em;
    font-family: "思源黑体";
}

.product_2>div>h4 {
    color: #d7cebd;
    font-size: 1em;
    margin-top: 2em;
    font-family: "Century Gothic";
}

.product_3 {
    padding-left: 70px;
}

.product_3>h1,
.product_3>h2 {
    font-size: 2em;
    font-weight: bolder;
}

.product_3>h1 {
    color: #d7cebd;
}

.product_3>div {
    width: 750px;
    height: 550px;
    margin-top: 100px;
    position: relative;
}

.product_3>div>img {
    width: 200px;
}

.product_3>div>.product_3Img1 {
    position: absolute;
    left: 0;
    top: 0;
}

.product_3>div>.product_3Img2 {
    position: absolute;
    left: 230px;
    top: 55px;
}

.product_3>div>.product_3Img3 {
    position: absolute;
    left: 460px;
    top: 110px;
}

.product_3>div>.product_3Img4 {
    position: absolute;
    left: 690px;
    top: 165px;
    z-index: -1;
}

.product_3>div>.product_3Img5 {
    position: absolute;
    left: 80px;
    top: 220px;
    z-index: -1;
}

.product_3>div>.product_3Img6 {
    position: absolute;
    left: 310px;
    top: 285px;
    z-index: -1;
}

.product_3>div>.product_3Img7 {
    position: absolute;
    left: 540px;
    top: 340px;
    z-index: -1;
}

/* Product End */

/* ZunXiang */

.zunxiang .text {
    height: 2em;
    margin-top: 200px;
    margin-bottom: 3em;
    padding-left: 15px;
}

.zunxiang .text h1 {
    color: #d7cebd;
    font-weight: bolder;
}

.zunxiang .text h1,
.zunxiang .text h2 {
    font-size: 2em;
}

.zunxiang .box>ul>li {
    color: white;
    padding: 15px;
}

.zunxiang .box>ul>li>a>ul>li {
    margin-top: 8px;
}

.zunxiang .box>ul>li img {
    width: 100%;
}

.zunxiang .box>ul>li h1 {
    font-size: 26px;
    line-height: 168px;
}

/* ZunXiang End */

/* ZunXiangDetalis */

.zunxiangDetalis>h1 {
    color: #d7cebd;
    font-size: 50px;
    line-height: 60px;
    margin-top: 200px;
    margin-bottom: 1em;
    padding-left: 40px;
    font-weight: bolder;
}

.zunxiangDetalis .swiper-container {
    width: 900px;
    margin-left: 40px;
}

/* ZunXiangDetalis End */

/* News */

.news .swiper-container .swiper-slide img {
    width: 750px;
    height: 260px;
    margin-top: 20px;
    padding-left: 1.5em;
}

.news .swiper-container .swiper-slide h4 {
    margin-top: 20px;
    padding-left: 1.5em;
}

.news .newsText {
    padding-left: 1.5em;
    margin-top: 200px;
    height: 2em;
}

.news .newsText>h1,
.news .newsText>h2 {
    font-size: 2em;
    font-weight: bolder;
}

.news .newsText>h1 {
    color: #d7cebd;
}

/* News End */

/* NewsDetalis */

.newsDetalis .newsDetalis-img,
.newsDetalis .newsDetalis-title,
.newsDetalis .newsDetalis-text {
    padding-left: 1.5em;
    width: 75%;
}

.newsDetalis .newsDetalis-img {
    margin-top: 200px;
}

.newsDetalis .newsDetalis-title {
    color: #d7cebd;
    font-size: 1.5em;
    line-height: 2em;
    margin: 1em 0;
}

.newsDetalis .newsDetalis-text,
.newsDetalis .newsDetalis-text h1,
.newsDetalis .newsDetalis-text h2,
.newsDetalis .newsDetalis-text h3,
.newsDetalis .newsDetalis-text h4,
.newsDetalis .newsDetalis-text h5,
.newsDetalis .newsDetalis-text h6,
.newsDetalis .newsDetalis-text p,
.newsDetalis .newsDetalis-text i {
    line-height: 2em;
    color: #fff;
    letter-spacing: 1px;
}

.newsDetalis .newsDetalis-text img {
    max-width: 100%;
}

/* NewsDetalis End */

/* Contact */

.contact {
    width: 900px;
    margin-top: 200px;
    margin-bottom: 5em;
}

.contact .text {
    height: 2em;
}

.contact .text h1 {
    color: #d7cebd;
    font-weight: bolder;
}

.contact .text h1,
.contact .text h2 {
    font-size: 2em;
}

.contact .text h2,
.contactDetalis .text h2 {
    font-family: "Century Gothic";
}

.contact #subsidiaryOn {
    border: 1px solid white;
    padding: 1em 2em;
}

.contact h3,
.contact h5,
.contact a {
    margin: 1.5em 0;
    line-height: 2em;
    color: white;
}

.contact h5 b {
    font-family: 'Century Gothic';
    font-weight: normal;
}

.contact i {
    font-weight: bolder;
}

.contact ul {
    width: 100px;
    position: absolute;
    right: 3em;
    bottom: 1.5em;
}

.contact ul li>img {
    width: 100%;
    border: 1px solid white;
}

.contact ul li>p {
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.contactForm {
    width: 100%;
    background-color: white;
}

.contactForm>div {
    width: 1000px;
    margin: 0 auto;
}

.contactForm .row {
    margin-top: 200px;
    margin-bottom: 3em;
}

.contactForm p,
.contactForm textarea,
.contactForm #opinionOn,
.contactForm input {
    font-family: "微软雅黑";
    color: black;
}

.contactForm .row>.col-md-6 {
    margin: 1em 0;
}

.contactForm .row>.col-md-6>div {
    margin-right: 2em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid black;
}

.contactForm .row>div>div:before,
.contactForm .row>div>div:after {
    content: " ";
    display: table;
}

.contactForm .row>div>div:after {
    clear: both;
}

.contactForm .row>.col-md-6>div>input {
    margin-left: 10px;
    border: none;
    height: 1em;
    width: 80%;
}

.contactForm .row>.col-md-12>div {
    margin-right: 2em;
    padding-bottom: 0.5em;
}

.contactForm .row>.col-md-12>div>textarea {
    width: 100%;
    resize: none;
    border: 1px solid black;
}

.contactForm .row>.col-md-12>.opinionOn {
    text-align: center;
    margin-top: 2em;
}

.contactForm .row>.col-md-12>div>#opinionOn {
    color: black;
    border: 1px solid black;
    padding: 0.5em 3em;
}

.contactForm .row>.col-md-12>div>#opinionOn:hover {
    transition: all 0.6s ease;
    color: white;
    background-color: black;
}

/* Contact End */

/* ContactDetalis */

.contactDetalis .text {
    margin-top: 200px;
    margin-left: 6.3em;
    height: 2em;
}

.contactDetalis .text h1 {
    color: #d7cebd;
}

.contactDetalis .text h1,
.contactDetalis .text h2 {
    font-size: 2em;
    font-weight: bolder;
}

.contactDetalis .row {
    width: 1000px;
    margin: 3em auto;
}

.contactDetalis .row>div {
    padding: 2em 1.3em;
    height: 150px;
}

.contactDetalis .row>div>h1 {
    font-size: 1.5em;
    color: #d7cebd;
    font-weight: bolder;
    margin-bottom: 10px;
}

.contactDetalis .row>div>h2,
.contactDetalis .row>div>h3 {
    font-size: 1em;
    line-height: 1.5em;
}

/* ContactDetalis End */

/* Footer */

.footer {
    width: 100%;
    padding: 0;
}

.footer .footerTop {
    width: 100%;
    border-top: 2px solid #d7cebd;
    border-bottom: 2px solid #d7cebd;
    margin: 40px 0 20px;
}

.footer .footerTop:before,
.footer .footerTop:after {
    content: " ";
    display: table;
}

.footer .footerTop:after {
    clear: both;
}

.footer .footerTop>ul {
    width: 1000px;
    margin: 30px auto;
    color: #d7cebd;
    letter-spacing: 2px;
    line-height: 1em;
}

.footer .footerTop>ul>span>a {
    color: #d7cebd;
}

.footer .footerTop>ul>li {
    font-family: 'Century Gothic';
    margin: 1em 0;
    color: white;
}

.footer .footerTop>ul>li span {
    font-family: '思源黑体';
}

.footer .footerBottom {
    width: 1170px;
    margin: 40px auto;
}

.footer .footerBottom>div>h5 {
    font-weight: bolder;
    line-height: 2em;
    color: #d7cebd;
}

/* Footer End*/

@media (max-width: 768px) {

    /* Index */
    .container {
        width: auto;
        overflow: hidden;
    }

    .nav .btn-nav {
        top: 10px;
        left: 5px;
    }

    .nav .icon-bar {
        width: 40px;
        height: 6px;
    }

    .nav .nav-a {
        top: 10px;
        right: 5px;
    }

    .nav .animated .top {
        -webkit-transform: translateY(9px) rotateZ(45deg);
        -moz-transform: translateY(9px) rotateZ(45deg);
        -ms-transform: translateY(9px) rotateZ(45deg);
        -o-transform: translateY(9px) rotateZ(45deg);
        transform: translateY(9px) rotateZ(45deg);
    }

    .nav .btn-nav:hover .icon-bar {
        background-color: #cc9831;
    }

    .nav-content .nav-list .nav-item {
        margin-left: 10%;
    }

    .nav-content .nav-list .nav-item-left {
        margin-left: 2%;
    }

    .nav-content_1 .nav-list_1 .nav-item_1 a {
        margin-left: 2%;
    }

    .index .bg1 {
        left: 0;
        width: 100%;
        height: 50%;
    }

    .index_1 h5 {
        width: 100%;
    }

    .index_3 .bg2 {
        width: 100%;
        height: 30%;
        left: 0;
        bottom: 5%;
    }

    .index_4 .bg2 {
        width: 80%;
        height: 60%;
        left: 0;
        top: 20%;
        bottom: 0;
        margin-top: 0;
    }

    .index_3 .bg2 {
        display: block !important;
    }

    .index_1 h5,
    .index_2 h5,
    .index_3 h5,
    .index_4 h5,
    .index_5 h5,
    .index_6 h5 {
        width: 90%;
    }

    .index_1 h5 {
        top: 160px;
    }

    .index_1 i {
        font-size: 12px;
    }

    .index_2 h5 {
        margin-top: 340px;
    }

    .index_2 .img {
        width: 100%;
        top: 18%;
        bottom: 0;
        z-index: -1;
    }

    .index .index3left {
        display: block;
    }

    .index .index3right {
        display: none;
    }

    .index_3 {
        height: 880px;
    }

    .index_3 h5 {
        margin-top: 100px;
    }

    .index_3 p {
        font-size: 36px;
    }

    .index_3 img {
        width: 80%;
        margin-right: 20%;
    }

    .index_3 .yellowBox {
        top: auto;
        bottom: 38%;
        height: 10px;
        left: auto;
        right: 13%;
        width: 40%;
    }

    .index_4 h5 {
        margin-top: 190px;
    }

    .index_4 img {
        position: absolute;
        bottom: -100px;
        right: 0;
        margin-top: 0;
        z-index: -2;
        width: 90%;
    }

    .index_5 {
        margin-top: 100px;
    }

    .index_5 .index_5Text div h5 {
        width: auto;
    }

    .index_5 .index_5Text div {
        padding: 30px 30px;
    }

    .index_5 .index_5Text p {
        margin-bottom: 10px;
    }

    .index_5 .index_5Img {
        width: 150%;
        position: absolute;
        left: 0;
        top: 12%;
        z-index: -9;
    }

    .index_5 .yellowBox {
        width: 50%;
        position: absolute;
        left: 8%;
        bottom: 0;
        top: 45%;
        height: 2px;
    }

    .index_6 h5 {
        padding-left: 0;
        margin: 100px auto;
    }

    .index_6 h5 p {
        right: 0;
        font-size: 36px;
    }

    .index_7 {
        width: auto;
        font-size: 10px;
    }

    .index_7 img {
        height: auto;
    }

    .footer .footerTop {
        padding: 0 30px;
    }

    .footer .footerTop>ul {
        width: auto;
    }

    .footer .footerBottom {
        width: auto;
        padding: 0 15px;
    }

    /* Index End*/
    /* Contact */
    .contactForm>div {
        width: auto;
    }

    .contactForm .row {
        margin-bottom: 3em;
    }

    .contactForm .row>.col-md-6>div>input {
        width: 70%;
    }

    .contactDetalis .text {
        margin: 200px 0 100px;
    }

    .contactDetalis .row>div {
        padding: 0;
        height: 100px;
    }

    /* Contact End*/
    /* News */
    .news .swiper-container .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .newsDetalis img,
    .newsDetalis h1,
    .newsDetalis h2 {
        padding-left: 0;
        width: 100%;
    }

    /* News End*/
    /* product */
    .product>h1 {
        padding-left: 0;
    }

    .product_2>div {
        width: 100%;
    }

    .product .swiper-container {
        width: 100% !important;
        margin-left: 0;
    }

    .product_3 {
        padding-left: 15px;
    }

    .product_3>div {
        width: 100%;
        height: 920px;
    }

    .product_3>div>.product_3Img1 {
        left: 0;
        top: 0;
    }

    .product_3>div>.product_3Img2 {
        left: auto;
        right: 0;
        top: 120px;
    }

    .product_3>div>.product_3Img3 {
        left: 0;
        top: 240px;
    }

    .product_3>div>.product_3Img4 {
        left: auto;
        right: 0;
        top: 360px;
        z-index: 1;
    }

    .product_3>div>.product_3Img5 {
        left: 0;
        top: 480px;
        z-index: 1;
    }

    .product_3>div>.product_3Img6 {
        left: auto;
        right: 0;
        top: 600px;
        z-index: 1;
    }

    .product_3>div>.product_3Img7 {
        left: 0;
        top: 720px;
        z-index: 1;
    }

    /* product End*/
    /* zunxiang*/
    .zunxiang .text {
        padding-left: 0;
    }

    .zunxiang .box>ul>li h1 {
        font-size: 15px;
        line-height: 100px;
    }

    .zunxiangDetalis>h1 {
        padding-left: 0;
    }

    .zunxiangDetalis .swiper-container {
        width: 100%;
        margin-left: 0;
        font-size: 12px;
    }

    /* zunxiang End*/
}