.mytop {
    width: 50px;
    height: 50px;
    background-color: #0060a3;
    position: fixed;
    right: 40px;
    bottom: 50px;
    overflow: hidden;
    cursor: pointer;
    display: none;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
    z-index: 9;
}
.mytop:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/mytop.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0;
}
.mytop:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/mytop.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 100%;
}
.mytop:hover:before {
    top: -100%;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}
.mytop:hover:after {
    top: 0;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}

#header {
    width: 100%;
    margin: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    transition: all .4s;
    -webkit-transition: all .4s;
}
.no_touch #header {
    background-color: transparent;
    box-shadow: none;
    background: #fff;
}
#header:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: .1;
    filter: alpha(opacity=10);
    position: absolute;
    left: 0;
    bottom: 0;
}
#header.on {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    /* box-shadow: 0 0 5px rgba(0, 0, 0, .2); */
}
#header.on:before {
    display: none;
}


#header:after {
    content: '';
    width: 100%;
    height: 520px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 999;
}

#header .nav {
    width: 85%;
    position: relative;
    float: right;
}

@media screen and (max-width:1440px){
    #header .nav{ width: 100%;}
    #header .nav .inner_bor{ display: none;}
}
#header .nav> ul {
    float: right;
    width: 90%;
}
#header .nav>ul li {
    float: left;
    width:12%;
    text-align: center;
    position: relative;
}
#header .nav>ul li a {
    padding: 0 10px;
    margin: 0 8px;
    line-height: 92px;
    color: #707070;
    display: inline-block;
    font-size: 15px;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#header .nav>ul li a:hover{ color: #0060a3;}
@media screen and (max-width: 1300px){
    #header .nav>ul li a{ padding: 0;}
}
@media screen and (max-width: 1200px){
    #header .nav>ul li a{ padding: 0; margin: 0;}
}
#header .nav>ul .nav_er {
    width: 100%;
    min-width: 1260px;
    max-width: 1920px;
    position: absolute;
    z-index:99;
    top: 100%;
    left: 0;
    margin-left: -28px;
    display: none;
}
#header .nav>ul .nav_er05 {
    margin-left: -50px;
}
#header .nav>ul .nav_er07 {
    margin-left: -95px;
}
#header .nav>ul .nav_er:before {
    content: '';
    width: 6px;
    height: 74px;
    background: url(../images/icon_head_nav.png) no-repeat center;
    position: absolute;
    left: 22px;
    top: 0;
}
#header .nav > ul .nav_er .div_dl {
    background: #0060a3;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#header .nav > ul .nav_er .div_dl a {
    float: left;
    color: #fff;
    line-height: 74px;
    padding: 0;
    margin: 0;
    margin-left: 47px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#header .nav > ul .nav_er .div_dl a + a {
    padding: 0;
    margin-left: 43px;
}
#header .nav > ul .li .nav_er .div_dl a:first-child,
#header .nav > ul .nav_er .div_dl a.on,
#header .nav > ul .nav_er .div_dl a:hover {
    color: #fff;
}
#header .nav .inner_bor {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    display: none;
    background: #4E4949;
}
#header .nav .version {
    font-size: 14px;
    color: #000;
    line-height: 92px;
    font-weight: bold;
    float: left;
    margin-left: 20px;
}


#header .search {
    float: left;
    height: 92px;
    position: relative;
    margin-left: -18px;
    cursor: pointer;
}
#header .ri-img {
    float: left;
    margin-left: 5px;
    margin-top: 36px;
}



