﻿/* animated */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-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)
    }
}

@-webkit-keyframes scale_img {
    0%{
        -webkit-transform: scale(1) translateX(0px);
        transform: scale(1) translateX(0px);
    }
    50%{
        -webkit-transform: scale(1.1) translateX(30px);
        transform: scale(1.1) translateX(30px);
    }
    100% {
        -webkit-transform: scale(1.2) translateX(30px);
        transform: scale(1.2) translateX(30px);
    }
}
@keyframes scale_img {
    0%{
        -webkit-transform: scale(1) translateX(0px);
        transform: scale(1) translateX(0px);
    }
    50%{
        -webkit-transform: scale(1.1) translateX(30px);
        transform: scale(1.1) translateX(30px);
    }
    100% {
        -webkit-transform: scale(1.2) translateX(30px);
        transform: scale(1.2) translateX(30px);
    }
}

@-webkit-keyframes slideBg_fn {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}
@keyframes slideBg_fn {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@-webkit-keyframes slideBg_fny {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes slideBg_fny {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes h_ani {
    0% {
        clip: rect(0px, 0px, 1100px, 0px);
    }

    100% {
        clip: rect(0px, 2920px, 1100px, 0px);
    }
}
@keyframes h_ani {
    0% {
        clip: rect(0px, 0px, 1100px, 0px);
    }

    100% {
        clip: rect(0px, 2920px, 1100px, 0px);
    }
}

@-webkit-keyframes side-in-out {
    50% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: left;
        -webkit-transform-origin: left;
    }
    50.1% {
        transform-origin: right;
        -webkit-transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        transform-origin: right;
        -webkit-transform-origin: right;
    }
}
@keyframes side-in-out {
    50% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: left;
        -webkit-transform-origin: left;
    }
    50.1% {
        transform-origin: right;
        -webkit-transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        transform-origin: right;
        -webkit-transform-origin: right;
    }
}

@-webkit-keyframes side-in-outy {
    50% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: left;
        -webkit-transform-origin: left;
    }
    50.1% {
        transform-origin: right;
        -webkit-transform-origin: right;
    }
    100% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: right;
        -webkit-transform-origin: right;
    }
}
@keyframes side-in-outy {
    50% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: left;
        -webkit-transform-origin: left;
    }
    50.1% {
        transform-origin: right;
        -webkit-transform-origin: right;
    }
    100% {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        transform-origin: right;
        -webkit-transform-origin: right;
    }
}

