@charset "UTF-8";

/*css 初始化 */

html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}
@media screen and (maxwidth < 749px) {


   @viewport
{


      width:
device-width;


   }


}
fieldset,
img,
input,
button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul,
ol {
    list-style: none;
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "微软雅黑", Arial, "SimSun";
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}


/*防止拖动*/

img {
    border: 0;
    vertical-align: middle;
}


/* 去掉图片低测默认的3像素空白缝隙*/

table {
    border-collapse: collapse;
}

body {
    font: 12px/150% '微软雅黑', 'SimSun';
    color: #222;
    background: #fff;
    font-size: 0.675em;
        -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100% !important;
}
html {
    font-size: 10px;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
}

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #019EEB;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

h3 {
    color: #333
}

s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

p {
    line-height: 24px;
}

.col-red {
    color: #ccac82;
    !important;
}


/*公共类*/

.w {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.mt50 {
    margin-top: 50px;
}

.mt40 {
    margin-top: 40px;
}


/*版心 提取 */

.fl {
    float: left
}

.fr {
    float: right
}

.al {
    text-align: left
}

.ac {
    text-align: center
}

.ar {
    text-align: right
}

.hide {
    display: none
}

.pr {
    position: relative
}
input[type=button], input[type=submit], input[type=file], button{cursor: pointer; -webkit-appearance: none; } 

/*head*/

.head {
    height: 135px;
}

.head .fl {
    margin-top: 10px;
}

.head .nav {
    width: 51.5%;
    line-height: 140px;
}
@media screen and (max-width:1000px) {
    width: 50%;
}
.nav ul li {
    float: left;
    width: 16.666%;
    text-align: center;
    cursor: pointer;
}

.nav ul li a {
    display: block;
    width: 100%;
}

.nav ul li.current {
    background-color: #019EEB;
}

.nav ul li.current a {
    color: #fff
}

.nav ul li a {
    font-size: 16px;
    font-size: 1.6rem;
    color: #222;
    font-weight: bold;
}

.headtel {
    line-height: 140px;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    color: #019EEB;
    padding-left: 40px;
    background: url(../img/tel.png) no-repeat 0 center;
    text-align: center;
    margin-left: 3%
}

.fixed {
    position: fixed;
    top: -135px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: #fff;
    transition: all .5s;
    height: 80px;
}

.fixed .head {
    height: 80px;
}

.fixed .head .fl {
    margin-top: 20px;
    width: 120px;
}

.fixed .headtel {
    line-height: 80px;
}

.fixed .head .nav {
    line-height: 80px;
}

.fixed .fl img {
    width: 10rem;
    margin-top:-20px;
}

.fixed .nav ul li {
    padding-bottom: 10px;
}

.fixed .nav ul li.current a {
    color: #fff
}

.navbar {
    display: none;
}

.navbar-but {
    width: 48px;
    height: 48px;
    background: url(../img/cd.png) no-repeat;
}


/*banner*/

.cnav,
.top_map {
    width: 100%;
}

.cnav img {
    width: 100%;
}

.box img {
    max-width: 95%;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 30px;
    text-align: center
}

.banner img {
    width: 100%;
    animation: bgIn1 15s forwards;
    overflow: hidden;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.banner ul li span {
    font-size: 36px;
    font-size: 3.6rem;
    display: inline-block;
    font-weight: bold;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.banner img {
    animation-name: bgIn;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes bgIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.steper {
    padding: 30px 0 60px
}

.zw-title {
    text-align: center;
    margin-bottom: 40px
}

.zw-title p,
.oemeq p {
    color: #999;
    font-size: 14px;
    line-height: 24px;
    width: 65%;
    margin: 25px auto 0
}

.inoem h3 {
    margin-top: 30px;
}

.oem .zw-title h3 {
    font-weight: 400;
}

.zw-title h3 {
    font-size: 30px;
    font-size: 26px;
    line-height: 60px;
    font-weight: bold;
    color: #222;
    text-align: center;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.profit .zw-title h3 {
    color: #fff
}

.zw-title em {
    display: block;
    width: 75px;
    height: 5px;
    background-color: #F39C11;
    margin: 0 auto;
    margin-bottom: 25px;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.zw-title span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    margin: 25px 0;
    display: block;
    width: 65%;
    margin: 0 auto;
    color: #999
}

.inoem-body .fl {
    width: 50%;
    position: relative;
    transition: all .3s;
    overflow: hidden;
}

.inoem-body .fl img {
    width: 98.333%
}

.inoem-body .fl .ibbj {
    width: 84%;
}

.inoem-body .fr {
    width: 50%;
}

.inoem-body .fr img {
    float: right;
}

.inoem-body .fr li:nth-child(odd) {
    float: left
}

.inoem-body .fr li {
    position: relative;
    width: 49.1666%;
    float: right;
    margin-bottom: 10px;
    overflow: hidden;
}

.inoem-body .fr li img {
    width: 100%;
}

.inoem-body .ibbj {
    position: absolute;
    width: 86%;
    height: 40px;
    border-top: 3px solid #DB9331;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    font-size: 14px;
    padding: 0 7%;
    line-height: 40px;
    bottom: -43px;
    transition: all .3s
}

.inoem-body .fr li:hover .ibbj,
.inoem-body .fl:hover .ibbj {
    bottom: 0
}

.inoem-body {
    margin: 30px 0
}

.indextype .swiper-slide {
    overflow: hidden;
}

.meitibd-o {
    background-color: #F7F7F7;
    padding-top: 35px;
    margin-top: 50px;
    margin-bottom: 0
}

.meitibder {
    background-color: #F7F7F7;
    color: #999;
}

.mbb-time,
.mbb-img,
.mbb-zw,
.mbb-more {
    float: left;
}

.meitibd .zw-title {
    float: none
}

.meitibd .mb-body {
    width: 100%;
    padding-bottom: 40px;
}

.meitibd .mb-body li {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    transition: all .3s;
    cursor: pointer
}

.meitibd .mb-body li:hover {
    background-color: #019EEB;
    color: #fff
}

.meitibd .mb-body li:hover h4 {
    color: #fff
}

.meitibd .mb-body li:hover .mbb-zw span {
    color: #fff
}

.meitibd .mb-body li:hover a {
    color: #fff
}

.meitibd .mbb-time {
    margin-right: 2%
}

.meitibd .mbb-time p {
    font-size: 20px;
    line-height: 40px;
}

.meitibd .mbb-time span {
    font-size: 14px;
}

.meitibd .mbb-img img {
    width: 220px;
    height: 120px;
}

.meitibd .mbb-zw {
    width: 60%;
    margin-left: 2%
}

.meitibd .mbb-zw h4 {
    color: #333;
    font-size: 16px;
    line-height: 20px;
}

.meitibd .mbb-zw p {
    font-size: 14px;
    line-height: 24px;
    margin: 15px auto 10px
}

.meitibd .mbb-zw span {
    color: #019EEB;
    font-size: 14px;
}

.meitibd .mbb-more {
    float: right;
    margin-top: 35px;
}

.meitibdmore {
    border: 1px solid #C2C2C2;
    width: 160px;
    height: 45px;
    display: block;
    text-align: center;
    line-height: 45px;
    margin: 50px auto 0;
    font-size: 14px;
}

.invideo li {
    height: 530px;
}

.vid-box {
    position: relative;
    width: 100%;
}

.vid-box .upbox {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    overflow: hidden;
    height: 530px;
    z-index: 2;
    width: 100%;
}

.vid-box .upbox.uop {
    display: none;
    filter: Alpha(opacity=0);
}

.vid-box .obj-box {
    width: 100%;
    position: relative;
    z-index: 1;
}

.vid-box .obj-box.uop {
    z-index: 3;
}

.vid-box .obj-box .obj {
    height: 100%;
    height: 530px;
    margin: 0 auto;
}

.vid-box .obj-box .close {
    display: block;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: 44%;
    width: 46px;
    height: 46px;
}

.vid-box .upbox img {
    transform: translateZ(0px);
    transition: transform 0.3s ease 0s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 531px;
    max-width:100%
}

.vid-box .upbox:hover img {
    transform: scale(1.1, 1.1);
    transition: transform 0.6s ease 0s;
}

.vid-box .upbox .ico {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    top: 40%;
}

.vid-box iframe,
.vid-box embed {
    width: 100%;
    height: 100%;
}

.invideo .swiper-pagination-bullet {
    background-color: #019EEB;
}

.invideo .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0
}

.invideo .swiper-container {
    padding-bottom: 40px;
}

.ib1-title {
    margin-bottom: 20px
}

.ib1-title h4 {
    font-size: 14px;
    color: #262626;
    line-height: 40px;
    padding: 0 3%;
    width: 94.2%;
    border-bottom: 1px solid #F4F4F4;
    transition: all .3s
}

.invideo .swiper-slide:hover h4,
.video .swiper-slide:hover h4 {
    background-color: #019EEB;
    color: #fff
}

.inpropre {
    position: relative;
    width: 100%;
}

.pets-info {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pets-info {
    top: 0;
    left: 0;
    position: absolute;
}

.pets-info .pets-info-slid {
    display: block;
    position: relative;
    padding: 2%;
    left: 50%;
    top: 50%;
    position: relative;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    display: none\9;
}

.pets-info {
    filter: alpha(opacity=0);
    -wekbit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: translateZ(0) scale(2, 2);
    -moz-transform: translateZ(0) scale(2, 2);
    -ms-transform: translateZ(0) scale(2, 2);
    -o-transform: translateZ(0) scale(2, 2);
    transform: translateZ(0) scale(2, 2);
    color: #e6e6e6;
}

.pets-info * {
    z-index: 3;
}

.pets-info:after,
.pets-info:before {
    content: "";
    display: block !important;
    position: absolute;
    visibility: visible !important;
    background-color: rgba(243, 156, 18, 0.8);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -ms-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.parts-color:after,
.parts-color:before {
    background-color: rgba(31, 31, 31, 0.8);
}

.pets-info em {
    margin-top: 20px;
    width: 28px;
    height: 28px;
    background-position: -193px -7px;
}

.pets-info-slid h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.pets-info-slid p {
    font-size: 16px;
    line-height: 30px;
    color: #FFF
}

.pets-effect.ver_line .pets-info:before {
    -webkit-transform: translateZ(0) translateX(100%) rotateZ(180deg);
    -moz-transform: translateZ(0) translateX(100%) rotateZ(180deg);
    -ms-transform: translateZ(0) translateX(100%) rotateZ(180deg);
    -o-transform: translateZ(0) translateX(100%) rotateZ(180deg);
    transform: translateZ(0) translateX(100%) rotateZ(180deg);
}

.pets-effect.ver_line .pets-info:after {
    -webkit-transform: translateZ(0) translateX(-100%) rotateZ(180deg);
    -moz-transform: translateZ(0) translateX(-100%) rotateZ(180deg);
    -ms-transform: translateZ(0) translateX(-100%) rotateZ(180deg);
    -o-transform: translateZ(0) translateX(-100%) rotateZ(180deg);
    transform: translateZ(0) translateX(-100%) rotateZ(180deg);
}

.pets-effect.ver_line:hover .pets-info {
    filter: alpha(opacity=100);
    -wekbit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1, 1);
    -moz-transform: translateZ(0) scale(1, 1);
    -ms-transform: translateZ(0) scale(1, 1);
    -o-transform: translateZ(0) scale(1, 1);
    transform: translateZ(0) scale(1, 1);
}

.pets-effect.ver_line:hover .pets-info:before {
    -webkit-transform: translateZ(0) translateX(50%) rotateZ(0deg);
    -moz-transform: translateZ(0) translateX(50%) rotateZ(0deg);
    -ms-transform: translateZ(0) translateX(50%) rotateZ(0deg);
    -o-transform: translateZ(0) translateX(50%) rotateZ(0deg);
    transform: translateZ(0) translateX(50%) rotateZ(0deg);
}

.pets-effect.ver_line:hover .pets-info:after {
    -webkit-transform: translateZ(0) translateX(-50%) rotateZ(0deg);
    -moz-transform: translateZ(0) translateX(-50%) rotateZ(0deg);
    -ms-transform: translateZ(0) translateX(-50%) rotateZ(0deg);
    -o-transform: translateZ(0) translateX(-50%) rotateZ(0deg);
    transform: translateZ(0) translateX(-50%) rotateZ(0deg);
}

.pets-effect.horizontal .pets-info:before {
    -webkit-transform: translateZ(0) translateY(100%) rotateZ(180deg);
    -moz-transform: translateZ(0) translateY(100%) rotateZ(180deg);
    -ms-transform: translateZ(0) translateY(100%) rotateZ(180deg);
    -o-transform: translateZ(0) translateY(100%) rotateZ(180deg);
    transform: translateZ(0) translateY(100%) rotateZ(180deg);
}

.pets-effect.horizontal .pets-info:after {
    -webkit-transform: translateZ(0) translateY(-100%) rotateZ(180deg);
    -moz-transform: translateZ(0) translateY(-100%) rotateZ(180deg);
    -ms-transform: translateZ(0) translateY(-100%) rotateZ(180deg);
    -o-transform: translateZ(0) translateY(-100%) rotateZ(180deg);
    transform: translateZ(0) translateY(-100%) rotateZ(180deg);
}

.pets-effect.horizontal:hover .pets-info {
    filter: alpha(opacity=100);
    -wekbit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1, 1);
    -moz-transform: translateZ(0) scale(1, 1);
    -ms-transform: translateZ(0) scale(1, 1);
    -o-transform: translateZ(0) scale(1, 1);
    transform: translateZ(0) scale(1, 1);
}

.pets-effect.horizontal:hover .pets-info:before {
    -webkit-transform: translateZ(0) translateY(50%) rotateZ(0deg);
    -moz-transform: translateZ(0) translateY(50%) rotateZ(0deg);
    -ms-transform: translateZ(0) translateY(50%) rotateZ(0deg);
    -o-transform: translateZ(0) translateY(50%) rotateZ(0deg);
    transform: translateZ(0) translateY(50%) rotateZ(0deg);
}

.pets-effect.horizontal:hover .pets-info:after {
    -webkit-transform: translateZ(0) translateY(-50%) rotateZ(0deg);
    -moz-transform: translateZ(0) translateY(-50%) rotateZ(0deg);
    -ms-transform: translateZ(0) translateY(-50%) rotateZ(0deg);
    -o-transform: translateZ(0) translateY(-50%) rotateZ(0deg);
    transform: translateZ(0) translateY(-50%) rotateZ(0deg);
}

.pets-info-slid h4 {
    font-size: 30px;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px
}

.step-body,
.tech-body,
.stealer,
.safe-body {
    width: 100%;
}

.tech .zw-title span,
.safe .zw-title span {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 4px
}

.step-body {
    padding-top: 55px
}

.step-body ul li {
    width: 25%;
    text-align: center;
    background: url(../img/step1.jpg) no-repeat center 0;
    padding-top: 175px;
    float: left;
}

.step-body ul li.step2 {
    background-image: url(../img/step2.jpg)
}

.step-body ul li.step3 {
    background-image: url(../img/step3.jpg)
}

.step-body ul li.step4 {
    background-image: url(../img/step4.jpg)
}

.step-body ul li p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    font-family: 微软雅黑；color: #222
}

.tech-body ul li p {
    font-size: 22px;
    font-size: 2.2rem;
    color: #f39c11;
    line-height: 24px;
    line-height: 2.4rem;
}

.techer {
    padding: 55px 0 100px
}

.tech-body ul li {
    width: 25%;
    text-align: center;
    padding-top: 55px;
    float: left;
}

.tech-body ul li img {
    margin-bottom: 38px;
    transition: all .5s;
    cursor: pointer
}

.tech-body ul li:hover img {
    transform: rotate(360deg);
}

.indextype img {
    width: 100%;
}

.stealer {
    background: url(../img/steal.jpg) no-repeat;
    height: 703px;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}

.steal-title {
    margin-left: 40px;
    color: #fff;
    padding: 70px 0 20px
}

.steal-title h4 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 60px;
    color: #f39c11
}

.steal-title h4 p {
    font-size: 40px;
    font-size: 4rem;
}

.steal-title span {
    font-size: 22px;
    line-height: 72px;
    font-size: 2.2rem;
}

.steal-list {
    padding-left: 20px
}

.steal-list ul li {
    margin-bottom: 25px;
    padding-left: 20px;
}

.steal-list ul li em {
    float: left;
    width: 55px;
    height: 50px;
    background: url(../img/steal2.png) no-repeat -67px 0;
    transition: all .5s;
    cursor: pointer;
    margin-right: 10px
}

.steal-list ul li:hover em {
    background-position: 0 0
}

.steal-list ul li p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 18px;
    margin-bottom: 10px
}

.safe {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 55px 0 100px
}

.safe-body ul li {
    width: 20%;
    text-align: center;
    padding-top: 55px;
    float: left;
    animation-duration: 1.5s;
}

.safe-body ul li img {
    margin-bottom: 45px
}

.safe-body ul li p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
}

