/* animated */

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@keyframes rotateInOxs {
    0% {
        transform-origin: center;
        transform: scale(.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rotateInOxs {
    /*-webkit-animation-name: rotateInOxs;*/
    /*animation-name: rotateInOxs;*/
    animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes xian1 {
    0% {
        height: 0;
    }
    100% {
        height: 40px;
    }
}

@keyframes xian2 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(330px)
    }
    100% {
        width: 660px;
        left: 50%;
    }
}

@keyframes xian5 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(470px)
    }
    100% {
        width: 1215px;
        left: 50%;
    }
}

@keyframes xian7 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(540px)
    }
    100% {
        width: 1050px;
        left: 50%;
    }
}

@keyframes xian3 {
    0% {
        height: 0;
    }
    100% {
        height: 30px;
    }
}

@keyframes xian3_3 {
    0% {
        height: 0;
    }
    100% {
        height: 33px;
    }
}

@keyframes xian3_2 {
    0% {
        height: 0;
    }
    100% {
        height: 63px;
    }
}

@keyframes xian11 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(465px)
    }
    100% {
        width: 930px;
        left: 50%;
    }
}

@keyframes xian12 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(100.5px)
    }
    100% {
        width: 201px;
        left: 50%;
    }
}

@keyframes xian13 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(75.5px)
    }
    100% {
        width: 151px;
        left: 50%;
    }
}

@keyframes xian15 {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(125px)
    }
    100% {
        width: 250px;
        left: 50%;
    }
}

@keyframes xian4 {
    0% {
        height: 0;
    }
    100% {
        height: 30px;
    }
}

@keyframes xian6 {
    0% {
        height: 0;
    }
    100% {
        height: 223px;
    }
}

@keyframes xian_3 {
    0% {
        height: 0;
    }
    100% {
        height: 10px;
    }
}

@keyframes sub {
    0% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    50% {
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight100 {
    0% {
        opacity: 0;
        transform: translateX(100px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInLeft100 {
    0% {
        opacity: 0;
        transform: translateX(-100px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@-webkit-keyframes slide_on1 {
    0% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes slide_on1 {
    0% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.fadeInRight100 {
    -webkit-animation-name: fadeInRight100;
    animation-name: fadeInRight100
}

.fadeInLeft100 {
    -webkit-animation-name: fadeInLeft100;
    animation-name: fadeInLeft100
}

.slide_on1 {
    -webkit-animation-name: slide_on1;
    animation-name: slide_on1
}


/* header */

#header {
    width: 100%;
    min-width: 1220px;
    max-width: 1920px;
    height: 90px;
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: all .4s;
    -webkit-transition: all .4s;
}

#header .logo {
    float: left;
    width: 233px;
    height: 57px;
    background: url(../images/logo-b.png) no-repeat center;
    margin: 16px 0 0 40px;
}

#header .ri {
    float: right;
    margin-right: 40px;
}

#header .navWrap {
    float: left;
}

#header .nav {
    float: left;
    position: relative;
}

#header .nav a {

    color: #ffffff;

    font-size: 15px;
}

#header .nav a.on {
    color: #fff;
}

#header .nav .bor {
    width: 0;
    height: 4px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

#header .head_ri {
    float: right;
    /*width: 198px;*/
    height: 90px;
    line-height: 90px;
    margin-left: 13px;
}

#header .head_ri .search {
    float: left;
    display: block;
    width: 18px;
    height: 17px;
    margin-top: 37px;
    margin-right: 10px;
    background: url(../images/search.png) no-repeat center;
    /*position: relative;*/
}
#header .lianjie{ background: url(../images/lianjie1.png) no-repeat center; width:18px; height:18px;    margin-top: 37px;
    margin-right: 24px;}
#header.on .lianjie{ background: url(../images/lianjie2.png) no-repeat center;}

#header .head_ri .search .pos {
    display: none;
    width: 210px;
    height: 44px;
    position: absolute;
    right: 0;
    top: 90px;
    z-index: 99;
}

#header .head_ri .search .pos:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: .4;
    filter: alpha(opacity=40);
}

#header .head_ri .search .pos input {
    display: block;
    width: 210px;
    padding: 0 15px;
    height: 44px;
    position: relative;
    z-index: 20;
    color: #FFF;
}

#header .head_ri .search .pos input::-webkit-input-placeholder {
    color: #FFF;
}

#header .head_ri .search .pos input:-moz-placeholder {
    color: #FFF;
}

#header .head_ri .search .pos input::-moz-placeholder {
    color: #FFF;
}

#header .head_ri .search .pos input:-ms-input-placeholder {
    color: #FFF;
}

#header .head_ri .sg {
    float: left;
    width: 2px;
    height: 16px;
    margin-right: 20px;
    margin-top: 37px;
    background-color: rgba(255, 255, 255, .1);
}

#header .head_ri .lg {
    float: left;
    width: 52px;
    margin-right: 30px;
}

#header .head_ri .lg a {
    display: block;
    font-size: 14px;
    width: 52px;
    color: #ffffff;
    background: url(../images/select.png) no-repeat center right;
}

footer .txt h3 {
    font-size: 26px;
    color: #ffffff;
}

footer .txt h4 {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 10px;
}

#header .head_ri .hanbao {
    float: left;
    width: 32px;
    height: 52px;
    margin-top: 19px;
    padding-top: 16px;
    /*background: #c30d23;*/
}

#header.on .head_ri .hanbao .hb {
    background: url(../images/hanbao-on.png) no-repeat center center;
}

#header .head_ri .hanbao .hb {
    width: 22px;
    height: 20px;
    background: url(../images/hanbao.png) no-repeat center center;
    margin: 0 auto;
}

#header .nav .inner_bor {
    height: 5px;
    background: #fff;
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    clear: both;
}

#header.on {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#header.on .logo {
    background: url(../images/logo-a.png) no-repeat center;
}

#header.on .nav a {
    color: #0d3744;
}

#header.on .nav a.on {
    color: #0d3744;
}

#header.on .nav .bor {
    background-color: #c30d23;
}

#header.on .head_ri .search {
    background: url(../images/search_on.png) no-repeat center;
}

#header.on .head_ri .lg a {
    color: #0d3744;
    background: url(../images/select_on.png) no-repeat center right;
}

#header.on .head_ri .sg {
    background-color: rgba(13, 55, 68, .1);
}

#header .navWrap .subNav {
    position: absolute;
    right: 0;
    top: 90px;
}

#header .navWrap .subNav .dl {
    display: none;
    height: 50px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.4);
}

#header .navWrap .subNav .dl.d1 {
    display: none !important;
}

#header .navWrap .subNav .dd a:hover {
    color: #e3403d;
}

#header .navWrap .subNav .dd a {
    float: left;
    line-height: 50px;
    margin-right: 20px;
    color: rgba(255, 255, 255, .8);
    transition: all .4s;
}

nav ul {
  list-style-type: none;
  margin: 0 0 30px 0;
  padding: 0;
  text-align: center;
}
nav ul li {
  display: inline-block;
  margin-bottom: 4px;
}
nav ul li a {
  display: block;
  padding: 5px 20px;
  color: #fff;
  background-color: #32c896;
}
nav ul li a:hover {
  color: #fff;
  background-color: #238b68;
}
nav ul li a.active {
  color: #fff;
  background-color: #238b68;
}

/* ============================================================
  GLOBAL
============================================================ */
/* haeder */
.container{width: 1200px; margin: 0 auto; position: relative;}

.header{
    
    position: relative;
    
}

/* nav */
.nav{width: 100%; height: 80px; position: absolute; top: 0; z-index:2;}
.nav .logo{width: 165px; float: left;}
.nav .logo img{width: 100%; margin-top: 15px;}
.nav .menu{float: left; position: relative;}
.nav .menu ul li{float: left; font-size: 18px; line-height: 90px; width: 100px;text-align: center;}
.selectedNav{font-weight:bold;}

.bottomLine{
    position: absolute;
    left: 0;
    top:0;
    height:4px;
    background-color: #c30d23;
    transition: all 0.3s ease;
    height: 2px;
    width: 100px;
}
.subnav{ width:100%;    background-color: rgba(0, 0, 0, 0.4); position:absolute; top:90px; left:0; display: none; height:50px; line-height: 50px;}
.nav .menu ul li:hover .subnav{ display: block;}
.subnav dd{ float:left; padding: 0 30px;}
#header.on .nav .subnav dd a{ color:#fff; font-size:14px;}
#header.on .nav .subnav dd a:hover{ color:#c30d23 }
/* footer */

#footer {
    position: relative;
    bottom: 0;
}

footer {
    width: 100%;
    height: 318px;
    position: relative;
    padding-top: 62px;
    background-color: #12202d;
}

footer .f_left {
    float: left;
}

footer .f_left .logo {
    width: 222px;
    height: 50px;
    background: url(../images/logo.png) no-repeat center;
}

footer .f_left .txt1 {
    margin-top: 38px;
    margin-bottom: 20px;
}

footer .f_left .txt1 h3 {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    background: url(../images/phone.png) no-repeat left center;
    margin-right: 39px;
    padding-left: 18px;
    padding-top: 2px;
}

footer .f_left .txt1 h4 {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    background: url(../images/email.png) no-repeat left center;
    padding-left: 18px;
    padding-top: 2px;
}

footer .f_left .txt1 p {
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    background: url(../images/addresss.png) no-repeat left center;
    padding-left: 18px;
    padding-top: 2px;
}

footer .f_left .share {
    margin-top: 27px;
    margin-left: 1px;
    height: 30px;
}

footer .f_left .share .wx {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    cursor: pointer;
    background: url(../images/wx.png) no-repeat center;
}

footer .f_left .share .wb {
    float: left;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/wb.png) no-repeat center;
}

footer .f_left .txt2 {
    margin-top: 25px;
}

footer .f_left .txt2 ul li {
    float: left;
    margin-right: 8px;
}

footer .f_left .txt2 ul li span a:hover {
    color: #fff;
}