@-webkit-keyframes con02 {
    0% {
        transform: translate(-392px,0px);
        -webkit-transform: translate(-392px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}
@keyframes con02 {
    0% {
        transform: translate(-392px,0px);
        -webkit-transform: translate(-392px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}

@-webkit-keyframes height {
    0% {
        min-height: 0;
    }
    100% {
        min-height: 630px;
    }
}
@keyframes height {
    0% {
        min-height: 0;
    }
    100% {
        min-height: 630px;
    }
}

@-webkit-keyframes height3 {
    0% {
        min-height: 0;
    }
    100% {
        min-height: 479px;
    }
}
@keyframes height3 {
    0% {
        min-height: 0;
    }
    100% {
        min-height: 479px;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0;
    }
    100% {
        max-width: 852px;
        width: 100%;
    }
}
@keyframes width {
    0% {
        width: 0;
    }
    100% {
        max-width: 852px;
        width: 100%;
    }
}

@-webkit-keyframes width02 {
    0% {
        width: 0;
    }
    100% {
        max-width: 1200px;
        width: 100%;
    }
}
@keyframes width02 {
    0% {
        width: 0;
    }
    100% {
        max-width: 1200px;
        width: 100%;
    }
}

@-webkit-keyframes con04 {
    0% {
        transform: translate(-406px,0px);
        -webkit-transform: translate(-406px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}
@keyframes con04 {
    0% {
        transform: translate(-406px,0px);
        -webkit-transform: translate(-406px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}

@-webkit-keyframes pageRight {
    0% {
        -webkit-transform:none;
        transform:none;
    }
    100% {
        -webkit-transform:translate(-30px,20px);
        transform:translate(-30px,20px);
    }
}
@keyframes pageRight {
    0% {
        -webkit-transform:none;
        transform:none;
    }
    100% {
        -webkit-transform:translate(-30px,20px);
        transform:translate(-30px,20px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes property_cooperation03 {
    0% {
        transform: translate(-278px,0px);
        -webkit-transform: translate(-278px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}
@keyframes property_cooperation03 {
    0% {
        transform: translate(-278px,0px);
        -webkit-transform: translate(-278px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}

@-webkit-keyframes circle {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
    100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        opacity: 0.5;
    }
}
@keyframes circle {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
    100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        opacity: 0.5;
    }
}

@-webkit-keyframes h_circle {
    0%{
        transform: translate(0,0) rotate(45deg);
        -webkit-transform: translate(0,0) rotate(45deg);
    }
    15%{
        transform: translate(403px,0) rotate(90deg);
        -webkit-transform: translate(403px,0) rotate(90deg);
    }
    50%{
        transform: translate(200px,-206px) rotate(135deg);
        -webkit-transform: translate(200px,-206px) rotate(135deg);
    }
    75%{
        transform: translate(0px,-206px) rotate(235deg);
        -webkit-transform: translate(0px,-206px) rotate(235deg);
    }
    100%{
        transform: translate(0px,0) rotate(360deg);
        -webkit-transform: translate(0px,0) rotate(360deg);
    }
}
@keyframes h_circle {
    0%{
        transform: translate(0,0) rotate(45deg);
        -webkit-transform: translate(0,0) rotate(45deg);
    }
    15%{
        transform: translate(403px,0) rotate(90deg);
        -webkit-transform: translate(403px,0) rotate(90deg);
    }
    50%{
        transform: translate(200px,-206px) rotate(135deg);
        -webkit-transform: translate(200px,-206px) rotate(135deg);
    }
    75%{
        transform: translate(0px,-206px) rotate(235deg);
        -webkit-transform: translate(0px,-206px) rotate(235deg);
    }
    100%{
        transform: translate(0px,0) rotate(360deg);
        -webkit-transform: translate(0px,0) rotate(360deg);
    }
}

@-webkit-keyframes h_circle02 {
    0%{
        transform: translate(0,0) rotate(45deg);
        -webkit-transform: translate(0,0) rotate(45deg);
    }
    15%{
        transform: translate(77px,280px) rotate(90deg);
        -webkit-transform: translate(77px,280px) rotate(90deg);
    }
    50%{
        transform: translate(-15px,95px) rotate(135deg);
        -webkit-transform: translate(-15px,95px) rotate(135deg);
    }
    75%{
        transform: translate(55px,50px) rotate(235deg);
        -webkit-transform: translate(55px,50px) rotate(235deg);
    }
    100%{
        transform: translate(0,0) rotate(360deg);
        -webkit-transform: translate(0,0) rotate(360deg);
    }
}
@keyframes h_circle02 {
    0%{
        transform: translate(0,0) rotate(45deg);
        -webkit-transform: translate(0,0) rotate(45deg);
    }
    15%{
        transform: translate(77px,280px) rotate(90deg);
        -webkit-transform: translate(77px,280px) rotate(90deg);
    }
    50%{
        transform: translate(-15px,95px) rotate(135deg);
        -webkit-transform: translate(-15px,95px) rotate(135deg);
    }
    75%{
        transform: translate(55px,50px) rotate(235deg);
        -webkit-transform: translate(55px,50px) rotate(235deg);
    }
    100%{
        transform: translate(0,0) rotate(360deg);
        -webkit-transform: translate(0,0) rotate(360deg);
    }
}

@-webkit-keyframes popBody {
    0% {
        transform: rotateX(90deg);
        -webkit-transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
    }
}
@keyframes popBody {
    0% {
        transform: rotateX(90deg);
        -webkit-transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
    }
}

@-webkit-keyframes slide-in-out {
    50% {
        transform: scaleX(1);
        transform-origin: right;
    }
    50.1% {
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}
@keyframes slide-in-out {
    50% {
        transform: scaleX(1);
        transform-origin: right;
    }
    50.1% {
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@-webkit-keyframes slide_on1 {
    0% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}
@keyframes slide_on1 {
    0% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes bigToLittle {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bigToLittle {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 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
}
.scale_img {
    -webkit-animation-name: scale_img;
    animation-name: scale_img;
}
.slideBg_fn {
    -webkit-animation-name: slideBg_fn;
    animation-name: slideBg_fn;
}
.slideBg_fny {
    -webkit-animation-name: slideBg_fny;
    animation-name: slideBg_fny;
}
.h_ani {
    -webkit-animation-name: h_ani;
    animation-name: h_ani;
}
.side-in-out {
    -webkit-animation-name: side-in-out;
    animation-name: side-in-out;
}
.side-in-outy {
    -webkit-animation-name: side-in-outy;
    animation-name: side-in-outy;
}
.con02 {
    -webkit-animation-name: con02;
    animation-name: con02;
}
.height {
    -webkit-animation-name: height;
    animation-name: height;
}
.height3 {
    -webkit-animation-name: height3;
    animation-name: height3;
}
.width {
    -webkit-animation-name: width;
    animation-name: width;
}
.width02 {
    -webkit-animation-name: width02;
    animation-name: width02;
}
.con04 {
    -webkit-animation-name: con04;
    animation-name: con04;
}
.property_cooperation03 {
    -webkit-animation-name: property_cooperation03;
    animation-name: property_cooperation03;
}
.circle {
    -webkit-animation-name: circle;
    animation-name: circle;
}
.h_circle {
    -webkit-animation-name: h_circle;
    animation-name: h_circle;
}
.popBody {
    -webkit-animation-name: popBody;
    animation-name: popBody;
}
.pageRight {
    -webkit-animation-name: pageRight;
    animation-name: pageRight;
}
.slide-in-out {
    -webkit-animation-name: slide-in-out;
    animation-name: slide-in-out;
}
.slide_on1 {
    -webkit-animation-name: slide_on1;
    animation-name: slide_on1;
}
.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
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}
.bigToLittle {
    -webkit-animation-name: bigToLittle;
    animation-name: bigToLittle
}
/* header */
#header {
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    margin: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.2);
    z-index: 9999;
    transition: all .4s;
    -webkit-transition: all .4s;
	display: flex;
	justify-content: space-between;
}
#header .logo {
    width: 205px;
    height: 48px;
    background: url(../png/logo.png) no-repeat;
    margin: 26px 0 0 60px;
}
#header .nav {
    margin-right: 80px;
    position:relative;
	display: flex;
}
#header .nav> ul {
    float: left;
}
#header .nav>ul li {
    float: left;
    height:89px;
    /* text-align: center; */
    position: relative;
}
#header .nav>ul li:before {
    content: '';
    width: 33px;
    height: 10px;
    background: url(../png/san.png) no-repeat;
    position: absolute;
    left: 50%;
    margin-left:-16.5px;
    bottom:-1px;
    opacity: 0;
    transition:all .3s;
}
#header .nav>ul li.l_on:before{opacity: .6;}
/*#header .nav>ul li:first-child:hover:before{opacity: 0;}*/
#header .nav>ul li a {
    padding: 0 10px;
    line-height: 89px;
    margin: 0 8px;
    color: #65625f;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
}
/*#header .nav>ul li a:hover{
	font-size: 18px;
}*/
#header .nav>ul .nav_er {
    width: 100%;
    opacity:1 !important;
    width: 1920px;
    /* max-width: 1920px; */
    position: absolute;
    top: 100%;
    left: 10px;
    background-color: rgba(28,65,143,.6);
    display: none;
}

#header .nav > ul .nav_er .div_dl {
    /* overflow: hidden; */
    /*width:1920px;*/
    float: left;
    position: relative;
    padding: 6px 12px;

}
#header .nav > ul .nav_er .div_dl a {
    font-weight: lighter;
    -webkit-transition: all .4s;
    transition: all .4s;
    float: left;
    color: #fff !important;
    line-height: 32px;
    padding: 0;
    margin: 0;
    margin-right: 30px;
    font-size: 14px;
}
#header .nav > ul .nav_er .div_dl a:hover {
    /* color: #0066ab; */
}
#header .nav>ul li a:hover,
#header .nav>ul li a.on,
#header.on .nav>ul li a.on,
#header.on .nav>ul li a:hover,
#header.ona .nav>ul li a:hover,
#header.on .nav>ul li.on a,
#header .nav>ul li.on a {
    color: #0066ab;
}
#header .nav>ul li.version>a {
    padding: 0 5px 5px;
    margin: 20px 0 0;
    line-height: 46px;
	width: 50px;
    border: 1px solid rgba(28,65,143,.2);
}
#header .nav>ul li.version em {
    position: relative;
    font-size: 12px;
    color: #0066ab;
    margin-left: -16px;
    top: 6px;
}
#header.on {
    background-color: transparent;
}
#header.on .nav>ul li a {
    color: #ffffff;
    color: rgba(255, 255, 255, .8);
}
#header .nav>ul li.version .nav_er a.hidelang {
    display: none;
}