.profiter {
    background: url(../img/profit1.jpg) no-repeat;
    padding-bottom: 118px;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 55px
}

.profit-body {
    width: 83.33%;
    margin: 150px auto 0;
}

.profit-body ul li {
    width: 24%;
    float: left;
    background-color: #F39C11;
    border-radius: 10px;
    padding: 2%;
    min-height: 155px;
    margin-left: 5%;
}

.profit-body ul li:first-child {
    margin-left: 0
}

.profit-body ul li dt {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 40px;
    border-bottom: 1px solid #F7BA59
}

.profit-body ul li dd {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 24px;
    line-height: 26px;
}

.unimg {
    width: 45.8%
}

.unimg ul li {
    width: 49.9%;
    margin-bottom: 10px;
    /*animation:myfirst 5s infinite;
animation-direction:alternate;
-webkit-animation:myfirst 5s infinite;
-webkit-animation-direction:alternate;*/
    float: left;
}

@keyframes myfirst {
    0% {
        background: red;
        left: 0px;
        top: 0px;
    }
    25% {
        background: yellow;
        left: 200px;
        top: 0px;
    }
    50% {
        background: blue;
        left: 200px;
        top: 200px;
    }
    75% {
        background: green;
        left: 0px;
        top: 200px;
    }
    100% {
        background: red;
        left: 0px;
        top: 0px;
    }
}