footer .f_left .txt2 ul li span a {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

footer .f_left .txt2 ul li span {
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
}

footer .f_left .txt2 p {
    float: left;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
}

footer .f_right {
    float: right;
    margin-top: 16px;
}

footer .f_right dl {
    float: left;
    margin-left: 40px;
}

footer .f_right dt {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
}

footer .f_right dd {
    font-size: 12px;
    color: rgba(255, 255, 255, .33);
    margin-bottom: 8px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

footer .f_right dd:hover {
    color: #fff;
}

footer aside {
    position: fixed;
    right: 10px;
    bottom: 300px;
    z-index: 999;
}

footer .mytop {
    display: none;
    width: 70px;
    height: 70px;
    background-color: #dfad57;
    margin-bottom: 10px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s
}

footer .mytop:hover {
    background-color: #c30d23;
}

footer .mytop a {
    display: block;
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 33px;
    background: url(../images/top.png) no-repeat center;
    background-position: center 22px;
    font-size: 16px;
    color: #ffffff;
}

footer .consulting {
    display: none;
    width: 70px;
    height: 70px;
    background-color: #c30d23;
}

footer .consulting a {
    display: block;
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 33px;
    background: url(../images/consulting.png) no-repeat center;
    background-position: center 16px;
    font-size: 12px;
    color: #ffffff;
}

.flsm-pop .pop-cont {
    width: 1200px;
    height: 480px;
    padding: 50px 40px;
}

.flsm-pop h3 {
    color: #000000;
    font-size: 18px;
    padding-bottom: 12px;
    padding-right: 30px;
    line-height: 24px;
    position: relative;
    margin-bottom: 30px;
}

.flsm-pop h3:after {
    content: "";
    width: 36px;
    height: 0;
    border-top: 4px solid #c30d23;
    position: absolute;
    left: 0;
    bottom: 0;
}

.flsm-pop p {
    color: #685f57;
}

.flsm-pop h4 {
    margin-top: 24px;
    color: #000000;
    font-size: 16px;
    margin-bottom: 4px;
}

.jubaojg-pop .pop-cont {
    width: 1200px;
    height: 480px;
    padding: 50px 40px;
}

.jubaojg-pop h3 {
    color: #000000;
    font-size: 18px;
    padding-bottom: 12px;
    padding-right: 30px;
    line-height: 24px;
    position: relative;
    margin-bottom: 30px;
}

.jubaojg-pop h3:after {
    content: "";
    width: 36px;
    height: 0;
    border-top: 4px solid #c30d23;
    position: absolute;
    left: 0;
    bottom: 0;
}

.jubaojg-pop p {
    color: #685f57;
}

.jubaojg-pop h4:first-child {
    margin-top: 0;
}

.jubaojg-pop h4 {
    margin-top: 24px;
    color: #000000;
    font-size: 16px;
    margin-bottom: 4px;
}

.jubaojg-pop .cont {
    height: 325px;
    overflow: auto;
}

.jubaojg-pop .cont::-webkit-scrollbar {
    width: 5px;
    background-color: #f0efee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.jubaojg-pop .cont::-webkit-scrollbar-thumb {
    background-color: #c30d23;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


/* banner */

.index {
    min-width: 1200px;
    position: relative;
    overflow: hidden;
}

.id_index1 {
    position: relative;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.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 .bd li .img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-animation: slide_on1 4s linear forwards;
    animation: slide_on1 4s linear forwards;
}

.banner .bd li .content {
    width: 1200px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.banner .bd li .content .ban_t {
    width: 100%;
    position: absolute;
    left: 0;
    top: 24%;
    text-align: center;
	z-index: 2;
}

.banner .bd li .content .ban_t .txt1 {
    font-size: 60px;
    color: #ffffff;
    line-height: 100px;
	text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
	
}

.banner .bd li .content .ban_t .txt2 h3 {
    display: inline-block;
    color: #56719e;
    text-transform: uppercase;
    font-size: 16px;
    text-align: right;
    margin-right: 5px;
    font-family: 'Brandon Grotesque';
}

.banner .bd li .content .ban_t .txt2 img {
    margin-top: -18px;
}

.banner .bd li .content .ban_t .txt2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: lighter;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.ban-bg{    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
    z-index: 1;
}
.banner .hd {
    width: 10px;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 99;
}

.banner .hd ul {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner .hd ul li.on {
    background: url(../images/point_on.png) no-repeat center;
}

.banner .hd ul li {
    width: 10px;
    height: 12px;
    margin: 9px 0;
    background: url(../images/point.png) no-repeat center;
    overflow: hidden;
    transition: all .4s;
    cursor: pointer;
}

.id_index1 .entry_box {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 95%;
    height: 100px;
}

.id_index1 .entry_box a {
    position: relative;
    display: inline-block;
    padding-top: 16px;
    width: calc((100% - 56px)/6);
    height: 90px;
    background-color: rgba(255, 250, 245, .7);
}

.id_index1 .entry_box a .hover {
    padding-left: 30px;
    padding-top: 39px;
    padding-right: 30px;
    padding-bottom: 30px;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    opacity: 0;
    background-color: #c30d23;
    transition-duration: .5s;
}

.id_index1 .entry_box a .hover h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.id_index1 .entry_box a .hover h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 27px;
}

.id_index1 .entry_box a:hover .hover {
    bottom: 0;
    opacity: 1;
}

@keyframes move2 {
    from {
        transform: none;
    }
    to {
        transform: translateX(20px);
    }
}

@-webkit-keyframes move2 {
    from {
        transform: none;
    }
    to {
        transform: translateX(20px);
    }
}

.id_index1 .entry_box a .hover img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.id_index1 .entry_box a .hover img:hover {
    transform: translateX(15px);
}

.id_index1 .entry_box a span {
    display: block;
    line-height: 20px;
    margin-left: 30px;
    /*padding-left: 85px;*/
    font-size: 20px;
    color: #4b4036;
    font-weight: bold;
}

.id_index1 .entry_box a .en {
    margin-top: 5px;
    padding-right: 10px;
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 14px;
    color: #2b1f15;
    opacity: .5;
    font-weight: bold;
}


/*.id_index1 .entry_box .entry1 span {
    background: url(../images/entry11.png) no-repeat center left;
}

.id_index1 .entry_box .entry2 span {
    background: url(../images/entry22.png) no-repeat center left;
}

.id_index1 .entry_box .entry5 span {
    background: url(../images/entry33.jpg) no-repeat center left;
}

.id_index1 .entry_box .entry4 span {
    background: url(../images/entry44.png) no-repeat center left;
}

.id_index1 .entry_box .entry6 span {
    background: url(../images/entry55.png) no-repeat center left;
}

.id_index1 .entry_box .entry3 span {
    background: url(../images/entry66.png) no-repeat center left;
}*/


/* con01 */

.index .con01 {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 80px;
    background-color: #fffaf5;
}

.index .con01 .bt h3 {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    margin-top: 259px;
    margin-left: -255px;
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(204, 153, 102, .3);
    font-family: 'Rubik';
}

.index .con01 .top h3 {
    font-size: 26px;
    color: #c30d23;
    margin-bottom: 66px;
}

.index .con01 .top {
    margin-bottom: 82px;
}

.index .con01 .top h4 {
    font-size: 15px;
    color: #55535e;
    font-weight: bold;
}

.index .con01 .nav {
    display: block;
    padding-left: 224px;
    height: 74px;
	position: inherit;
}

.index .con01 .nav ul li {
    float: left;
    text-align: left;
    height: 74px;
}

.index .con01 .nav ul li:nth-child(1) {
    margin-right: 221px;
}

.index .con01 .nav ul li:nth-child(2) {
    margin-right: 221px;
}

.index .con01 .nav ul li div {
    font-size: 14px;
    color: #515667;
    font-weight: bold;
}

.index .con01 .nav ul li:nth-child(2) div span {
    display: inline-block;
    /*background: url(../images/add.png) no-repeat right 15px;*/
}

.index .con01 .nav ul li:nth-child(3) div span {
    /*background: url(../images/add.png) no-repeat right 15px;*/
    padding-right: 12px;
}

.index .con01 .nav ul li div {
    text-align: left;
}

.index .con01 .nav ul li div span {
    display: inline-block;
    font-size: 42px;
    color: #dfad57;
    font-family: 'Brandon Grotesque';
    line-height: 60px;
}

.index .con01 .nav ul li p {
    font-size: 14px;
    color: rgba(81, 86, 103, .8);
    margin-top: 8px;
}


/* picScroll */

.index .picScroll {
    position: relative;
    margin-top: 84px;
    width: 100%;
    height: 360px;
}

.index .picScroll .w1200 {
    position: relative;
}

.index .picScroll ul {
    overflow: hidden;
    margin-left: -30px !important;
}

.index .picScroll ul li {
    float: left;
    width: 380px !important;
    overflow: hidden;
    height: 260px;
    margin-left: 30px;
    text-align: left;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .picScroll ul li a {
    display: block;
    padding-top: 38px;
    padding-left: 28px;
    padding-right: 36px;
    height: 100%;
    border: 2px solid #d8d4d0;
}

.index .picScroll ul li:hover a {
    border-color: #c30d23;
}

.index .picScroll ul li:hover h3 {
    color: #c30d23;
}

.index .picScroll .bd {
    overflow: hidden;
}

.index .picScroll ul li h3 {
    font-size: 18px;
    font-weight: bold;
    color: #515667;
    margin-bottom: 17px;
}

.index .picScroll ul li .cft {
    height: 4px;
    width: 28px;
    background: #c30d23;
    margin-bottom: 14px;
}

.index .picScroll ul li h4 {
    font-weight: bold;
    font-size: 14px;
    color: #515667;
    margin-bottom: 42px;
}

.index .picScroll ul li p {
    font-size: 16px;
    color: #515667;
    font-family: 'Rubik';
    font-weight: bold;
    opacity: .8;
}

.index .picScroll .more {
    width: 192px;
    height: 52px;
    text-align: center;
    line-height: 48px;
    border: 2px solid #d8d4d0;
    margin: 0 auto;
    margin-top: 40px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .picScroll .more:hover {
    border-color: #c30d23;
}

.index .picScroll .more a {
    display: block;
    width: 188px;
    height: 48px;
    font-weight: bold;
    font-size: 16px;
    color: #515667;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .picScroll .more:hover a {
    color: #c30d23;
}

.index .picScroll .prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -90px;
    margin-top: -25px;
    background: url(../images/prev_g.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll2 .prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -90px;
    margin-top: -25px;
    background: url(../images/prev1.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -90px;
    margin-top: -25px;
    background: url(../images/next_g.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll2 .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -90px;
    margin-top: -25px;
    background: url(../images/next1.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll .prev:hover {
    background: url(../images/prev_on.png) no-repeat center;
}

.index .picScroll2 .prev:hover {
    background: url(../images/prev_on.png) no-repeat center;
}

@media only screen and (max-width: 1400px) {
    .innovation .intro .prev {
        left: -52px;
    }
    .innovation .intro .next {
        right: -52px;
    }
    .index .picScroll .prev {
        left: -52px;
    }
    .index .picScroll .next {
        right: -52px;
    }
    .index .picScroll2 .prev {
        left: -52px;
    }
    .index .picScroll2 .next {
        right: -52px;
    }
}

@media only screen and (max-width: 1280px) {
    .innovation .intro .prev {
        left: -30px;
    }
    .innovation .intro .next {
        right: -30px;
    }
    .index .picScroll .prev {
        left: -30px;
    }
    .index .picScroll .next {
        right: -30px;
    }
    .index .picScroll2 .prev {
        left: -30px;
    }
    .index .picScroll2 .next {
        right: -30px;
    }
}

.index .picScroll .next:hover {
    background: url(../images/next_on.png) no-repeat center;
}

.index .picScroll2 .next:hover {
    background: url(../images/next_on.png) no-repeat center;
}


/* page_ban */

.page_ban {
    width: 100%;
    height: 200px;
    background-position: center top;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    /*background-attachment: fixed;*/
}


/* con02 */

.index .con02 {
    position: relative;
    width: 100%;
    height: 800px;
}

.index .con02 .hover:hover {
    opacity: 1;
}

.index .con02 .hover {
    position: absolute;
    height: 255px;
    top: 50%;
    margin-top: -127.5px;
    z-index: 99;
    width: 100%;
    opacity: 0;
    transition: all .7s;
}

.index .con02 .box {
    position: absolute;
    left: 50%;
    margin-left: -12%;
    transition: all .7s;
    top: 0;
    width: 24%;
    height: 255px;
    z-index: 99;
    background-color: rgba(206, 164, 105, .93);
    padding-top: 40px;
    text-align: center;
}

.index .con02 .box h3 {
    font-size: 30px;
    font-family: 'GILROY-BOLD';
    color: rgba(255, 255, 255, .2);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.index .con02 .box h4 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 22px;
}

.index .con02 .box .p_box {
    position: relative;
}

.index .con02 .box p {
    text-align: center;
    display: none;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 24px;
}

.index .con02 .box a {
    margin: 0 auto;
    display: block;
    font-size: 14px;
    color: #ffffff;
    width: 200px;
    height: 55px;
    line-height: 51px;
    text-align: center;
    border: 2px solid #ffffff;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con02 .box a:hover {
    color: #c30d23;
    border-color: #c30d23;
}

@keyframes move1 {
    from {
        transform: none;
    }
    to {
        transform: translateX(40px);
    }
}

@-webkit-keyframes move1 {
    from {
        transform: none;
    }
    to {
        transform: translateX(40px);
    }
}

.index .con02 .right {
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: 80px;
    transition: all 1s;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    background: url(../images/next_g.png) no-repeat center;
    z-index: 99;
    cursor: pointer;
    animation-fill-mode: forwards;
}

.index .con02 .left {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 80px;
    transition: all 1s;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    background: url(../images/prev_g.png) no-repeat center;
    z-index: 99;
    cursor: pointer;
    animation-fill-mode: forwards;
}

.index .con02 .left:hover {
    background-image: url(../images/prev_on.png);
}

.index .con02 .right:hover {
    animation: none;
    background-image: url(../images/next_on.png);
}

.index .con02 .bd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
}

.index .con02 .bd ul li {
    width: 100%;
    width: 1920px;
    height: 800px;
}


/* con03 */

.index .con03 {
    position: relative;
    height: 920px;
    width: 100%;
    background: #f9f8f4;
    padding-top: 70px;
    text-align: center;
    margin: 0 auto;
    background: #f9f8f4 no-repeat center;
}

.index .con03 h3 {
    font-family: 'GILROY-BOLD';
    text-transform: uppercase;
    font-size: 30px;
    color: #55535e;
    margin-bottom: 25px;
}

.index .con03 h3 span {
    opacity: .2;
}

.index .con03 .picScroll ul li {
    float: left;
    width: 380px !important;
    overflow: hidden;
    height: 260px;
    margin-left: 30px;
    text-align: left;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con03 h4 {
    font-size: 26px;
    color: #55535e;
    margin-bottom: 50px;
}

.index .con03 h5 {
    font-size: 26px;
    color: #c30d23;
    margin-top: 12px;
    margin-bottom: 26px;
}

.index .con03 p {
    text-align: center;
    font-size: 15px;
    color: #55535e;
    margin-bottom: 41px;
    font-weight: bold;
}

.index .con03 .picScroll {
    margin-top: 30px;
    height: 314px;
}

.index .con03 .more {
    margin: 0 auto;
    display: block;
    width: 200px;
    height: 55px;
    line-height: 51px;
    text-align: center;
    border: 2px solid #d8d4d0;
    font-size: 16px;
    color: #55535e;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con03 .more:hover {
    color: #c30d23;
    border-color: #c30d23;
}

.index .con03 .bird {
    position: absolute;
    top: 150px;
    left: 19%;
}

.index .con03 .w1200 {
    position: relative;
    z-index: 2;
}

.index .con03 .bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52.7%;
}

.index .con03 .party {
    position: absolute;
    bottom: 0;
    right: 0;
}


/* con04 */

.index .con04 {
    width: 100%;
    height: 800px;
    background: url(../images/con04.jpg) no-repeat center;
    text-align: center;
    padding-top: 90px;
}

.index .con04 .top h3 {
    font-family: 'GILROY-BOLD';
    text-transform: uppercase;
    font-size: 30px;
    color: #55535e;
    margin-bottom: 20px;
}

.index .con04 .top h3 span {
    opacity: .2;
}

.index .con04 .top h4 {
    font-size: 26px;
    color: #55535e;
    margin-bottom: 60px;
}

.index .picScroll2 {
    position: relative;
    margin-top: 50px;
    width: 100%;
    height: 360px;
}

.index .picScroll2 .w1200 {
    position: relative;
}

.index .picScroll2 ul {
    overflow: hidden;
    margin-left: -30px !important;
}

.index .picScroll2 ul li {
    float: left;
    width: 380px !important;
    overflow: hidden;
    height: 385px;
    box-sizing: border-box;
    margin-left: 30px;
    text-align: left;
}

.index .picScroll2 ul li a {
    display: block;
    height: 100%;
    background: #ffffff;
}

.index .picScroll2 ul .imgbox {
    overflow: hidden;
    height: 180px;
}

.index .picScroll2 ul .imgbox img {
    transition: all 1s;
    height: 180px;
    width: 100%;
}

.index .picScroll2 ul img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .picScroll2 ul li:hover h3 {
    color: #c30d23;
}


/* .index .picScroll2 ul li:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
} */

.index .picScroll2 ul li h3 {
    font-size: 18px;
    color: #515667;
    margin-top: 25px;
    margin-bottom: 11px;
    padding-left: 29px;
    padding-right: 30px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .picScroll2 ul li h4 {
    font-size: 20px;
    color: #c30d23;
    margin-bottom: 8px;
    padding-left: 29px;
    padding-right: 30px;
}

.index .picScroll2 ul li p {
    font-size: 14px;
    color: #515667;
    padding-left: 29px;
    padding-right: 30px;
}

.index .picScroll2 .more {
    width: 200px;
    height: 55px;
    margin: 0 auto;
    margin-top: 40px;
}

.index .picScroll2 .more a:hover {
    color: #c30d23;
    border-color: #c30d23;
}

.index .picScroll2 .more a {
    display: block;
    width: 200px;
    height: 55px;
    text-align: center;
    line-height: 51px;
    font-size: 16px;
    color: #55535e;
    border: 2px solid #d1d1d1;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}


/*.index .picScroll2 .prev {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 270px;
    margin-top: -25px;
    background: url(../images/prev.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll2 .prev:hover {
    background: url(../images/prev_on.png) no-repeat center;
}

.index .picScroll2 .next {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -25px;
    margin-right: 270px;
    background: url(../images/next.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.index .picScroll2 .next:hover {
    background: url(../images/next_on.png) no-repeat center;
}*/


/* .con05 */

.index .con05 {
    background-color: #fffaf5;
    width: 100%;
    height: 612px;
    padding-top: 92px;
}

.index .con05 .box {
    position: relative;
    width: 1302px;
    margin: 0 auto;
    height: 430px;
    background-color: #d2ac77;
}

.index .con05 .box_l {
    padding-left: 50px;
    padding-top: 205px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 430px;
    width: 540px;
    background: url(../images/con05_l.png) no-repeat center;
}

.index .con05 .box_l .play:hover {
    background-image: url(../images/play_on.png);
}

.index .con05 .box_l .play {
    width: 60px;
    height: 60px;
    background: url(../images/play.png) no-repeat center;
    margin-bottom: 28px;
    cursor: pointer;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con05 .box_l h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 14px;
}

.index .con05 .box_l h4 {
    font-size: 14px;
    color: #ffffff;
}

.index .con05 .box_r {
    float: right;
    padding-left: 32px;
    padding-top: 65px;
    width: 760px;
    height: 430px;
    background: url(../images/h.png) no-repeat right 212px;
}

.index .con05 .box_r h3 {
    font-family: 'GILROY-BOLD';
    text-transform: uppercase;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.index .con05 .box_r h3 span {
    opacity: .2;
}

.index .con05 .box_r h4 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 35px;
}

.index .con05 .box_r ul {
    margin-bottom: 45px;
}

.index .con05 .box_r ul li {
    margin-bottom: 3px;
}

.index .con05 .box_r li span {
    font-size: 14px;
    color: #ffffff;
    background: url(../images/point.png) no-repeat left center;
    padding-left: 22px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con05 .box_r li:hover span {
    color: #c30d23;
    background-image: url(../images/point_on.png);
}

.index .con05 .box_r .more:hover {
    color: #c30d23;
    border-color: #c30d23;
}

.index .con05 .box_r .more {
    width: 200px;
    text-align: center;
    height: 55px;
    line-height: 51px;
    font-size: 14px;
    color: #ffffff;
    border: 2px solid #ffffff;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.index .con05 .box_r .woman {
    position: absolute;
    bottom: 0;
    right: 130px;
    margin-right: 11px;
    width: 252px;
    height: 478px;
    background: url(../images/hr.png) no-repeat center;
}


/* page_nav */

.page_nav {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #c30d23;
    margin: 0 auto;
    font-size: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 64px;
}

.page_nav a {
    float: left;
    display: block;
    position: relative;
    font-size: 15px;
    color: #fff;
}

.page_nav .fl a {
    margin-right: 35px;
}

.page_nav .fl a.on {
    color: #fff
}


/*.page_nav .fl a.on:before {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}*/

.page_nav .fr a {
    padding-left: 24px;
}

.page_nav .fr a:before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/ico1.png) no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

.page_nav .fr a+a:before {
    content: '';
    width: 3px;
    height: 5px;
    background: url(../images/ico2.png) no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    margin: auto
}

@media screen and (max-width: 1500px) {
    footer .mytop {
        right: 0;
    }
}


/* about */

.about .con01 {
    padding-top: 70px;
}

.about .con01 {
    position: relative;
    height: 100%;
}

.about5 .con01 {
    padding-bottom: 40px;
}

.about .con01 .top {
    position: relative;
    padding-top: 1px;
}

.about1 .con01 {
    overflow: hidden;
}

.about1 .con01 .top h5 {
    font-size: 22px;
    margin-top: 40px;
    color: #55535e;
}


/* .about .con01 .top:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 17px;
    transform: translateY(50%);
    background-color: #c30d23;
} */

.about5 {
    background: #f8f3ed;
}

.about .con01 .top h4:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 17px;
    transform: translateY(-50%);
    background-color: #c30d23;
}

.about .con01 .top h3 {
    font-size: 28px;
    color: #000;
    font-family: 'Rubik';
    text-transform: uppercase;
    letter-spacing: -2px;
}

.about .con01 .top h4 {
    position: relative;
    padding-left: 20px;
}

.about .con01 .top h4 {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

.about .con01 .top p {
    padding-top: 25px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding-bottom: 35px;
}


/* about1 */

.about1 .con04 {
    padding-top: 50px;
    padding-bottom: 80px;
}

.about1 .con04 p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
}

.about1 .con04 p {}

.about1 .num {
    float: left;
    height: 220px;
    line-height: 73px;
    padding-top: 31px;
    text-align: center;
    border-right: 1px solid #c3c4c5;
}

.about1 .bt {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    height: 300px;
}

.about1 .box {
    padding-top: 25px;
}

.about1 .box .rt {
    padding-left: 40px;
    padding-top: 60px;
}

.about1 .box {
    overflow: hidden;
}

.about1 .box .rt .xian {
    width: 60px;
    height: 6px;
    background: #be272c;
    margin-bottom: 45px;
}

.about1 .box .rt h3 {
    font-size: 20px;
    color: #666666;
    margin-bottom: 45px;
    line-height: 1;
}

.about1 .box .rt h4 {
    font-size: 28px;
    color: #be272c;
    margin-bottom: 50px;
    line-height: 1;
}

.about1 .box .rt h5 {
    font-size: 20px;
    color: #666666;
    line-height: 1;
}

.about1 .box .lf {
    float: left;
}

.about1 .box .rt {
    width: 600px;
    height: 400px;
    float: left;
    background: #f8f3ed;
}

.about1 .con04 .bt {
    height: 300px;
}

.about1 .bt .btt {
    position: absolute;
    bottom: 40px;
    right: 0;
    color: #999999;
    font-size: 14px;
    line-height: 1;
}

.about1 .num em {
    font-size: 130px;
    color: #c00000;
    font-family: "SOURCESANSPRO-EXTRALIGHT";
}

.about1 .num1 {
    width: 336px;
    text-align: left;
}

.about1 .num4 {
    width: 336px;
    text-align: left;
}

.about1 .num4 em {
    display: inline-block;
}

.about1 .num4 strong {
    font-size: 130px;
    display: inline-block;
    color: #c00000;
    font-weight: 100;
    font-family: "SOURCESANSPRO-EXTRALIGHT";
}

.about1 .num2 {
    width: 466px;
}

.about1 .num5 {
    width: 466px;
}

.about1 .num2 .xia {
    text-align: left;
    padding-left: 125px;
}

.about1 .num5 .xia {
    text-align: left;
    padding-left: 167px;
}

.about1 .num3 {
    width: 396px;
    border: none;
}

.about1 .num6 {
    width: 396px;
    border: none;
}

.about1 .num6 .xia {
    padding-left: 74px;
    text-align: left;
}

.about1 .num3 .xia {
    text-align: right;
}

.about1 .num4 .xia {
    text-align: left;
}

.about1 .con01 {
    background: #ffffff;
    height: 100%;
    padding-top: 70px;
}

.about.about1 .con01 .top p {
    padding-bottom: 0;
    color: #666666;
}

.about1 .con01 .tp span {
    float: left;
    margin-top: 86px;
    font-size: 22px;
    margin-left: 20px;
    color: #d2ac77;
    letter-spacing: 6px;
}

.about1 .con01 .ct {
    margin-left: 368px;
    width: 830px;
    height: 100%;
    margin-bottom: 50px;
}

.about1 .con01 .ct h3 {
    font-size: 30px;
    color: #c30d23;
    font-family: 'Rubik';
    margin-bottom: 3px;
}

.about1 .con01 .ct h4 {
    font-size: 22px;
    color: #55535e;
    margin-bottom: 24px;
}

.about1 .con01 .ct p {
    font-size: 14px;
    color: #767a87;
}

.about1 .con01 .nav {
    display: block;
    margin-left: 368px;
    height: 74px;
}

.about1 .con01 .nav ul li {
    float: left;
    text-align: left;
    height: 74px;
}

.about1 .con01 .nav ul li:nth-child(1) {
    margin-right: 99px;
}

.about1 .con01 .nav ul li:nth-child(2) {
    margin-right: 160px;
}

.about1 .con01 .nav ul li span {
    font-size: 14px;
    color: #515667;
    font-weight: bold;
}

.about1 .con01 .nav ul li:nth-child(2) span em {
    /*background: url(../images/add.png) no-repeat;*/
    background-position: right 15px;
}

.about1 .con01 .nav ul li:nth-child(3) span em {
    /*background: url(../images/add.png) no-repeat;*/
    background-position: right 15px;
    padding-right: 10px;
}

.about1 .con01 .nav ul li span {
    text-align: left;
}

.about1 .con01 .nav ul li span em {
    font-size: 42px;
    color: #dfad57;
    font-family: 'Brandon Grotesque';
    line-height: 60px;
    display: inline-block;
}

.about1 .con01 .nav ul li p {
    font-size: 14px;
    color: rgba(81, 86, 103, .8);
    margin-top: 4px;
}

.about1 .nav ul li.li2 {
    background-color: #fff4ea;
}

.about1 .nav ul li.li3 {
    background-color: #ffecda;
}

.about1 .con03 video {
    height: 1080px;
    width: 100%;
    object-fit: cover;
}


/* about2 */

.about2 .con01 .top {
    position: relative;
}

.about2 .con02 {
    margin-top: 39px;
    margin-bottom: 80px;
}

.about2 .con02 ul li {
    height: 240px;
    width: 100%;
    background-color: #f8f3ed;
    margin-bottom: 10px;
    padding-right: 28px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.about2 .con02 ul li img {
    float: left;
}

.about2 .con02 .p_ab {
    padding-left: 225px;
    padding-top: 20px;
}

.about2 .con02 .p_ab h3 {
    font-size: 20px;
    color: #d2ac77;
    margin-bottom: 10px;
}

.about2 .con02 .p_ab h4 {
    font-size: 16px;
    color: #6d5647;
    margin-bottom: 2px;
    font-weight: bold;
}

.about2 .con02 .p_ab p {
    font-size: 14px;
    color: #918279;
    /*font-weight: bold;*/
}


/* about3 */

.about3 .con02 {
    margin: 50px auto 0;
    width: 100%;
    height: 100%;
}

.about3 .con02 .w1200 {
    position: relative;
}

.about3 .con02 .xian {
    background: #d5d0cb;
}

.about3 .con02 .xian1 {
    height: 0px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 70px;
    margin-left: -0.5px;
    animation: xian1 .2s linear;
    animation-fill-mode: forwards
}

.about3 .con02 .xian2 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -330px;
    margin-top: 110px;
    animation: xian2 .3s .2s linear;
    animation-fill-mode: forwards
}

.about3 .con02 .xian4 {
    height: 0px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 270px;
    margin-left: -0.5px;
    animation: xian4 .1s 1.2s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .xian5 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -607px;
    margin-top: 299px;
    animation: xian5 .2s 1.3s linear;
    animation-fill-mode: forwards
}

.about3 .con02 .xian6 {
    height: 0px;
    width: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 300px;
    margin-left: -0.5px;
    animation: xian6 .3s 1.5s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .xian7 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -525px;
    margin-top: 611px;
    animation: xian7 .2s 1.8s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .top h3 {
    display: block;
    width: 300px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #c30d23;
    font-size: 16px;
    margin: 0 auto;
    color: #ffffff;
}

.about3 .con02 .ct {
    width: 920px;
    height: 100%;
    margin: 0 auto;
    margin-top: 70px;
}

.about3 .con02 .ct ul {
    margin-left: -70px;
}

.about3 .con02 .ct ul li {
    position: relative;
    z-index: 10;
    
    margin-left: 70px;
}

.about3 .con02 .ct ul li:last-child {
    width: 1200px;
    margin: 0 auto;
    margin-left: -70px;
    margin-top: 10px;
}

.about3 .con02 .ct ul li:last-child span {
    opacity: 0;
    animation: fadeIn 1.2s 1s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .ct ul li span {
    display: block;
    width: 260px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background: #d2ac77;
    font-size: 16px;
    margin: 0 auto;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1.2s .4s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .ct ul li .x {
    width: 1px;
    height: 0px;
    margin-top: -30px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s .5s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .ct ul li .x2 {
    width: 1px;
    height: 0px;
    margin-top: -10px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian_3 .1s .8s linear;
    animation-fill-mode: forwards;
}
.about3 .con02 .ct-a{ margin-top: 250px}
.about3 .con02 .ct_2 {
    width: 596px;
    position: absolute;
    /* height: 100%; */
    margin: 0 auto;
    margin-top: 260px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.about3 .con02 .ct_2 ul li {
    position: relative;
    float: left;
    z-index: 20;
    margin-left: 11.5px;
}

.about3 .con02 .ct_2 ul li:first-child {
    margin-left: 0;
}

.about3 .con02 .ct_2 ul li span {
    display: block;
    width: 110px;
    height: 100px;
    padding-top: 60px;
    color: #b99058;
    line-height: 20px;
    font-weight: bold;
    font-size: 15px;
    background: #f7e6d1;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 1.8s linear;
    animation-fill-mode: forwards;
}

/*.about3 .con02 .ct_2 ul li .x {
    width: 1px;
    height: 0px;
    margin-top: -30px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s 1.5s linear;
    animation-fill-mode: forwards;
}*/

.about3 .con02 .ct_3 {
       width: 851px;
    position: absolute;
    /* height: 100%; */
    margin: 0 auto;
    margin-top: 540px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.about3 .con02 .ct_3 ul li:first-child {
    margin-left: 0;
}

.about3 .con02 .ct_3 ul li {
    position: relative;
    float: left;
    margin-left: 25px;
    padding: auto;
}

.about3 .con02 .ct_3 ul li span {
    display: block;
    width: 150px;
    height: 100px;
    line-height: 20px;
    padding-top: 60px;
    color: #685f57;
    font-size: 15px;
    font-weight: bold;
    background: #faefe1;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 2.5s linear;
    animation-fill-mode: forwards;
}

.about3 .con02 .ct_3 ul li .x {
    width: 1px;
    height: 0px;
    margin-top: -30px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s 2s linear;
    animation-fill-mode: forwards;
}


/* about4 */

.about4 .con02 {
    position: relative;
}

.about4 .con02 .top {
    position: relative;
}

.about4 .con02 .top h3 {
    position: relative;
    display: block;
    width: 300px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #c30d23;
    font-size: 16px;
    margin: 0 auto;
    color: #ffffff;
}

.about4 .con02 .top .x {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5px;
    width: 1px;
    height: 30px;
    background: #d5d0cb;
    animation: xian3 .2s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct {
    margin-top: 60px;
}

.about4 .con02 .ct ul li {
    float: left;
    margin-right: 5px;
}

.about4 .con02 .ct ul li:last-child span {
    padding-top: 26px;
    height: 41px;
    margin-left: 23px;
}

.about4 .con02 .ct ul li {
    position: relative;
    margin-right: 22px;
}

.about4 .con02 .ct ul li:first-child {
    position: relative;
    margin-right: 5px;
}

.about4 .con02 .ct ul li:nth-child(2) {
    position: relative;
    margin-right: 5px;
}

.about4 .con02 .ct ul li:nth-child(1) .x {
    margin-left: 7.5px;
}

.about4 .con02 .ct ul li:nth-child(1) .bx {
    margin-left: 7.5px;
}

.about4 .con02 .ct ul li:nth-child(2) .x {
    margin-left: -7.5px;
}

.about4 .con02 .ct ul li:nth-child(2) .bx {
    margin-left: -7.5px;
}

.about4 .con02 .ct ul li:last-child .x {
    margin-left: 7.5px;
}

.about4 .con02 .ct ul li:last-child .bx_2 {
    margin-left: 7.5px;
}

.about4 .con02 .ct ul li img {
    opacity: 0;
    animation: fadeIn 1s .8s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct ul li span {
    display: block;
    width: 140px;
    height: 52px;
    line-height: 18px;
    padding-top: 15px;
    background: #d2ac77;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s .8s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .xian11 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #d5d0cb;
    margin-left: -474px;
    margin-top: 100px;
    animation: xian11 .2s .2s linear;
    animation-fill-mode: forwards
}

.about4 .con02 .xian12 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #d5d0cb;
    margin-left: -92.5px;
    margin-top: 100px;
    animation: xian12 .2s .8s linear;
    animation-fill-mode: forwards
}

.about4 .con02 .xian13 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #d5d0cb;
    margin-left: -82.5px;
    margin-top: 100px;
    animation: xian13 .2s .8s linear;
    animation-fill-mode: forwards
}

.about4 .con02 .xian14 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #d5d0cb;
    margin-left: -100.5px;
    margin-top: 100px;
    animation: xian12 .2s .8s linear;
    animation-fill-mode: forwards
}

.about4 .con02 .xian15 {
    width: 0px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #d5d0cb;
    margin-left: -114.5px;
    margin-top: 100px;
    animation: xian15 .2s .8s linear;
    animation-fill-mode: forwards
}

.about4 .con02 .ct ul li .x {
    width: 1px;
    height: 0px;
    margin-top: -30px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s .4s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct ul li .x.x_1 {}

.about4 .con02 .ct2 ul li .x {
    width: 1px;
    height: 0px;
    margin-top: -30px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s 1s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct ul li:nth-child(1) .bx {
    top: 95%;
}

.about4 .con02 .ct ul li:nth-child(2) .bx {
    top: 95%;
}

.about4 .con02 .ct ul li .bx {
    width: 1px;
    height: 0px;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3 .1s .7s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct ul li .bx2 {
    width: 1px;
    height: 0px;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3_2 .3s .7s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct ul li .bx_2 {
    width: 1px;
    height: 0px;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5px;
    background: #d5d0cb;
    animation: xian3_3 .2s .8s linear;
    animation-fill-mode: forwards;
}

.about4 .con02 .ct2 .u1 {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 260px;
}

.about4 .con02 .ct2 ul li {
    position: relative;
    float: left;
}

.about4 .con02 .ct2 .u2 {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 250px;
    margin-top: 260px;
}

.about4 .con02 .ct2 .u3 {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 528px;
    margin-top: 260px;
}

.about4 .con02 .ct2 .u4 {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 363px;
    margin-top: 260px;
}

.about4 .con02 .ct2 .u5 {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 298px;
    margin-top: 260px;
}

.about4 .con02 .ct2 .u6 {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -7px;
    margin-top: 260px;
}

.about4 .con02 .ct2 ul li span {
    display: block;
    width: 15px;
    height: 420px;
    padding: 0 15px;
    padding-top: 30px;
    background: #f7e6d1;
    margin-right: 5px;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 1s 1.4s linear;
    animation-fill-mode: forwards;
    color: #b99058;
    font-size: 15px;
    line-height: 17px;
}

.about4 .con03 {
    width: 100%;
    height: 100%;
    background: #f8f3ed;
    padding-top: 70px;
    padding-bottom: 60px;
}

.about4 .con03 .top {
    margin-bottom: 40px;
    height: 70px;
}

.about4 .con03 .top ul {
    margin-right: -13px;
}

.about4 .con03 .top ul li {
    float: left;
    text-align: center;
    margin-right: 13px;
}

.about4 .con03 .top ul li.on a,
.about4 .con03 .top ul li:hover a {
    background-color: #c30d23;
    color: #ffffff;
}

.about4 .con03 .top ul li a {
    display: block;
    height: 70px;
    width: 189px;
    background-color: #ffffff;
    color: #6d5647;
    font-size: 16px;
    line-height: 70px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.about4 .con03 .bottom {
    margin-bottom: 40px;
}

.about4 .con03 .bottom ul li {
    position: relative;
    width: 100%;
    height: 486px;
    display: none;
}

.about4 .con03 .bottom ul li:first-child {
    display: block;
}

.visitNow {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.visitNow:hover {
    background-color: #c30d23!important;
}

.about4 .con03 .bottom ul li .slogan {
    position: absolute;
    top: 68px;
    left: 85px;
}

.about4 .con03 .bottom ul li .slogan img {
    margin-bottom: 12px;
}

.about4 .con03 .bottom ul li p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.about4 .con03 .bottom ul li .visitNow {
    display: block;
    margin-top: 22px;
    padding-left: 40px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #dfad57 url(../images/global.png) no-repeat;
    background-position: 104px center;
    color: #fff;
}

.about4 .con03 .box {
    display: none;
}

.about4 .con03 .box:first-child {
    display: block;
}

.about4 .con03 .mySelect:nth-child(3) {
    margin-right: 0;
}

.about4 .con03 .bottom ul li.li1 {
    background: url(../images/top1.jpg) no-repeat center;
}

.about4 .con03 .bottom ul li.li2 {
    background: url(../images/top2.jpg) no-repeat center;
}

.about4 .con03 .bottom ul li.li3 {
    background: url(../images/top3.jpg) no-repeat center;
}

.about4 .con03 .bottom ul li.li4 {
    background: url(../images/top4.jpg) no-repeat center;
}

.about4 .con03 .zs {
    height: 100%;
    width: 100%;
    margin-top: 40px;
    /*margin-bottom: 30px;*/
}

.about4 .con03 .zs ul {
    margin-left: -30px;
    /*height: 800px;*/
    /*margin-bottom: 20px;*/
}

.about4 .con03 .zs ul:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.about4 .con03 .zs ul li {
    float: left;
    position: relative;
    margin-left: 30px;
    margin-bottom: 40px;
    width: 380px;
    height: 240px;
    background-color: #fff;
    cursor: pointer;
}

.about4 .con03 .zs ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.about4 .con03 .zs ul li img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

.about4 .con03 .zs ul li .cont {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6) url(../images/magnifier.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.about4 .con03 .zs ul li .name {
    position: absolute;
    left: 0;
    bottom: 30px;
    padding: 0 15px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.about4 .con03 .zs ul li:hover .cont {
    opacity: 1;
}

.about4 .con03 .zs .more {
    display: block;
    margin: 0 auto;
    width: 340px;
    height: 60px;
}

.about5 .type {
    overflow: hidden;
    padding-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    line-height: 1;
}

.about5 .bt {
    overflow: hidden;
    margin-bottom: 40px;
}

.about5 .p {
    height: 60px;
    line-height: 60px;
    border-top: 2px solid #d8031c;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding-left: 20px;
    background: #e7e2dd;
}

.about5 .p .guo {
    float: left;
}

.about5 .pp {
    padding-left: 20px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #dbd6d1;
    color: #685f57;
    font-size: 14px;
}

.about5 .pp .guo {
    float: left;
}

.about5 .p .guo:nth-child(1) {
    width: 147px;
}

.about5 .p .guo:nth-child(2) {
    width: 420px;
}

.about5 .p .guo:nth-child(3) {
    width: 320px;
}

.about5 .p .guo:nth-child(4) {
    width: 293px;
}

.about5 .pp .guo:nth-child(1) {
    width: 147px;
}

.about5 .pp .guo:nth-child(2) {
    width: 420px;
}

.about5 .pp .guo:nth-child(3) {
    width: 320px;
}

.about5 .pp .guo:nth-child(4) {
    width: 293px;
}


/*.form_box {
    margin-top: 30px;
}*/

.form_box .span {
    float: left;
    color: #ffffff;
    opacity: .3;
    font-size: 14px;
    margin-top: 5px;
    margin-right: 10px;
}


/*dch*/


/*@media screen and (max-width: 1500px) {
    footer .mytop {
        right: 0;
    }
}*/

.page_nav .fl {
    position: relative;
}

.page_nav .fl .bor {
    width: 0;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact2data dt {
    position: relative;
    padding: 30px 40px;
    background-color: #fff;
    border-bottom: 1px solid #d5d0cb;
}

.about .page_nav {
    margin-bottom: 0;
}

.page_nav a {
    line-height: 80px;
}

footer {
    margin-top: 0;
}

hgroup {
    position: relative;
}

hgroup .cn {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
}

hgroup .cn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 17px;
    transform: translateY(-50%);
    background-color: #c30d23;
}

.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.loadMoreBtn {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 380px;
    height: 60px;
    line-height: 60px;
    background-color: #dfad57;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 60px;
    transition: all .3s;
}

.loadMoreBtn span {
    display: inline-block;
    margin: 0 3px;
    line-height: 60px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    /*transition: all .6s ;*/
}

.loadMoreBtn:hover {
    background-color: #c30d23;
}

.loadMoreBtn:hover span {
    animation-fill-mode: both;
}

.loadMoreBtn:hover span:nth-child(1) {
    animation: loadSpan .8s .2s ease-in-out 1;
}

.loadMoreBtn:hover span:nth-child(2) {
    animation: loadSpan .8s .3s ease-in-out 1;
}

.loadMoreBtn:hover span:nth-child(3) {
    animation: loadSpan .8s .4s ease-in-out 1;
}

@keyframes loadSpan {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0px);
    }
}

.contact .section1 {
    padding-bottom: 80px;
}

.contact .section1 img {
    float: right;
}

.contact .section1 .head_office {
    color: #767a87;
}

.contact .section1 .head_office .name {
    margin-top: 44px;
    margin-bottom: 12px;
    font-size: 22px;
    color: #c30d23;
    line-height: 30px;
}

.contact .section1 .head_office .des {
    margin-bottom: 24px;
    line-height: 24px;
}

.contact .section1 .head_office p {
    margin-bottom: 20px;
    padding-left: 46px;
    line-height: 18px;
    color: #767a87;
    background: no-repeat left center;
}

.contact .section1 .head_office .tel {
    background-image: url(../images/icon1.png);
}

.contact .section1 .head_office .add {
    background-image: url(../images/icon2.png);
}

.contact .section1 .head_office .postcode {
    background-image: url(../images/icon3.png);
}

.contact .section1 .head_office .fax {
    background-image: url(../images/icon4.png);
}

.contact .section2 h3 {
    margin-bottom: 22px;
    font-size: 18px;
    color: #735d4f;
}

.contact .section2 {
    padding-top: 66px;
    padding-bottom: 80px;
    background-color: #f8f3ed;
}

.contact .section2 ul {
    margin-right: -20px;
}

.contact .section2 li {
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 36px 30px 0;
    width: 590px;
    height: 250px;
    border: 1px solid #d3cfca;
    color: #767a87;
    line-height: 24px;
}

.contact .section2 .name {
    margin-bottom: 5px;
    color: #c30d23;
    line-height: 36px;
    font-weight: bold;
    font-size: 16px;
}

.contact .section2 li a {
    display: block;
    margin-top: 22px;
    padding-left: 41px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #dfad57 url(../images/global.png) no-repeat 104px center;
    color: #fffefe;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.contact .section2 li a:hover {
    background-color: #c30d23;
}

.contact #myMap {
    height: 600px;
}

.contact #myMap img {
    max-width: none;
}

.mySelect {
    float: left;
    position: relative;
    width: 234px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #666666;
    z-index: 100;
}

.mySelect2 {
    float: left;
    position: relative;
    width: 400px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #666666;
    z-index: 100;
}

.mySelect .show {
    z-index: 1;
    position: relative;
    padding-left: 30px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    transition-duration: .4s;
    border: 2px solid #dfad57;
    color: #6d5647;
}

#footer .mySelect2 .show {
    z-index: 1;
    position: relative;
    padding-left: 14px;
    width: 100%;
    height: 38px;
    line-height: 38px;
    cursor: pointer;
    transition-duration: .4s;
    border: 1px solid #5a636c;
    color: rgba(255, 250, 255, .3)
}

.mySelect .show.on,
.mySelect .show:hover {
    border-color: #c30d23;
}

.mySelect .show:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    z-index: 2;
    margin-top: -6px;
    width: 20px;
    height: 11px;
    background: url(../images/arrow_down_white.png);
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.mySelect2 .show span {
    float: right;
    margin-right: 50px;
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    color: rgba(255, 255, 255, .3);
    transition: all .7s;
}

.mySelect2:hover .show span {
    color: #e70415;
}

.mySelect2 .show:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 19px;
    z-index: 2;
    margin-top: -3.5px;
    width: 12px;
    height: 7px;
    background: url(../images/down.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.mySelect .show:after {
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    width: 77px;
    height: 60px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.mySelect2 .show:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0;
    width: 123px;
    height: 36px;
    transition-duration: .5s;
    border-left: 1px solid #5a636c;
    -webkit-transition-duration: .5s;
}

.mySelect .show:after {
    content: '';
    position: absolute;
    top: -2px;
    right: 0;
    width: 77px;
    height: 60px;
    background: #dfad57;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.mySelect .show.on:after,
.mySelect .show:hover:after {
    background-color: #c30d23;
}

.mySelect2 .show.on::before {
    background: url(../images/top22.png) no-repeat center;
}

.party_con .newslist_top .mySelect .show:after {
    background-color: #dfad57;
}

.mySelect .show.on:before {
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
}

.mySelect .drapList {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
    overflow: auto;
    width: 100%;
    background-color: #fff;
    border: 2px solid #c30d23;
}

#footer .mySelect2 .drapList {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    height: 186px;
    padding: 0 15px;
    overflow: auto;
    width: 100%;
    background-color: #515667;
    border: none;
}

.mySelect .drapList ul {
    overflow: hidden;
    overflow-y: auto;
    max-height: 160px;
}

.mySelect2 .drapList ul {
    overflow: hidden;
    overflow-y: auto;
    /* max-height: 160px; */
}

.mySelect .drapList li {
    padding: 0 30px;
    line-height: 40px;
    color: #666666;
    cursor: pointer;
}

.mySelect2 .drapList li {
    padding: 0 30px;
    line-height: 40px;
    color: #666666;
    cursor: pointer;
}

.mySelect2 .drapList li span {
    float: right;
    margin-right: 35px;
    text-align: left;
    width: 56px;
    font-weight: bold;
}

#footer .mySelect2 .drapList li {
    line-height: 45px;
    color: #666666;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, .3);
    border-bottom: 1px solid #636776;
}

#footer .mySelect2 .drapList li:last-child {
    border-bottom: none;
}

.mySelect .drapList li:hover {
    background-color: #f1f1f1;
    color: #c30d23;
}

#footer .mySelect2 .drapList li:hover {
    background-color: transparent;
    color: #ffffff;
}

.mySelect .drapList::-webkit-scrollbar {
    display: none;
}

.form_box .mySelect {
    margin-right: 30px;
    width: 380px;
}

#footer .form_box .mySelect {
    margin-right: 30px;
    width: 266px;
}

.form_box .inputBox {
    position: relative;
    float: left;
    width: 380px;
    border: 2px solid #dfad57;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.form_box .inputBox:hover {
    border-color: #c30d23;
}

.form_box .inputBox input {
    padding: 0 30px 0;
    width: 305px;
    height: 56px;
}

.form_box .inputBox button {
    position: absolute;
    top: -2px;
    right: 0;
    width: 77px;
    height: 60px;
    background: #dfad57 url(../images/searchbtn.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.form_box .inputBox:hover button {
    background-color: #c30d23;
}

.contact2 .section {
    padding-bottom: 50px;
    position: relative;
    background-color: #f8f3ed;
    overflow: hidden;
}

.contact2 .section .w1200 {
    position: relative;
    z-index: 2;
}

.contact2 .section .w1200>img {
    margin-top: 30px;
}

.left-on {
    width: 1200px;
    margin: 0 auto 50px auto;
    float: none !important;
}

hgroup {
    position: relative;
}

hgroup .en {
    font-size: 28px;
    color: #000;
    font-family: 'Rubik';
    text-transform: uppercase;
    letter-spacing: -2px;
}

hgroup .cn {
    font-size: 18px;
    color: #000;
}

.contact2 .section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 470px;
    background-color: #fff;
}

.contact2 .section .left {
    float: left;
}

.contact2 .section .left .slogan {
    display: none;
    margin-top: 36px;
    letter-spacing: 10px;
    font-size: 22px;
    line-height: 30px;
    color: #d2ac77;
}

.contact2 .section .right {
    display: none;
    float: right;
    padding-bottom: 30px;
    width: 830px;
    color: #767a87;
}

.contact2 .section .right h4 {
    margin-bottom: 14px;
    font-size: 22px;
    color: #c30d23;
}

.contact2 .section .right p {
    margin-bottom: 22px;
}

.contact2 .form_box {
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact2 .posList dl {
    margin-bottom: 10px;
}

.contact2 .posList dt {
    position: relative;
    padding: 30px 40px;
    background-color: #fff;
    cursor: pointer;
}

.contact2 .posList dt .name {
    margin-bottom: 10px;
    font-size: 18px;
    color: #d2ac77;
}

.contact2 .posList dt .tag {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -40px;
    width: 40px;
    height: 80px;
    background-color: #dfad57;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.contact2 .posList dt .tag:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -6px;
    width: 12px;
    height: 7px;
    background: url(/template/pc/skin/images/abcdefg.png) no-repeat;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.contact2data .section .w1200 {
    background: #fff;
    padding: 20px 35px;
}

.contact2data .section:after .contact2 .posList dt .abt {
    color: #808080;
    line-height: 22px;
    font-size: 0;
}

.contact2data .section:after {
    content: '';
    background: none;
}

.contact2 .posList dt .abt span {
    display: inline-block;
    margin-right: 46px;
    font-size: 14px;
}

.contact2 .posList dt .abt img {
    margin-right: 5px;
}

.contact2 .posList dl:hover .tag {
    background-color: #c30d23;
}

.contact2 .posList dl:hover .tag:after {
    transform: rotate(-90deg);
}

.contact2 .posList dd {
    display: none;
    position: relative;
    padding: 25px 40px 30px;
    background-color: #fff;
    color: #918279;
}

.contact2 .posList dd:after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 1120px;
    height: 1px;
}

.contact2 .posList dd .item {
    margin-bottom: 30px;
}

.contact2 .posList dd .tit {
    margin-bottom: 4px;
    font-size: 16px;
    color: #6d5647;
    line-height: 36px;
}

.contact2 .loadMoreBtn {
    margin-top: 50px;
    margin-bottom: 0;
}

.report_box {
    margin-top: 36px;
    padding-bottom: 80px;
}

.report_box .hotLineBox {
    float: right;
    padding-bottom: 30px;
    background-color: #f4eee5;
}

.report_box .hotLine {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 30px;
    font-size: 0;
}

.report_box .hotLine .tel {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 22px;
    color: #1f1f1f;
}

.report_box .hotLineBox h4 {
    position: relative;
    margin-left: 30px;
    margin-bottom: 16px;
    padding-left: 8px;
    font-size: 16px;
    color: #b18245;
}

.report_box .hotLineBox h4:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
    width: 3px;
    height: 16px;
    background-color: #b18245;
}

.report_box .inputBox {
    position: relative;
    margin-bottom: 10px;
    margin-left: 30px;
    width: 277px;
    height: 44px;
    line-height: 44px;
    background-color: #fff;
}

.report_box .inputBox label {
    position: absolute;
    top: 0;
    left: 20px;
    color: #685f57;
    opacity: .8;
}

.report_box .inputBox input {
    padding: 0 10px 0 86px;
    width: 100%;
    height: 100%;
}

.report_box .hotLineBox .submit {
    margin-top: 10px;
    margin-left: 30px;
    width: 277px;
    height: 44px;
    line-height: 44px;
    color: #fff;
    text-align: center;
    background-color: #dfad57;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.report_box .hotLineBox .submit:hover {
    background-color: #c30d23;
}

.report_box h3 {
    margin-bottom: 16px;
    font-size: 22px;
    color: #c30d23;
}

.report_box>p {
    line-height: 22px;
    color: #767a87;
}

.report_box .form_box {
    float: left;
    margin-top: 24px;
}

.report_box .form_box .item {
    margin-bottom: 24px;
    width: 800px;
}

.report_box .form_box .type {
    position: relative;
    margin-bottom: 16px;
    padding-left: 12px;
    font-size: 16px;
    color: #685f57;
}

.report_box .form_box .type:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    border: 4px solid transparent;
    border-left-color: #dd0000;
}

.report_box .form_box input {
    display: block;
    padding: 0 20px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f8f3ed;
    color: rgba(104, 95, 87, .8);
}

.report_box .form_box .line {
    margin-bottom: 24px;
    width: 800px;
    height: 3px;
    background-color: #f0efef;
}

.report_box .form_box .checkbox {
    margin-bottom: -20px;
    font-size: 0;
}

.report_box .form_box .checkbox li {
    display: inline-block;
    margin-right: 60px;
    margin-bottom: 20px;
    color: #4e4d50;
    font-size: 14px;
    cursor: pointer;
}

.report_box .form_box .checkbox li span {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    border: 1px solid #cccbcb;
}

.report_box .form_box .checkbox li.on span:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/checked.png) no-repeat right top;
}

.report_box .form_box .textareaBox {
    padding: 20px 20px;
    width: 100%;
    height: 180px;
    background-color: #f8f3ed;
    border: none;
    resize: none;
}

.report_box .form_box .textareaBox textarea {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    color: rgba(104, 95, 87, .8);
}

.report_box .form_box .contactUs input {
    margin-bottom: 10px;
}

.report_box .form_box .itemFile {
    overflow: hidden;
}

.report_box .form_box .file {
    position: relative;
    float: left;
    padding-left: 20px;
    width: 280px;
    height: 60px;
    line-height: 60px;
    background-color: #f8f3ed;
    color: rgba(104, 95, 87, .8);
}

.report_box .form_box .file:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 60px;
    background: #dfad57 url(../images/arrow.png) no-repeat 54px center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.report_box .form_box .file:hover:after {
    background-color: #c30d23;
}

.report_box .form_box .file input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.report_box .form_box .fileName {
    float: left;
    margin-left: 12px;
    line-height: 60px;
    color: #685f57;
    opacity: .8;
}

.report_box .form_box .itemCode {
    margin: 20px 0;
    overflow: hidden;
}

.report_box .form_box .itemCode input {
    float: left;
    width: 160px;
}

.report_box .form_box .itemCode img {
    float: left;
}

.report_box .form_box .itemCode .change {
    float: left;
    margin-left: 12px;
    line-height: 60px;
    color: #685f57;
    opacity: .8;
}

.report_box .form_box .submit {
    padding-left: 20px;
    width: 280px;
    height: 62px;
    line-height: 62px;
    background: #dfad57 url(../images/plane.png) no-repeat;
    background-position: 226px center;
    font-size: 18px;
    text-align: left;
    color: #fff;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
    cursor: pointer;
}

.report_box .form_box .submit:hover {
    background-color: #c30d23;
}

.report_box .form_box .fileBtn {
    background-color: #dfad57!important;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.report_box .form_box .fileBtn:hover {
    background-color: #c30d23!important;
}

.innovation {
    overflow: hidden;
}

.innovation .tabBox {
    margin-top: 46px;
    margin-bottom: 40px;
}

.innovation .tabBox a {
    float: left;
    margin-right: calc(40px/3);
    width: 188.9px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #f8f3ed;
    color: #6d5647;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
    font-size: 16px;
}

.innovation .tabBox a:last-child {
    margin-right: 0;
}

.innovation .tabBox a.on,
.innovation .tabBox a:hover {
    color: #fff;
    background-color: #c30d23;
}

.innovation .site {
    position: relative;
    height: 486px;
}

.innovation .site .box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.innovation .site .box:first-child {
    position: relative;
    display: block;
}

.innovation .site .box .slogan {
    position: absolute;
    top: 68px;
    left: 85px;
}

.innovation .site .box .slogan img {
    margin-bottom: 12px;
}

.innovation .site .box p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.innovation .site .box .visitNow {
    display: block;
    margin-top: 22px;
    padding-left: 40px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #dfad57 url(../images/global.png) no-repeat;
    background-position: 104px center;
    color: #fff;
}

.innovation .control {
    position: relative;
    z-index: 2;
}

.innovation .org {
    position: relative;
    z-index: 0;
    padding-top: 70px;
    height: 782px;
    background: #f8f3ed;
    background-size: cover;
}

.innovation .org h5 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #feecb9;
    line-height: 22px;
}

.innovation .org h2 {
    position: relative;
    padding-left: 20px;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 22px;
}

.innovation .org h2:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 17px;
    background-color: #c30d23;
}

.innovation .org p {
    color: #333333;
}

.innovation .org_box {
    position: relative;
    margin: 110px auto 0;
    width: 966px;
    height: 365px;
}

.innovation .org_box .sbg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -156px;
    margin-top: -134px;
    width: 312px;
    height: 268px;
}

.innovation .org_box .tit {
    position: absolute;
    /*top: 50%;left: 50%;transform: translate(-50%,-50%);*/
    text-align: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    margin: auto;
    background: url("../images/platform_bg2-yun1.png") no-repeat 0 0;
    padding-top: 70px;
    z-index: 30;
}

.innovation .org_box .sbg:after {
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/platform_bg2-yun2.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transform: scale(.5);
    transition: all 1s .5s;
}

.innovation .org_box .sbg.animated:after {
    transform: scale(1);
    opacity: 1;
}

.innovation .org_box .tit h5 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}

.innovation .org_box .item {
    position: absolute;
    top: 0;
    padding: 0 15px;
    text-align: left;
    width: 300px;
    height: 84px;
    line-height: 84px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 42px;
    color: #333333;
    cursor: pointer;
    border: 1px solid #dbd7d2;
}

.innovation .org_box .item1 {
    left: 48px;
}

.innovation .org_box .item2 {
    top: 94px;
    left: 0;
}

.innovation .org_box .item3 {
    top: 188px;
    left: 0;
}

.innovation .org_box .item4 {
    top: 282px;
    left: 48px;
}

.innovation .org_box .item5 {
    right: 48px;
}

.innovation .org_box .item6 {
    top: 94px;
    right: 0;
}

.innovation .org_box .item7 {
    top: 188px;
    right: 0;
}

.innovation .org_box .item8 {
    top: 282px;
    right: 48px;
}

.innovation .org_box .item .icon {
    position: relative;
    display: inline-block;
    float: left;
    margin-top: 13px;
    margin-right: 20px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.innovation .org_box .item .icon img {
    display: block;
}

.innovation .org_box .item:hover .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon_on.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation .org_box .item.le {
    text-align: right;
}

.innovation .org_box .item.le .icon {
    float: none;
    margin-top: 0;
    margin-right: 0;
    margin-left: 20px;
    vertical-align: middle;
}

.innovation .intro {
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding-top: 106px;
    height: 100%;
    background: url(../images/platform_bg.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 80px;
}

.innovation .intro .tit {
    margin-bottom: 34px;
    font-size: 18px;
    color: #feecb9;
    line-height: 22px;
}

.innovation .intro .pd {
    margin-top: -34px;
}

.innovation .introSlide1,
.innovation .introSlide2,
.innovation .introSlide3 {
    position: relative;
}

.innovation .intro .bd {
    overflow: hidden;
}

.innovation .intro .prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -90px;
    margin-top: -25px;
    background: url(../images/prev_g.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.innovation .intro .prev:hover {
    background-image: url(../images/prev_on.png);
}

.innovation .intro .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -90px;
    margin-top: -25px;
    background: url(../images/next_g.png) no-repeat center;
    width: 50px;
    height: 52px;
    transition: all .7s;
}

.innovation .intro .next:hover {
    background-image: url(../images/next_on.png);
}

.innovation .intro ul {
    margin-right: -30px;
}

.innovation .intro li {
    float: left;
    margin-right: 30px;
    width: 380px;
}

.innovation .intro li .img {
    overflow: hidden;
}

.innovation .intro li img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation .intro li:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.innovation .intro .cont {
    padding: 24px 30px 32px;
    height: 330px;
    background-color: #fff;
}

.innovation .intro .cont h4 {
    margin-bottom: 14px;
    color: #dfad58;
    font-size: 18px;
    line-height: 24px;
}

.innovation .intro .cont .p_wrap {
    max-height: 220px;
    margin-right: -15px;
    padding-right: 15px;
    overflow: auto;
    line-height: 24px;
    font-size: 14px;
    color: #515667;
}

.innovation .intro .cont p {
    line-height: 24px;
    font-size: 14px;
    color: #515667;
}

.cxjg-pop .pop-cont {
    width: 1200px;
    height: 480px;
    padding: 50px 40px;
}

.cxjg-pop h3 {
    color: #000000;
    font-size: 18px;
    padding-bottom: 12px;
    padding-right: 30px;
    line-height: 24px;
    position: relative;
    margin-bottom: 30px;
}

.cxjg-pop h3:after {
    content: "";
    width: 36px;
    height: 0;
    border-top: 4px solid #c30d23;
    position: absolute;
    left: 0;
    bottom: 0;
}

.cxjg-pop .cont {
    height: 480px;
    overflow: auto;
}

.cxjg-pop .cont .L {
    float: left;
    width: 630px;
    height: 380px;
    margin-right: 30px;
}

.cxjg-pop .cont .L img {
    display: block;
    width: 100%;
}

.cxjg-pop .cont .R {
    float: right;
    width: 460px;
}

.cxjg-pop .cont .R h4 {
    color: #685f57;
    font-size: 16px;
    margin-bottom: 20px;
}

.cxjg-pop .cont .R h5 {
    color: #685f57;
    font-size: 16px;
}

.cxjg-pop .cont .R p {
    color: #685f57;
}

.cxjg-pop .cont .R ul {
    color: #685f57;
    margin-top: 7px;
}

.cxjg-pop .cont .R ul li {
    position: relative;
    padding-left: 15px;
    background: url("../images/cxjg-pop-ic1.png") no-repeat 0 9px;
}

.cxjg-pop .cont .R ul li:after {
    content: "";
    width: 6px;
    position: absolute;
    left: 0;
    top: 0;
}

.cxjg-pop .txt {
    height: 316px;
    overflow: auto;
    padding-right: 25px;
    text-align: justify;
}

.cxjg-pop .txt::-webkit-scrollbar {
    width: 5px;
    background-color: #f0efee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.cxjg-pop .txt::-webkit-scrollbar-thumb {
    background-color: #c30d23;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.yjcg-pop .pop-cont {
    width: 1200px;
    height: 480px;
    padding: 40px 40px;
}

.yjcg-pop h3 {
    color: #000000;
    font-size: 18px;
    padding-bottom: 12px;
    line-height: 24px;
    position: relative;
    margin-bottom: 30px;
}

.yjcg-pop h3:after {
    content: "";
    width: 36px;
    height: 0;
    border-top: 4px solid #c30d23;
    position: absolute;
    left: 0;
    bottom: 0;
}

.yjcg-pop .cont {
    padding-right: 20px;
    height: 341px;
    overflow: auto;
}

.yjcg-pop .cont p {
    color: #685f57;
}

.yjcg-pop .cont::-webkit-scrollbar {
    width: 5px;
    background-color: #f0efee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.yjcg-pop .cont::-webkit-scrollbar-thumb {
    background-color: #c30d23;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.innovation .results {
    position: relative;
    z-index: 2;
    background-color: #f8f3ed;
}

.innovation .results .w1300 {
    position: relative;
    margin: 0 auto;
    width: 1290px;
    background-color: #fff;
}

.innovation .results .contBox {
    position: relative;
    top: -80px;
    margin-bottom: -5px;
    padding: 60px 45px 0;
    background-color: #fff;
}

.innovation .results .cont {
    float: right;
    width: 790px;
}

.innovation .results ul {
    margin-top: 18px;
    margin-right: -30px;
}

.innovation .results li {
    position: relative;
    float: left;
    margin-top: 10px;
    margin-right: 30px;
    padding-left: 30px;
    width: 380px;
    height: 80px;
    line-height: 80px;
    background-color: #f8f3ed;
    cursor: pointer;
}

.innovation .results li:after {
    opacity: 0;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 40px;
    width: 36px;
    height: 16px;
    background: url(../images/arrow.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation .results li:hover:after {
    opacity: 1;
    right: 30px;
}

.innovation .results li a {
    display: inline-block;
    /* height: 100%; */
    line-height: 24px;
    width: 230px;
    vertical-align: middle;
}

.innovation .results .tit {
    margin: 26px 0 10px;
    font-size: 18px;
    color: #000;
}

.innovation .results p {
    color: #000;
    opacity: .6;
}

.innovation .detData>.box {
    display: none;
}

.innovation .detData>.box:first-child {
    display: block;
}

.innovation2 .toggle {
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding-top: 130px;
    background-color: #f8f3ed
}

.innovation2 .site .box p {
    color: #fff;
}

.innovation2 .zs {
    height: 100%;
    width: 100%;
    margin: 40px auto 0;
    /*margin-bottom: 30px;*/
}

.innovation2 .zs ul {
    margin-left: -30px;
    /*height: 800px;*/
    /*margin-bottom: 20px;*/
}

.innovation2 .toggle {
    padding-bottom: 80px;
    padding-top: 90px;
}

.innovation2 .form_box .mySelect:nth-child(3) {
    margin-right: 0;
}

.innovation2 .zs ul:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.innovation2 .zs ul li {
    float: left;
    position: relative;
    margin-left: 30px;
    margin-bottom: 40px;
    width: 380px;
    height: 240px;
    background-color: #fff;
    cursor: pointer;
}

.innovation2 .zs ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.innovation2 .zs ul li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.innovation2 .zs ul li .cont {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6) url(../images/magnifier.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation2 .zs ul li .name {
    position: absolute;
    left: 0;
    bottom: 30px;
    padding: 0 15px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.innovation2 .zs ul li:hover .cont {
    opacity: 1;
}

.innovation2 .page_nav {
    margin-bottom: 0;
}

.innovation2 {
    background: #f8f3ed;
}

.innovation2 .show_top {
    padding-top: 70px;
    min-height: 237px;
    background-size: cover;
}

.innovation2 .show_top h3 {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.innovation2 .show_top h3:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    height: 17px;
    width: 5px;
    background-color: #c30d23;
}

.innovation2 .show_top p {
    font-size: 14px;
    line-height: 24px;
    color: #747474;
}

.innovation2 .show_top .items {
    margin-top: 90px;
    text-align: center;
}

.innovation2 .show_top .item {
    display: inline-block;
    margin: 0 50px;
    font-size: 14px;
    line-height: 24px;
    color: #747474;
}

.innovation2 .show_top .item em {
    display: inline-block;
    margin: 0 10px;
    font-size: 80px;
    font-family: 'Rubik';
    color: #d8031c;
}

.innovation2 .achievements {
    padding-bottom: 80px;
}

.innovation2 .achievements .c_tits {
    position: relative;
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 1;
    color: #000;
    text-align: center;
    font-weight: bold;
}

.innovation2 .achievements .item {
    margin-bottom: 60px;
}

.innovation2 .achievements ._li {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 22px;
    color: #685f57;
    background-color: #f8f3ed;
}

.innovation2 .achievements ._li .type {
    font-size: 20px;
    color: #000000;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
}

.innovation2 .achievements ._li .p {
    height: 62px;
    border-top: 2px solid #d8031c;
    background: #e7e2dd;
    line-height: 60px;
    padding-left: 20px;
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

.innovation2 .achievements ._li .p {
    padding-left: 0;
}

.innovation2 .achievements ._li .p div {
    float: left;
}

.innovation2 .achievements ._li .p.else .guo {
    padding-left: 20px;
}

.innovation2 .achievements ._li .p.else .guo:nth-child(1) {
    width: 11% !important;
}

.innovation2 .achievements ._li .p.else .guo:nth-child(2) {
    width: 29.5% !important;
}

.innovation2 .achievements ._li .p.else .guo:nth-child(3) {
    width: 29.5% !important;
}

.innovation2 .achievements ._li .p.else .guo:nth-child(4) {
    width: 29.5% !important;
}

.innovation2 .achievements ._li .p .num {
    padding-right: 82px;
    padding-left: 20px;
}

.innovation2 .achievements ._li p {
    position: relative;
    height: 50px;
    padding-left: 20px;
    border-bottom: 1px solid #dbd6d1;
}

.innovation2 .achievements ._li p em {
    line-height: 50px;
}

.innovation2 .achievements ._li p strong {
    display: inline-block;
    position: absolute;
    top: 50%;
    line-height: 16px;
    font-weight: normal;
    transform: translateY(-50%);
}

.innovation2 .achievements ._li tbody {
    border: none;
}

.innovation2 .achievements ._li tr {
    padding-left: 20px;
    line-height: 50px;
    border-bottom: 1px solid #dbd6d1;
}

.innovation2 .achievements ._li td {
    padding-left: 20px;
    border: none;
}

.innovation2 .achievements ._li td:first-child {
    width: 9%!important;
    padding-right: 6px;
}

.innovation2 .achievements ._li td p {
    padding-left: 0;
}

.innovation2 .achievements ._li p em {
    padding-right: 84px;
    width: 30px;
    display: inline-block;
}

.innovation2 .achievements ._li table p {
    margin-bottom: 0;
}

.innovation3 .site .box p {
    color: #595758;
}

.innovation3 .site .box:nth-child(2) p {
    color: #fff;
}

.innovation3 .equipList {
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding-top: 130px;
    padding-bottom: 80px;
    background-color: #f8f3ed;
}

.innovation3 .equipList ul {
    margin-right: -30px;
}

.innovation3 .equipList li {
    float: left;
    margin-right: 30px;
    margin-bottom: 40px;
    width: 380px;
}

.innovation3 .equipList li .tit {
    padding: 0 20px;
    height: 90px;
    line-height: 90px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    color: #685f57;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation3 .equipList li .img {
    position: relative;
    overflow: hidden;
    height: 240px;
    background-color: #fff;
}

.innovation3 .equipList li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
    max-width: 100%;
    max-height: 100%;
}

.innovation3 .equipList li:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
}

.innovation3 .equipList li:hover .tit {
    color: #fff;
    background-color: #c30d23;
}

.innovation3 .equipList .loadMoreBtn {
    margin-top: 10px;
}

.innovation4 {
    background: #f8f3ed;
}

.innovation4 .control {
    padding-top: 70px;
    padding-bottom: 40px;
}

.innovation4 .top .cn {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
}

.innovation4 .control .p {
    color: #333333;
    font-size: 14px;
}

.innovation4 .top .cn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    background-color: #c30d23;
    height: 17px;
    margin-top: -8.5px;
}

.innovation4 .detData {
    position: relative;
    z-index: 0;
    background-color: #f8f3ed;
}


/* .innovation4 .detData:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 408px;
    background-color: #fff;
    z-index: 0;
} */

.innovation4 .detData .w1200 {
    position: relative;
    z-index: 1;
}

.innovation4 .army_list_box {
    width: 840px;
}

.innovation4 .army_list dl {
    position: relative;
    margin-bottom: 10px;
    padding: 0 80px 0 40px;
    background-color: #fff;
}

.innovation4 .army_list dl .tag {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -40px;
    width: 40px;
    height: 80px;
    background-color: #dfad57;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.innovation4 .army_list dl.on dt {
    padding-bottom: 20px;
}

.innovation4 .army_list dl.on .tag {
    background-color: #c30d23;
}

.innovation4 .army_list dl .tag:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -6px;
    width: 12px;
    height: 7px;
    background: url(../images/arrow_down.png) no-repeat;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.innovation4 .army_list dl.on .tag:after {
    transform: rotate(180deg);
}

.innovation4 .army_list_box {
    padding-bottom: 80px;
}

.innovation4 .army_list dl .pos {
    font-size: 16px;
    color: #6d5647;
}

.innovation4 .army_list dt {
    cursor: pointer;
    padding-top: 36px;
    padding-bottom: 34px;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.innovation4 .army_list dt p {
    color: #6d5647;
    opacity: .8;
}

.innovation4 .army_list dt .name {
    margin-bottom: 10px;
    font-size: 18px;
    color: #d2ac77;
}

.innovation4 .army_list dt .pos {
    margin-bottom: 8px;
}

.innovation4 .army_list dd {
    display: none;
    padding-bottom: 40px;
}

.innovation4 .army_list dl:first-child dd {
    display: block;
}

.innovation4 .army_list dd p {
    color: #918279;
}

.innovation4 .loadMoreBtn {
    margin-top: 40px;
}

.innovation4 .aside {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 0 90px 0 0;
}

.innovation4 .aside:after {
    content: '';
    position: absolute;
    top: 240px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1e9df;
    z-index: 0;
}

.innovation4 .aside .typeBox {
    position: relative;
    z-index: 1;
    padding-top: 35px;
    padding-left: 40px;
    width: 310px;
    height: 200px;
    background-color: #c30d23;
    border-radius: 0 90px 0 0;
    color: #fff;
}

.innovation4 .aside .typeBox .name {
    margin-bottom: 38px;
    padding-bottom: 22px;
    width: 150px;
    font-size: 28px;
    border-bottom: 3px solid #fff;
    font-family: 'RUBIK';
    text-transform: uppercase;
    letter-spacing: -2px;
}

.innovation4 .aside .typeBox a {
    position: relative;
    display: block;
    margin-bottom: 20px;
    width: 112px;
    line-height: 1;
}

.innovation4 .aside .typeBox a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background-color: #d2ac77;
    opacity: 0;
    transition-duration: .3s;
    -webkit-transition-duration: .3s;
}

.innovation4 .aside .typeBox a.on,
.innovation4 .aside .typeBox a:hover {
    color: #d2ac77;
}

.innovation4 .aside .typeBox a.on:after {
    margin-right: 0;
    opacity: 1;
}

.innovation4 .aside .invite {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    padding: 36px 40px 0;
    height: 230px;
    background: url(../images/invite.jpg) no-repeat;
    color: #fff;
}

.innovation4 .aside .invite .en {
    opacity: .1;
    text-transform: uppercase;
    font-size: 18px;
}

.innovation4 .aside .invite .cn {
    margin: 4px 0 18px;
}

.innovation4 .aside .invite p {
    margin-bottom: 18px;
    font-size: 18px;
    color: #d2ac77;
}

.innovation4 .aside .invite img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.innovation4 .aside .invite:hover img {
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
}

.innovation4 .detData .site {
    margin-bottom: 50px;
}

.innovation4 .detData #site1 {
    margin-top: 46px
}

.innovation4 .detData .site .slogan {
    position: absolute;
    top: 68px;
    left: 85px;
}

.innovation4 .detData .site .slogan img {
    margin-bottom: 12px;
}

.innovation4 .detData .site p {
    font-size: 16px;
    line-height: 26px;
    color: #595758;
}

.innovation4 .detData .site .visitNow {
    display: block;
    margin-top: 22px;
    padding-left: 40px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    background: #dfad57 url(../images/global.png) no-repeat;
    background-position: 104px center;
    color: #fff;
}


/*zj*/

.business_toptext {
    padding-top: 170px;
}

.business_toptext .top_text {
    padding-left: 20px;
}

.business_toptext .top_text h3 {
    font-size: 28px;
    color: #fff;
    font-family: 'Rubik';
    text-transform: uppercase;
}

.business_toptext .top_text p {
    font-size: 18px;
    color: #fff;
}

.business_toptext .info {
    margin-top: 25px;
}

.business_toptext .info p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
}

.business_con {
    padding-bottom: 80px;
    background-size: 100% 550px;
    padding-top: 0;
}

.business_con hgroup {
    text-align: left;
    padding-top: 0;
}

.business_con .bus_info {
    margin-top: 30px;
}

.business_con .bus_info p {
    font-size: 14px;
    color: #767a87;
    line-height: 22px;
}

.business_con .bus_info img {
    margin-top: 30px;
}

.business_con .box_list {
    margin-top: 30px;
}

.business_con .box_list ._h3 {
    font-size: 18px;
    color: #6d5647;
    text-align: left;
}

.business_con .box_list ul {
    font-size: 0;
    margin-left: -30px;
    text-align: left;
}

.business_con .box_list li {
    width: 380px;
    height: 320px;
    display: inline-block;
    margin: 30px 0 0 30px;
    cursor: pointer;
}

.business_con .box_list .img {
    width: 380px;
    height: 240px;
    overflow: hidden;
}

.business_con .box_list li img {
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.business_con .box_list p {
    width: 380px;
    display: table-cell;
    vertical-align: middle;
    height: 90px;
    background: #f8f3ed;
    text-align: center;
    font-size: 18px;
    color: #685f57;
    padding: 0 20px;
    line-height: 25px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.business_con .box_list li:hover img {
    transform: scale(1.1);
}

.business_con .box_list li:hover p {
    color: #fff;
    background-color: #c30d23;
}

.business_con .box_list .slideHide {
    display: none;
}

.xmdt-pop {}

.xmdt-pop .pop-cont {
    width: 800px;
    height: 450px;
    background-color: transparent !important;
}

.xmdt-pop .slideBox {
    width: 800px;
    height: 450px;
    position: relative;
}

.xmdt-pop .slideBox .prev,
.xmdt-pop .slideBox .next {
    display: block;
    width: 50px;
    height: 45px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .3s;
}

.xmdt-pop .slideBox:hover .prev,
.xmdt-pop .slideBox:hover .next {
    opacity: 1;
    filter: alpha(opacity=100);
}

.xmdt-pop .slideBox .prev {
    left: 30px;
    background: url("../images/l_prev.png") no-repeat 0 0;
}

.xmdt-pop .slideBox .next {
    right: 30px;
    background: url("../images/l_next.png") no-repeat 0 0;
}

.xmdt-pop .slideBox .bd li {
    position: relative;
    width: 800px;
    height: 450px;
}

.xmdt-pop .slideBox .bd li img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

.pop-wrap.xmdt-pop .close {
    left: 0;
    right: 0;
    top: auto;
    bottom: -50px;
    margin: auto;
}


/*.lb-number{ display: none!important; }*/

.pop-wrap {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
}

.pop-wrap var {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: .8;
    filter: alpha(opacity=80);
}

.pop-wrap .pop-cont {
    background-color: #FFF;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 200;
}

.pop-wrap .close {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 80;
    cursor: pointer;
}

.party_con {
    background-size: 100% 515px;
    padding-bottom: 0;
}

.party_con .party_top {
    overflow: hidden;
}

.party_con .party_top .right img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.party_con .party_top .right:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.party_con .party_top .left {
    float: left;
    width: 330px;
}

.party_con .party_top .box_info {
    margin-top: 40px;
    text-align: left;
}

.party_con .party_top .info .date {
    font-size: 30px;
    color: #c30d23;
    font-family: 'Rubik';
    text-align: left;
}

.party_con .party_top .info h3 {
    font-size: 22px;
    color: #55535e;
    margin-top: 10px;
    line-height: 28px;
}

.party_con .party_top .info p {
    font-size: 14px;
    color: #767a87;
    line-height: 22px;
    margin-top: 21px;
}

.party_con .party_top .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #f8f3ed;
    font-size: 14px;
    color: #55535e;
    padding-left: 80px;
    line-height: 60px;
    text-align: left;
    margin-top: 60px;
}

.party_con .party_top .btn .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    text-align: center;
    background-color: #dfad57;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.party_con .party_top .btn .icon img {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.party_con .party_top .btn:hover {
    color: #c30d23;
}

.party_con .party_top .btn:hover .icon {
    background-color: #c30d23;
}

.party_con .party_top .btn:hover .icon img {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.party_con .party_top .right {
    position: relative;
    float: right;
    width: 830px;
    height: 428px;
    overflow: hidden;
}

.party_con .party_top .toReport {
    margin-top: 10px;
}

.party_con .party_top.on .info h3 {
    color: #c30d23;
}

.party_con .party_top .pdf_list {
    position: relative;
    margin-top: 40px;
}

.party_con .party_top .pdf_list .box_info {
    position: relative;
    margin-top: 0;
    height: 297px;
}

.party_con .party_top .pdf_list .contrl {
    position: absolute;
    left: 0;
    bottom: 80px;
    font-size: 16px;
    font-family: 'Rubik';
    color: #55535e;
    z-index: 2;
}

.party_con .party_top .prev,
.party_con .party_top .next {
    display: inline-block;
    cursor: pointer;
    width: 12px;
}

.party_con .party_top .next {
    text-align: right;
}

.party_con .party_top .prev:hover,
.party_con .party_top .next:hover {
    color: #c30d23;
}

.party_con .party_top .pageState span {
    color: #c30d23;
}

.party_con .list {
    width: 1300px;
    margin-left: -50px;
    background: #fff;
    padding: 50px 50px 60px 50px;
    margin-top: 160px;
}

.party_con .newslist_top>ul {
    float: left;
    font-size: 0;
    text-align: left;
}

.party_con .newslist_top>ul li {
    display: inline-table;
    width: 130px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-color: #dfad57;
    line-height: 60px;
    padding-left: 50px;
    font-size: 16px;
    color: #FFF;
    cursor: pointer;
    margin-right: 10px;
}

.party_con .newslist_top>ul .l1 {
    background-image: url(../images/party_listicon1_on.png);
}

.party_con .newslist_top>ul .l2 {
    background-image: url(../images/party_listicon2_on.png);
}

.party_con .newslist_top>ul li.on,
.party_con .newslist_top>ul li:hover {
    color: #fff;
    background-color: #c30d23;
}

.party_con .newslist_top>ul .l1.on,
.party_con .newslist_top>ul .l1:hover {
    background-image: url(../images/party_listicon1_on.png);
}

.party_con .newslist_top>ul .l2.on,
.party_con .newslist_top>ul .l2:hover {
    background-image: url(../images/party_listicon2_on.png);
}

.party_con .newslist_top .form_box {
    float: right;
}

.searches .party_con .list {
    margin-top: 0;
}

.searches .page_nav {
    margin-bottom: 0;
}

.searches .business_con {
    background: #f5eee8 none no-repeat center top;
    padding-top: 70px;
}

.searches .hgroup:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -23px;
    width: 5px;
    height: 46px;
    background-color: #c30d23;
}

.searches .hgroup {
    position: relative;
    padding-left: 20px;
}

.searches .Tip .cn {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.searches .Tip .en {
    font-size: 28px;
    color: #000;
    font-family: 'Rubik';
    text-transform: uppercase;
    letter-spacing: -2px;
}

.searches .Tip h5 {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    padding: 24px 0 5px;
}

.searches .Tip h5 em {
    color: #c30d23;
}

.searches .party_con .ul_list2 {
    padding-top: 0;
}


/*.party_con .newslist_top .mySelect .show{border:2px solid #f8f3ed;}*/

.party_con .newslist_top .mySelect .show.on,
.party_con .newslist_top .mySelect .show:hover {
    border-color: #c30d23;
}

.party_con .newslist_top .form_box .inputBox {
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.party_con .newslist_top .form_box .inputBox:hover {
    border-color: #c30d23;
}


/*.party_con .newslist_top .mySelect .show:before{background:  url(../images/arrow_down.png);}*/

.party_con .newslist_top .mySelect .show:after {
    background-color: #dfad57;
}

.party_con .newslist_top .mySelect .show.on:after,
.party_con .newslist_top .mySelect .show:hover:after {
    background-color: #c30d23;
}

.party_con .newslist_top .mySelect .show.on:before,
.party_con .newslist_top .mySelect .show:hover:before {
    background-image: url(../images/arrow_down_white.png);
}

.party_con .newslist_top .form_box .inputBox button {
    background: #dfad57 url(../images/searchbtn.png) no-repeat center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.party_con .newslist_top .form_box .inputBox:hover button {
    background-color: #c30d23;
    background-image: url(../images/searchbtn.png);
}

.party_con .loadMoreBtn {
    margin-top: 50px;
}

.party_con .news_ul .box {
    display: none;
}

.party_con .ul_list1 {
    margin-left: -30px;
    font-size: 0;
    text-align: left;
    margin-left: -30px;
}

.party_con .ul_list1 li {
    display: inline-block;
    width: 380px;
    height: 440px;
    overflow: hidden;
    margin: 40px 0 0 30px;
}

.party_con .ul_list1 li .img {
    width: 380px;
    height: 180px;
    overflow: hidden;
}

.party_con .ul_list1 li img {
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.party_con .ul_list1 li .text {
    height: 220px;
    padding: 25px 30px 0 30px;
    transition: all .4s;
}

.party_con .ul_list1 .text h3 {
    font-size: 18px;
    color: #55535e;
}

.party_con .ul_list1 .text .deta {
    font-size: 18px;
    color: #c30d23;
    font-family: 'Rubik';
    margin-top: 10px;
}

.party_con .ul_list1 .text p {
    font-size: 14px;
    color: #767a87;
    margin-top: 10px;
}

.party_con .ul_list1 li:hover .text {
    background: #f8f3ed;
}

.party_con .ul_list1 li:hover img {
    transform: scale(1.1);
}

.party_con .ul_list2 {
    padding-top: 30px;
}

.party_con .ul_list2 li {
    height: 220px;
    margin-top: 20px;
}

.party_con .ul_list2 li .img {
    float: left;
    width: 350px;
    height: 220px;
    overflow: hidden;
}

.party_con .ul_list2 li img {
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.party_con .ul_list2 li .text {
    float: right;
    width: 820px;
    padding: 25px 0 0 0;
    text-align: left;
}

.party_con .ul_list2 .text .deta {
    font-size: 24px;
    color: #c30d23;
    font-family: 'Rubik';
}

.party_con .ul_list2 .text h3 {
    font-size: 18px;
    color: #55535e;
    margin-top: 10px;
}

.party_con .ul_list2 .text p {
    font-size: 14px;
    color: #767a87;
    margin-top: 10px;
}

.party_con .ul_list2 .look_data {
    font-size: 14px;
    color: #626262;
    margin-top: 15px;
    position: relative;
}

.party_con .ul_list2 .look_data:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 54px;
    height: 8px;
    background-image: url(../images/list_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}

.party_con .ul_list2 li:hover img {
    transform: scale(1.1);
}

.party_con .ul_list2 li .look_data:hover {
    color: #c30d23;
}

.party_con .ul_list2 li .look_data:hover:after {
    background-image: url(../images/list_icon_on.png);
}

.news_con .box_info .num {
    padding-left: 30px;
    font-size: 12px;
    color: #c8cacf;
    font-family: 'Rubik';
    background: url(../images/look_icon.png) no-repeat left;
    margin-top: 10px;
}

.news_con .box_info .look_data {
    font-size: 14px;
    color: #626262;
    margin-top: 20px;
    position: relative;
}

.news_con .box_info .look_data:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 54px;
    height: 8px;
    background-image: url(../images/list_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
}

.news_con .party_top.on .look_data,
.news_con .box_info .look_data:hover {
    color: #c30d23;
}

.news_con .party_top.on .look_data:after,
.news_con .box_info .look_data:hover:after {
    background-image: url(../images/list_icon_on.png);
}

.news_con .party_top:hover .right img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.news_con .party_top:hover .left .look_data {
    color: #c30d23;
}

.news_con .party_top:hover .look_data:after {
    background-image: url(../images/list_icon_on.png);
}

.news_dcon {
    overflow: hidden;
}

.news_dcon hgroup {
    text-align: left;
}

.news_dcon .d_box {
    margin: 40px 0 70px 0;
    overflow: hidden;
}

.news_dcon .left {
    float: left;
    width: 830px;
    padding-right: 30px;
    border-right: 2px solid #f0efef;
}

.news_dcon .left h3 {
    font-size: 24px;
    color: #55535e;
}

.news_dcon .left .tit {
    padding-bottom: 20px;
    border-bottom: 2px solid #f0efef;
}

.news_dcon .left .num_share {
    overflow: hidden;
    margin-top: 20px;
}

.news_dcon .left .num_share .date {
    float: left;
    font-size: 26px;
    color: #c30d23;
    font-family: 'Rubik';
    margin-top: 5px;
}

.news_dcon .left .num_share .num {
    float: left;
    margin-left: 43px;
    padding-left: 30px;
    font-size: 12px;
    color: #c8cacf;
    font-family: 'Rubik';
    background: url(../images/look_icon.png) no-repeat left;
    margin-top: 5px;
}

.news_dcon .left .bshare-custom {
    float: right;
    line-height: 32px!important;
}

.news_dcon .left .bshare-custom a {
    padding: 0;
    width: 33px;
    height: 32px;
    background: url(../images/shareicon.png);
    float: left;
}

.news_dcon .left .bshare-custom .bshare-sinaminiblog {
    background-position: -41px center;
}

.news_dcon .left .bshare-custom .bshare-qzone {
    background-position: -84px center;
}

.news_dcon .left .bshare-custom .bshare-qqim {
    background-position: -125px center;
}

.news_dcon .left .info p {
    font-size: 14px;
    color: #767a87;
    margin-top: 20px;
    word-break: break-all;
}

.news_dcon .left .info p strong {
    display: inline-block !important;
}

.news_dcon .left .a_btn {
    margin-top: 70px;
    font-size: 0;
    text-align: right;
}

.news_dcon .left .a_btn a {
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-color: #dfad57;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .8s;
}

.news_dcon .left .a_btn .prev {
    background-image: url(../images/prev_on.png);
}

.news_dcon .left .a_btn .next {
    background-image: url(../images/next_on.png);
}

.news_dcon .left .a_btn a:hover {
    background-color: #c30d23;
}

.news_dcon .left .a_btn .prev:hover {
    background-image: url(../images/prev_on.png);
}

.news_dcon .left .a_btn .next:hover {
    background-image: url(../images/next_on.png);
}

.news_dcon .right {
    float: right;
    width: 340px;
    background: #f8f3ed;
    padding: 30px;
}

.news_dcon .right .tit {
    padding-bottom: 20px;
    border-bottom: 2px solid #efefef;
}

.news_dcon .right .tit h3 {
    font-size: 20px;
    color: #5e5349;
    font-family: 'Rubik';
    text-transform: uppercase;
}

.news_dcon .right .tit p {
    font-size: 16px;
    color: #5e5349;
    margin-top: 5px;
}

.news_dcon .right li {
    margin-top: 20px;
}

.news_dcon .right li .deta {
    font-size: 20px;
    color: #c30d23;
    font-family: 'Rubik';
}

.news_dcon .right li h3 {
    font-size: 16px;
    color: #68605f;
    margin-top: 5px;
}

@keyframes imgrotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(120deg);
    }
}

@-webkit-keyframes imgrotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(120deg);
    }
}

.imgrotate {
    -webkit-animation-name: imgrotate;
    animation-name: imgrotate
}

.news_dcon .right .btn {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 40px;
    font-size: 14px;
    color: #685f57;
    line-height: 40px;
    text-align: center;
    border: 1px solid #cdc6c0;
    margin-top: 20px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.news_dcon .right .btn:hover {
    border-color: #c30d23;
    color: #c30d23;
}

.news_con4 .party_top .btn {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.news_con4 .party_top .btn:after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/icon1.png) no-repeat center;
    border-radius: 50%;
    transform-origin: center;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.news_con4 .party_top .btn:hover:after {
    transform: rotate(120deg);
}

.news_con4 .ul_list {
    margin-left: -30px;
    font-size: 0;
    text-align: left;
    margin-left: -30px;
}

.news_con4 .ul_list li {
    display: inline-block;
    width: 380px;
    height: 330px;
    overflow: hidden;
    margin: 40px 0 0 30px;
    cursor: pointer;
}

.news_con4 .ul_list li .img {
    width: 380px;
    height: 240px;
    overflow: hidden;
}

.news_con4 .ul_list li .img img {
    width: 100%;
    height: 100%;
    transition: all .4s;
}

.news_con4 .ul_list li .text {
    height: 90px;
    padding: 0 30px 0 30px;
    background: #f8f3ed;
}

.news_con4 .ul_list li .txt {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.news_con4 .ul_list .text h3 {
    text-align: center;
    position: absolute;
    font-size: 18px;
    width: 100%;
    color: #685f57;
    left: 50%;
    top: 50%;
    transition: all .7s;
    transform: translate(-50%, -50%);
}

.news_con4 .ul_list .text .btn {
    position: absolute;
    right: -60px;
    top: 15px;
    width: 60px;
    height: 60px;
    background: #c30d23;
    overflow: hidden;
    transition: all .6s;
}

.news_con4 .ul_list .btn .btn_img {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/icon1.png) no-repeat center;
    border-radius: 50%;
    overflow: hidden;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.news_con4 .ul_list .btn img {
    display: block;
    margin: 0 auto;
    margin-top: 5px;
}

.news_con4 .ul_list li:hover .img img {
    transform: scale(1.1);
}

.news_con4 .ul_list li:hover .text h3 {
    position: absolute;
    left: 47%;
}

.news_con4 .ul_list li:hover .text .btn {
    right: 0px;
}

.news_con4 .ul_list .btn:hover .btn_img {
    transform: rotate(120deg);
    -webkit-transform: rotate(120deg);
}

about5 {
    background: #f8f3ed;
}

.about5 .ipg1 {
    padding-top: 40px;
}

.about5 .ipg1 .tit {
    text-align: center;
    font-size: 20px;
    color: #c30d23;
    margin-bottom: 45px;
    font-weight: bold;
}

.about5 .ipg1 li {
    float: left;
    width: 290px;
    margin-right: 13px;
}

.about5 .ipg1 ul {
    width: 1213px;
}

.about5 .ipg1 li .img {
    width: 290px;
    height: 185px;
    overflow: hidden;
}

.about5 .ipg1 li .font {
    width: 290px;
    text-align: center;
    margin-top: 25px;
}

.about5 .ipg1 li .font h6 {
    font-size: 26px;
    color: #c30d23;
    font-weight: bold;
}

.about5 .ipg1 li .font p {
    font-size: 16px;
    color: #6d5647;
    text-align: center;
    margin-top: 8px;
}

.bsBox,
.bsBox * {
    box-sizing: content-box;
}

.mySelect2 .drapList ul::-webkit-scrollbar {
    display: none
}

#footer .mySelect2 .drapList {
    top: -185px;
}


/* é™æ€æ‹‰å‡ºæ¥çš„css */

.contact2data .section {
    padding-top: 70px;
}

.contact2 .section {
    position: relative;
    background-color: #f8f3ed;
}

.left-on {
    width: 1200px;
    margin: 0 auto 50px auto;
    float: none !important;
}

hgroup {
    position: relative;
}

hgroup .en {
    font-size: 28px;
    color: #000;
    font-family: 'Rubik';
    text-transform: uppercase;
    letter-spacing: -2px;
}

hgroup .cn {
    font-size: 18px;
    color: #000;
}

.contact2 .section .w1200 {
    position: relative;
    z-index: 2;
}

.contact2data .posList {
    clear: both;
}

.contact2 .posList dl {
    margin-bottom: 10px;
}

.contact2 .posList dt {
    position: relative;
    padding: 30px 40px;
    background-color: #fff;
    cursor: pointer;
}

.contact2data .posList dt {
    padding: 30px 0 50px 0;
}

.contact2 .posList dt .name {
    margin-bottom: 10px;
    font-size: 18px;
    color: #d2ac77;
}

.contact2data .posList dt .abt {
    float: left;
}

.contact2 .posList dt .abt {
    color: #808080;
    line-height: 22px;
    font-size: 0;
}

.contact2 .posList dt .abt span {
    display: inline-block;
    margin-right: 46px;
    font-size: 14px;
}

.contact2 .posList dt .abt img {
    margin-right: 5px;
}

.bshar {
    float: right;
}

.bshare-custom {
    font-size: 13px;
    line-height: 16px !important;
}

.bshare-custom .bshare-weixin {
    background: url(../images/qq3.png) no-repeat center !important;
    background-size: 30px 30px !important;
}

.bshare-custom .bshare-sinaminiblog {
    background: url(../images/qq2.png) no-repeat center !important;
    background-size: 30px 30px !important;
}

.bshare-custom .bshare-qzone {
    background: url(../images/qq1.png) no-repeat center !important;
    background-size: 30px 30px !important;
}

.bshare-custom .bshare-qqim {
    background: url(../images/qq.png) no-repeat center !important;
    background-size: 30px 30px !important;
}

.contact2data dd .item {
    margin-bottom: 30px;
}

.contact2data dd .tit {
    margin-bottom: 4px;
    font-size: 16px;
    color: #6d5647;
    line-height: 36px;
}

.dl.jt {
    width: 124px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    height: 309px !important;
    padding-left: 34px !important;
    margin-right: 186px;
}

.dl.jt a {
    width: 100%;
    height: 40px !important;
    line-height: 40px !important;
}

#header .navWrap .subNav .jt.dl .dd a:last-child:hover {
    color: rgba(255, 255, 255, .8);
}

.innovation .page_nav {
    margin-bottom: 0;
}

.about4 {
    background: #f8f3ed;
}

.about.about4 .con01 .top p {
    color: #262424;
}

.about4 .list {
    border: 1px solid #dbd6d1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.about4 .list .tit {
    float: left;
    height: 100%;
    width: 209px;
    color: #000000;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    box-sizing: border-box;
    background: #e7e2dd;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dbd6d1;
}

.about4 .list .tit2 {
    float: left;
}

.about4 .list .tit2 .biao {
    text-align: center;
    width: 289px;
    line-height: 1;
    border-right: 1px solid #dbd6d1;
    color: #666;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #dbd6d1;
}

.about4 .list .tit2 .biao:last-child {
    border-bottom: none;
}

.about4 .list .tit2 .biao em {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

.about4 .list .tit3 {
    float: left;
}

.about4 .list .tit3 .p.else {
    line-height: 110px;
    height: 109px;
}

.about4 .list .tit3 .p.else p {
    line-height: 87px;
    height: 109px;
}

.about4 .list .tit3 p {
    padding-left: 60px;
    /* height: 50px; */
    padding: 11px 0 11px 60px;
    line-height: 28px;
    width: 700px;
    font-size: 14px;
    color: #666666;
    border-bottom: 1px solid #dbd6d1;
}

.about4 .list .tit3 .p {
    border-bottom: 1px solid #dbd6d1;
}

.about4 .list .tit3 .p:last-child {
    border-bottom: none;
}

.about4 .list .tit3 p:last-child {
    border-bottom: none;
}
.cl-h{ background:#f8f3ed}
.bp-70{ padding-bottom:70px;}