.header_so{
	width: auto;
	position:absolute;
	display:none;
	z-index: 999;
    top: 30px;
    right: 780px;
}
.header_so input{width:240px;height:30px;line-height:30px;text-indent:10px;border:1px #a6acaa solid; font-size:14px;color:#696a6c; background: #fff; z-index: 99}

.search-box{
	display: flex;
}
.search-box .btns-search {
    width: 24px;
    height: 89px;
    background: url(../png/search_h.png) no-repeat center;
    cursor: pointer;
	margin-right: 20px;
	position: relative;
    z-index: 999;
}

/* banner */
.banner {
    width: 100% !important;
    height: 560px;
    position: relative;
}
.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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -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.ban_t1 {
    position: absolute;
    top: 32%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.banner .bd li .content .ban_t .txt1 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.banner .bd li .content .ban_t .txt1 h3 {
    font-size: 36px;
    color: #0066ab;
    line-height: 50px;
}
.banner .bd li .content .ban_t .txt1 p {
    font-size: 30px;
    color: #0066ab;
    line-height: 50px;
}
.banner .bd li .content .ban_t .txt2 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.banner .bd li .content .ban_t .txt3 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}
.banner .bd li .content .ban_t.ban_t1 .txt2 {
    margin-top: 28px;
}
.banner .bd li .content .ban_t.ban_t1 .txt3 {
    margin-top: 98px;
}
.banner .bd li .content .ban_t.slide-bar {
    width: 919px;
    height: 240px;
    position: absolute;
    right: -360px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 50px 0 0 142px;
}
.banner .bd li .content .ban_t.slide-bar:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../png/ban3_bg.png) no-repeat center left;
    transform: scaleX(0);
    transform-origin: right;
    animation-delay: .6s;
    animation: slide-in-out 2s cubic-bezier(0.75, 0, 0, 1) forwards;
    -webkit-animation: slide-in-out 2s cubic-bezier(0.75, 0, 0, 1) forwards;
}
.banner .bd li .content .ban_t.slide-bar .txt1 {
    margin-bottom: 25px;
}
.banner .hd {
    position: absolute;
    right: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.banner .hd ul li.on {
    background: url(../png/btn_on.png) no-repeat;
}
.banner .hd ul li {
    width: 30px;
    height: 30px;
    margin: 1px 0;
    overflow: hidden;
    color: transparent;
    background: url(../png/btn.png) no-repeat;
    transition: all .4s;
    cursor: pointer;
}
/* index */
#luxy{padding-bottom:264px;}
.idx_top {
    /* position: absolute;
    left: 0;
    bottom: -2px; */
    width: 100%;
    height: 90px;
    /* z-index: 2; */
    background-color: #fff;
    display: block !important;
}
.idx_top .content {
    position: relative;
    height: 100%;
}
.idx_top .idx_vr {
    position: absolute;
    right: -360px;
    top: 0;
    width: 720px;
    height: 90px;
    background-color: #0066ab;
    padding-left: 29px;
    overflow: hidden;
}
.idx_top .idx_vr h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
    line-height: 90px;
    /* padding-left: 100px;
    background: url(../images/index/ico28.png) no-repeat left center; */
}
.home_2-right { width: 100%; height: 90px; position: absolute; left: -100%;top: 0; background: #282b34; z-index: 100; }
.home_2-right a {
    padding-left: 22px;
    height: 90px;
    line-height: 90px;
    font-size: 14px;
    color: #fff;
    float: left;
    background: url(../png/ico33.png) no-repeat left center;
    margin-left: 32px;
    transition: all 400ms;
}
.home_2-right a:hover { color: #0066ab; background: url("../ico34.html") no-repeat left center; }

.idx_top .stock-con {
    min-width: 300px;
    display: flex;
	align-items: center;
	height: 90px;
	padding-left: 100px;
}
.idx_top .stock-con em {
    width: 31px;
    height: 18px;
    float: left;
    position: relative;
    top: 20px;
}
.idx_top .stock-con .up {
    background: url(../png/ico29.png) no-repeat center;
}
.idx_top .stock-con .down {
    background: url(../png/ico29_l.png) no-repeat center;
}
.idx_top .stock-con span {
    font-family: 'DINCond';
    font-size: 40px;
    float: left;
    width: 98px;
    text-align: center;
    line-height: 1;
}
.idx_top .stock-con .uptxt {
    color: #ff0000;
}
.idx_top .stock-con .downtxt {
    color: rgb(104, 185, 46);
}
.idx_top .stock-con .text {
    float: left;
    padding-top: 7px;
}
.idx_top .stock-con h3 {
    line-height: 1;
	font-size: 24px;
	color: #0066ab;
}
.idx_top .stock-con p {
    font-size: 13px;
    color: #a7a7a8;
}
.idx_top .home-nav {
    height: 90px;
    padding-left: 75px;
    background: url(../png/ico31.png) no-repeat left center;
    position: absolute;
    left: 390px;
    top: 0;
}
.idx_top .home-nav li {
    float: left;
    line-height: 90px;
    margin-right: 26px;
}
.idx_top .home-nav li a {
    font-size: 14px;
    color: #7e8085;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    position: relative;
}
.idx_top .home-nav li a:hover {
    color: #0066ab;
}
.idx_top .home-con {
    position: absolute;
    top: -220px;
    left: 420px;
    z-index: 800;
}
.idx_top .home-list {
    width: 420px;
    height: 220px;
    padding: 0px 40px;
    background: #0066ab;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
.idx_top .home-list h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    padding: 28px 0px 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 18px;
}
.idx_top .home-list hr {
    padding: 28px 0px 20px 0px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 18px;
}
.idx_top .home-list-left {
    width: 140px;
    float: left;
}
.idx_top .home-list h4 {
    /* font-size: 30px; */
    font-size: 22px;
    color: #fff;
    font-family: 'DINCond';
    letter-spacing: -1px;
    line-height: 36px;
    font-weight: lighter;
}
.idx_top .home-list-right {
    width: 200px;
    float: right;
}
.idx_top .home-list p {
    font-size: 14px;
    color: #ffffff;
    line-height: 24px;
}
.idx_top .home-list i {
    width: 14px;
    height: 10px;
    background: url(../png/ico32.png) no-repeat center center;
    position: absolute;
    bottom: -10px;
    display: block;
}
.idx_top .home-list i.home-list-i2 {
    left: 106px;
}
.idx_top .home-list i.home-list-i3 {
    left: 205px;
}
.idx_top .home-list i.home-list-i4 {
    left: 270px;
}
.idx_top .home-list i.home-list-i5 {
    left: 359px;
}
.idx_top .home-list i.home-list-i6 {
    left: 366px;
}
.index .title {
    position: relative;
}
.index .title h3.cn,
.division .title h3.cn {
    font-size: 26px;
    color: #282b34;
    line-height: 32px;
}
.index .title h3.en,
.division .title h3.en {
    font-family: 'Rajdhani';
    font-size: 52px;
    color: #282b34;
    opacity: .2;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -3px;
}
.division .title h3.en {
    line-height: 35px;
}
.index .index_2 {
    padding-bottom: 56px;
}
.index .index_2 .imgBox {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 440px;
}
.index .index_2 .imgBox .img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition-duration: .5s;
}
.index .index_2 .imgBox .img.on,
.index .index_2 .imgBox .img:first-child {
    opacity: 1;
}
.index .index_2 .pro_box {
    position: relative;
    margin: 0 auto;
    width: 1200px;
}
.index .index_2 .pro_box:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}
.index .index_2 .pro_box .pro {
    position: relative;
    z-index: 2;
    float: left;
    margin-left: 2px;
    width: 198px;
}
.index .index_2 .pro_box .pro:nth-child(5).on {
    z-index: 9;
}
.index .index_2 .pro_box .pro:nth-child(6).on {
    z-index: 10;
}
.index .index_2 .pro_box .pro:nth-child(5) .machine {
    /* position: relative; */
    /* left: -110px; */
}
.index .index_2 .pro_box .pro:first-child {
    margin-left: 0;
}
.index .index_2 .pro_box .pro:last-child {
    width: 200px;
}
.index .index_2 .pro_box .pro:last-child .cont {
    width: 289px;
}
.index .index_2 .pro_box .pro:last-child .des {
    margin-left: -320px;
    width: 520px;
}
.index .index_2 .pro_box .pro:nth-child(5) .des {
    /* margin-left: 0; */
}
.index .index_2 .pro_box .pro .name {
    position: relative;
    font-weight: bold;
    line-height: 60px;
    color: #4c4c4c;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition-duration: .3s;
}
.index .index_2 .pro_box .pro .name em {
    font-family: 'Rajdhani';
}
.index .index_2 .pro_box .pro .name span {
    transition-duration: .5s;
}
.index .index_2 .pro_box .pro .name:after {
    content: '';
    position: absolute;
    top: 57px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #b2b2b2;
    transition-duration: .3s;
}
.index .index_2 .pro_box .pro.on .name span {
    opacity: 0;
}
.index .index_2 .pro_box .pro.on .name:after {
    height: 9px;
    background-color: #0066ab;
}
.index .index_2 .pro_box .pro .des {
    position: relative;
    margin-top: 40px;
    width: 720px;
    /*opacity: 0;*/
	display: none;
    transform: translateY(30px);
    transition: .8s;
}
.index .index_2 .pro_box .pro.on .des{
	display: block
}
.index .index_2 .pro_box .pro .des:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -30px;
    width: 18px;
    height: 31px;
    background: url(../png/ico44.png);
}
.index .index_2 .pro_box .pro .des:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}
.index .index_2 .pro_box .pro .en {
    font-family: 'RAJDHANI-BOLD';
    font-size: 62px;
    line-height: 52px;
    color: #0066ab;
    opacity: .4;
    text-transform: uppercase;
    letter-spacing: -5px;
}
.index .index_2 .pro_box .pro .cn {
    color: #0066ab;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 14px;
}
.index .index_2 .pro_box .pro .slogan {
    line-height: 22px;
    font-size: 22px;
    color: #4c4c4c;
    white-space: nowrap;
}
.index .index_2 .pro_box .pro .slogan p {
    margin-top: 5px;
    font-size: 14px;
    color: #808080;
}
.index .index_2 .pro_box .pro .cont {
    float: left;
    width: 280px;
    position: relative;
    z-index: 9;
}
.index .index_2 .pro_box .pro .cont img {
    margin-top: 20px;
}
.index .index_2 .pro_box .pro .machine {
    float: left;
}
.index .index_2 .pro_box .pro.on .des {
    opacity: 1;
    transform: translateY(0);
}
.index .index_3 {
    height: 899px;
    background: url(../jpg/ico14.jpg) no-repeat center;
    padding-top: 80px;
}
.index .index_3 .title {
    text-align: center;
}
.index .index_3 .title h3.en {
    color: #fff;
    opacity: .1;
}
.index .index_3 .title h3.cn {
    color: #fff;
}
.index .index_3 .up {
    width: 100%;
    height: 424px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}