@-webkit-keyframes myfirst
/* Safari and Chrome */

{
    0% {
        background: red;
        left: 0px;
        top: 0px;
    }
    25% {
        background: yellow;
        left: 200px;
        top: 0px;
    }
    50% {
        background: blue;
        left: 200px;
        top: 200px;
    }
    75% {
        background: green;
        left: 0px;
        top: 200px;
    }
    100% {
        background: red;
        left: 0px;
        top: 0px;
    }
}

.unifieder {
    padding-top: 20px;
    margin-top: 45px
}

.unimg ul li img {
    width: 100%
}

.untext {
    width: 50%
}

.untext span {
    color: #999;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 18px;
    line-height: 1.8rem;
}

.untext h4 {
    font-size: 30px;
    line-height: 40px;
    padding: 10px 0;
    margin-bottom: 25px
}

.untext p {
    color: #999;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
}

.unified {
    margin: 50px auto 75px
}

.joiner {
    background-color: #2E2E2E;
}

.join {
    color: #7b7b7b;
    line-height: 40px;
    padding: 45px 0 60px
}

.join .con-img {
    position: absolute;
    top: 50%;
    left: -60px;
    margin-top: -105px
}

.jointitle h3 {
    line-height: 64px;
    font-size: 20px;
    color: #fff;
    border-bottom: 1px solid #383838;
    font-weight: bold;
    margin-bottom: 15px
}

