﻿@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
.footer,
.header,
hgroup,
menu,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a {
    text-decoration: none;
    color: #585858;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

a:focus {
    outline: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea {
    resize: none;
    outline: none;
    font-family: 'SourceHanSansSC', 'Microsoft YaHei', 'Arial';
}

input {
    font-family: 'SourceHanSansSC', 'Microsoft YaHei', 'Arial';
    outline: none;
}

/* img {
    border: 0;
    max-width: 100%;
} */

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul,li{
    list-style: none;
}

/*--------------css animation--------------*/
.trans {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

/*--------------------------------------*/
/* 字体 */

@font-face {
    font-family: "SourceHanSansSC";
    font-weight: 600;
    src: url('../fonts/SourceHanSansSC-Bold-2.otf');
}
@font-face {
    font-family: "SourceHanSansSC";
    font-weight: 500;
    src: url('../fonts/SourceHanSansSC-Regular-2.otf');
}
@font-face {
    font-family: "SourceHanSansSC";
    font-weight: 300;
    src: url('../fonts/SourceHanSansSC-ExtraLight-2.otf');
}

@font-face {
    font-family: 'Compacta-Light';
    src: url('../fonts/Compacta Light BT.eot');
    src: url('../fonts/Compacta Light BT.eot') format('embedded-opentype'),
         url('../fonts/Compacta Light BT.woff2') format('woff2'),
         url('../fonts/Compacta Light BT.woff') format('woff'),
         url('../fonts/Compacta Light BT.ttf') format('truetype'),
         url('../fonts/Compacta Light BT.svg#BEBAS') format('svg');
}
/* --- */
/*---------- 清除浮云 ----------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.clearfix {
    *+height: 1%;
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden;
}
body {
    font-family: "SourceHanSansSC";
    background: #f6f6f6;
    font-size: 14px;
    color: #585858;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-transform: uppercase;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #fff;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #fff;
}

.fl {
    float: left;
}

.fr {
    float: right;
}



/* header */
.x_header {
    width: 100px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid #eee;
    z-index: 999;
}
.x_header .logo {
    margin: 40px auto;
    text-align: center;
}
.logo {
    width: 58px;
    margin: 20px auto;
    display: block;
}
.logo img {
    width: 100%;
    display: block;
}
.x_header .nav_control {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    width: 48px;
    height: 48px;
    border: 1px solid #eeeeee;
    cursor: pointer;
}
.x_header .nav_control:hover {
    background: #eee;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.x_header .nav_control span {
    width: 20px;
    height: 2px;
    background: #313131;
    display: block;
    margin: 22px 0 0 13px;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}
.x_header .nav_control span:before,
.x_header .nav_control span:after {
    content: '';
    width: 14px;
    height: 2px;
    background: #313131;
    position: absolute;
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}
.x_header .nav_control span:before {
    top: -8px;
}
.x_header .nav_control span:after {
    bottom: -8px;
}
.x_header .nav_control:hover span {
    width: 28px;
}
.x_header .nav_control:hover span:before {
    width: 22px;
}
.x_header .nav_control:hover span:after {
    width: 16px;
}
.x_header .nav_control.active span {
    background: transparent;
    margin-left: 10px;
}
.x_header .nav_control.active span:before {
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -moz-transform: rotate(-48deg) translate(-6px, 5px);
     -ms-transform: rotate(-48deg) translate(-6px, 5px);
         transform: rotate(-48deg) translate(-6px, 5px);
    width: 24px;
}
.x_header .nav_control.active span:after {
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -moz-transform: rotate(48deg) translate(-6px, -5px);
     -ms-transform: rotate(48deg) translate(-6px, -5px);
         transform: rotate(48deg) translate(-6px, -5px);
    width: 24px;
}
.x_header .lang {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}
.x_header .lang .box {
    width: 37px;
    margin: 15px auto;
}
/* .x_header .lang:before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background: url(../images/head_icon1.png) center no-repeat;
    margin: 0 auto 20px;
} */
.x_header .lang a {
    font-size: 12px;
    color: #999;
}
.x_header .lang a img {
    width: 30px;
    padding: 5px;
    border: 1px solid #999;
    -moz-border-radius: 50%;
         border-radius: 50%;
}
.x_header .lang a.active,
.x_header .lang a:hover {
    color: #333;
}
.x_header .lang .line {
    width: 1px;
    height: 20px;
    background: #eee;
    margin: 10px auto;
}

.fixed_nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    z-index: 99;
    -webkit-transition: all 700ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 700ms cubic-bezier(.4, 0, 0, 1);
    transition: all 700ms cubic-bezier(.4, 0, 0, 1);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
     -ms-transform: scaleX(0);
         transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
     -ms-transform-origin: left center;
         transform-origin: left center;
    font-size: 0;
}
.fixed_nav .block {
    width: 33.333vw;
    height: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: 7vw;
}
.fixed_nav .gem {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    position: absolute;
    top: 60px;
    left: 0;
}
.fixed_nav .copyright {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    position: absolute;
    left: 120px;
    bottom: 60px;
    padding-right: 30px;
}
.fixed_nav .copyright p{
    line-height: 1.6;
}
.fixed_nav ul {
    position: absolute;
    left: 14vw;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
     -ms-transform: translateY(-50%);
         transform: translateY(-50%);
    max-width: 22vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    -webkit-transition-delay: 0s;
       -moz-transition-delay: 0s;
            transition-delay: 0s;
}
.fixed_nav ul li {
    position: relative;
    margin-top: 17px;
    padding-bottom: 17px;
}

.fixed_nav ul li a.sin {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 36px;
    -webkit-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    transition: all 400ms cubic-bezier(.4, 0, 0, 1);
}
.fixed_nav ul:hover li a {
    color: #e4e4e4;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}
.fixed_nav ul li a.cur{
    color: #333;
}
.fixed_nav ul:hover li a:hover {
    color: #333;
    font-weight: bold;
    /* font-size: 31px; */
}
.fixed_nav ul li .hover {
    /* position: absolute;
    right: 0;
    top: 0;
    left: 222px; */
    text-align: left;
}
/* .fixed_nav ul li .hover:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 110px;
    height: 1px;
    background: #dddddd;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
     -ms-transform: scaleX(0);
         transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
     -ms-transform-origin: left center;
         transform-origin: left center;
} */
.fixed_nav ul li .hover{
    display: none;
}
.fixed_nav ul li .hover .link,.nav_popups .left_box .nav li .hover .link {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    display: inline-block;
}
.nav_popups .left_box .nav li .hover .link{
    margin-top: 4px;
}
.fixed_nav ul li .hover a,.nav_popups .left_box .nav li .hover .link a {
    display: block;
    font-size: 20px;
    color: #333;
    line-height: 1.8;
}
.fixed_nav ul li .hover a:hover,.nav_popups .left_box .nav li .hover .link a {
    color: #901a00;
}
/* .fixed_nav ul li:hover a.sin {
    color: #901a00;
} */
.fixed_nav ul li:hover .hover:before {
    -webkit-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    transition: all 400ms cubic-bezier(.4, 0, 0, 1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
     -ms-transform: scaleX(1);
         transform: scaleX(1);
}
.fixed_nav ul li:hover .hover:before {
    -webkit-transition: all 400ms cubic-bezier(.4,0,0,1);
    transition: all 400ms cubic-bezier(.4,0,0,1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.fixed_nav ul li:hover .hover .link {
    -webkit-transition: all 400ms 400ms cubic-bezier(.4, 0, 0, 1);
    -moz-transition: all 400ms 400ms cubic-bezier(.4, 0, 0, 1);
    transition: all 400ms 400ms cubic-bezier(.4, 0, 0, 1);
    opacity: 1;
    visibility: visible;
}
.fixed_nav .bg {
    width: 66.666vw;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
         background-size: cover;
    background-color: #000;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.fixed_nav.active {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
     -ms-transform: scaleX(1);
         transform: scaleX(1);
}
.fixed_nav.active ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 500ms;
       -moz-transition-delay: 500ms;
            transition-delay: 500ms;
}

@media screen and (max-width: 1650px) {
    .fixed_nav ul li a.sin {
        font-size: 20px;
        line-height: 28px;
    }
    .fixed_nav ul li .hover {
        left: 120px;
    }
    .fixed_nav ul li .hover a {
        /* line-height: 28px; */
        font-size: 18px;
    }
    .fixed_nav ul li .hover:before {
        top: 14px;
    }
}
@media screen and (max-width: 1500px) {
    .fixed_nav ul li {
        margin-top: 8px;
        padding-bottom: 8px;
    }
    .fixed_nav ul li a.sin {
        font-size: 16px;
        line-height: 24px;
    }
    .fixed_nav ul li .hover {
        left: 100px;
    }
    .fixed_nav ul li .hover a {
        /* line-height: 24px; */
        font-size: 14px;
    }
    .fixed_nav ul li .hover:before {
        top: 12px;
    }
}

@media screen and (max-width: 992px) {
    .pc_main {
        display: none;
    }
    .mobile_main {
        display: block;
    }
    .m_header {
        height: 60px;
        background: #fff;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
           -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
                box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
        z-index: 9;
    }
    .m_header .logo img {
        width: 40px;
        height: 40px;
    }
    .m_header .mNavBtn {
        display: block;
        width: 24px;
        height: 16px;
        right: 20px;
        top: 22px;
        position: fixed;
        cursor: pointer;
        z-index: 15;
    }
    .m_header .mNavBtn.active .line2 {
        display: none;
    }
    .m_header .mNavBtn.active .line1 {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
         -ms-transform: rotate(45deg);
             transform: rotate(45deg);
        top: 7px;
    }
    .m_header .mNavBtn.active .line3 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
         -ms-transform: rotate(-45deg);
             transform: rotate(-45deg);
        bottom: 7px;
    }
    .m_header .mNavBtn span {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #313131;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .m_header .mNavBtn span.line1 {
        top: 0;
    }
    .m_header .mNavBtn span.line2 {
        top: 7px;
    }
    .m_header .mNavBtn span.line3 {
        bottom: 0;
    }
    .m_header .nav_item {
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
         -ms-transform: scaleY(0);
             transform: scaleY(0);
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
         -ms-transform-origin: center top;
             transform-origin: center top;
    }
    .m_header .nav_item.active {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
         -ms-transform: scaleY(1);
             transform: scaleY(1);
    }
    .m_header .item {
        height: 24vh;
        background-position: center;
        background-repeat: no-repeat;
        -moz-background-size: cover;
             background-size: cover;
        position: relative;
        text-align: center;
    }
    .m_header .item a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .m_header .item .link1 {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        margin-top: -27px;
    }
    .m_header .item span {
        font-size: 16px;
        color: #cecece;
        display: inline-block;
        line-height: 20px;
    }
    .m_header .item p {
        font-size: 22px;
        color: #fff;
        line-height: 24px;
        margin-top: 10px;
    }
    .m_header .item .link2 {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin-top: -15px;
        font-size: 0;
        text-align: center;
    }
    .m_header .item .link2 a {
        font-size: 18px;
        color: #fff;
        padding: 0 10px;
        display: inline-block;
        vertical-align: middle;
        line-height: 30px;
        width: auto;
    }
    .m_header .item .link2 i {
        font-size: 18px;
        color: #555;
        line-height: 30px;
        display: inline-block;
        vertical-align: middle;
    }
}

.header_n {
    width: 450px;
    position: fixed;
    left: 100px;
    top: 0;
    height: 100vh;
    background: #fff;
    padding: 0 0 90px;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
       -moz-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease;
    z-index: 999;
}
.header_n .nav {
    width: 100%;
    height: 100%;
}
.header_n .nav h3 {
    font-size: 14px;
    color: #fff;
    line-height: 110px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav h3 a {
    display: inline-block;
    vertical-align: top;
    padding: 0 70px;
    line-height: 110px;
    color: #999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav h3 a:before {
    content: '';
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 13px 0 0;
    opacity: .6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav h3 a:nth-of-type(1) {
    border-right: 1px solid #3e3e3e;
}
.header_n .nav h3 a:nth-of-type(1):before {
    background-image: url("../images/j_icon10.png");
}

.header_n .nav h3 a:hover {
    color: #fff;
}
.header_n .nav h3 a:hover:before {
    opacity: 1;
}
.header_n .nav ul {
    height: 100%;
    font-size: 0;
    /* overflow: hidden; */
    opacity: 0;
    border-top: 1px solid #eee;
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 16.66666666%;
    background: #fff;
    border-bottom: 1px solid #eee;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav ul li:hover {
    width: 103%
}
/* .header_n .nav ul li:nth-child(2n){
    background: #2b2b2b;
} */
.header_n .nav ul li a {
    display: block;
    height: 100%;
}
.header_n .nav ul li i {
    position: absolute;
    top: 35%;
    left: 40px;
    width: 32px;
    height: 32px;
    background-position: left center;
    background-repeat: no-repeat;
    -moz-background-size: contain;
         background-size: contain;
}
.header_n .nav ul li p {
    padding-left: 40px;
    padding-top: 10%;
    font-size: 25px;
}
.header_n .nav ul li p span {
    font-size: 15px;
    padding-left: 40px;
    margin-top: 7px;
    display: block;
}
.header_n .nav ul li p:after {
    content: '';
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/j_icon9.png");
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* .header_n .nav ul li:nth-of-type(odd) {
  border-right: 1px solid #3e3e3e;
}
.header_n .nav ul li:hover {
  background: #901a00;
} */
.header_n .nav ul li:hover p:after {
    opacity: 1;
}
.header_n .nav .copyright {
    font-size: 13px;
    color: #666666;
    padding: 26px 40px;
    height: 90px;
    line-height: 1.5;
    /* border-top: 1px solid #3e3e3e; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header_n .nav .copyright span {
    margin-left: 30px;
}

.header_n.opened .button {
    border-color: transparent;
}
.header_n.opened .button:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header_n.opened .button:after {
    bottom: 8px;
    width: 22px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.header_n.opened {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.header_n.opened .nav h3 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: .5s;
       -moz-transition-delay: .5s;
            transition-delay: .5s;
}
.header_n.opened .nav ul {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: .8s;
       -moz-transition-delay: .8s;
            transition-delay: .8s;
}
.header_n.opened .nav .copyright {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: .5s;
       -moz-transition-delay: .5s;
            transition-delay: .5s;
}


.tabs {
    width: 100%;
    height: -moz-calc(100vh - 90px);
    height: calc(100vh - 90px);
    margin: 0 auto;
}

.tabs a {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: 16.666666%;
    z-index: 9;
    -webkit-box-shadow: 6px 1px 10px rgba(255, 255, 255, 0.28) inset;
       -moz-box-shadow: 6px 1px 10px rgba(255, 255, 255, 0.28) inset;
            box-shadow: 6px 1px 10px rgba(255, 255, 255, 0.28) inset;
    border-bottom: 1px solid #eee;
}

.tabs a:last-child {
    border: 0;
}

/* .tabs a:hover .tab_p {
    top: 32%;

} */


.tabs a .tabsImg {
    float: right;
    text-align: center;
    width: 128px;
    height: 100%;
    border-left: 1px solid #eee;
}

.tabs a .tabsImg img {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 36px;
}

.tab_p {
    text-align: center;
    position: relative;
    z-index: 11;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.tab_p>div {
    display: inline-block;
    min-width: 54%;
    margin: 0 auto;
    text-align: left;
}

.tab_p p {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 0;
    text-transform: capitalize;
}

.tab_p h4 {
    font-weight: 400;
    line-height: 1.4;
    font-size: 20px;
    letter-spacing: 1px;
}

.tabs a:before {
    top: 0;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: background-color 250ms cubic-bezier(.25, .25, .75, .75), top 250ms cubic-bezier(.25, .46, .45, .94), right 250ms cubic-bezier(.25, .46, .45, .94), bottom 250ms cubic-bezier(.25, .46, .45, .94), left 250ms cubic-bezier(.25, .46, .45, .94);
    -moz-transition: background-color 250ms cubic-bezier(.25, .25, .75, .75), top 250ms cubic-bezier(.25, .46, .45, .94), right 250ms cubic-bezier(.25, .46, .45, .94), bottom 250ms cubic-bezier(.25, .46, .45, .94), left 250ms cubic-bezier(.25, .46, .45, .94);
    transition: background-color 250ms cubic-bezier(.25, .25, .75, .75), top 250ms cubic-bezier(.25, .46, .45, .94), right 250ms cubic-bezier(.25, .46, .45, .94), bottom 250ms cubic-bezier(.25, .46, .45, .94), left 250ms cubic-bezier(.25, .46, .45, .94);
}

.tabs a:after {
    opacity: 0;
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    right: 4.5rem;
    background: rgba(26, 59, 127, 0.1);
    z-index: -1;
}

.tabs a.active:before {
    content: '';
    position: absolute;
    right: -3.2rem;
    background-color: #fff !important;
    z-index: 1;
}

.tabs a.active:after {
    content: '';
    position: absolute;
    z-index: 1;
    opacity: 1;
}

.tabs a .button-play-circle {
    text-align: center;
    height: 52px;
    width: 52px;
    position: absolute;
    top: 50%;
    right: -2rem;
    border-width: 2px;
    -moz-border-radius: 50%;
         border-radius: 50%;
    border: 2px solid #1A3B7F;
    opacity: 0;
    -ms-transform: translate(-10%, -50%);
    -webkit-transform: translate(-10%, -50%);
       -moz-transform: translate(-10%, -50%);
            transform: translate(-10%, -50%);
    -webkit-transition: opacity 250ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 250ms cubic-bezier(.25, .46, .45, .94);
    transition: opacity 250ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 250ms cubic-bezier(.25, .46, .45, .94);
    -moz-transition: transform 250ms cubic-bezier(.25, .46, .45, .94), opacity 250ms cubic-bezier(.25, .46, .45, .94), -moz-transform 250ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 250ms cubic-bezier(.25, .46, .45, .94), opacity 250ms cubic-bezier(.25, .46, .45, .94);
    transition: transform 250ms cubic-bezier(.25, .46, .45, .94), opacity 250ms cubic-bezier(.25, .46, .45, .94), -webkit-transform 250ms cubic-bezier(.25, .46, .45, .94), -moz-transform 250ms cubic-bezier(.25, .46, .45, .94);
    z-index: 9;
}

.tabs a.active .button-play-circle {
    -ms-transform: translate(-32%, -50%);
    -webkit-transform: translate(-32%, -50%);
       -moz-transform: translate(-32%, -50%);
            transform: translate(-32%, -50%);
    opacity: 1;
    -webkit-transition-duration: 250ms, .4s;
       -moz-transition-duration: 250ms, .4s;
            transition-duration: 250ms, .4s;
}

/* header end */


/* footer */

.des_footer {
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    overflow: hidden;
}
.des_inner {
    width: 100%;
    padding: 0 8vw;
    margin: 0 auto;
}
newsletter-signup {
    display: block;
    padding: 60px 0 110px;
}
.row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
}
.row {
    margin-left: -12px;
    margin-right: -12px;
}

.newsletter-signup__headline {
    text-align: center;
}
.desktop-filter__title,
.mobile-filter__title,
.newsletter-signup__headline {
    font-size: 28px;
    line-height: 36px;
}
.newsletter-signup__form-control {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.push-des-4 {
    width: 84%;
}
.newsletter-signup__input {
    height: 35px;
    font-size: 13px;
    line-height: 19px;
    padding: 8px 12px;
    border-color: #7c0000;
    color: #919191;
    width: 80%;
    display: block;
    outline: 0;
    border-top: 1px solid #adadad;
    border-left: 1px solid #adadad;
    border-bottom: 1px solid #adadad;
    border-right: none;
}
.button {
    -moz-border-radius: 1px;
         border-radius: 1px;
    padding: 6px 13px;
    height: 35px;
    min-width: 90px;
    color: #323232;
    background-color: transparent;
    border: 1px solid #adadad;
    font-size: 13px;
    line-height: 19px;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: color .3s cubic-bezier(0, 0, .2, 1);
    -moz-transition: color .3s cubic-bezier(0, 0, .2, 1);
    transition: color .3s cubic-bezier(0, 0, .2, 1);
}
.button--inverse {
    border: 1px solid #323232;
    background-color: #323232;
    color: #fff;
}
.newsletter-signup__button {
    width: 20%;
    display: block;
    overflow: hidden;
}
.newsletter-signup__error-text {
    position: relative;
    width: 100%;
    padding-top: 28px;
    display: block;
    font-size: 13px;
    text-align: center;
}
.ewm {
    margin-top: 30px;
    position: relative;
    line-height: 24px;
    font-size: 12px;
}

.ewm .img {
    float: left;
    width: 41%;
    overflow: hidden;
    margin-right: 9%;
}

.ewm .img img {
    width: 100%;
}

.ewm h2 {
    font-size: 12px;
    text-align: center;
}
.footer__row {
    margin: 100px 0 60px;
}
.footer__row--align-center {
    border-top: 1px solid #e2e2e2;
    padding-top: 40px;
    margin-bottom: 40px;
    margin-top: 50px;
    font-size: 13px;
}
.col-des-3 {
    width: 20%;
    text-align: left;
}
.footer-nav {
    width: 16%;
}
.footer-column__title,
.footer-contact__title {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 25px;
}
.footer-column__link-wrapper {
    line-height: 20px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 12px;
    overflow: hidden;
}
.link--slide-right-container a {
    color: #323232;
    display: inline-block;
    -webkit-transition: .4s ease-in-out transform;
    -moz-transition: .4s ease-in-out transform;
    transition: .4s ease-in-out transform;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
}
.link--underline {
    position: relative;
    outline: 0;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    color: #323232;
}
.footer-contact__text {
    font-size: 13px;
    color: #323232;
}
.link--underline:before {
    content: "";
    width: 100%;
    color: inherit;
    /* border-bottom: 1px solid currentColor; */
    display: block;
    position: absolute;
    bottom: 0px;
    -webkit-transition: .2s linear transform;
    -moz-transition: .2s linear transform;
    transition: .2s linear transform;
}
.link--underline:hover:before {
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
     -ms-transform: translateY(2px);
         transform: translateY(2px);
}
.footer-contact__container--push-down {
    margin-top: 20px;
}
.col-des-6 {
    width: 50%;
}
.col-des-6 .footer__container {
    text-align: left;
}
.newsletter-signup__form {
    margin-top: 15px;
}
.link--slide-right-container a:after {
    content: "";
    position: absolute;
    background-color: transparent;
    width: 20px;
    he
}
ight: 20px;
left: 0;
.link--slide-right-container:focus a:after,
.link--slide-right-container:focus a:before,
.link--slide-right-container:hover a:after,
.link--slide-right-container:hover a:before {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
     -ms-transform: translateX(-20px);
         transform: translateX(-20px);
}
.link--slide-right-container a:before {
    content: "";
    background-color: #323232;
    height: 1px;
    width: 0;
    position: absolute;
    top: 45%;
    left: -21px;
    -webkit-transition: .4s ease-in-out transform, width .4s ease-in-out;
    -moz-transition: .4s ease-in-out transform, width .4s ease-in-out;
    transition: .4s ease-in-out transform, width .4s ease-in-out;
}
.link--slide-right-container:focus a:before,
.link--slide-right-container:hover a:before {
    width: 15px;
}
.link--slide-right-container:focus a,
.link--slide-right-container:hover a {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
     -ms-transform: translateX(20px);
         transform: translateX(20px);
}
.footer-contact__container {
    margin-bottom: 5px;
}

.footerStay {
    margin-top: 42px;
}

.site-footer-social-li {
    -moz-border-radius: 50%;
         border-radius: 50%;
    float: left;
    margin-right: 15px;
    height: 50px;
    width: 50px;
    background-color: #323232;
    color: #fff;
    -webkit-transition: background-color 100ms ease;
    -moz-transition: background-color 100ms ease;
    transition: background-color 100ms ease;
}

.site-footer-social-li:hover {
    background: #1D1D1D;
}

.site-footer-social-svg {
    /* overflow: hidden; */
    position: relative;
    display: block;
    height: 100%;
}

.site-footer-social-svg img {
    margin: 15px 0 0 15px;
}

.site-footer-social-svg>svg {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
     -ms-transform: translateX(-50%) translateY(-50%);
         transform: translateX(-50%) translateY(-50%);
    height: 14px;
    width: 14px;
    max-height: none;
}
.site-footer-social-li .a1 {
    position: relative;
}

.site-footer-social-li .a1:hover .ewm {
    display: block;
}

.fp-auto-height,
.fp-auto-height .fp-tableCell {
    height: 558px !important;
}

/* footer  end */

.indTit {
    font-size: 40px;
    line-height: 1.4;
    padding: 20px 0;
    text-align: left;
    width: 100%;
}

.indTit h3 {
    margin: 0;
    font-size: 65px;
    text-transform: uppercase;
    color: #ededed;
    line-height: 1;
    font-family: "SourceHanSansSC"
}

.indTit p {
    margin: 0;
    font-size: 30px !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    font-weight: bold;
    color: #333;
    font-family: "SourceHanSansSC";
}

.header_m {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-right: 1px solid #f5f5f5;
    display: none;
    z-index: 999999;
}
.header_m .logo_m {
    margin-top: 8px;
    float: left;
}
.header_m .logo_m img {
    height: 50px;
    display: block;
    margin: 0 auto;
}
.header_m .nav_btn {
    width: 25px;
    height: 32px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -17px;
    overflow: hidden;
    cursor: pointer;
}
.header_m .nav_btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: left 50%;
}
.header_m .nav_btn span {
    -webkit-transition: all 0.47s ease;
    -moz-transition: all 0.47s ease;
    -ms-transition: all 0.47s ease;
    transition: all 0.47s ease;
}
.header_m .nav_btn span.top {
    margin-top: -6px;
}
.header_m .nav_btn span.bottom {
    margin-top: 6px;
}
.header_de{
    position: absolute;
    right: 70px;
    vertical-align: middle;
    line-height: 64px;
    background: #f5f5f5;
}
.header_de a{
    color: #333;
    padding: 0 18px;
}
.header_de img{
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.header_m .nav_btn.active span.top {
    -webkit-transform: rotate(45deg) translate(0, -4px);
    -moz-transform: rotate(45deg) translate(0, -4px);
    -ms-transform: rotate(45deg) translate(0, -4px);
    transform: rotate(45deg) translate(0, -4px);
}
.header_m .nav_btn.active span.middle {
    opacity: 0;
}
.header_m .nav_btn.active span.bottom {
    -webkit-transform: rotate(-45deg) translate(0, 4px);
    -moz-transform: rotate(-45deg) translate(0, 4px);
    -ms-transform: rotate(-45deg) translate(0, 4px);
    transform: rotate(-45deg) translate(0, 4px);
}
.nav_popups {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background-color: #fff;
    padding-left: 96px;
    padding-right: 145px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    display: none;
}
.nav_popups,.search_popups {
    display: block;
    -webkit-transition: transform 0.6s ease-in-out;
    -moz-transition: transform 0.6s ease-in-out;
    -ms-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
}
.nav_popups.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.nav_popups {
    top: 65px;
    padding-left: 0;
    padding-right: 0;
}
.nav_popups .left_box {
    position: relative;
    width: 100%;
    height: 100%;
}
.nav_popups .left_box .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: .1;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav_popups .left_box .cont {
    position: absolute;
    z-index: 2;
}
.nav_popups .left_box .cont {
    bottom: 0;
    top: 0;
    padding: 40px;
}
.nav_popups .left_box .nav {
    width: 50%;
    position: relative;
}
.nav_popups .left_box .nav li {
    margin-top: 10px;
}
.nav_popups .left_box .nav li:first-of-type {
    margin-top: 0;
}
.nav_popups .left_box .nav li a.sig {
    display: block;
    font-size: 17px;
    line-height: 40px;
    color: #000;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav_popups .left_box .nav li .hover{
    display: none;
}
.nav_popups .left_box .link {
    margin-top: 8vh;
}
.nav_popups .left_box .link p{
    margin-bottom: 10px;
    line-height: 1.7;
}

#orange_button .button_click_1,#orange_button>img{
	position: fixed;
	width: 160px;
	height: 54px;
	bottom: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    cursor: pointer;
}
/* #orange_button .button_click:before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: -6px;
	left: -6px;
	border: 1px solid #901a00;
} */
#black_button .button_click_1,#black_button>img{
	position: fixed;
	width: 160px;
	height: 54px;
	bottom: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    cursor: pointer;
}
.click_jr{
	position: relative;
	float: left;
	width: 54px;
	height: 54px;
	/* background: rgba(32, 48, 45, 0.2); */
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.click_jr p{
	width: 45px;
	height: 44px;
	position: absolute;
	top: 5px;
	left: 5px;
	background: #901a00;
}
.click_jr img{
	position: absolute;
	width: 22px;
	top: 50%;
	margin-top: -13px;
	left: 50%;
	margin-left: -11px;
	-webkit-animation: mouse_click 1.5s linear infinite;
    animation: mouse_click 1.5s linear infinite;
}
@-webkit-keyframes mouse_click {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
}
@keyframes mouse_click {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
}
.button_click_1 h4{
	float: right;
	width: 106px;
	font-size: 15px;
	line-height: 36px;
	text-align: center;
	margin-top: 8px;
	color: #333;
    font-weight: 500;
    padding: 0 5px;
}
.button_click_1 h4 span{
	display: block;
}