.index .index_3 .up .img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.index .index_3 .up .img img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.index .index_3 .up .cont {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 167px;
    background: url(../png/ico42.png) no-repeat center;
    color: #fff;
    padding: 94px 26px 0;
}
.index .index_3 .up .cont .date {
    font-family: 'Rajdhani';
    font-size: 24px;
}
.index .index_3 .up .cont .name {
    font-size: 18px;
}
.index .index_3 .up .cont02 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    width: 100%;
    height: 180px;
    background: #0066ab;
    color: #fff;
    padding: 30px 26px 0;
    -webkit-transition: top .4s ease-out;
    transition: top .4s ease-out;
}
.index .index_3 .up .cont02 .date {
    font-family: 'Rajdhani';
    font-size: 24px;
    float: left;
    width: 120px;
}
.index .index_3 .up .cont02 .box {
    float: left;
    width: 1025px;
}
.index .index_3 .up .cont02 .box .name {
    font-size: 18px;
}
.index .index_3 .up .cont02 .box .text {
    margin: 6px 0 15px;
}
.index .index_3 .up:hover .img img {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.index .index_3 .up:hover .cont {
    opacity: 0;
}
.index .index_3 .up:hover .cont02 {
    top: 244px;
}
.index .index_3 .news_side {
    position: relative;
    margin-top: 29px;
    margin-right: -20px;
}
.index .index_3 .news_side .bd {
    overflow: hidden;
    width: 1220px;
}
.index .index_3 .news_side .tempWrap {
    width: 1200px !important;
}
.index .index_3 .news_side .item {
    float: left;
    width: 388px;
    height: 214px;
    margin-right: 18px;
    position: relative;
    overflow: hidden;
}
.index .index_3 .news_side .item .img {
    width: 388px;
    height: 214px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.index .index_3 .news_side .item .img img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.index .index_3 .news_side .item .cont {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 166px;
    background: url(../png/ico43.png) no-repeat center;
    color: #fff;
    padding: 94px 26px 0;
}
.index .index_3 .news_side .item .cont .date {
    font-family: 'Rajdhani';
    font-size: 24px;
}
.index .index_3 .news_side .item .cont .name {
    font-size: 18px;
    max-width: 98%;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
}
.index .index_3 .news_side .item .cont02 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    width: 100%;
    height: 214px;
    background: #0066ab;
    color: #fff;
    padding: 30px 26px 0;
    -webkit-transition: top .4s ease-out;
    transition: top .4s ease-out;
}
.index .index_3 .news_side .item .cont02 .date {
    font-family: 'Rajdhani';
    font-size: 24px;
}
.index .index_3 .news_side .item .cont02 .name {
    font-size: 18px;
}
.index .index_3 .news_side .item .cont02 .text {
    margin: 6px 0 15px;
}
.index .index_3 .news_side .item:hover .img img {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.index .index_3 .news_side .item:hover .cont {
    opacity: 0;
}
.index .index_3 .news_side .item:hover .cont02 {
    top: 0;
}
.index .index_3 .news_side .btn {
    display: none;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    border: 4px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    background-image: url(../png/ico15.png);
    background-repeat: no-repeat;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}
.index .index_3 .news_side .h_prev {
    left: -105px;
    background-position: -6px -5px;
}
.index .index_3 .news_side .h_next {
    right: -105px;
    background-position: -73px -69px;
}
.index .index_3 .news_side .btn:hover {
    border: 4px solid #0066ab;
}
.index .index_3 .news_side .h_prev:hover {
    background-position: -77px -5px;
}
.index .index_3 .news_side .h_next:hover {
    background-position: -1px -69px;
}
.index .index_5 .title {
    text-align: center;
}
.index .index_5 .content {
    position: relative;
    padding: 95px 0 90px;
}
.index .index_5 .content > em {
    width: 1px;
    height: 100%;
    background-color: #ebebeb;
    position: absolute;
    left: 300px;
    top: 0;
    z-index: -1;
}
.index .index_5 .content > em.line02 {
    left: 600px;
}
.index .index_5 .content > em.line03 {
    left: 900px;
}
.index .index_5 .index_5side {
    position: relative;
    width: 100%;
    margin-top: 38px;
}
.index .index_5 .index_5side .bd {
    overflow: hidden;
    width: 1200px;
}
.index .index_5 .index_5side .tempWrap {
    /* width: 1200px !important; */
}
.index .index_5 .index_5side .item {
    float: left;
    width: 300px;
    height: 285px;
    position: relative;
    text-align: center;
}
.index .index_5 .index_5side .item .img {
    margin: auto;
    overflow: hidden;
}
.index .index_5 .index_5side .item .img img {
    width: 285px;
    height: 143px;
}
.index .index_5 .index_5side .item .text h3 {
    font-size: 20px;
    color: #282b34;
    margin: 12px 0 20px;
}
.index .index_5 .index_5side .item .text em {
    width: 160px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #0066ab;
    text-align: center;
    color: #0066ab;
    display: block;
    margin: auto;
    margin-top: 26px;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.index .index_5 .index_5side .item:hover .text em {
    background-color: #0066ab;
    color: #fff;
}
.index .index_5 .index_5side .btn {
    display: none;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    border: 4px solid #cecece;
    border-radius: 50%;
    background-image: url(../png/ico15_on.png);
    background-repeat: no-repeat;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}
.index .index_5 .index_5side .h_prev {
    left: -105px;
    background-position: -6px -5px;
}
.index .index_5 .index_5side .h_next {
    right: -105px;
    background-position: -73px -69px;
}
.index .index_5 .index_5side .btn:hover {
    border: 4px solid #0066ab;
}
.index .index_5 .index_5side .h_prev:hover {
    background-position: -77px -5px;
}
.index .index_5 .index_5side .h_next:hover {
    background-position: -1px -69px;
}
/* division */
.division .banner .divisionban_t1 {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.division .banner .divisionban_t1 .txt2 {
    /* width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #0066ab;
    color: #fff;
    margin-top: 40px; */
    margin-top: 44px;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.division .banner .img {
    width: 50%;
    height: 100%;
    background: url(../jpg/ico1-2.jpg) no-repeat center;
    background-size: cover;
    float: left;
}
.division .banner .video {
    width: 50%;
    height: 100%;
    float: left;
}
.banner  video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner .playState{position:absolute;bottom:0;left:0;width:50px;height:50px;border:1px solid;}
.division .banner .content {
    position: relative;
    height: 100%;
}
.division .banner .wenzi {
    position: absolute;
    right: 0;
    bottom: 16%;
    text-align: right;
}
.division .banner .wenzi h2 {
    position: relative;
    right: -22px;
}
.division .banner .wenzi h3 {
    margin-bottom: 32px;
}
.division .banner .wenzi p a {
    float: right;
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #0066ab;
    color: #0066ab;
    transition: all .4s;
    -webkit-transition: all .4s;
}
.division .banner .wenzi p a:hover {
    background-color: #0066ab;
    color: #fff;
}
.division .con02 {
    padding: 70px 0;
}
.division .con02 .side {
    position: relative;
    width: 100%;
    margin-top: 38px;
}
.division .con02 .side .bd {
    overflow: hidden;
    /* width: 1200px; */
    margin-right: -29px;
}
.division .con02 .side .tempWrap {
    /* width: 1200px !important; */
}
.division .con02 .side .item {
    float: left;
    width: 380px;
    margin-right: 29px;
}
.division .con02 .side .item .img {
    width: 380px;
    height: 214px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.division .con02 .side .item .img img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.division .con02 .side .item .find_img{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition:all .6s;
}
.division .con02 .side .item:hover .find_img{
    transform:scale(1.1);
}

.division .con02 .side .item .text {
    padding: 22px 0;
    line-height: 26px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}
.division .con02 .side .item .text:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background-color: #0066ab;
    -webkit-transition: top .4s ease-out;
    transition: top .4s ease-out;
}
.division .con02 .side .item .text .name {
    font-size: 18px;
    color: #4c4c4c;
    position: relative;
    max-width: 85%;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.division .con02 .side .item .text .date {
    font-family: 'TitilliumWeb';
    font-size: 18px;
    color: #0066ab;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.division .con02 .side .item:hover .text:before {
    top: 0;
}
.division .con02 .side .item:hover .text .name,
.division .con02 .side .item:hover .text .date {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
    color: #fff;
}
.division .con02 .side .item:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1)
}
.division .con02 .side .btn {
    display: none;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    margin-top: -28px;
    border: 4px solid #cecece;
    border-radius: 50%;
    background-image: url(../png/ico2-2.png);
    background-repeat: no-repeat;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}
.division .con02 .side .h_prev {
    left: -105px;
    background-position: -6px -5px;
}
.division .con02 .side .h_next {
    right: -105px;
    background-position: -73px -69px;
}
.division .con02 .side .btn:hover {
    border: 4px solid #0066ab;
}
.division .con02 .side .h_prev:hover {
    background-position: -77px -5px;
}
.division .con02 .side .h_next:hover {
    background-position: -1px -69px;
}
.division .con04 {
    background-color: #f2f2f2;
}
.division .con04 .content {
    padding: 0 0 66px;
    position: relative;
    height: 100%;
}
.division .con04 .float {
    width: 732px;
    height: 232px;
    background: url(../png/ico13.png) no-repeat center;
    position: absolute;
    bottom: 80px;
    left: -360px;
}
.division .con04 .up {
    width: 100%;
    padding-left: 27px;
    display: inline-block;
    position: relative;
}
.division .con04 .up .fl {
    padding-top: 187px;
    position: relative;
}
.division .con04 .up .fl:before {
    content: '';
    width: 52px;
    height: 54px;
    background: url(../png/ico8.png) no-repeat center;
    position: absolute;
    left: -65px;
    top: 178px;
}
.division .con04 .up .fr {
    width: 790px;
}
.division .con04 .up .fr .list {
    display: inline-block;
}
.division .con04 .up .fr .list .mySelect {
    width: 250px;
    float: left;
}
.division .con04 .up .fr .list .mySelect + .mySelect {
    margin-left: 19px;
}
.division .con04 .up .fr .text {
    margin: 78px 0 42px;
}
.division .con04 .up .fr .text p {
    color: #808080;
    line-height: 26px;
}
.division .con04 .up .fr .list02 {
    min-height: 64px;
    /* background: url(../images/division/ico12.png) no-repeat center; */
}
.division .con04 .up .fr .list02 .li {
    padding-left: 60px;
    background: url(../png/ico9.png) no-repeat left 14px;
    float: left;
}
.division .con04 .up .fr .list02 .li.li02 {
    background: url(../png/ico10.png) no-repeat left 12px;
}
.division .con04 .up .fr .list02 .li.li03 {
    background: url(../png/ico11.png) no-repeat left 8px;
}
.division .con04 .up .fr .list02 .li h3 {
    font-family: 'Rajdhani';
    font-size: 36px;
    color: #0066ab;
    line-height: 40px;
}
.division .con04 .up .fr .list02 .li p {
    color: #808080;
}
.division .con04 .up .fr .list02 .li.li02 {
    margin-left: 92px;
}
.division .con04 .up .fr .list02 .li.li03 {
    margin-left: 0;
    float: right;
}
.division .con04 .mySelect .show {
    background-color: #f2f2f2;
}
.division .con05 {
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../jpg/ico15.jpg);
    background-size: cover;
    overflow: hidden;
}
.division .con05 .content {
    position: relative;
    height: 100%;
}
.division .con05 .green {
    position: absolute;
    top: 138px;
    right: 0;
    width: 360px;
    height: 262px;
    background-color: #0066ab;
    padding: 50px 0 0 28px;
}
.division .section h3.en {
    font-family: 'Rajdhani';
    font-size: 52px;
    color: #282b34;
    opacity: .2;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    margin-bottom: -5px;
}
.division .section h3.cn {
    font-size: 26px;
    line-height: 34px;
    color: #282b34;
}
.division .section h4 {
    font-size: 18px;
    line-height: 34px;
    color: #ffffff;
    margin: 14px 0 24px;
}
.division .section a {
    display: inline-block;
    font-size: 15px;
    color: #ffea00;
    padding-right: 18px;
    background: url(../png/ico6.png) no-repeat right center;
}
.division .con05 .section h3.cn {
    color: #fff;
}
.division .con05 .section h3.en {
    color: #fff;
    opacity: .3;
}
.division .con02 .section {
    text-align: center;
    margin-bottom: 38px;
}
.division .content3 {
    padding-top: 196px;
    overflow: hidden;
    padding-right: 18px;
    width: 100%;
    height: 535px;
    background: url(../png/ft_ban.png) no-repeat center;
}
.division .content3 .content {
    position: relative;
}
.division .content3 .rt {
    float: right;
}
.division .content3 .rt h3 {
    font-size: 22px;
    color: #ffffff;
    margin-top: 10px;
}
.division .content3 .rt a {
    display: block;
    width: 55px;
    height: 12px;
    background: url(../png/arrow.png) no-repeat center;
    margin-top: 40px;
}
.division .con06 .list {
    border: 1px solid #d9d9d9;
    padding: 42px 45px 42px 50px;
    margin: 80px 0;
    overflow: hidden;
    position: relative;
}
.division .con06 .list .img {
    float: left;
    margin-right: 30px;
    position: relative;
}
.division .con06 .list .img img {
    width: 220px;
    height: 331px;
}
.division .con06 .list .img:before {
    content: '';
    width: 289px;
    height: 41px;
    background: url(../png/ico35.png) no-repeat center;
    position: absolute;
    bottom: 0;
    left: -34px;
    z-index: -1;
}
.division .con06 .list .text {
    float: left;
    width: 850px;
    padding-top: 50px;
}
.division .con06 .list .text h4 {
    font-size: 14px;
    color: #4c4c4c;
}
.division .con06 .list .text h3 {
    font-size: 26px;
    color: #4c4c4c;
    line-height: 40px;
}
.division .con06 .list .text h3 em {
    font-family: 'Rajdhani';
}
.division .con06 .list .text p {
    font-size: 16px;
    color: #808080;
    line-height: 26px;
}
.division .con06 .list .text p em {
    width: 220px;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    padding-left: 28px;
    font-size: 16px;
    color: #808080;
    border: 1px solid #d9d9d9;
    display: block;
    position: relative;
    margin-top: 40px;
}
.division .con06 .list .text p em:before {
    content: '';
    width: 10px;
    height: 16px;
    background: url(../png/ico36.png) no-repeat center;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -8px;
}
.division .con06 .list .ico {
    font-family: 'Rajdhani';
    font-size: 260px;
    color: #f7f7f7;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 93px;
    z-index: -1;
    letter-spacing: -20px;
}
.division .con03 {
    background: url(../jpg/ico21.jpg) no-repeat center;
    height: 535px;
    padding-top: 124px;
}
.division .con03 .en {
    font-family: 'Rajdhani';
    font-size: 52px;
    line-height: 1;
}
.division .con03 .cn {
    font-size: 24px;
}
.division .con03 .name {
    margin-bottom: 30px;
}
.division .con03 .name,
.division .con03 .text {
    color: #fff;
}
.division .con03 .text h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
}
.division .con03 .text p {
    color: #fff;
    line-height: 26px;
}
.division .con03 .text p em {
    font-family: 'Rajdhani';
}
.division .con03 .text h2 {
    font-family: 'Rajdhani';
    font-size: 30px;
    background: url(../png/ico37.png) no-repeat left 0px;
    padding-left: 37px;
    line-height: 1;
    margin-top: 32px;
}









@media screen and (max-width: 1460px) {
    .index .index_5 .index_5side .btn,
    .division .con02 .side .btn {
        top: auto;
        bottom: -64px;
    }
    .index .index_5 .index_5side .h_prev,
    .division .con02 .side .h_prev {
        left: auto;
        right: 70px;
    }
    .index .index_5 .index_5side .h_next,
    .division .con02 .side .h_next {
        right: 0;
    }

}
@media screen and (max-width: 1366px) {

}
@media screen and (max-height: 760px) {
    .banner .bd li .content .ban_t.ban_t1 .txt3 {
        margin-top: 50px;
    }
}
@media screen and (max-height: 700px) {
    .banner .bd li .content .ban_t.ban_t1 {
        top: 26%;
    }
}
@media screen and (max-height: 660px) {
    .banner .bd li .content .ban_t.ban_t1 {
        top: 22%;
    }
}




/*2020611*/
@font-face {
    font-family: 'GILROY-MEDIUM-2';
    src: url('../gilroy-medium-2.html');
    src: url('../gilroy-medium-3.html')format('otf'),
    url('../gilroy-medium-2d41d.html#iefix') format('embedded-opentype'),
    url('../gilroy-medium-4.html') format('woff'),
    url('../gilroy-medium-5.html') format('truetype'),
    url('../gilroy-medium-6.html') format('svg');
    font-weight: normal;
    font-style: normal;
}
.banner .bd li .w1200{position:absolute; left:50%; top:0; width:1200px; margin-left: -600px; height:100%;}
.banner .bd li .ban_txt{position: absolute; top:37%; left:0; width:100%; margin-top:-60px;}
.banner .bd li .ban_txt .txt1{font-size: 60px; color:#0066ab; line-height: 70px; text-align: center; text-shadow:0 7px 9px rgba(0,0,0,.2); margin-bottom: 14px;}
.banner .bd li .ban_txt .txt2{font-size: 30px; color:#8fa5d5; line-height: 30px; text-align: center; font-family: "GILROY-MEDIUM-2"; -webkit-text-transform: uppercase; text-transform: uppercase;}

@media screen and (max-width: 1680px) {
    .banner .bd li .ban_txt .txt1{font-size: 50px; line-height: 60px;}
    .banner .bd li .ban_txt .txt2{font-size: 25px; line-height: 25px;}
}

@media screen and (max-width: 1440px) and (max-height: 800px) {
    .banner {
        margin-top: -100px;
    }
}

.banner video {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}
#header .nav>ul .nav_er.div_dl07 {
    margin-left: -197px;
}
#header .nav>ul .nav_er.div_dl09 {
    margin-left: -595px;
}
#header .nav>ul .nav_er.div_dl14 {
    margin-left: -242px;
}
#header .nav>ul li.version .nav_er {
    margin-left: -138px;
}