.join-left {
    width: 33.33%;
}

.join-center {
    width: 28%;
    margin-left: 5.33%;
}

.join-right {
    width: 28%;
    margin-left: 5.33%
}

.join-right a.footonline {
    display: block;
    width: 110px;
    height: 38px;
    text-align: center;
    color: #fff;
    line-height: 38px;
    background-color: #019EEB;
    font-size: 14px;
    margin-top: 30px;
    transition: all .3s
}

.join-right a:hover {
    background-color: #dc8e13;
}

.join-left ul {
    background: url(../img/footerico.png) no-repeat 0 10px
}

.join-left li {
    font-size: 14px;
    color: #7b7b7b;
    padding-left: 30px
}

.jc-body {
    margin-top: 30px;
    width: 140px
}

.jc-body img {
    width: 115px;
    height: 115px;
}

.jc-body p {
    width: 20px;
    line-height: 18px;
    float: right;
    position: relative;
    top: 10px;
    font-size: 14px;
    left: 10px;
}

.join-right p.jr1 {
    font-size: 14px;
    font-size: 1.4rem;
    margin: -5px 0 0;
    line-height: 24px;
}

.join-right h2 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 110px;
}

.join-right span {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 80px;
}

.join-right p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
}

.copyer {
    background-color: #1A1A1A;
    font-size: 14px;
}

.copy {
    font-size: 14px;
    line-height: 44px;
    color: #7b7b7b;
    text-align: center;
}

