/*public*/
/* Public */
@charset "utf-8";html,body,div,p,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,input,select,button,textarea,iframe,table,th,td {
    margin: 0;
    padding: 0;
}

img {
    border: 0 none;
    vertical-align: top;
}

ul,li,dl,dd,dt {
    list-style-type: none;
}

i,em,cite {
    font-style: normal;
}

body {
    -webkit-text-size-adjust: none;
    /* 谷歌不支持12px以下字号 */
    font-family: "微软雅黑";
}

a {
    text-decoration: none;
}

.clear,.cle {
    clear: both;
}

a,area {
    blr: expression(this.onFocus=this.blur())
}

/*  去掉IE下链接虚线框 */
a:focus {
    outline: none;
}

/* 去掉火狐下链接虚线框 */
.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.maxtime {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInTop {
    -webkit-animation-name: fadeInTop;
    animation-name: fadeInTop;
}

@-webkit-keyframes fadeInTopBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInTopBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInTopBig {
    -webkit-animation-name: fadeInTopBig;
    animation-name: fadeInTopBig;
}

@-webkit-keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInBottom {
    -webkit-animation-name: fadeInBottom;
    animation-name: fadeInBottom;
}

@-webkit-keyframes shake {
    0%,100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {
    0%,100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    opacity: 1;
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    opacity: 1;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

. {
    opacity: 1;
    -webkit-animation-name: tada;
    animation-name: tada
}

@keyframes fadeMoveLeft {
    from {
        margin-left: 3px;
    }

    to {
        margin-left: -6px;
    }
}

@-moz-keyframes fadeMoveLeft {
    from {
        margin-left: 3px;
    }

    to {
        margin-left: -6px;
    }
}

@-webkit-keyframes fadeMoveLeft {
    from {
        margin-left: 3px;
    }

    to {
        margin-left: -6px;
    }
}

.fadeMoveLeft {
    animation: fadeMoveLeft 0.5s infinite;
    -moz-animation: fadeMoveLeft 0.5s infinite;
    -webkit-animation: fadeMoveLeft 0.5s infinite;
}

@keyframes fadeMoveRight {
    from {
        margin-left: -3px;
    }

    to {
        margin-left: 6px;
    }
}

@-moz-keyframes fadeMoveRight {
    from {
        margin-left: -3px;
    }

    to {
        margin-left: 6px;
    }
}

@-webkit-keyframes fadeMoveRight {
    from {
        margin-left: -3px;
    }

    to {
        margin-left: 6px;
    }
}

.fadeMoveRight {
    animation: fadeMoveRight 0.5s infinite;
    -moz-animation: fadeMoveRight 0.5s infinite;
    -webkit-animation: fadeMoveRight 0.5s infinite;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-180deg);
        -ms-transform: perspective(400px) rotateY(-180deg);
        transform: perspective(400px) rotateY(-180deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(180deg);
        -ms-transform: perspective(400px) rotateY(180deg);
        transform: perspective(400px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.show {
    -webkit-animation-name: show;
    animation-name: show;
}

.revealOnScroll {
    opacity: 0;
}

/* end_Public */
/*public*/
/*ea_h*/
/* t_ver */
.t_ver {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    display: none;
}

.t_ver ul {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9999;
}

.t_ver li {
    float: left;
    margin: 0px 5px;
}

.t_ver a {
    display: block;
    font-size: 12px;
    color: #333;
    line-height: 30px;
}

.t_ver a:hover {
    color: #174596;
}

/* end_t_ver */
/* t_logo */
.t_logo {
    position: absolute;
    top: 15px;
    left: 0px;
}

.t_logo img {
    width: 131px;
    height: 44px;
    border: 0px;
}

/* end_t_logo */
/*top*/
.top {
    width: 100%;
    z-index: 99;
    position: relative;
    height: 74px;
    border-bottom: 1px solid #dddddd;
}

.t_t {
    position: relative;
    z-index: 100;
    width: 1200px;
    margin: 0 auto;
    height: 74px;
}

/*end_top*/
/*ea_h*/
/*ea_ba*/
/*news_banner*/
.news_banner {
    width: 100%;
    height: 457px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.news_banner_m {
    Z-INDEX: 0;
    width: 1920px;
    height: 457px;
    position: absolute;
    left: 50%;
    margin-left: -960px;
}

/*end_news_banner*/
/*ea_ba*/
/*ea_c*/
/*n_content_right_name_r*/
.n_content_right_name_r {
    word-spacing: -4px;
    width: 400px;
    height: 23px;
    color: #777;
    font-size: 12px;
    text-align: left;
    line-height: 23px;
    margin-bottom: 2px;
}

.n_r_wz1,.n_r_wz2,.n_r_wz3,.n_r_wz4,.n_r_wz5,.n_r_wz6 {
    color: #fff;
}

.n_r_wz3,.n_r_wz5 {
    letter-spacing: -1px;
}

.n_r_wz1 {
    display: none;
}

.n_r_wz2 a,.n_r_wz4 a,.n_r_wz5 a,.n_r_wz6 a {
    color: #fff;
}

.n_content_right_name_r ul li {
    float: left;
}

.n_content_right_name_r ul li img {
    margin-right: 12px;
    display: none;
}

/*end_n_content_right_name_r */
/*n_content_left_cnt */
.n_content_left_cnt {
    width: 60%;
    background: #fff;
    position: absolute;
    left: 53%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    margin-top: -120px;
    height: 37px;
    /*overflow:hidden;*/
}

.about_body .n_content_left_cnt {
    margin-top: 203px!important;
}

.honor_body .n_content_left_cnt {
    margin-top: 203px!important;
}

.recruitment_body .n_content_left_cnt {
    margin-top: 203px!important;
}

.n_content_left_cnt ul li ul li ul {
    border-bottom: none !important;
}

.left_typeUl_t3100 {
    height: 80px;
}

.left_menu1 {
    height: 30px;
    transition: all 0.6s ease 0s;
    margin: 0 auto;
    width: 84px;
    background: #fff;
    font-weight: bold;
    font-size: 12px;
    float: left;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #d2d2d2 !important;
    margin-right: 5px;
}

.left_menu1 a {
    width: 84px;
    line-height: 31px;
    color: #616161;
}

.left_menu1:hover a {
    display: inline-block;
    color: #fff;
}

.left_menu1:hover {
    background: #666;
}

.left_menu1 a.show {
    background: #666;
    color: #fff;
    padding: 8px;
    height: 14px;
    line-height: 14px;
    margin: 0 auto;
    width: 68px;
    font-weight: bold;
    font-size: 12px;
    float: left;
    text-align: center;
    border-radius: 20px;
    margin-right: 5px;
}

/*.left_menu1_2 {margin:0 auto;width:193px;background:#FFFFFF;font-weight:bold;font-size:12px;font-weight:bold;margin-bottom:6px;}
.left_menu1_2 a {width:100px;margin:0px auto 6px auto;border-bottom:1px solid #EBEBEB;font-weight:bold;font-size:13px;font-weight:bold;display:inline-block;padding-left:68px;line-height:30px;color:#d40000;background:url(../images/icpsp1_n_left_menujt.png) 50px center no-repeat #fff;text-decoration:none;}
.left_menu1_2 a:hover {}
.left_menu1_2:hover {background-color:#292929;}
*/
.left_menu1_2 {
    transition: all 0.6s ease 0s;
    margin: 0 auto;
    width: 84px;
    height: 31px;
    border-radius: 20px;
    background: #fff;
    font-weight: bold;
    font-size: 12px;
    float: left;
    text-align: center;
    border: 1px solid #d2d2d2;
    margin-right: 5px;
}

.left_menu1_2 a {
    width: 84px;
    line-height: 31px;
    display: inline-block;
    color: #fff;
    background: #666;
    border-radius: 20px;
}

.left_menu1_2:hover a {
}

.left_menu1_2:hover {
}

.left_menu1_cur {
    margin: 0 auto;
    width: 84px;
    background: #666;
    font-weight: bold;
    font-size: 12px;
    float: left;
    text-align: center;
    border: 1px solid #666;
    margin-right: 5px;
    line-height: 31px;
    height: 31px;
    border-radius: 20px;
}

.left_menu1_cur a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.left_menu1_cur a:hover {
}

.left_menu2 {
    width: auto;
    float: left;
    margin-right: 10px;
}

.left_menu2 a {
    width: auto;
    padding: 0 10px;
    color: #fff;
    background: #666;
    font-weight: normal;
    border-radius: 20px;
}

.left_menu2 a:hover {
    color: #fff;
    text-decoration: underline;
}

/*.left_menu2_2 {width:193px;}
.left_menu2_2 a {text-indent:10px;background:none !important;color:#C00;}
.left_menu2_2 a:hover {color:#000;background:none !important;color:#333;}
.left_menu2_cur {width:193px;}
.left_menu2_cur a {text-indent:10px;color:#C00;background:none !important;}
.left_menu2_cur a:hover {color:#000;background:none !important;}
*/
.n_content_left_cnt ul ul ul .left_menu2_cur a {
    color: #fff;
    text-decoration: underline;
    font-weight: normal;
    width: auto;
    float: left;
    padding: 0 10px;
    background: #666;
    margin-right: 10px;
}

.left_menu3 {
    width: 193px;
}

.left_menu3 a {
    color: #000;
    height: 20px;
    text-indent: 20px;
    background: none !important;
    font-weight: normal;
    border: none !important;
}

.left_menu3 a:hover {
    color: #F00;
    height: 20px;
    background: none !important;
    font-weight: normal;
}

.left_menu3_2 {
    width: 193px;
}

.left_menu3_2 a {
    color: #C00;
    height: 20px;
    text-indent: 20px;
    background: none !important;
    font-weight: normal;
    border: none !important;
}

.left_menu3_2 a:hover {
    color: #F00;
    height: 20px;
    background: none !important;
    font-weight: normal;
}

.left_menu3_cur {
    width: 193px;
}

.left_menu3_cur a {
    color: #C00;
    height: 20px;
    text-indent: 20px;
    background: none !important;
    font-weight: normal;
    border: none !important;
}

.left_menu3_cur a:hover {
    color: #F00;
    background: none !important;
    font-weight: normal;
}

.n_content_left_cnt ul ul ul {
    width: 400px;
    overflow: hidden;
    padding-top: 20px;
}

#left_typeUl_t100>li>ul {
    display: none;
}

#left_typeUl_t100>li:hover >ul {
    display: block;
}

/*end_n_content_left_cnt */
/*nnews_lb*/
.nnews_lb_2 {
    color: #666666;
    text-align: center;
    display: block;
    font-size: 12px;
    margin-top: 7px;
    margin-bottom: 100px;
    width: 217px;
    margin-left: 2px;
}

.nnews_lb_1 {
    margin: 0 auto;
    display: block;
    padding-top: 74px;
    height: 105px;
    width: 220px;
    margin-bottom: 155px;
}

.nnews_lb_1_1 {
    margin: 0 auto;
    display: block;
    width: 220px;
    height: 77px;
    line-height: 75px;
    font-size: 30px;
    text-align: center;
}

.nnews_lb {
    width: 1200px;
    margin: 0px auto;
    background: url(../images/cgage1mfjz6ayqitaab5ka95pt4495.png)no-repeat;
    overflow: hidden;
    box-shadow: 0px 7px 19px 0px #ededed;
}

.nnews_lb_m {
    width: 958px;
    height: 160px;
    position: relative;
    border-bottom: 1px solid #f6f6f6;
    margin-top: 10px;
    margin: 0 auto;
    margin-bottom: 29px;
}

.nnews_lb_m:nth-of-type(1) {
    margin-top: 112px;
}

.nnews_lb_m:hover .nnews_lb_title {
    margin-left: 15px;
}

.nnews_lb_m:hover .nnews_lb_title a {
    color: #333333;
}

.nnews_lb_m:hover .nnews_lb_cnt {
    margin-left: 15px;
}

.nnews_lb_m:hover .nnews_lb_date {
    background: url(../images/jiantou.png)no-repeat 49px 49px;
    color: #333333;
}

.nnews_lb_img {
    position: absolute;
    left: 0;
    top: 0;
}

.nnews_lb_img img {
    width: 200px;
    height: 130px;
    border: 0px;
}

.nnews_lb_title {
    transition: all 0.6s ease 0s;
    position: absolute;
    left: 234px;
    top: 16px;
    width: 500px;
    height: 20px;
    white-space: nowrap;
    font-size: 16px;
    text-overflow: ellipsis;
    /*溢出省略号，支持ie、safari（webkit）*/
    -o-text-overflow: ellipsis;
    /*溢出省略号，支持opera*/
    overflow: hidden;
    /*溢出隐藏*/
    -moz-binding: url('ellipsis.xml#ellipsis');
    /*溢出省略号，支持firefox*/
}

.nnews_lb_title a {
    color: #575757;
    text-decoration: none;
    /* font-weight:bold;*/
}

.nnews_lb_title a:hover {
    color: #333333;
}

.nnews_lb_cnt {
    transition: all 0.6s ease 0s;
    position: absolute;
    left: 235px;
    top: 54px;
    width: 500px;
    height: 72px;
    overflow: hidden;
    font-size: 14px;
    line-height: 28px;
    color: #999999;
}

.nnews_lb_date {
    background: url(../images/jiantou.png)no-repeat -49px 49px;
    transition: all 0.6s ease 0s;
    position: absolute;
    top: 14px;
    right: 68px;
    font-size: 12px;
    color: #CCC;
    width: 81px;
    height: 100px;
}

.nnews_lb_bq {
    float: left;
    color: #666;
    margin-right: 5px;
}

.nnews_lb_date1,.nnews_lb_date2,.nnews_lb_date3,.nnews_lb_date4,.nnews_lb_date5 {
    font-family: "微软雅黑";
    float: left;
    font-size: 29px;
}

.nnews_lb_bq1 {
    float: left;
    color: #666;
    margin-right: 5px;
}

.nnews_lb_date1,.nnews_lb_date2 {
    display: none;
}

.nnews_lb_click {
    position: absolute;
    top: 23px;
    left: 410px;
    font-size: 12px;
    color: #CCC;
    display: none;
}

.nnews_lb_xq {
    position: absolute;
    top: 120px;
    right: 0px;
    display: none;
}

.nnews_lb_xq a {
    color: #333;
    text-decoration: none;
}

.nnews_lb_xq a:hover {
    color: #C00;
    text-decoration: underline;
}

/*end_nnews_lb*/
/*fy*/
.case_body .fy {
    padding-top: 42px;
}

.news_body .fy {
    margin-bottom: 65px;
}

.fy {
    width: 100%;
    text-align: center;
    font-size: 0px;
    line-height: 36px;
    clear: both;
    padding-top: 78px;
    margin-bottom: 65px;
    padding-bottom: 26px;
}

.fy span,.fy span a {
    color: #999999;
    vertical-align: top;
    margin: 0px;
    font-size: 14px;
}

.fy span a:hover {
    background: #637d8e;
    transition: all 0.6s ease 0s;
    border: 1px solid #e9e9e9;
    color: #fff!important;
}

.fy span a {
    background: #fff;
}

.fy span {
    margin: 0px 2px;
}

.fy_1 {
    display: none;
}

.fy_2 {
    display: inline-block;
    font-size: 16px;
    width: 83px;
    height: 36px;
}

.fy_2 a {
    display: block;
    width: 83px;
    height: 36px;
    font-size: 14px;
    border: 1px solid #e9e9e9;
    line-height: 36px;
}

.fy .fy_2 a:hover {
}

.fy_3 {
    margin-left: 5px;
    margin-right: 5px;
    display: none;
}

.fy_4 {
    display: none;
}

.fy_5 {
    margin-left: 5px;
    margin-right: 5px;
    display: none;
}

.fy_6 {
    display: inline-block;
    font-size: 16px;
    width: 83px;
    height: 36px;
}

.fy_6 a {
    display: block;
    width: 83px;
    height: 36px;
    font-size: 14px;
    border: 1px solid #e9e9e9;
    line-height: 36px;
}

.fy .fy_6 a:hover {
}

.fy_7 {
    margin-left: 5px;
    margin-right: 5px;
    display: none;
}

.fy_8 {
    display: none;
}

.fy_9 {
    display: none;
}

.fy_out {
    display: inline-block;
    font-size: 16px;
    height: 36px;
}

.fy_out a {
    display: block;
    width: 37px;
    font-size: 14px;
    height: 36px;
    border: 1px solid #e9e9e9;
}

.fy_on {
    display: inline-block;
    font-size: 16px;
    width: 37px;
    height: 36px;
}

.fy .fy_on a,.fy .fy_out a:hover {
    display: block;
    background: #333;
    transition: all 0.6s ease 0s;
    border: 1px solid #333;
    color: #fff!important;
    width: 37px;
    height: 36px;
}

.case_body .fy .fy_on a,.case_body .fy .fy_out a:hover {
    display: block;
    background: #292929;
    transition: all 0.6s ease 0s;
    border: 1px solid #292929;
    color: #fff!important;
    width: 37px;
    height: 36px;
}

.case_body .fy span a:hover {
    background: #333;
    transition: all 0.6s ease 0s;
    border: 1px solid #333;
    color: #fff!important;
}

/*end_fy*/
/*n_main*/
.n_main {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    margin-top: -200px;
    z-index: 5;
    position: relative;
}

.n_content {
    width: 1200px;
    margin: 0 auto;
}

.prod_view_body .n_content {
    margin-top: 258px;
}

.case_body {
    overflow-x: hidden;
}

.case_view_body {
    overflow-x: hidden;
}

.prod_view_body .n_main {
    width: 100%;
    height: 100%;
    background: url(../images/bigpro.png)no-repeat;
    margin-top: 0px;
}

/*end_n_main*/
/*n_content_left*/
.n_content_left {
    width: 217px;
    height: auto;
    float: left;
    position: relative;
}

/*end_n_content_left*/
/*n_content_right*/
.n_content_right {
    position: relative;
    width: 783px;
    height: auto;
    float: right;
    padding-bottom: 20px;
}

/*end_n_content_right*/
/*n_content_right_name*/
.n_content_right_name {
    display: none;
    width: 92%;
    height: 90px;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #DBDBDB;
}

/*end_n_content_right_name*/
/*n_content_right_m*/
.n_content_right_m {
    display: none;
    text-align: left;
    width: 92%;
    margin: 0 auto;
    line-height: 24px;
    color: #737373;
    font-size: 12px;
    padding: 30px 0 20px 0;
    position: relative;
}

/*end_n_content_right_m*/
/*news_list*/
.news_list {
    width: 710px;
    padding: 18px 0 10px 0;
}

/*end_news_list*/
/*ea_c*/
/*ea_b*/
/*xn_f_21_wrap*/
.xn_f_21_wrap {
    width: 1020px;
    float: left;
    font-size: 14px;
    color: #dddddd;
    margin-top: 5px;
    display: none;
}

.xn_f_21_xhbox {
    float: left;
    font-size: 14px;
    color: #dddddd;
    margin-right: 10px;
}

.index_body .xn_f_21_wrap {
    display: block;
}

.foot .xn_f_21_xhbox a {
    font-size: 14px;
    color: #dddddd;
}

.foot .xn_f_21_xhbox a:hover {
    color: #fff;
    text-decoration: underline;
}

/*end_xn_f_21_wrap*/
/*foot_copy*/
.foot_copy {
    width: 1020px;
    float: left;
    font-size: 14px;
    color: #ddd;
    line-height: 24px;
    opacity: 0.34;
    margin-top: 10px;
}

.foot .foot_copy_ba a {
    font-size: 14px;
    color: #ddd;
    line-height: 24px;
}

.foot .foot_copy_ba a:hover {
    color: #fff;
    opacity: 1 !important;
}

/*end_foot_copy*/
/*xn_f_2_warp*/
.xn_f_2_warp {
    width: 1020px;
    float: left;
    margin-top: 5px;
}

/*end_xn_f_2_warp*/
/*foot*/
.foot {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 12px;
    color: #666666;
    line-height: 25px;
    background: #333333;
    padding: 30px 0px 10px 0;
}

.foot a {
    font-size: 12px;
    color: #666666;
    text-decoration: none;
    line-height: 25px;
}

.foot a:hover {
}

.foot_c {
    position: relative;
    width: 1200px;
    margin: auto;
    text-align: left;
    overflow: hidden;
    height: 132px;
}

/*end_foot*/
/*xn_f_company*/
.xn_f_company {
    width: 1020px;
    float: left;
    font-size: 20px;
    color: #dddddd;
    font-weight: bold;
}

/*xn_f_ewm*/
.xn_f_ewm {
    width: 105px;
    float: right;
    position: absolute;
    right: 10px;
    top: 0px;
}

.xn_f_ewm img {
    width: 105px;
    height: 105px;
    margin-bottom: 5px;
}

.xn_f_ewm_text {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

/*end_xn_f_ewm*/
/*xn_m_6_wrap*/
.xn_m_6_wrap {
    position: fixed;
    height: auto;
    z-index: 10001;
    top: 25%!important;
    width: 120px;
    right: 0!important;
}

.xn_m_6_head,#xn_m_6_orderBox_2,#xn_m_6_orderBox_3,#xn_m_6_orderBox_4,#xn_m_6_orderBox_8 {
    display: none;
}

.xn_m_6_orderId,.xn_m_6_mbox h4 {
    display: none;
}

#xn_m_6_orderBox_1,.xn_m_6_foot,#xn_m_6_orderBox_5,#xn_m_6_orderBox_6 {
    width: 120px;
    height: 60px;
    margin-top: 2px;
}

.xn_m_6_qq_ul {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    background: url(../images/yx_qq.png) no-repeat center #4C484D;
    float: right;
}

.xn_m_6_qq_ul:hover {
    width: 120px;
    height: 60px;
    background: url(../images/yx_qq.png) no-repeat 16px center #D1313D;
}

.xn_m_6_qq_li {
    width: 75px;
    padding-left: 45px;
    overflow: hidden;
    height: 60px;
    line-height: 60px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.xn_m_6_qq_li img {
    display: none;
}

.xn_m_6_qq_li a {
    color: #fff;
}

.xn_m_6_phone_ul {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    background: url(../images/ad_phone.png) no-repeat center #234386;
    float: right;
    background-size: 44px;
    background-position: center top 0px;
}

.xn_m_6_phone_ul p {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.xn_m_6_tel_ul p {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.xn_m_6_tel_ul {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    background: url(../images/yx_phone.png) no-repeat center #234386;
    float: right;
    background-size: 34px;
    background-position: center top 0px;
}

.xn_m_6_tel_ul:hover {
    width: 160px;
    height: 60px;
    background: url(../images/yx_phone.png) no-repeat 16px center #D1313D;
}

.xn_m_6_phone_ul:hover {
    width: 160px;
    height: 60px;
    background: url(../images/ad_phone.png) no-repeat 16px center #D1313D;
}

.xn_m_6_tel_li {
    width: 110px;
    padding-left: 45px;
    overflow: hidden;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.xn_m_6_tel_li img {
    display: none;
}

.xn_m_6_markrt_code_ul {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    background: url(../images/yx_wm.png) no-repeat center #234386;
    float: right;
    background-size: 34px;
    background-position: center top 8px;
}

.xn_m_6_markrt_ewm_ul {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    cursor: pointer;
    background: url(../images/yx_ewm1.png) no-repeat center #234386;
    float: right;
    background-size: 34px;
    background-position: center top 3px;
}

.xn_m_6_markrt_code_li {
    position: absolute;
    width: 130px;
    height: 130px;
    top: -28px;
    right: 60px;
    display: none;
}

.xn_m_6_markrt_code_li img {
    width: 130px;
    height: 130px;
}

.xn_m_6_markrt_code_ul:hover .xn_m_6_markrt_code_li {
    display: block;
}

.xn_m_6_markrt_ewm_ul p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: absolute;
}

.xn_m_6_markrt_code_ul p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: relative;
    bottom: -38px;
    left: 1px;
}

.xn_m_6_markrt_ewm_li {
    position: absolute;
    width: 130px;
    height: 130px;
    top: -28px;
    right: 60px;
    display: none;
}

.xn_m_6_markrt_ewm_li img {
    width: 130px;
    height: 130px;
}

.xn_m_6_markrt_ewm_ul:hover .xn_m_6_markrt_code_li {
    display: block;
    top: 150px;
}

.xn_m_6_foot {
    width: 60px;
    height: 60px;
    background: url(../images/yx_top.png) no-repeat center #111;
    float: right;
    border-radius: 5px;
    cursor: pointer;
}

/*end_xn_m_6_wrap*/
/*end_xn_m_6_wrap*/
/*ea_b*/
/*ea_bg*/
/*index_body*/
.index_body {
}

/*end_index_body*/
/*inside_body*/
.about_body,.case_body,.case_view_body,.clients_body,.contact_body,.down_body,.down_view_body,.feedback_body,.faq_body,.faq_view_body,.honor_body,.honor_client_list_body,.honor_client_view_body,.job_body,.job_online_body,.news_body,.news_view_body,.order_body,.pro_body,.pro2_body,.prod_view_body,.products_body,.products2_body,.recruitment_body,.search_body,.sv_body,.video_body,.video_view_body,.sitemap_body,.clapro_complex_body,.claproducts_body,.claprod_view_body,.login_body,.reg_body,.success_body,.member_body,.getpass_body,.getchapass_body,.changepass_body,.lose_body,.verifymail_body,.apply_body,.buysucces_body,.callback_body,.help_body,.mborlist_body,.mborlist_view_body,.orlogin_body,.spcartone_body,.spcartthree_body,.spcarttwo_body {
}

/*end_inside_body*/
/*ea_bg*/
/*ea_m*/
/*xn_m_2_wrap*/
.close {
    background: url(../images/cgagffpneaoakiegaaaenocwtpc874.png) center no-repeat;
    width: 68px;
    height: 20px;
    font-size: 0;
    position: absolute;
    top: -5px;
    border-radius: 8px;
    right: 2px;
    cursor: pointer;
    margin: 0 !important;
    z-index: 999;
}

.xn_m_2_wrap {
    top: -50px;
}

.xn_m_2_head {
    width: 70px;
    height: 20px;
    color: #fff;
}

.xn_m_2_wrap {
    position: fixed;
    height: auto;
    width: 70px;
    z-index: 99;
    top: 230px!important;
    right: 3%!important;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    display: none;
}

.xn_m_2_mbox img {
    display: none;
    width: 100px;
    clear: both;
    height: 100px;
    position: absolute;
    margin-left: -101px;
    margin-top: -1px;
}

.xn_m_2_tel_box {
    opacity: 0;
}

.xn_m_2_tel_box img {
    width: 20px;
}

.xn_m_2_head .close {
    cursor: pointer;
    text-align: left;
    margin-top: 13px;
    display: none;
}

.xn_m_2_mbox ul {
}

.xn_m_2_markrt_code img {
    width: 100px;
}

.xn_m_2_small_but {
    width: 20px;
    height: 50px;
    background: #666666;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 0px;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    display: none;
    text-align: center;
    line-height: 24px;
}

.xn_m_2_foot {
    transition: all 0.6s ease 0s;
    width: 59px;
    overflow: hidden;
    height: 59px;
    background: #fff url(../images/top1.png)no-repeat;
    cursor: pointer;
    font-size: 0px;
    color: #fff;
    line-height: 110px;
    text-align: center;
    border: 1px solid #eeeeee;
    border-top: none;
}

.xn_m_2_foot:hover {
    background: #637d8e url(../images/top11.png)no-repeat;
}

.xn_m_2_orderId {
    display: none;
}

.xn_m_2_mbox {
    position: relative;
    width: 70px;
}

.xn_m_2_markrt_ali {
    display: none;
}

#xn_m_2_Text4 {
    font-size: 12px;
    display: none;
    padding: 6px 4px;
    background: url(../images/xuan_hover.png) no-repeat;
}

#xn_m_2_Text1 {
    display: none;
}

.xn_m_2_markrt_code {
    background: url(../images/xuan_erweima.png) no-repeat;
    cursor: pointer;
}

.xn_m_2_markrt_code:hover #xn_m_2_Text4 {
    display: block;
}

.xn_m_2_markrt_code:hover .xn_m_2_markrtimg {
    display: block;
}

.xn_m_2_telephone {
    transition: all 0.6s ease 0s;
    cursor: pointer;
    width: 59px;
    height: 59px;
    margin-top: -10px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-bottom: none;
    background: #fff url(../images/shouji.png)no-repeat;
    background-size: 100%;
    border-top: none;
}

.xn_m_2_telephone:hover {
    background: #fff3ea url(../images/pp.png) center 10px no-repeat;
}

.xn_m_2_telephone:hover .xn_m_2_telephone>h4 {
    display: block;
}

.xn_m_2_telephone:hover .xn_m_2_tel_box {
    opacity: 1;
}

.xn_m_2_telephone:hover {
    background: #fff url(../images/11111.jpg)no-repeat;
    border: 1px solid #eeeeee;
    border-bottom: none;
    background-size: 100%;
    border-top: none;
}

.xn_m_2_markrt_qq {
    margin-top: 52px;
}

.xn_m_2_sky_author {
    display: none;
}

.xn_m_2_markrt_qq:hover .xn_m_2_qq_li {
    display: block;
}

.xn_m_2_telephone h4 {
    display: none;
    left: 7px;
    color: #fff;
    text-align: center;
    height: 22px;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
}

.xn_m_2_markrtimg {
    display: none;
    position: absolute;
    right: 48px;
    top: -28px;
}

.xn_m_2_tel_box {
    transition: all 0.6s ease 0s;
    position: absolute;
    right: 59px;
    top: 0px;
    width: 168px;
    height: 59px;
    line-height: 59px;
    color: #fff;
    background: #637d8e;
    opacity: 0;
}

.xn_m_2_tel_tel {
    margin-left: 20px;
    font-size: 19px;
}

.xn_m_2_qq_li:nth-of-type(1) {
    display: none!important;
}

.xn_m_2_qq_li {
    transition: all 0.6s ease 0s;
    width: 59px;
    height: 69px;
    background: #fff3ea;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-bottom: none;
    margin-top: 62px;
}

.xn_m_2_qq_li a:hover {
    background: #637d8e url(../images/yijian.png)no-repeat 6px 15px;
}

.xn_m_2_qq_li a {
    transition: all 0.6s ease 0s;
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 110px;
    font-size: 0px;
    background: #fff url(../images/yijian11.png)no-repeat 6px 15px;
}

.xn_m_2_qq_img {
    display: none;
}

.xn_m_2_markrt_sky h4 {
    display: none;
}

.xn_m_2_markrt_sky {
    transition: all 0.6s ease 0s;
    width: 59px;
    height: 59px;
    background: #fff;
    position: absolute;
    top: 22px;
    left: 0;
    border: 1px solid #eeeeee;
    border-bottom: none;
    background: #fff url(../images/onli.png)no-repeat center;
}

.xn_m_2_markrt_sky:hover {
    opacity: 0.8;
    cursor: pointer;
    background: #637d8e url(../images/onli111.png)no-repeat center;
}

.xn_m_2_markrt_sky a {
    cursor: pointer;
    background: url(../images/ph.png)no-repeat center 10px;
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 110px;
}

#qrcode,#qrAPPIOS,#qrAPPAndroid {
    display: none;
}

#newBridge .icon-right-center {
    top: 46%!important;
}