.head_menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 74px;
    height: 92px;
    /* background-color: #2e2d2c; */
    color: #0060a3;
    transition: background-color .3s ease-out;
    -webkit-transition: background-color .3s ease-out;
    z-index: 99999;
    cursor: pointer;
}
@media screen and (max-width:768px){
    .head_menu{ height: 65px;}
}
.hamburger-icon-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 22px;
    height: 20px;
    margin: auto;
    pointer-events: none;
}
.hamburger-icon {
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    top: 50%;
    margin-top: -1px;
}
.hamburger-icon, .hamburger-icon:after, .hamburger-icon:before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: currentColor;
}
.hamburger-icon:before {
    content: "";
    top: -8px;
    transition: top .1s ease-in .34s,opacity .1s ease-in,-webkit-transform .34s ease-in;
    transition: transform .34s ease-in,top .1s ease-in .34s,opacity .1s ease-in;
    transition: transform .34s ease-in,top .1s ease-in .34s,opacity .1s ease-in,-webkit-transform .34s ease-in;
}
.hamburger-icon:after {
    content: "";
    bottom: -8px;
    transition: bottom .1s ease-in .34s,-webkit-transform .34s ease-in,-webkit-transform .3s cubic-bezier(.55,.055,.675,.19);
    transition: transform .34s ease-in,bottom .1s ease-in .34s,transform .3s cubic-bezier(.55,.055,.675,.19);
    transition: transform .34s ease-in,bottom .1s ease-in .34s,transform .3s cubic-bezier(.55,.055,.675,.19),-webkit-transform .34s ease-in,-webkit-transform .3s cubic-bezier(.55,.055,.675,.19);
}