.show img {
    width: : ;
    width: 100%;
    .fixed-400 {
        width: 120px;
        height: 80px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        background-color: #F39C11;
        color: #fff;
        text-align: center;
        position: fixed;
        right: 0;
        bottom: 35%;
        margin-top: -35px;
        line-height: 30px;
        font-size: 14px;
        font-size: 1.4rem;
        animation: bs 3s;
        -moz-animation: bs 3s;
        /* Firefox */
        -webkit-animation: bs 3s;
        /* Safari 和 Chrome */
        -o-animation: bs 3s;
        /* Opera */
        animation-iteration-count: infinite;
    }
    #newBridge .icon-right-center {
        right: 0 !important;
    }
    .fixed-400 p {
        color: #fff;
        border-bottom: 1px dashed #fff;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 40px;
    }
    .fixed-400 a {
        color: #fff;
    }
    @keyframes bs {
        25% {
            background: #F39C11;
        }
        75% {
            background: #FF0601;
        }
    }
    .banner,
    .steper,
    .show,
    .techer,
    .stealer,
    .profiter {
        width: 100%;
    }
    .mat80 {
        height: 80px;
        margin-top: -80px;
        display: block;
        visibility: hidden;
    }
    @media screen and (max-width:769px) {
        /*.w{width: 100%} .head{height: 60px;} .head .fl img{max-width: 35px;margin-left:5%;} .navbar{display: block;margin-right:2.5%;margin-top:8px;} .nav{display: none;} html{font-size: 5px;} .w{width: 95%;margin:0 auto;} .join-left,.join-right,.join-left ul li:first-child,.unimg{width: 100%;margin:0;}
.join-right{margin:30px 0;}
.copy{line-height: 22px;padding:10px 0;}
.join-left ul input,.join-left ul textarea{width: 99%;}
.untext{width: 100%;padding:20px 0;}
.profit-body ul li{width: 100%;}
*/
    }
    .cl-effect-20 a {
        -webkit-perspective: 800px;
        -moz-perspective: 800px;
        perspective: 800px;
        color: #fff
    }
    .cl-effect-20 a span {
        position: relative;
        display: inline-block;
        width: 100%;
        background: #fff;
        -webkit-transition: background 0.6s;
        -moz-transition: background 0.6s;
        transition: background 0.6s;
        -webkit-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transform-origin: 0% 50%;
        -moz-transform-origin: 0% 50%;
        transform-origin: 0% 50%;
        z-index: 999
    }
    .cl-effect-20 a span::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #019EEB;
        color: #2f4351;
        content: attr(data-hover);
        -webkit-transform: rotateX(270deg);
        -moz-transform: rotateX(270deg);
        transform: rotateX(270deg);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        transition: transform 0.6s;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        transform-origin: 0 0;
        pointer-events: none;
    }
    .cl-effect-20 a:hover span,
    .cl-effect-20 a:focus span {
        background: #fff;
    }
    .cl-effect-20 a:hover span::before,
    .cl-effect-20 a:focus span::before {
        -webkit-transform: rotateX(10deg);
        -moz-transform: rotateX(10deg);
        transform: rotateX(10deg);
        color: #fff
    }
}


/*contact*/

.contact {
    margin: 50px auto;
}

.contact .w {
    overflow: visible;
}

.contact .zw-title p {
    width: 80%;
}

.contact .zw-title h3 {
    font-weight: 400;
}

.contact .zw-title img {
    width: 100%;
}

.contact .zw-title p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.conleft,
.conright {
    width: 50%;
}

.conleft li {
    float: none;
    font-size: 16px;
    line-height: 40px;
    color: #666;
}

.conright ul {
    background: url(../img/coninput.png) no-repeat 5px 10px;
}

.conright li {
    border: 1px solid #D1D1D1;
    height: 42px;
    line-height: 42px;
    width: 88%;
    padding: 0 6%;
    color: #999;
    font-size: 14px;
    margin: 10px 0;
}

.conright textarea {
    border: 1px solid #D1D1D1;
    height: 90px;
    padding: 10px 6%;
    width: 88%;
    background: url(../img/context.png) no-repeat 5px 10px;
    font-family: 微软雅黑
}

.conright .submit {
    width: 180px;
    height: 40px;
    line-height: 40px;
    background-color: #019EEB;
    font-size: 14px;
    color: #fff;
    transition: all .3s;
    cursor: pointer;
}

.conright .submit:hover {
    background-color: #dc8e13;
}


/*contact end*/


/*video*/

.cnav img {
    display: block;
}

.cnavdher {
    height: 40px;
    line-height: 40px;
    background-color: #F4F4F4
}

.cnavdh {
    background: url(../img/cnavdh.jpg) no-repeat #F4F4F4;
    padding-left: 6%;
    line-height: 40px;
    width: 94%;
}

.cnavdh a {
    margin: 0 5px;
    font-size: 14px;
}

.video {
    margin: 50px auto 30px;
}


/*video end*/


/*fenye*/

.pagelist {
    overflow: hidden;
    margin: 20px 0;
    clear: both;
    text-align: center;
    margin-bottom: 70px;
}

.pagelist a {
    color: #019EEB;
    display: inline-block;
    background: #fff;
    padding: 6px 13px;
    margin-right: 20px;
    border: 1px solid #019EEB;
}

.pagelist a:hover {
    border: 1px solid #FF7519;
    color: #FF7519;
    transition: all 0.2s;
}

.pagelist b {
    color: #FFF;
    display: inline-block;
    padding: 6px 13px;
    background: #019EEB;
    padding: 6px 13px;
    margin-right: 20px;
    box-shadow: #C3C3C3 0 1px 1px 0;
}


/*fenye end*/


/*newsnr*/

.newsnr {
    margin: 50px auto;
}

.newsnr h1 {
    font-size: 22px;
    color: #333;
    text-align: center;
    line-height: 30px;
}

.newsnr .nnjs {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin: 20px 0 30px;
}

.newsnr span {
    padding: 0 10px;
}

.newsnr-body {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    padding-bottom: 40px;
    border-bottom: 1px solid #F2F2F2;
}

.newsnr-body a {
    font-size: 14px;
    color: #666;
}

.newsnr-body img {
    margin: 20px 0;
}

.newsnr-sx {
    padding-top: 40px;
    font-size: 14px;
}

.newsnr-sx a {
    font-size: 14px;
    line-height: 34px;
}


/*newsnr end*/


/*newslist*/

.nlist-lm {
    text-align: center;
    margin: 50px 0;
}

.nlist-lm a {
    display: inline-block;
    background-color: #F4F4F4;
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    margin: 0 10px;
}

.nlist-lm a.on {
    background-color: #F39C11;
    color: #fff;
}

.nlist-lm a:hover {
    opacity: .8
}