@media screen and (max-width: 1500px) {
    #header .nav>ul li a {
        padding: 0 10px;
        margin: 0 10px;
    }
	#header .nav>ul .nav_er.div_dl04 {
        margin-left: -604px;
    }
    #header .nav>ul .nav_er.div_dl07 {
        margin-left: -239px;
    }
    #header .nav>ul .nav_er.div_dl09 {
        margin-left: -604px;
    }
    #header .nav>ul .nav_er.div_dl14 {
        margin-left: -267px;
    }

}










/* 2020/8/3 */
.tab_detailed .box {
    display: none;
}
.about p {
    color: #808080;
    line-height: 26px;
}
.about_side {
    width: 100%;
    height: 460px;
    position: relative;
    background-color: #f4f5f6;
}
.about_side .bd {
    width: 100%;
    overflow: hidden;
}
.about_side .bd ul {
    width: 100% !important;
}
.about_side .bd li {
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.about_side .bd li.video_btn {
    cursor: pointer;
}
.about_side .bd li.video_btn:after {
    content: '';
    width: 48px;
    height: 48px;
    background: url(../png/ico23.png) no-repeat center;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    left: 50%;
    margin-left: -24px;
    z-index: 2;
}
.about_side .bd li .img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about_side .hd {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}
.about_side .hd li {
    line-height: 32px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 16px;
    color: #808080;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.about_side .hd li.video_on {
    padding: 0 20px 0 30px;
}
.about_side .hd li.video_on:before {
    content: '';
    width: 5px;
    height: 100%;
    background: url(../png/ico5.png) no-repeat center;
    position: absolute;
    left: 20px;
    top: 0;
}
.about_side .hd li.on {
    color: #0066ab;
}

.about .con01 {
    background-color: #f4f5f6;
    padding-top: 60px;
}
.about .con01 .up {
    overflow: hidden;
}
.about .con01 .title {
    float: left;
    width: 450px;
    padding-right: 50px;
}
.about .con01 .title .en {
    font-family: 'DINCond';
    font-size: 60px;
    color: #0066ab;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 14px;
}
.about .con01 .title .cn {
    font-size: 24px;
    color: #4d4d4d;
}
.about .con01 .text {
    width: 750px;
    float: right;
}
.about .con01 hr {
    width: 100%;
    height: 2px;
    border: none;
    background-color: #dedfe0;
    margin: 10px 0 34px;
}
.about .con01 .text p {
    margin-bottom: 74px;
}
.about .con01 .in {
    position: relative;
}
.about .con01 .in .tab_detailed {
    position: relative;
    background-color: #f4f5f6;
}
.about .con01 .in:before {
    content: '';
    width: 1107px;
    height: 480px;
    background-color: #0066ab;
    position: absolute;
    right: -360px;
    bottom: 0;
}
.about .con01 .in .img {
    width: 100%;
    height: 460px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about .con01 .tab {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}
.about .con01 .tab a {
    line-height: 32px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 16px;
    color: #808080;
    position: relative;
    display: inline-block;
}
.about .con01 .tab a.video_on {
    padding: 0 20px 0 30px;
}
.about .con01 .tab a.video_on:before {
    content: '';
    width: 5px;
    height: 100%;
    background: url(../png/ico5.png) no-repeat center;
    position: absolute;
    left: 20px;
    top: 0;
}
.about .con01 .tab a.on {
    color: #0066ab;
}
.about .con01 .down {
    position: relative;
    min-height: 278px;
}
.about .con01 .text02 {
    float: left;
    width: 450px;
    padding-right: 40px;
}
.about .con01 .text02:before {
    content: '';
    width: 813px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: -360px;
    bottom: 0;
}
.about .con01 .text02 > div,
.about .con01 .text02 > h3,
.about .con01 .text02 > p {
    position: relative;
}
.about .con01 .text02 .name {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 26px;
    margin: 46px 0 20px;
}
.about .con01 .text02 .height {
    height: 130px;
    overflow: auto;
    padding-right: 10px;
}
.about .con01 .list {
    width: 750px;
    float: right;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 92px 0 52px 40px;
}
.about .con01 .list:after {
    content: '';
    width: 710px;
    height: 2px;
    background-color: rgba(255, 255, 255, .3);
    position: absolute;
    right: 0;
    bottom: 60px;
}
.about .con01 .list:before {
    content: '';
    width: 1107px;
    height: 100%;
    background-color: #0066ab;
    position: absolute;
    right: -360px;
    bottom: 0;
}
.about .con01 .list .li {
    padding-left: 65px;
    display: inline-block;
    position: relative;
    background-position: left 14px;
    background-repeat: no-repeat;
}
.about .con01 .list .li:before {
    content: '';
    width: 15px;
    height: 16px;
    background: url(../png/ico6-2.png) no-repeat center;
    position: absolute;
    left: -50px;
    bottom: 10px;
}
.about .con01 .list .li h3 {
    font-family: 'DINCond';
    font-size: 47px;
    color: #ffea00;
    line-height: 1;
}
.about .con01 .list .li h3 sup {
    font-size: 20px;
    margin-left: 5px;
}
.about .con01 .list .li p {
    font-size: 16px;
    color: #fff;
}
.about .con02 {
    background-color: #f4f5f6;
    padding: 30px 0 70px;
}
.about .con02 .up {
    background-color: #fff;
    padding: 12px 50px;
    margin: 0 -50px;
    overflow: hidden;
}
.about .con02 .up .list {
    float: left;
    width: 450px;
    padding-right: 50px;
}
.about .con02 .up .list .li {
    padding: 30px 0;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}
.about .con02 .up .list .li + .li {
    border-top: 1px solid #e5e5e5;
}
.about .con02 .up .list .li h3 {
    font-family: 'DINCond';
    font-size: 47px;
    color: #0066ab;
    line-height: 1;
}
.about .con02 .up .list .li p {
    font-size: 16px;
    color: #808080;
}
.about .con02 .up .text {
    width: 710px;
    float: right;
    padding-top: 10px;
}
.about .con02 .up .text h3 {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 26px;
    margin: 20px 0 4px;
}
.about .con02 .up .text h5 {
    font-size: 14px;
    color: #0066ab;
    line-height: 26px;
}
.about .con02 .up .text p em {
    color: #f63131;
}
.about .con02 .down {
    padding: 0 50px 0 0;
    margin: 66px -50px 0;
    overflow: hidden;
}
.about .con02 .map {
    float: left;
    width: 501px;
}
.about .con02 .down .fr {
    width: 710px;
    float: right;
}
.about .con02 .down .text02 h3 {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 26px;
    margin-bottom: 4px;
}
.about .con02 .down .list02 {
    width: 100%;
    overflow: hidden;
    border: 1px solid #d2d3d4;
    position: relative;
    padding: 26px 45px;
    margin-top: 32px;
}
.about .con02 .down .list02:before {
    content: '';
    width: 1px;
    height: 56px;
    background-color: #d2d3d4;
    position: absolute;
    left: 50%;
    margin-left: .5px;
    top: 50%;
    margin-top: -28px;
}
.about .con02 .down .list02 .li {
    width: 245px;
    float: left;
    padding-left: 65px;
    background-position: left center;
    background-repeat: no-repeat;
}
.about .con02 .down .list02 .li + .li {
    float: right;
}
.about .con02 .down .list02 .li h3 {
    font-family: 'DINCond';
    font-size: 47px;
    color: #0066ab;
    line-height: 1;
}
.about .con02 .down .list02 .li p {
    font-size: 16px;
    color: #808080;
}
.about .con03 {
    padding: 58px 0 98px;
}
.about .con03 .text {
    width: 63%;
}
.about .con03 .text h3 {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 26px;
    margin-bottom: 4px;
}
.about .con03 .list {
    margin-top: 30px;
    margin-right: -40px;
    overflow: hidden;
}
.about .con03 .list .li {
    width: 580px;
    float: left;
    margin-right: 40px;
    background-color: #f1f3f4;
}
.about .con03 .list .li .about_side {
    width: 100%;
    height: 317px;
}
.about .con03 .list .li .about_side .bd li:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../png/ico15-2.png) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.about .con03 .list .li .about_side .hd {
    left: auto;
    right: 36px;
}
.about .con03 .list .li .detailed {
    padding: 35px 35px 40px;
}
.about .con03 .list .li .detailed .name {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 26px;
    margin-bottom: 6px;
}
.about .con03 .list .li .detailed .height {
    color: #808080;
    line-height: 26px;
    min-height: 70px;
}
.about .con03 .list .li .detailed hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #d7d8d9;
    margin-bottom: 28px;
}
.about .con03 .list .li .detailed a {
    line-height: 52px;
    padding: 0 78px 0 20px;
    border: 1px solid #d7d8d9;
    font-size: 16px;
    color: #808080;
    position: relative;
    display: inline-block;
}
.about .con03 .list .li .detailed a:before {
    content: '';
    width: 9px;
    height: 100%;
    background: url(../png/ico16.png) no-repeat center;
    position: absolute;
    right: 20px;
    top: 0;
}
/* about4 */
.about4 p {
    color: #808080;
    line-height: 24px;
    margin-bottom: 10px;
}
.about4 .gray {
    background-color: #f4f5f6;
}
.about4_side {
    width: 500px;
    height: 343px;
    position: relative;
}
.about4_side:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../png/ico19.png) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.about4_side .bd {
    width: 100%;
    overflow: hidden;
}
.about4_side .bd ul {
    width: 100% !important;
}
.about4_side .bd li {
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.about4_side .bd li .img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about4_side .hd {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 99;
}
.about4_side .hd ul li.on {
    background-color: #0066ab;
    opacity: 1;
}
.about4_side .hd ul li {
    float: left;
    width: 9px;
    height: 9px;
    overflow: hidden;
    background-color: #fff;
    opacity: .8;
    border-radius: 50%;
    margin-left: 10px;
    transition: all .4s;
    cursor: pointer;
}
.about4 .detailed .name {
    font-size: 24px;
    color: #4c4c4c;
    line-height: 46px;
    margin-bottom: 6px;
}
.about4 .detailed .height h3 {
    font-size: 18px;
    color: #0066ab;
    line-height: 24px;
    margin: 20px 0 10px;
}
.about4 .con01 {
    overflow: hidden;
    padding: 78px 0 37px;
}
.about4 .con01 .detailed {
    width: 650px;
    float: left;
}
.about4 .con01 .about4_side {
    float: right;
}
.about4 .con01 .detailed .img {
    margin-top: 30px;
}

.about4 .con02 {
    overflow: hidden;
    padding: 60px 0 70px;
}
.about4 .con02 .detailed {
    width: 660px;
    float: right;
}
.about4 .con02 .detailed .en {
    font-size: 97px;
    color: #4c4c4c;
    line-height: 1;
    opacity: .08;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-top: 20px;
}
.about4 .con02 .about4_side {
    float: left;
}

.about4 .con03 {
    overflow: hidden;
    padding: 60px 0;
}
.about4 .con03 .detailed {
    width: 650px;
    float: left;
}
.about4 .con03 .detailed .en {
    font-size: 201px;
    color: #4c4c4c;
    line-height: 1;
    opacity: .08;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-top: 20px;
}
.about4 .con03 .about4_side {
    float: right;
}
.about4 .con03 .detailed .img {
    margin-top: 30px;
}

.about4 .con04 {
    overflow: hidden;
    padding: 60px 0 70px;
}
.about4 .con04 .detailed {
    width: 660px;
    float: right;
}
.about4 .con04 .detailed .en {
    font-size: 64px;
    color: #4c4c4c;
    line-height: 1;
    opacity: .08;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin-top: 20px;
}
.about4 .con04 .about4_side {
    float: left;
}
/* 视频 */
.pop.video_pop .popBody {
    padding: 0;
    background: none;
    text-align: center;
}
.video_pop video {
    height: 500px;
    object-fit: cover;
}






.ywcms{ display: none}

/*底部*/
#foot {
	width: 100%;
	margin: 0 auto;
	
    position: absolute;
    bottom: 0;
    transition: all .6s;
}
#footer {
	width: 100%;
	margin: 0 auto;
	background: #282828;
	padding: 30px 0;
	overflow: hidden;
}
.footer {
	width: 1200px;
	margin: 0 auto;
	padding-top: 10px
}
.footer_item {
	width: 240px;
	/*padding: 0 0 0 25px;*/
	float: left;
	min-height: 200px;
}
.footer_item h1 {
	width: 100%;
	float: left;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	font-weight: normal;
	padding-bottom: 10px
}
.footer_item ul {
	width: 100%;
	float: left
}
.footer_item li {
	width: 100%;
	float: left;
	color: #d3d3d3;
	line-height: 24px;
	font-size: 14px
}
.footer_item li a {
	color: #d3d3d3
}
.footer_item li a:hover {
	color: #0066ab
}
.footer_item li.code img{
	width: 120px;
	height: 120px;
	margin: 10px 0;
}
.footer_code {
	width: 720px;
	float: left
}
.code_item{
	width:240px;
	margin-top: 50px;
	float: right;
}
.code_item ul{
	width:100%;
	float: left;
}
.code_item li{
	width:100px;
	float: left;
}
.code_item li:last-child{
	margin-left: 40px;
}
.code_item li img{
	width:100px;
	height: 100px;
}
.code_item li p{
	float: left;
	width:100%;
	line-height: 24px;
	color: #d3d3d3;
	font-size: 12px;
	text-align: center;
}
.footer_text{
	width:350px;
	float: left;
}
.footer_text h1{
	width: 100%;
	float: left;
	color:#fff;
	font-size: 16px;
	line-height: 30px;
    padding-bottom: 10px;
	padding-left: 20px;
	font-weight: normal;
}
.footer_text ul{
	width:100%;
	float: left;
	padding-left: 20px;
}
.footer_text li{
	width:100%;
	float: left;
	line-height: 24px;
	color: #ababab;
	font-size: 14px;
	margin-bottom: 10px;
}
.footer_text li.tels{
	background:url(../png/footer_icon1.png) no-repeat;
	padding-left: 30px;
}
.footer_text li.fax{
	background:url(../png/footer_icon2.png) no-repeat;
	padding-left: 30px;
}
.footer_text li.email{
	background:url(../png/footer_icon3.png) no-repeat;
	padding-left: 30px;
}
.footer_text li.url{
	background:url(../png/footer_icon4.png) no-repeat;
	padding-left: 30px;
}
.footer_text li.add{
	background:url(../png/footer_icon5.png) no-repeat;
	padding-left: 30px;
}
.footer_text li.phone{
	background:url(../png/footer_icon6.png) no-repeat;
	padding-left: 30px;
}

#footer_copyright{ width:100%; background: #1e1e1e; padding: 10px 0px; margin: 0px auto; overflow: hidden;}
.footer_copyright,.footer_pic{ width: 1200px; margin: 0px auto; overflow: hidden;}
.footer_copyright p{ color: #fff; font-size: 14px; line-height: 24px;}
.footer_pic{ text-align:center;}
.footer_copyright p a{
	color: #fff;
	display: inline-block
}