.head_menu:hover .hamburger-icon:before {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.head_menu:hover .hamburger-icon:after {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.skrollr .hamburger-icon {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: .14s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
.skrollr .head_menu {
    color: #fff;
}
.skrollr .head_menu .hamburger-icon:before {
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: top .1s ease-out,opacity .1s ease-out .14s;
}
.skrollr .head_menu .hamburger-icon:after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom .1s ease-out,-webkit-transform .3s cubic-bezier(.215,.61,.355,1) .14s;
    transition: bottom .1s ease-out,transform .3s cubic-bezier(.215,.61,.355,1) .14s;
    transition: bottom .1s ease-out,transform .3s cubic-bezier(.215,.61,.355,1) .14s,-webkit-transform .3s cubic-bezier(.215,.61,.355,1) .14s;
}


/* 搜索 */
.pop {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    /* max-width: 2200px; */
    height: 100%;
    z-index: 9999;
}
.pop .bg{
    width: 100%;
    height: 100%;
    background-color: #090a0b;
    background-color: rgba(9, 10, 11, .8);
}

.pop.search_pop {
    display: none;
    z-index: 8;
    max-width: 2200px;
}
.search_con {
    height: 150px;
    background-color: #0060a3;
    width: 100%;
    position: absolute;
    top: 92px;
    left: 0;
}
.search_con .title {
    float: left;
    position: relative;
    padding-top: 50px;
}
.search_con .title:before {
    content: '';
    width: 57px;
    height: 57px;
    background: url("../images/icon_search_bg.png") no-repeat;
    position: absolute;
    right: -55px;
    top: 18px;
}
.search_con .title .en {
    font-family: 'Gilroy_Bold';
    font-size: 51px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}
.search_con .title .cn {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}
.search_con .input {
    float: right;
    width: 75%;
    margin-top: 74px;
    position: relative;
}
.search_con .input input {
    width: 100%;
    border: none;
    background-color: transparent;
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
}
.search_con .input .search_input {
    font-size: 18px;
    color: #fff;
    color: rgba(255,255,255, .5);
    position: absolute;
    right: 0;
    top: 0;
}
@media screen and (max-width: 1400px){
    .search_con .input { width: 75%;}
}



.pop .popBody {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -210px;
    width: 1200px;
    height: 500px;
    background-color: #fff;
    padding: 30px;
}
.pop .close {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: url(../images/close.png) no-repeat center;
    background-size: 18px 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    z-index: 1;
}

.pop.head_pop {
    pointer-events: none;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.pop.head_pop .popBody {
    background-color: #0060a3;
    width: 660px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: auto;
    right: -660px;
    padding: 50px 30px 50px 70px;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all .6s;
    transition: all .6s;
}
.pop.head_pop .popBody .slogan {
    font-size: 40px;
    color: #fff;
    line-height:  50px;
    font-weight: lighter;
}
.pop.head_pop .popBody .slogan span{ font-size: 26px;}
.pop.head_pop .popBody .icon_head {
    width: 50%;
    height: auto;
    /* margin: 35px 0 29px; */
    margin: 5% 0;
    position: relative;
}
.pop.head_pop .popBody .icon_head img {
    width: 100%;
    height: auto;
}
.pop.head_pop .popBody .icon_head em {
    color: #ded7cd;
    line-height: 22px;
    display: block;
    position: absolute;
    left: 105%;
    bottom: 0;
    width: 100%;
}
.skrollr .pop.head_pop {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: inherit;
    pointer-events: auto;
}
.skrollr .pop.head_pop .popBody {
    right: 0;
}
.pop.head_pop .family_site {
    /* padding: 33px 0; */
    padding: 6% 0;
    position: relative;
}
.pop.head_pop .family_site:before {
    content: '';
    width: 376px;
    height: 2px;
    background-color: #fff;
    opacity: .2;
    filter: alpha(opacity=20);
    position: absolute;
    top: 0;
    left: 0;
}
.pop.head_pop .family_site:after {
    content: '';
    width: 376px;
    height: 2px;
    background-color: #fff;
    opacity: .2;
    filter: alpha(opacity=20);
    position: absolute;
    bottom: 0;
    left: 0;
}
.pop.head_pop .family_site h3 {
    font-family: 'RAJDHANI_BOLD';
    font-size: 34px;
    color: #ded7cd;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}
.pop.head_pop .family_site dl {
    line-height: 1.8;
    width: 100%;
    margin: 0;
    display: inline-block;
}
.pop.head_pop .family_site dt {
    float: left;
    width: 104px;
    font-size: 14px;
    color: #ded7cd;
    color: rgba(222,215,205, .5);
    font-weight: bold;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.pop.head_pop .family_site dt:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.pop.head_pop .family_site dt:hover {
    color: #ded7cd;
}
.pop.head_pop .family_site dd {
    float: left;
    position: relative;
    padding-left: 17px;
    margin: 0;
}
.pop.head_pop .family_site dd:before {
    content: '';
    width: 6px;
    height: 10px;
    background: url(../images/icon_sitemap.png) no-repeat;
    position: absolute;
    left: 0;
    top: 7px;
}
.pop.head_pop .family_site dd a {
    font-size: 14px;
    color: #ded7cd;
    float: left;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.pop.head_pop .family_site dd a + a {
    margin-left: 20px;
}
@media screen and (max-width:768px){
    .pop.head_pop .family_site dd a + a {
        margin-left: 9px;
    }
    .pop.head_pop .family_site dd a{font-size: 13px;}
}
.pop.head_pop .family_site dd a:hover {
    color: #f6dab1;
}
.pop.head_pop .head_call h3 {
    font-family: 'RAJDHANI_BOLD';
    font-size: 26px;
    color: #fff;
    line-height: 1;
    /* margin: 26px 0 16px; */
    margin: 4% 0 2% !important;
}
.pop.head_pop .head_call p {
    font-size: 14px;
    color: #ded7cd;
    color: rgba(222, 215, 205, .5);
    line-height: 30px;
}
.skrollr02 .head_pop .con01 {
    height: 0;
    overflow: hidden;
}
.skrollr .head_pop .con01 {
    display: block !important;
}
.skrollr .head_pop .con02 {
    display: none;
}
.skrollr02 .head_pop .con02 {
    display: block !important;
    padding-right: 35px;
}


@media screen and (max-width: 768px){
    .pop.head_pop .family_site dd:before{ display: none;}
    .pop.head_pop .popBody{ width: 100%; padding: 7%;}
    .pop.head_pop .popBody .icon_head,.pop.head_pop .popBody .slogan,.pop.head_pop .family_site:before{ display: none;}
    .pop.head_pop .family_site dd{ clear: both; padding: 0;}
}

/* banner */
.height,
.banner {
    width: 100vw;
    margin: 0 auto !important;
    overflow: hidden;
    height: 100vh;
    position:fixed !important;
    top:0;
    left:0;
    right: 0;
}
.banner .bd {
    width:100%;
    overflow:hidden;
}
.banner .bd ul {
    width:100% !important;
}
.banner .bd li {
    width:100% !important;
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
}
.banner .hd li.on {
    background-color:#bf0008;
    border-color:#bf0008;
}
.banner .hd li {
    float:left;
    margin: 0 3px;
    width:13px;
    height:13px;
    border-radius:13px;
    border:2px solid #fff;
    cursor:pointer;
    -ms-transition:background-color 1000ms,margin-top 500ms,border-color 1000ms;
    transition:background-color 500ms,margin-top 500ms;
    transition:background-color 1000ms,margin-top 500ms,border-color 1000ms;
    -webkit-transition:background-color 1000ms,margin-top 500ms,border-color 1000ms;
    -moz-transition:background-color 1000ms,margin-top 500ms,border-color 1000ms;
    -o-transition:background-color 1000ms,margin-top 500ms,border-color 1000ms;
}
.banner .hd {
    position:absolute;
    bottom:140px;
    width: 100%;
    left:0;
    right:0;
    margin:auto;
}
.banner .hd .block {
    float: right;
}
.banner .hd ul {
    float: left;
    margin: 2px 10px 0;
}
.banner .btn {
    width:10px;
    height:18px;
    transition-duration:.5s;
    -webkit-transition-duration:.5s;
    cursor:pointer;
}
.banner .btn.prev {
    float: left;
    background:url(../images/prev.png) no-repeat center;
}
.banner .btn.next {
    float: left;
    background:url(../images/next.png) no-repeat center;
}
.banner .bd li .img {
    height:100%;
    background: no-repeat center;
    background-size: cover;
    /* animation:slide_on1 5s linear forwards;
    -webkit-animation:slide_on1 5s linear forwards;
    */
}
.banner .bd li .content {
    width: 95%;
    height:100%;
    position:absolute;
    left:0;
    right:0;
    top:0;
    margin:auto;
}
.banner .bd li .content .ban_t {
    width:100%;
    min-height: 285px;
    position:absolute;
    left:0;
    top: 50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}
.banner .bd li .content .ban_t .text1 {
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-delay:.3s;
    animation-delay:.3s;
}
.banner .bd li .content .ban_t .text2 {
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-delay:.6s;
    animation-delay:.6s;
}
.banner .bd li .content .ban_t .text3 {
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-delay:.8s;
    animation-delay:.8s;
}
.banner .bd li .content .ban_t .text4 {
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-delay:1s;
    animation-delay:1s;
}
.banner .bd li .content .ban_t.ban_t01 {
    width:100%;
    left:auto;
    right:0;
    text-align:left;
}
.banner .bd li .content .ban_t.ban_t01 .text1 {
    font-size:24px;
    color: rgba(255,255,255,0.8);
    line-height:50px;
    font-weight:100;
    margin:10px 150px 0 0;
    -webkit-animation-delay:.6s;
    animation-delay:.6s;
}
.banner .bd li .content .ban_t.ban_t01 .text1 em {
    color:#d21f2c;
}
.banner .bd li .content .ban_t.ban_t01 .text2 {
    font-size:48px;
    color:#fff;
    line-height:50px;
    position:relative;
    -webkit-animation-delay:.3s;
    animation-delay:.3s;
}
.banner .bd li .content .ban_t.ban_t01 .text2 em {
    font-family:'RAJDHANI_BOLD';
}
.banner .bd li .content .ban_t.ban_t01 .ban_icon {
    font-size:15px;
    color:#4c4c4a;
    color:rgba(76,76,74,.4);
    line-height:24px;
}
.banner .bd li .content .ban_t .ban_icon {
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-delay:.8s;
    animation-delay:.8s;
}
.banner .bd li .content .ban_t.ban_t02 .text1 {
    font-size:36px;
    color:#000;
    line-height:60px;
}
.banner .bd li .content .ban_t.ban_t02 .text1 em {
    font-family:'MONTSERRAT_REGULAR';
    letter-spacing:-2px;
}
.banner .bd li .content .ban_t.ban_t02 .text2 {
    font-size:60px;
    color:#000;
    font-weight: bold;
    line-height:42px;
    margin: 2% 0;
}
.banner .bd li .content .ban_t.ban_t02 .text2 em {
    font-family:'RAJDHANI_BOLD';
}
.banner .bd li .content .ban_t.ban_t02 .ban_icon {
    line-height:30px;
    color: #000;
    font-size: 25px;
    display:inline-block;
    width: 50%;
    padding:0;
}
.banner .bd li .content .ban_t.ban_t02 .ban_icon em {
    font-family:'rubik_regular';
}
.banner .bd li .content .ban_t.ban_t03 {
    width:100%;
    left:auto;
    right:0;
    top: 35%;
    text-align:center;
}
.banner .bd li .content .ban_t.ban_t03 .text1 {
    font-size: 35px;
    color: rgba(255,255,255,0.8);
    line-height: 50px;
    font-weight: 100;
    letter-spacing: 10px;
}
.banner .bd li .content .ban_t.ban_t03 .text2 {
    font-size:  70px;
    color: #f5d46e;
    background-image:-webkit-linear-gradient(45deg,#d39a57,#fff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-weight: 500;
    font-family: '思源宋体';
    line-height:  80px;
    margin: 3% 0 6px;
}
.banner .bd li .content .ban_t.ban_t03 .ban_icon {
    font-size:20px;
    color:#fff;
    color:rgba(255,255,255,.8);
    line-height:30px;
}
.banner .bd li .content .ban_t.ban_t03 .ban_icon em {
    font-family:'RAJDHANI_BOLD';
    font-size:14px;
    clear:both;
    display:block;
}
.banner .bd li .content .ban_t.ban_t04 .text2 {
    margin: 27px 0 22px;
}
.banner .bd li .content .ban_t.ban_t04 .text3 {
    margin-bottom: 60px;
}
/* .banner .btn.prev:hover {
	background-image:url(../images/prev_on.png);
}
*/
/* .banner .btn.next:hover {
	background-image:url(../images/next_on.png);
}
*/

@media screen and (max-width: 1200px){
    .banner .bd li .content .ban_t.ban_t01 .text2{ font-size: 32px;}
    .banner .bd li .content .ban_t.ban_t01 .text1{ font-size: 20px;}
    .banner .bd li .content .ban_t.ban_t03 .text1{ font-size: 26px;}
    .banner .bd li .content .ban_t.ban_t03 .text2{ font-size: 46px;}
    .banner .bd li .content .ban_t.ban_t03 .ban_icon{ font-size: 16px;}
    .banner .bd li .content .ban_t.ban_t02 .text1{ font-size: 26px;}
    .banner .bd li .content .ban_t.ban_t02 .text2{ font-size: 32px; margin: 1% 0;}
    .banner .bd li .content .ban_t.ban_t02 .ban_icon{ font-size: 16px; width: 70%;}
}


@media screen and (max-width: 768px){
    .banner .bd li .content .ban_t.ban_t01 .text2{ font-size: 26px;}
    .banner .bd li .content .ban_t.ban_t01 .text1{ font-size: 16px; margin: 0; line-height: 30px;}
    .banner .bd li .content .ban_t.ban_t03 .text1{ font-size: 18px;}
    .banner .bd li .content .ban_t.ban_t03 .text2{ font-size: 30px; margin: 0;}
    .banner .bd li .content .ban_t.ban_t02 .ban_icon{ font-size: 14px; width: 100%;}
    .banner .bd li .content .ban_t.ban_t03 .ban_icon{ font-size: 14px;}
    .banner .bd li .content .ban_t.ban_t02 .text1{ font-size: 26px; line-height: 40px;}
    .banner .bd li .content .ban_t.ban_t02 .text2{ font-size: 16px; line-height: 30px;}
}


#masterslider .ms-bullets {
    /* width: 225px !important; */
    width: 329px !important;
    height: 26px;
    position: absolute;
    right: 42%;
    bottom: 5% !important;
    background-color: #000;
    background-color: rgba(0,0,0,.6);
    padding: 22px 0 0 42px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1;
}
#masterslider .ms-bullets .ms-bullets-count {
    position:static;
    margin: 0 auto;
    text-align: center;
}
#masterslider .ms-bullets-count .ms-bullet {
    width: 33px;
    height: 3px;
    margin: 0 1.5px !important;
    background: #fbeece;
    overflow: hidden;
    color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
#masterslider .ms-bullets-count .ms-bullet.ms-bullet-selected {
    width: 49px;
    background: #bf0008;
}
#masterslider .playState {
    position: absolute;
    right: 42.5%;
    bottom: 6.5%;
    width: 17px;
    height: 17px;
    cursor: pointer;
    background: no-repeat center;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 1;
}
#masterslider .playState.play{background-image: url("../images/icon_pause.png");}
#masterslider .playState.stop{background-image: url("../images/icon_play.png");}

@media screen and (max-width: 1400px){
    #masterslider .playState{ bottom: 7%;}
}
@media screen and (max-width: 768px){
    #masterslider .playState{ bottom: 14%; right: 35%; }
    #masterslider .ms-bullets{ bottom: 12% !important; right: 34% !important;}
}
@media screen and (max-width: 765px){
    #masterslider .playState{ right: 25%; }
    #masterslider .ms-bullets{ right: 22% !important;}
}



/* 内页 */
.page_ban {
    height: 150px;
    background: url("../images/zi_banner.jpg") no-repeat center top;
    background-size: cover;
    margin-top: 92px;
    position: relative;
}
.page_ban_bg .page_ban:before {
    opacity: 1;
    filter: alpha(opacity=100);
}
.page_ban:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #bdaea5;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transition:opacity .4s ease-out;
    -webkit-transition:opacity .4s ease-out;
}
.page_ban .content {
    position: relative;
    height: 100%;
}
.page_ban .page_ban_en.on  {
    opacity: 1;
    filter: alpha(opacity=100);
    animation: fadeIn .4s linear forwards;
    -webkit-animation: fadeIn .4s linear forwards;
}
.page_ban .page_ban_en {
    font-family: Arial;
    font-weight: bold;
    font-size: 30px;
    color: #a89489;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    top: 71px;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}
.page_ban .slogan {
    float: left;
    font-weight: bold;
    text-align: left;
    z-index: 1;
}
.page_ban .slogan .cn {
    font-size: 16px;
    color: #8b6d4e;
    color: rgba(139,109,78,.6);
    line-height: 34px;
    letter-spacing: 4px;
    font-weight: bold;
}
.page_ban .slogan .en {
    font-family: 'Gilroy_Bold';
    font-size: 14px;
    color: #444444;
    color: rgba(68,68,68,.7);
    line-height: 1;
    letter-spacing: 6.3px;
    text-transform: uppercase;
}
.page_ban .slogan .en em {
    color: #0060a3;
    color: rgba(191,0,0,.7);
}
.page_ban_bg .page_ban .slogan{ display: none;}
@media screen and (max-width:768px){
    .page_ban .slogan{ margin-top: 5%;}
    .page_ban{ margin-top: 80px;}
}
@media screen and (max-width:765px){
    .page_ban{ margin-top: 65px; background: url("../images/zi_banner.jpg") no-repeat 65% top;}
    .page_ban .slogan{ margin-top: 5%;}
    .page_ban .slogan .cn{ line-height: 22px; padding: 0 5%;}
}


.page_nav {
    overflow: hidden;
    border-bottom: 1px solid #adadad;
    border-bottom: 1px solid rgba(173,173,173,.2);
}
.page_nav a {
    float: left;
    line-height: 73px;
    position: relative;
    color: #656565;
}
.page_nav a.on {
    color: #997f71;
}
.page_nav .list {
    position: relative;
    float: right;
    overflow: hidden;
}
.page_nav .list a {
    margin-left: 29px;
}
.page_nav .name {
    float: left;
}
.page_nav .name a {
    padding-left: 26px;
    background: url(../images/icon_nav.png) no-repeat left 31px;
}
.page_nav .name a + a {
    padding-left: 19px;
    margin-left: 8px;
    background: url(../images/icon_nav02.png) no-repeat left 32px;
}