.news-head {
    margin: 60px 0;
    overflow: hidden;
}
.news-head ul{
    margin-left:-2%;
}
.news-head ul li {
    width: 31.3%;
    margin-left: 2%;
    transition: all .5s;
    float: left;
    margin-bottom:30px;
}
.news-head ul li img {
    width: 100%;
    max-height:290px;
}

.news-head ul li h3 {
    color: #585557;
    font-size: 18px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin-bottom: 18px;
    font-weight: normal;
}

.news-head ul li span {
    color: #8d8d8f;
    transition: all .5s;
}

.news-head ul li:hover .nhli {
    background-color: #F39C11;

}

.news-head ul li:hover h3 a {
    color: #fff;
    transition:all .1s
}

.news-head ul li:hover span {
    color: #fff;
}

.news-head ul li {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.news-head ul li.on1,.news-head ul li.on4,.news-head ul li.on7 {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.news-head ul li.on2,.news-head ul li.on5,.news-head ul li.on8 {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

.news-head ul li.on3,.news-head ul li.on6,.news-head ul li.on9 {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
.news-head ul li.on4,.news-head ul li.on5,.news-head ul li.on6,.news-head ul li.on7,.news-head ul li.on8,.news-head ul li.on9{animation-delay:1s;}
.news-head .nhli {
    padding: 25px;
    border: 1px solid #D9D9D9;
    border-top: none;
}

.nl-bo {
    margin-top: 80px;
}

.nl-bo ul.new-list li {
    padding: 27px 18px;
    position: relative;
    width: 100%;
    border: 1px solid #fff;
    border-bottom: 1px solid #EBEBEB;
    cursor: pointer;
    overflow: hidden;
}

.nl-bo ul.new-list li:hover {
    border: 1px solid #019EEB;
}

.nl-bo ul li .nl-date h5 {
    font-size: 50px;
    font-weight: bold;
    line-height: 61px;
    padding: 0;
    margin: 0;
}

.nt-left .nlt-bo .nb-left span,
.nl-bo ul li .nl-date h5 span {
    font-size: 14px;
}

.nl-bo ul li:hover .nl-date h5 {
    color: #019EEB;
    transition: .3s all;
}

.nl-bo ul li:hover .nl-date span {
    color: #019EEB;
    transition: .3s all;
}

.nl-bo ul li:hover .nl-date em {
    background-position: -6px -455px;
    transition: .3s all;
}

.nl-bo ul li a img {
    float: left;
    width: 45.8%;
}

.nl-bo ul li .nl-libody {
    float: left;
    width: 50%;
    margin-left: 25px;
}

.nl-bo ul li .nl-libody h4 {
    font-size: 20px;
    line-height: 24px;
    color: #333;
    font-weight: bold;
    transition: .3s all;
    margin-bottom: 20px
}

.nl-bo ul li .nl-libody h4:hover {
    color: #019EEB;
}

.nlist.w {
    overflow: visible
}

.nl-bo ul li .nl-date {
    position: absolute;
    right: 50px;
    top: 90px;
    text-align;
    center
}

.nl-date span {
    line-height: 30px;
}

.nl-bo ul li .nl-date h5 {
    margin-left: -2px;
}

.nl-bo ul li .nl-date em {
    width: 15px;
    height: 15px;
    background: url;
    display: block;
    margin-top: 5px;
}

.nl-bo .nl-share {
    position: absolute;
    left: 49%;
    bottom: 20px;
    width: 135px;
    height: 27px;
    line-height: 27px;
    border-radius: 27px;
    -moz-border-radius: 27px;
    border: 1px solid #F1F1F1;
}

.nl-libody span {
    color: #666;
    line-height: 24px;
    font-size: 14px;
}

.nl-bo ul li .nl-libody p:first-child {
    margin-top: 0;
    width: 55%;
    display: inline-block;
    line-height: 27px;
    border-right: 1px solid #E5E5E5;
}

.nl-bo ul li .nl-libody p:first-child em {
    margin: 8px 10px 0 20px;
}

.nl-bo .nl-share p {
    color: #666;
    width: 80px;
}

.nl-bo .nl-share p em {
    width: 16px;
    height: 11px;
    background: url(../img/view.jpg) no-repeat;
    float: left;
}

.nl-bo .nl-share p.nl-sharet {
    float: right;
    width: 52px;
    margin-top: 0;
    text-align: center;
    margin-top: -3px
}

.nl-bo .nl-share p.nl-sharet em {
    width: 11px;
    height: 18px;
    margin-left: -5px;
    display: block;
    background: url(../img/share.jpg) no-repeat;
}

.bdsharebuttonbox .bds_more {
    background-image: none!important;
    width: 100%!important
}


/*newslist end*/


/*oem*/

.oem {
    margin: 50px auto 70px;
}

.oem .zw-title p {
    width: 80%;
}

.oemcase {
    margin-bottom: 50px;
}

.oemeq p {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}


/*oem end*/


/*video*/

.box-video {
    width: 850px;
    height: 530px;
    margin: 0 auto;
    position: relative;
}

.box .upbox,
.box .box-video img,
.box .obj-box .obj {
    height: 530px;
}


/*video end*/


/* box */

.box {
    margin-bottom: 70px;
}

.boxsize p,
.boxys p {
    text-align: center;
}

.box h3 {
    font-weight: 400;
    text-align:center
}


/*box end*/


/*wurenchaoshi*/

.wurenchaoshi {
    margin: 50px auto 70px;
}

.zhuanlier {
    background-color: #F4F4F4;
    margin-top: 50px;
    padding: 30px 0;
}

.xiaolv {
    background: url(../img/xiaolv.jpg) no-repeat fixed;
    background-size: cover;
    height: 330px;
}

.xiaolv h3 {
    color: #fff;
    padding-top: 30px;
}

.xiaolv-body span {
    font-size: 16px;
    line-height: 50px;
}

.xiaolv-body p {
    font-size: 70px;
    line-height: 92px;
}

.xiaolv-body p sub {
    font-size: 32px;
}

.xiaolv .xiaolv-body li {
    width: 25%;
    float: left;
    color: #fff;
}

.xiaolv .xiaolv-body li span {
    display: block;
}

.xiaolv .xiaolv-body li i {
    font-size: 36px;
}

.faq-list li {
    padding: 20px 3% 30px;
    width: 94%;
    border: 1px solid #E0E0E0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.faq-list li:hover {
    background-color: #019EEB;
    color: #fff;
}

.faq-list li:hover h4,
.faq-list li:hover p {
    color: #fff;
}

.faq-list li h4 {
    font-size: 16px;
    line-height: 24px;
    color: #666;
    padding: 10px 0;
}

.faq-list li p {
    font-size: 14px;
    color: #999;
}


/*wurenchaoshi end*/
.fixed-400 {
    width: 120px;
    height: 80px;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background-color: #F39C11;
    color: #fff;
    text-align: center;
    position: fixed;
    right: 0;
    bottom: 35%;
    margin-top: -35px;
    line-height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    animation: bs 3s;
    -moz-animation: bs 3s;
    /* Firefox */
    -webkit-animation: bs 3s;
    /* Safari 和 Chrome */
    -o-animation: bs 3s;
    /* Opera */
    animation-iteration-count: infinite;
}
#newBridge .icon-right-center{right:0 !important;}
.fixed-400 p {
    color: #fff;
    border-bottom: 1px dashed #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 40px;
}

.fixed-400 a {
    color: #fff;
}
.proserach form#schform{position:relative;}
.proserach input#search{width:67%;padding-left:3%;color:#777;border:1px solid #ccc;height:30px;background:url(img/search.jpg) no-repeat center right #fff;}
.proserach input.prbtn{position:absolute;width:15%;right:30%;height:30px;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;cursor:pointer;}
.proleft{margin:40px auto;width:1200px;overflow:hidden;}
.proleft .prorec p{width:100%;font-size:18px;border-bottom:1px solid #CCC;padding-bottom:20px;}
.proleft .prorec p a.prorec-a{float:right;padding-right:3%;}
.proleft .prorec{overflow:hidden;}
.proleft .prorec ul{margin:30px 0;overflow:hidden;}
.proleft .prorec ul li{float:left;width:21.6%;padding:10px 1.6% 20px 1.5%;border:1px dashed #ccc;}
.proleft .prorec ul li a img{width:100%;min-height:54px;}
.proleft .prorec ul li a img:hover{opacity:0.8;filter:alpha(opacity=80);}
.proleft .prorec ul li a h4{text-align:center;padding-top:15px;color:#454545;min-height:40px;overflow:hidden;}
.proleft .prorec ul li a h4:hover{color:#47B8D4;transition:all .3s;}
.prointerest{overflow:hidden;}
.prointerest p{padding:25px 0;}
.prointerest p a{padding:0 2%;}
.prointerest p a.pipa{padding-left:0;}
.prointerest p.pip{border-bottom:1px solid #ccc;overflow:hidden;}
.prointerest ul li{float:left;}
.proright{float:right;width:25%;margin-top:40px;overflow:hidden;}
p.propubt{font-size:15px;font-weight:700;color:#464646;margin-bottom:25px;}
.proright p.prrec{width:100%;margin-top:30px;}
.proright p.prrec a{padding:0 3%;}
.proright ul li{line-height:30px;}
.prpronews{width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;}
.procontact,.prpronews{margin-top:30px;}
.proserach{position:relative;}
.searchright input.inputk{display:block;width:80%;height:37px;padding-left:10px;line-height:37px;color:#999;border:1px solid #c9c9c9;background:url(img/search.jpg) no-repeat center right #fff;}
.searchright input.prbtn{position:absolute;width:40px;height:37px;right:18%;bottom:0;opacity:0;filter:alpha(opacity=0);cursor:pointer;}
.pronr{position:relative;}
.pronr h3{font-weight:700;color:#333;font-size:18px;margin:20px 0;}
.pronr h4{font-weight:700;color:#333;font-size:15px;margin:15px 0;}
p.prohn,.lbjcl img,.shcs img{display:none;}
.ptleft p{line-height:30px;text-indent:2em;}
.cpsm p{text-indent:0;}
.pronrtitle{padding:20px 0;overflow:hidden;border-bottom:1px solid #ccc;width:100%;z-index:99;}
.pronrtitle h1{font-weight:700;color:#1E1E1E;font-size:24px;width:30%;float:left;}
.pronrtitle ul{width:60%;float:right;overflow:hidden;}
.pronrtitle ul li{float:left;padding-right:5%;padding-bottom:10px;+padding-right:4%;+padding-bottom:5px;}
.pronrtop{overflow:hidden;padding:40px 0;}
.dxal h4,.shcs h4{font-weight: bold;margin-bottom:20px;font-size:16px;text-align: center;}
.ptleft{float:left;width:45%;position:relative;min-height:400px;}
.ptleft p.pnintroduction{width:100%;margin-top:10px;padding-bottom:10px;color:#3b3b3b;line-height:250%;text-indent:2em;overflow:hidden;margin-top:-10px;}
.ptleft .cpsm{padding-top:10px;}
.ptleft .pnexplain{width:100%;height:150px;background:#0597BC;border-radius:10px;margin-top:20px;}
.pnexplain ul li{line-height:45px;color:#fff;}
.pnexplain ul li i{font-size:30px;padding:0 5%;}
.pnexplain ul li i.pnzl:before{content:"\f01b1";}
.pnexplain ul li i.pnjg:before{content:"\f00fd";}
.pnexplain ul li i.pnjh:before{content:"\3432";}
.ptright{float:right;width:45%;}
.pronrimg{position:relative;width:100%;width:400px;height:400px;overflow:hidden;}
.pronrimg .pic{position:relative;z-index:0;}
.pronrimg .pic img{width:100%;max-width:400px;display:block;}
.pronrimg .hd{width:100%;height:20px;position:absolute;bottom:10px;text-align:center;font-size:0;z-index:1;}
.pronrimg .hd li{margin:0 5px;background:url(img/dotpn.png) no-repeat 0 -16px;height:16px;overflow:hidden;width:16px;cursor:pointer;display:inline-block;zoom:1;_background:url(img/dotpnt.png) no-repeat 0 -16px;}
.pronrimg .hd .on{background-position:0 0;}
.pncontact{border:1px solid #ccc;border-left:none;border-right:none;box-shadow:0 0 2px rgba(51,51,51,.4);padding:30px 0;text-align:center;cursor:pointer;}
.pncontact p.seonline{width:20%;margin:0 auto;}
.pncontact p.pncont{margin-top:20px;font-weight:700;color:#333;}
.pnuse,.pntd,.shcs,.cpfw,.dhlc,.cpys,.dxal,.lbjcl,.cpsyt,.xgcp{overflow:hidden;border-bottom:1px solid #ccc;padding-bottom:20px;line-height:30px;}
.lbjcl h2{line-height:40px;font-size:14px;font-weight:700;color:#555;}
.pronr table,.pubnr table{width:100%;border:1px solid #999;border-left:none;border-top:none;text-align:center;}
.pronr table tr,.pubnr table tr{line-height:30px;color:#676767;height:30px;}
.pronr table tr:nth-child(odd):hover,.pronr table tr:nth-child(even):hover,.shcs table tr:nth-child(even):hover,.pubnr table tr:nth-child(odd):hover,.pubnr table tr:nth-child(even):hover{background:#73B1E0;}
.pronr table tr:nth-child(odd):hover td,.shcs table tr:nth-child(even):hover td,.pubnr table tr:nth-child(odd):hover td{color:#fff;}
.pronr table tr td,.pubnr table tr td{color:#676767;font-size:14px;border-left:1px solid #999;border-top:1px solid #999;}
.pronr table tr:nth-child(odd),.pubnr table tr:nth-child(odd){background:#D1DAE0;}
.pronr table tr:nth-child(even),.pubnr table tr:nth-child(even){background:#EFEFEF;}
.xgcp dl{float:left;width:13%;overflow:hidden;padding:0 1.8%;}
.xgcp dl dt img{width:100%;}
.xgcp dl dt img:hover{opacity: 0.8;filter:alpha(opacity=80)}
.xgcp dl dd{padding:4% 0;width:100%;text-align:center;}
.cpfwleft{width:100%;float:left;}
.cpfwleft strong{margin:15px 0;}
.cpfwright{width:25px;float:right;}
.pnonline{margin:50px 0;overflow:hidden;border-bottom:1px solid #ccc;padding-bottom:50px;}
.pnonline h4{font-weight:700;color:#3b3b3b;padding-bottom:20px;font-size:16px;}
.poleft{width:65%;float:left;}
.poleft p{color:#3b3b3b;width:80%;}
.poleft ul li input{width:80%;height:40px;color:#afafaf;padding-left:10px;}
.poleft ul li{height:44px;margin-top:30px;line-height:44px;}
ul.ultable li input{border:1px solid #A9A9A9;line-height:40px;height:40px;}
.poleft .more textarea{color:#afafaf;width:100%;height:125px;padding-left:10px;padding-top:10px;margin-top:30px;border:1px solid #a9a9a9;}
p.proyzm{margin-top:30px;}
p.proyzm input{margin-left:20px;width:100px;border:1px solid #999}
.pnsub .asubmit{background:#ff9000;color:#FFF;width:110px;height:30px;line-height:30px;cursor:pointer;border:none;padding-left:0;}
.pnsub .asubmit:hover{background:#FF8406;}
.pnsub .areset:hover{background:#373737;}
.pnsub li{float:left;}
.pnsub .areset{background:#454545;margin-left:30px;color:#fff;width:110px;height:30px;line-height:30px;cursor:pointer;border:none;}
.poright{width:25%;float:right;border-left:1px solid #ccc;padding-left:8%;}
.poright li{line-height:30px;}
.poright p.pronline{border-bottom:1px solid #ccc;padding-bottom:20px;margin-top:20px;}
ul.pnnews li{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.maxw{width: 1200px;margin:30px auto}
p.seonline {
    width: 70%;
    height: 40px;
    line-height: 40px;
    background: #0597BC;
    text-align: center;
    margin: 30px 0;
    transition: all .5s;
    color: #FFF;
}
p.seonline a {
    display: block;
    width: 100%;
    cursor: pointer;
    color: #fff;
    height: 40px;
}
.linker{background-color: #F5F5F5;overflow: hidden;color:#333;}
.link{padding:10px 0;overflow: hidden;width: 1200px;margin:0 auto}
.link p{float:left}
.link a{color:#333;}
.link a:hover{color:#666;cursor:cursor:pointer;}
.link li:first-child a:hover{cursor:default;text-decoration: none;color:#333}
.link li{float:left;margin:0 0.5%;list-style: none;font-size: 14px;line-height: 22px;}