/*end_xn_m_2_wrap*/
/*ea_m*/
/*ea_pi*/
/*ea_pi*/
/*ea_wj*/
/*ea_wj*/
#gotop {
    width: 80px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
    background: #15489c;
    border: 0;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 0%;
    right: 0%;
    z-index: 9999;
}

#gotop:hover {
    background: #ff1100;
}

/** 企业荣誉 **/
.bannerWrap {
    height: 560px;
    background: url(../images/banner1.jpg) no-repeat center center;
}

.honorBox {
    margin-bottom: 20px;
}

.honorTime {
    float: left;
    width: 170px;
    line-height: 50px;
    background: #999;
    font-size: 24px;
    color: #fff;
}

.honorRight {
    margin-left: 170px;
}

.honorTxt {
    background: #f5f5f5;
    line-height: 50px;
    color: #444;
    font-size: 16px;
    padding-left: 25px;
    cursor: pointer;
}

.honorTxt span {
    padding: 10px;
}

.honorItem {
    float: left;
    margin: 0 15px;
    width: 220px;
}

.honorItem span {
    display: block;
}

.honorList {
    display: none;
    margin-left: 8px;
    background: #f5f5f5;
    padding: 0 15px 15px 0;
}

.honorItem span.htxt {
    width: 220px;
    font-size: 18px;
    color: #444;
    line-height: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.honorWrap .cur .honorTime {
    background: #ff4c4c;
}

.honorWrap .cur .honorTxt {
    display: none;
}

.honorWrap .cur .honorList {
    display: block;
}

/** 企业荣誉 **/
