@charset "utf-8";
/* CSS Document */

div {
    /*margin: 0 auto*/
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

* {
    font-family: 微软雅黑, iconfont !important;
}

body {
    font: 14px 微软雅黑, SimHei, SimSun, Verdana, Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
    color: #222
}

address, cite, dfn, em, var {
    font-style: normal
}

code, kbd, pre, samp {
    font-family: courier new, courier, monospace
}

small {
    font-size: 12px
}

s ol, ul {
    list-style: none
}

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


sup {
    vertical-align: text-top
}

sub {
    vertical-align: text-bottom
}

legend {
    color: #000
}

fieldset, img {
    border: 0;
}

button, input, select, textarea {

}

table {
    border-collapse: collapse;
    border-spacing: 0
}


.w1280 {
    width: 1280px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.index_t {
    text-align: center;
    line-height: 35px;
    padding: 10px 0 30px 0;
}

.index_t div {
    font-size: 35px;
    color: #cccccc;
}

.index_t h2 {
    font-size: 30px;
    color: #333333;
}


.button {

  --text: #fff;
  --font-size: 16px;
  --duration: .5s;
  --move-hover: -4px;

  padding: 22px 32px;
  font-family: 'Roboto';

  line-height: var(--font-size);
  border-radius: 24px;
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: .5px;
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
          transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.button span {
  display: flex;
}
.button span i {
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-style: normal;
}
.button span i:nth-child(1) {
  --d: 0.05s;
}
.button span i:nth-child(2) {
  --d: 0.1s;
}
.button span i:nth-child(3) {
  --d: 0.15s;
}
.button span i:nth-child(4) {
  --d: 0.2s;
}
.button span i:nth-child(5) {
  --d: 0.25s;
}
.button span i:nth-child(6) {
  --d: 0.3s;
}
.button span i:nth-child(7) {
  --d: 0.35s;
}
.button span i:nth-child(8) {
  --d: 0.4s;
}
.button span i:nth-child(9) {
  --d: 0.45s;
}
.button span i:nth-child(10) {
  --d: 0.5s;
}
.button span i:nth-child(11) {
  --d: 0.55s;
}
.button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -4px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, .2);
}
.button:hover i {
  -webkit-animation: move var(--duration) linear var(--d);
          animation: move var(--duration) linear var(--d);
}

.button.drive {
  --move: 16px;
  --skew: 25deg;
  --skew-fast: 40deg;
  --skew-bounce: -12px;
}
.button.drive:hover i {
  --duration: 1s;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-animation: drive var(--duration) linear var(--d);
          animation: drive var(--duration) linear var(--d);
}

@-webkit-keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
            transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}

@keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
            transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@-webkit-keyframes smoke {
  45%,
    55% {
    -webkit-filter: blur(var(--blur));
            filter: blur(var(--blur));
  }
  50%,
    50.1% {
    opacity: 0;
  }
  25%,
    75% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
            transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
            transform: translateX(calc(var(--move) * -1));
  }
}
@keyframes smoke {
  45%,
    55% {
    -webkit-filter: blur(var(--blur));
            filter: blur(var(--blur));
  }
  50%,
    50.1% {
    opacity: 0;
  }
  25%,
    75% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
            transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
            transform: translateX(calc(var(--move) * -1));
  }
}
@-webkit-keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
            transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
            transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
    56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
            transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
            transform: skewX(var(--skew-bounce));
  }
}
@keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
            transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
            transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
    56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
            transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
            transform: skewX(var(--skew-bounce));
  }
}




.eucanaex{margin-right: 20px; font-weight: 900; color: #fff !important; background-color:#0542bc; padding-left: 3px; padding-right:3px;}



/*理由*/
#adv {
    width: 1200px;
    margin: 20px auto 0;
}
.adv_t {
    height: 95px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
    background: url(/images/20171026150013_1473163986.jpg) bottom center no-repeat;
}
.adv_t p {
    display: block;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 22px;
}
.ysbox_l {
    width: 397px;
    overflow: hidden;
}
.ysbox_l01 {
    width: 397px;
    overflow: hidden;
}
.ysbox_l01 i {
    width: 397px;
    height: 162px;
    display: block;
    overflow: hidden;
}
em, i, stong {
    font-style: normal;
    font-weight: normal;
}
.ysbox_l01 i img {
    width: 397px;
    height: 162px;
    display: block;
    overflow: hidden;
}
.ysbox_l01 dl {
    width: 397px;
    height: 125px;
    background-color: #eeeff4;
    display: block;
    overflow: hidden;
}
.ysbox_l01 dl dd {
    width: 350px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
    margin-top: 15px;
    font-size: 21px;
    color: #1f72ec;
    display: block;
    overflow: hidden;
}
.ysbox_l01 dl dt {
    width: 350px;
    height: 45px;
    line-height: 21px;
    margin: 10px auto 0;
    font-size: 14px;
    text-align: justify;
    display: block;
    overflow: hidden;
}
.ysbox_l02 {
    width: 397px;
    margin-top: 6px;
    overflow: hidden;
}
.ysbox_l02 i {
    width: 397px;
    height: 162px;
    display: block;
    overflow: hidden;
}
.ysbox_l02 i img {
    width: 397px;
    height: 162px;
    display: block;
    overflow: hidden;
}
.ysbox_l02 dl {
    width: 397px;
    height: 125px;
    background-color: #eeeff4;
    display: block;
    overflow: hidden;
}
.ysbox_l02 dl dd {
    width: 350px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
    margin-top: 15px;
    font-size: 21px;
    color: #1f72ec;
    display: block;
    overflow: hidden;
}
.ysbox_l02 dl dt {
    width: 350px;
    height: 45px;
    line-height: 21px;
    margin: 0 auto;
    font-size: 14px;
    text-align: justify;
    display: block;
    overflow: hidden;
}
.ysbox_m {
    width: 398px;
    height: 582px;
    margin-left: 4px;
    margin-right: 4px;
    overflow: hidden;
}
.ysbox_m i {
    width: 398px;
    height: 582px;
    position: absolute;
    display: block;
    overflow: hidden;
}
.ysbox_m dl {
    width: 398px;
    height: 148px;
    background: url(../img/cy_20.png) no-repeat;
    margin-top: 431px;
    position: relative;
    z-index: 100;
    text-align: center;
    color: #ffffff;
    display: block;
    overflow: hidden;
}
.ysbox_m dl dd {
    margin-top: 20px;
    font-size: 28px;
    display: block;
    overflow: hidden;
}
.ysbox_m dl dt {
    font-size: 28px;
    display: block;
    overflow: hidden;
}
/*neiyexiugai*/
.mianbaoxie {
    font-size: 14px;
    line-height: 45px;
    margin-bottom: 30px;
    background: #f4f4f4;
}
.mianbaoxie .warpper {
    padding-left: 20px;
    position: relative;
}
.warpper {
    width: 1280px;
    margin: 0 auto;
}
.mianbaoxie .warpper:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background: #009d2c;
}
.pro-type {
    margin-bottom: 40px;
    text-align: center;
}
.pro-type a {
display: inline-block;
    line-height: 45px;
    font-size: 16px;
    color: #ffffff;
    background: #0542bc;
    padding: 0 22px;
    border-radius: px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.in-company-left {
    width: 800px;
}
.in-company-left .fir {
    font-size: 24px;
    color: #1b1b1b;
    font-weight: 700;
}
.line_1 {
    width: 32px;
    height: 3px;
    background: #009d2c;
    margin-top: 12px;
}
.des {
    font-size: 16px;
    color: #333;
    line-height: 32px;
    text-align: justify;
    margin: 19px 0 0 0;
}
.in-company .in-company-right {
    width: 423px;
}
.in-company-right img {
    max-width: 100%;
}
.pcon {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.pcon .pcon-list {
    width: 48%;
    padding: 25px;
    background: #f7f7f7;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 32px;
}
.mobile_1 {
    margin-bottom: 25px;
    background: url(../img/c-phone.png) no-repeat left center;
}
.pcon-list-item {
    padding-left: 55px;
}
.fir {
    font-size: 20px;
    color: #333;
}
.sec {
    font-size: 14px;
    color: #666;
}
.address {
    background: url(../img/c-address.png) no-repeat left center;
}
.imgbox {
    float: left;
    width: 130px;
}
.imgbox img {
    width: 100%;
}
.text_11 {
    float: left;
    margin-left: 20px;
    margin-top: 38px;
}
.pro-type a:hover {
    background: #046fcd;
    color: #fff;
}
.sort_news_right {
    text-align: center;
}
.news-inner-top-list {
    float: left;
    width: 600px;
    margin-right: 24px;
    margin-bottom: 10px;
}

.imgbox_2 {
    width: 100px;
    height: 100px;
    float: left;

}
.pic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.time1_1 {


    padding: 30px 0;
    color: #fff;
    background: #0542bc;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.news-inner-top-list:hover .imgbox_2 .time1_1 {
    top: 5px;
    box-shadow: 0px 0px 5px #333;
}
.time1_1 span {
    display: block;
    color: #fff;
}
.time1_1 span:nth-child(1) {
    font-size: 25px;
    font-weight: 700;
}
.time1_1 span:nth-child(2) {
    font-size: 14px;
}
.text_2 {
  width: 464px; float:right;
    padding: 20px 15px;
    border: 1px solid #eee;
    text-align: left;
}
.title_2 {
    font-size: 18px;
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-align: left;
}
.des_2 {
    color: #666;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    margin-top: 5px;
}
.news-inner-top-list:hover .text_2 .title_2 {
    color: #0542bc;
}
.news-detail-title {
    padding-bottom: 15px;
    border-bottom: 1px dashed #ededed;
    text-align: center;
    margin-bottom: 15px;
}
.h31 {
    font-size: 18px;
    color: #323232;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}
.bb {
    font-size: 13px;
    color: #999999;
    line-height: 20px;
}
.news-detail {
    padding: 0 12px 20px;
    font-size: 15px;
    line-height: 30px;
}
.newsPage {
    font-size: 14px;
    color: #323232;
    line-height: 30px;
    margin: 15px 0 0;
    border-top: 1px solid #ededed;
    padding-top: 10px;
    position: relative;
}
.newsPage a {
    color: #323232;
}
.img_3 {
    border: 1px solid #ddd;
    padding: 5px;
}

.img_3 img {
    max-width: 100%;
    height: 220px;
    margin: 0 auto;
    text-align: center;
}
/*新增liuyan*/
.lxcon-form {
    margin-top: 20px;
    background: #f7f7f7;
    padding: 25px;
}
.lxcon-form .inputbox input {
    float: left;
    width: 46%;
    line-height: 40px;
    border: 1px solid #eee;
    padding: 0 20px;
    color: #888;
    font-size: 14px;
    outline: none;
    background: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.lxcon-form .inputbox input:nth-child(2n) {
    margin-right: 0;
}
.lxcon-form .submit {
    margin: 15px auto 0;
    display: block;
    width: 438px;
    border-radius: 5px;
    height: 42px;
    line-height: 42px;
    background: #0542bc;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

/*新增*/
.fenleik{
    border: 1px solid #e3e3e3; border-bottom:none; background:#fff;
}
.eiivavae{ margin-top: 66px; }
.euumqcac{ position:relative; margin-top: 50px;}
.euumqcac ul li{position:absolute;}
.euumqcac ul li:nth-child(1){ top: 0px; left: 0px; border:solid 1px #e5e5e5;width: 282px; }
.euumqcac ul li:nth-child(2){top:135px; left: 0px;  }
.euumqcac ul li:nth-child(3){top:0px; left: 294px; }
.euumqcac ul li:nth-child(4){top:271px; left: 294px;  }
.euumqcac ul li:nth-child(5){top:0px; left: 600px; }
.euumqcac ul li:nth-child(6){top:136px; left: 600px;  }
.euumqcac ul li:nth-child(7){top:270px; left: 600px; }
.euumqcac ul li:nth-child(8){top:0px; right: 0px;  }


.ewxwx{ width: 240px; margin-left: auto; margin-right: auto;    color: #0668c3;font-size: 36px; text-align: center; }
.ikvnaw{ width: 200px; margin-left: auto; margin-right: auto; border-top: solid 1px #cbdbeb; text-align: center;    font-size: 18px; color: #6e6e6e; margin-top: 15px; padding-top: 15px; padding-bottom: 15px;}
.euumqcac ul li:nth-child(2) img{ width: 100%;height: 100%; }
.evcew{ position: absolute;bottom: 0px; height:40px; line-height: 40px;color: #fff; z-index: 9999; text-align: center;width: 100%;background-color: rgba(0, 0, 0, 0.7); }














.remen h1{
    display: inline-block;
    color:#333333;
}
.content {
    width: 1280px;
    margin: 0 auto;
}

/*fw*/
.sec-titles {
    text-align: center;
    padding: 40px 0;
    position: relative;
}
.sec-titles h2 {
    font-size: 30px;
    color: #252525;
    font-weight: bold;
    background: url(../img/line.png) no-repeat bottom center;
    padding-bottom: 10px;
}
.sec-titles p {
    font-size: 14px;
    margin-top: 8px;
}
.pro {
    overflow: hidden;
    margin-bottom: 40px;
}
.pro .proLt {
    float: left;
    overflow: hidden;
    border: 1px solid #f1f0f0;
    border-radius: 5px;
    width: 238px;
}
.pro .proLt h2 {
    background: url(../img/prolth2bg.png) no-repeat center;
    width: 238px;
    height: 84px;
    overflow: hidden;
}
.pro .proLt h2 a {
    font-size: 20px;
    color: #fff;
    display: block;
    text-indent: 65px;
    margin-top: 21px;
}
.pro .proLt h2 span {
    display: block;
    text-indent: 65px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
.pro .proDl dt {
    background: url(../img/pro_lt_hoverbg.png) no-repeat center top;
    width: 238px;
    height: 55px;
    line-height: 55px;
    text-indent: 22px;
    font-size: 16px;
}
.pro .proDl dt a {
    color: #333;
}
.pro .proWen {
    padding: 40px 0;
    font-size: 24px;
    color: #fff;
    text-align: center;
    border-radius: 0 0 5px 5px;
    background-color: #2383cf;
    overflow: hidden;
    width: 100%;
}
.pro .proWen p {
    margin-top: 5px;
    font-size: 14px;
}
.pro .proWen h4 {
    margin-top: 10px;
    font-size: 30px;
}
.container{
    width:1200px;
    margin:0 auto;
}
.proWen h3, .proWen h4 {
    color: #fff;
}
.product_right {
    width: 940px;
    overflow: hidden;
    float: right;
}
.product_right ul li {
    float: left;
    width: 298px;
    border: 1px solid #ddd;
    margin: 0px 20px 20px 0px;
    background: #fff;
}
.product_right ul li:nth-child(3n) {
    margin-right: 0;
}
.product_right ul li b {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}
.product_right ul li a img {
	max-width: 100%;
	height: 200px;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
}
.product_right ul li img:hover {
	transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-webkit-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
}
.product_right ul li span {
	display: block;
	font-size: 15px;
	line-height: 40px;
	text-align: center;
}
.product_right ul li span a {
	display: block;
	color: #333333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 15px;
}
/*gg*/
.c2 {
    background: url(../img/c2bg.png) no-repeat;
    height: 596px;
    position: relative;
}
.c2-con {
    padding-top: 55px;
}
.w {
    width: 1200px;
    margin: 0 auto;
}
.c2-con .c2-left {
    padding: 50px;
    width: 490px;
    border: 2px solid #fff;
    margin-top: 25px;
}
.c2-con .c2-left .wz {
    color: rgb(255, 255, 255);
    font: 22px / 30px 微软雅黑;
    font-weight: bold;
}
.c2-con .c2-left .wz p {
    color: #2383cf;
    font: bold 32px / 50px 微软雅黑;
    background: #fff;
    margin-bottom: 12px;
    width: 200px;
    text-align: center;
}
.c2-con .c2-left .wz p:first-child {
    margin-top: 20px;
}
.c2-con .c2-left .tel2 {
    color: #fff;
    padding-left: 60px;
    margin-top: 45px;
    font: 14px / 20px 微软雅黑;
    background: url(../img/tel2.png) left center no-repeat;
}
.c2-con .c2-left .tel2 p {
    font: normal 30px/40px Arial;
    color: #fff;
}
.c2-con .c2-right {
    width: 570px;
    margin-top: 30px;
}
.c2-con .c2-right .ys01 {
    background: url(../img/yuan1.png) no-repeat left center;
}
.c2-con .c2-right .ys {
    padding-left: 90px;
    margin-bottom: 45px;
    color: #fff;
}
.c2-con .c2-right .ys h3 {
    padding-bottom: 10px;
    font: bold 18px / 30px 微软雅黑;
    background: url(../img/line01.png) left bottom no-repeat;
    color:#fff;
}
.c2-con .c2-right .ys p {
    font-size: 16px;
    line-height: 28px;
    padding-top: 10px;
}
.c2-con .c2-right .ys02{background: url(../img/yuan2.png) no-repeat left center;}
.c2-con .c2-right .ys03{background: url(../img/yuan3.png) no-repeat left center;}






.gg01 {
    overflow: hidden;
    width: 100%;
    background: url(../img/gg01bg.jpg) no-repeat center;
    height: 274px;
}
.gg01 .box {
    float: right;
    width: 710px;
    margin-top: 58px;
}
.gg01 .ggLt {
    float: left;
    color: #fff;
}
.gg01 .ggLt h3 {
    font-size: 30px;
    color: #fff;
}
.gg01 .ggLt p {
    margin-top: 5px;
    font-size: 18px;
}
.gg01 .ggLt i {
    display: block;
    width: 43px;
    height: 2px;
    background-color: #fff;
    margin: 20px 0 25px;
}
.gg01 .ggLt h4 {
    font-weight: normal;
    font-size: 28px;
    color: #fff;
}
.gg01 .gg_a {
    float: right;
    margin-top: 5px;
}
.gg01 .gg_a a {
    display: block;
    margin-bottom: 10px;
}
/*about us*/
.gywm {
    display: block;
    width: 1200px;
    margin:0 auto 40px;
}
.left {
    display: block;
    width: 500px;
    float: left;
}
.right {
    display: block;
    width: 680px;
    float: right;
}
.text {
    line-height: 37px;
    font-size: 17px;
}
.lj {
    display: block;
    width: 91px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #097f2d;
    padding-left: 18px;
    text-decoration: none;
    background: url(../img/trbg.png) no-repeat 80px center;
    font-size: 13px;
    color: #007b25;
    margin-top: 13px;
}
/*jcxs*/
.index-product {
    padding: 0 0 35px;
    background: #f4f4f4;
}
.promenu {
    width: 310px;
    float: left;
    position: relative;
}
.promenu .title {
    color: #fff;
    height: 80px;
    line-height: 60px;
    font-size: 20px;
    padding-left: 35px;
    margin-bottom: 20px;
    position: relative;
    background: url(../img/pro-1.jpg) no-repeat top center;
}
.promenu .title i {
    color: #d4d4d4;
    font-size: 14px;
    padding-left: 10px;
    text-transform: uppercase;
}
.promenu .tit {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    background: #2383cf;
}
.promenu .tit:hover:before {
    width: 100%;
}
.promenu .tit:before {
    top: 0;
    left: 0;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    background: #0168b7;
    -webkit-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}
.promenu .tit span {
    color: #fff;
    cursor: pointer;
    z-index: 1;
    padding-left: 30px;
    padding-right: 50px;
    display: block;
    position: relative;
    background: url(../img/arrow-1.png) no-repeat right 20px;
}
.index-product .probox {
    width: 870px;
    float: right;
}
.index-product .probox .title {
    color: #fff;
    height: 80px;
    line-height: 60px;
    font-size: 20px;
    padding-left: 35px;
    margin-bottom: 20px;
    background: url(../img/pro-2.jpg) no-repeat top center;
}
.index-product .probox .title i {
    color: #d4d4d4;
    font-size: 14px;
    padding-left: 10px;
    text-transform: uppercase;
}
.index-product .probox .title .more {
    float: right;
    color: #fff;
    padding-right: 30px;
}
ul.imglist1 li {
    float: left;
    background: #fff;
    margin: 0 20px 12px 0;
    width: 276px;
}

ul.imglist1 li:nth-child(3n) {
    margin-right: 0;
}
.jcimg {
    border: 1px solid #ddd;
}

.jcimg img {
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    display: block;
}

ul.imglist1 li h4 {
    line-height: 32px;
    text-align: center;
}




/*ys*/
.m_ctr_h {
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f7f7f7;
    padding: 40px 0;
}
.m_ctr2 {
    margin: 0 auto;
    width: 1200px;
    height: auto;
    overflow: hidden;
}
.m_t2 {
    width: 100%;
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}
.m_t2 span {
    border-bottom: 3px #2383cf solid;
    padding-bottom: 10px;
}
.m_ctr21, .m_ctr22, .m_ctr23, .m_ctr24, .m_ctr25, .m_ctr26 {
    margin: 0 0 20px 0;
    float: left;
    width: 395px;
    height: 100px;
    background: url(../img/tel-icon.png) no-repeat #fff;
    display: inline;
    text-align: left;
}
.m_ctt21 {
    float: right;
    width: 260px;
    height: auto;
    padding: 10px;
}
.m_t21 {
    float: left;
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
}
.m_t22 {
    float: left;
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 22px;
    font-size: 14px;
    color: #666;
}
.m_ctr22 {
    margin: 5px 5px 0;
    background: url(../img/tel-icon.png) 0 -200px no-repeat #fff;
}
.m_ctr23 {
    background: url(../img/tel-icon.png) 0 -100px no-repeat #fff;
}
.m_ctr24 {
    background: url(../img/tel-icon.png) right -300px no-repeat #fff;
}
.m_ctr25 {
    margin: 5px 5px 0;
    background: url(../img/tel-icon.png) right -400px no-repeat #fff;
}
.m_ctr26 {
    background: url(../img/tel-icon.png) right -500px no-repeat #fff;
}
/*xinwen*/
.news-box {
    width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 40px auto;
}
.news-box .l {
    width: 750px;
    float: left;
}
.news-box .sort {
    width: 748px;
    height: 60px;
    float: left;
    border: 1px solid #ccc;
    border-bottom: none;
}
.news-box .sort ul li:nth-child(1) {
    background: #2383CF;
}
.news-box .sort ul li {
    width: 373px;
    height: 60px;
    float: left;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
}
.news-box .sort ul li:nth-child(1) a {
    color: white;
}
.news-box .sort ul li a {
    display: block;
}
.news-box .l .show {
    overflow: hidden;
    border: 1px solid #ccc;
    padding-bottom: 20px;
}
.news-box .l .show .imgnew {
    padding: 15px;
}
.news-box .l .show .imgnew img {
    width: 150px;
    float: left;
    height: 100px;
}
.news-box .l .show .imgnew .info {
    float: right;
    width: 550px;
}
.news-box .l .show .imgnew .info h3 {
    font-size: 16px;
    font-weight: bold;
}
.news-box .l .show .imgnew .info h4 {
    font-size: 14px;
    padding-top: 8px;
    line-height: 28px;
}
.news-box .l .show .hangye {
    margin: 15px 15px 0 15px;
}
.news-box .l .show .hangye ul li:nth-child(2n-1) {
    margin-left: 0px;
}
.news-box .l .show .hangye ul li {
    width: 48%;
    float: left;
    margin-left: 4%;
    font-size: 15px;
    background: url(../img/new-p.png) no-repeat center left;
    text-indent: 20px;
    line-height: 38px;
}
.news-box .r {
    width: 415px;
    float: right;
}
.news-box .r .tip {
    width: 415px;
    height: 60px;
    float: right;
    background: url(../img/newh3.png);
    line-height: 64px;
    font-size: 18px;
    color: white;
    text-indent: 85px;
}
.news-box .r ul {
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    margin-top: 15px;
    float: left;
}
.news-box .r ul li {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.news-box .r ul li h2 {
    width: 100%;
    height: 25px;
    padding-bottom: 10px;
}
.news-box .r ul li h2 span {
    width: 25px;
    height: 25px;
    float: left;
    display: block;
}
.news-box .r ul li h2 .info {
    width: 375px;
    float: right;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
}
.news-box .r ul li h3{
    width: 100%;
}

.news-box .r ul li h3 span{
    width: 25px;
    height: 25px;
    float: left;
    display: block;
}

.news-box .r ul li h3 .info{
    width: 375px;
    float: right;
    line-height: 25px;
}

/*xzdibu*/
.out-foot {
    background: #2383cf;
    height: 165px;
    overflow: hidden;
}
.foot {
    width: 1280px;
    margin: 0 auto;
    height: 105px;
    padding-top: 35px;
}
.foot1 span {
    color: #fff;
}
.f2 img {
    float: left;
    width: 108px;
    height: 108px;
    display: block;
}
.link {
    height: auto;
    overflow: hidden;
}
.f_link {
    width: 1200px;
    margin: 0 auto;
    line-height: 40px;
}
.f_link a {
    font: 400 14px/40px 微软雅黑;
}
.sydblx p {
    color: #fff;
    display: inline-block;
    margin-right: 18px;
    font-size: 15px;
}

.sydblx {
    margin: 5px 0 10px 0;
}
.f2 {
    background: #fff;
    padding: 8px;
    margin-top: -13px;
}

.anlikz {
	width: 1280px;
	margin: 32px auto 0;
}
.marqueeleft {
	width:100%;
	overflow:hidden;
	margin:0px auto;
}
.marqueeleft ul {
	float:left;
}
.marqueeleft li {
	float:left;
	margin: 0 20px 0 0;
	display:inline;
	overflow:hidden;
	width: 290px;
}
.marqueeleft li .pic {
	display:block;
	border:#ccc 1px solid;
	padding:5px;
	overflow:hidden;
	text-align: center;
	position: relative;
}
.marqueeleft li .txt {
	text-align: center;
	height: 35px;
	line-height: 35px;
}
.marqueeleft ul li a img {
	max-width:100%;
	height:200px;
	display: block;
}
.eiivavae{ width: 1200px; margin-left: auto; margin-right: auto;    margin-bottom: 110px; }
.eiancwx{ width:220px; float: left; }
.uuvnaea{ width:950px; float:right; }
.euuanwx{ font-weight: 900; color: #333333; font-size: 35px; }
.euunvaq{ font-size: 18px;line-height: 30px; margin-top: 10px; }

.qunavawx{ background-image: url(../img/about_bg_02.jpg); background-repeat: no-repeat; background-position: center center; height: 524px; margin-bottom: 110px; }

.euvanvaax{ width: 1200px; margin-left: auto; margin-right: auto;
 -vendor-animation-duration: 3s; //动画持续时间
   -vendor-animation-delay: 2s; //动画延迟时间
   -vendor-animation-iteration-count: infinite; //动画执行次数,这里是一直执行
}
.qucuanawx{width: 800px; float: left;}
.qvaeaw{ font-weight:900; color: #fff; font-size: 30px; padding-top: 80px; }
.yvjavw{ font-size: 14px; color: #99a8c0; }
.quunvae{width: 575px; margin-top: 20px; color: #fff; line-height: 30px;}
.ivamvaea{width:100%; background-color:#ffffff; height:110px; padding: 15px; box-sizing: border-box;  }
.ivamvaea ul li{    width: 153px;float: left;border-right: solid 1px #d4d4d4;}
.ivamvaea ul li:nth-child(5) {border-right: none;}
.euunv{width:44px; margin-left: auto; margin-right: auto; }
.ivamvaea ul li span{ display: block; width: 100%; text-align: center;line-height: 40px;}
.eucuanvaea{width: 145px; height: 40px;background:#ffa200; border-radius: 10px; margin-top: 10px; overflow: hidden}
.eucuanvaea a{ width: 145px; text-align: center; line-height: 40px; color: #fff; display: block; }
.uemvaeawx{ height: 40px; width: 0px;transition: width 0.5s; }
.eucuanvaea:hover .uemvaeawx{ width: 145px; background-color:#123; }
.qyycw{ background: url(../img/application_bg_1_02.jpg) no-repeat left top, url(../img/application_bg_2_03.jpg) no-repeat bottom right;}
.ivkavmae{width: 1200px; margin-left: auto; margin-right: auto; height: 700px;}

.ikvq{ width: 900px; float: left; }
.yhcaw{ width:300px; float: right; }
.yybvaa{font-weight: bold;font-size: 28px;}
.yecaec{font-size: 16px;
    padding-left: 80px;
    position: relative;}
  .yecaec:before {
    content: '';
    position: absolute;
    left: calc(-300px + 50px);
    top: 10px;
    width: 300px;
    height: 1px;
    background-color: #ccc;
}
.yecaec{ margin-top: 10px; }

  .yecaec:after {
    content: '';
    position: absolute;
    left: calc(-250px + 50px);
    bottom: 5px;
    width: 250px;
    height: 1px;
    background-color: #ccc;
}
.yecaec span{ font-size: 18px; color: #f6450f }
.euuavnwxw{display: block;font-size: 18px; text-align: center;}
.uvuavnwa{ font-size: 30px; font-weight: bold;text-align: center; }
.pvavw{width:100px;margin-left: auto; margin-right: auto;}
.pvavw a{    border-radius: 10px;
    line-height: 1;
    color: #fff;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center;transition: border-radius 1s; 
    box-sizing: border-box;
    background: linear-gradient(to right, #f27131, #e7213f);}
 .pvavw a:hover{ border-radius: 20px;  }

.ikava{ width: 100%; background-color:#eaeaeb; padding-top: 40px; padding-bottom: 40px; }
.ujvnq{ width: 1200px; margin-left: auto; margin-right: auto; }
.viavwxa{ width:790px; float: left;  }
.qycavawx{width: 400px; float: right; background-color: #fff; padding:30px; box-sizing: border-box;}
.ujvnaq b{ font-size: 25px; font-weight:900; color: #222222; }
.ujvnaq a{float: right;}
.ujvnaq{ border-bottom: dashed 1px #5f5f5f; padding-bottom: 10px; }
.qujanv{border-top: dashed 1px #5f5f5f; padding-bottom: 10px; margin-top: 2px;}
.ujvnaq span{ margin-left: 5px; }
.dinvaew{ width: 80px; height: 88px; float: left;background-color:#0542bc }
.tiank{ font-size: 24px;color: #fff; line-height: 50px; text-align: center; }
.ruqic{ text-align: center; font-size: 17px; color: #fff; }
.ikvnavaexx{width:710px; height: 88px; background-color:#ffffff; float: right; padding-left: 30px; padding-right: 30px; box-sizing: border-box;  }
.umvaq{ font-size: 16px; padding-top: 14px; color: #000; font-weight: bold;}
.ucac{ font-size:15px; margin-top: 10px; }
.euucanvaea ul li{ margin-bottom: 15px; }
.qucunvae{ width: 100%; background-color:#333333; height: 40px; }
.qumvae{ width: 50px; height: 40px; background-color: #0542bc; padding-left: 8px; box-sizing: border-box; padding-top:3px; float: left; }
.uvavwx{ float: left; }
.uvavwx a{ font-size: 15px; color: #fff; line-height: 40px; padding-left: 10px; box-sizing: border-box; }
.iemvavaaw{ width: 100%; margin-top: 19px;}
.uvavnavawa{ margin-top: 30px; }
.iemvavaaw img{ width: 100%; }

.qucavaxw p img{ margin-bottom: 30px; }


/*广告*/
.ggbg img {
    width: 100%;
}

.liuyan {
    position: fixed;
    bottom: 40px;
    right: 40px;
}

/*top*/
.top {
    height: 35px;
    line-height: 35px;
    color: #333333;    border-bottom: solid 1px #ececec;
}

.top a {
    line-height: 35px;
    color: #292929;
}

/*热门关键词*/
.main-keywords {
    background: #efefef;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

.main-keywords h1 {
    width: 1280px;
    margin: 0 auto;
    background: #e6e6e6;
    padding: 0 10px;
}

.main-keywords h1:before {
    content: '热门关键词: ';
}

.product-classifies {
    margin: 20px auto;
    height: 40px;
}

.product-classifies li {
    float: left;
    height: 40px;
    width: 100px;
    margin-right: 10px;
}

.product-classifies li a {
    display: block;
    height: 40px;
    color: #333;
    border: 1px solid #cecece;
    line-height: 40px;
    text-align: center;
}

/*head&nav*/
.head {

}

.head .logo {
    padding: 30px 0 0;
}

.head .tel {
    padding: 18px 0 5px;
}

.nav {
    background-image: linear-gradient(#0542bc, #0542bc);
    height: 65px;
}

.nav .breadcrumbnav {

}
a.cur {
    background: #ff9012;
}
.nav .breadcrumbnav li {
    display: inline-block;
    width: 156px;
    line-height: 60px;
    text-align: center;
    position: relative;
}

.nav .breadcrumbnav li a {
    color: #fff;
    display: block;
    font-size: 16px;
}

.nav .breadcrumbnav .nav_list {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    background: #000000;
    display: none;
    z-index: 9999;
}

.nav .breadcrumbnav .nav_list a {
    color: #fff;
    font-size: 15px;
}

.nav .breadcrumbnav li:hover .nav_list {
    display: block;
}

/*banner*/

.banner {
    width: 100%;
    height: 500px;
    font-size: 0;
    overflow: hidden;
    position: relative;
}

.banner_img {
    width: 100%;
    height: 593px;
    position: absolute;
    left: 0;
    top: 0;
}

.banner_img li {
    width: 100%;
    height: 500px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    list-style: none;
}

.banner_list {
    height: 50px;
    bottom: 0px;
    position: absolute;
    margin: 0 auto;
    z-index: 1;
    left: 0;
    right: 0;
}

.banner_list{ width: 150px !important; }

.banner_list span {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 0px;

    border: 3px solid #fff;
    float: left;
    margin: 0 5px;
}

.banner_list .spcss {
    border: 3px solid #0542bc;
}

.banner_left {
    position: absolute;
    height: 90px;
    width: 60px;
    top: 50%;
    left: -60px;
    background-color: rgba(73, 72, 62, 0.6);
    margin-top: -45px;
    text-align: center;
    transition: all .5s;
    z-index: 2;
}

.banner_left:hover {
    background-color: rgba(73, 72, 62, 0.9);
}

.banner_right {
    position: absolute;
    height: 90px;
    width: 60px;
    top: 50%;
    right: -60px;
    background-color: rgba(73, 72, 62, 0.6);
    margin-top: -45px;
    text-align: center;
    transition: all .5s;
    z-index: 2;
}

.intro {
    position: fixed;
    top: 0px;
    z-index: 9999999;width: 100%;
    background-color: rgba(0,0,0,0.9) !important;
}
.banner_right:hover {
    background-color: rgba(73, 72, 62, 0.9);
}

.banner_left img {
    margin-top: 22px;
}

.banner_right img {
    margin-top: 22px;
}

/*about*/
.about_bg {
    padding: 40px 0 20px 0;
}

.about_bg .fl img {
    width: 560px;
}

.about_bg .fr {
    width: 680px;
}

.about_bg .fr h2 {
    font-size: 30px;
    color: #333333;
}

.about_bg .fr div {
    color: #999999;
    font-size: 16px;
    font-weight: lighter;
    padding-bottom: 30px;
}

.about_bg .fr p {
    font-size: 14px;
    font-weight: lighter;
    color: #999999;
    line-height: 35px;
}

/*优势*/
.youshi {
    font-size: 0;
    text-align: center;
    padding: 40px 0;
}

.youshi ul li {
    float: left;
    width: 25%;
}

.youshi ul li h3 {
    font-size: 20px;
    color: #333333;
    line-height: 35px;
    font-weight: bold;
    padding: 20px 0 5px 0;
}

.youshi ul li p {
    font-size: 14px;
    color: #999999;
    font-weight: lighter;
    line-height: 25px;
    padding: 0 60px;
}

/*产品展示*/
.product_bg {

}

.pro_show {
   margin:30px auto 0;
}

.pro_show_n li p {
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    display: block;
}

.pro_show_n li {
    width: 285px;
    float: left;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
}

.pro_show_n li:nth-child(4n) {
    margin-right: 0;
}

.pro_show_n li a {
    overflow: hidden;
    font-size: 16px;
    font-weight: lighter;
    color: #999;
}

.pro_show_n li a.picshow1 {
    width: 262px;
    height: 213px;
    overflow: hidden;
    display: block;
}
.img_1 {
    border: 1px solid #9f9f9f;
    padding: 5px;
}

.pro_show_n li h4:hover {

}
.img_1 img {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    height: 230px;
}

.pro_show_n li h4 {
    font-size: 16px;
    line-height: 42px;
    color: #333;
}



/*案例*/
.case_bg {
    padding: 60px 0 20px 0;
    font-size: 0;
}

.case_bg .index_t {
    text-align: left;
    padding-top: 0;
}

.case_bg .case_l {
    width: 615px;
}

.case_bg .case_r {
    width: 610px;
}

.case_bg .case_l ul li {
    margin-bottom: 40px;
}

.case_bg .case_l ul li .fl {
    width: 100px;
    -webkit-text-stroke: 1px #b8b8b8;
    color: #fff;
    font-weight: bold;
    font-size: 90px;
    line-height: 90px;
}

.case_bg .case_l ul li .fr {
    width: 460px;
}

.case_bg .case_l ul li .fr h3 {
    font-size: 20px;
    color: #333333;
    padding-bottom: 10px;
}

.case_bg .case_l ul li .fr p {
    font-size: 16px;
    color: #999999;
    line-height: 25px;
    font-weight: lighter;
}

.case_bg .case_r img {
    width: 100%;
}

.case_com {
    background: #39a5ea;
    color: #fff;
    font-size: 20px;
    font-weight: lighter;
    line-height: 35px;
    text-align: center;
    padding: 40px 0;
}


/*新闻*/
.new_bg {
    padding: 40px 0 20px 0;
}

.new_bg ul li {
    float: left;
    width: 410px;
    margin-right: 25px;
}

.new_bg ul li:nth-child(3n) {
    margin-right: 0;
}

.new_bg ul li img {
    width: 100%;
    height: 250px;
}

.new_bg ul li h2 {
    font-size: 20px;
    line-height: 50px;
    color: #333333;
}

.new_bg ul li p {
    font-size: 16px;
    color: #999;
    line-height: 25px;
    font-weight: lighter;
}

.new_bg ul li div {
    font-size: 16px;
    color: #999;
    line-height: 25px;
    font-weight: lighter;
    padding-top: 30px;
}

/*首页留言*/
.index_message {
    background: #39a5ea;
    height: 320px;
    margin-bottom: 220px;
}

.index_message .index_t h2 {
    color: #fff;
}

.index_message .form-group {
    float: left;
    width: 300px;
    margin-bottom: 30px;
    margin-right: 150px;
}

.index_message .form-group:nth-child(3n) {
    margin-right: 0;
}

.index_message form {
    background: #fff;
    padding: 40px;
    box-shadow: 1px 1px 10px #ebebeb;
    margin-bottom: 80px;
}

.index_message p {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.index_message span {
    color: red;
    padding-right: 5px;
}

.index_message .form-group input {
    width: 300px;
    line-height: 40px;
    height: 40px;
    background: #eeeeee;
    text-indent: 10px;
}

.index_message .form-group textarea {
    width: 800px;
    background: #eeeeee;
    height: 80px;
    line-height: 25px;
    text-indent: 10px;
}

.index_message .submit {
    float: right !important;
    width: 185px !important;
}

.index_message .submit button {
    background: #39a5ea;
    color: #fff;
    font-size: 16px;
    font-weight: lighter;
    line-height: 45px;
    margin-top: 30px;
}

.index_message .submit div p {
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    text-align: right;
    margin-top: 80px;
}


/*footer*/
footer {
    background: #040d12;
    padding: 40px 0;
}

footer .fl {
    margin-top: 40px;
}

footer h3 {
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
    margin-bottom: 30px;
}

footer .foot_l {
    width: 465px;
}

footer .foot_l div {
    font-size: 16px;
    font-weight: lighter;
    color: #a4a6a7;
    line-height: 30px;
}

footer .foot_l div p {
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}

footer .foot_l .wx {
    position: relative;
    margin-right: 10px;
}

footer .foot_l .wx > img {
    display: none;
    position: absolute;
    width: 150px;
    bottom: 80px;
}

footer .foot_l .wx:hover > img {
    display: block;
}

footer .foot_m {
    width: 575px;
}

footer .foot_m div {
    font-size: 16px;
    font-weight: lighter;
    color: #a4a6a7;
    line-height: 30px;
    padding-right: 200px;
}

footer .foot_r {
    width: 240px;
}

footer .foot_r div ul li a {
    font-size: 16px;
    font-weight: lighter;
    color: #a4a6a7;
    line-height: 30px;
}

/*company*/
.company {
    margin-bottom: 30px;
}

.sort_list {

}

.sort_list .sort_list_l {
    width: 340px;
}

.sort_list .sort_list_l .index_t {
    text-align: right;
    background: url(../img/fenlei.png) no-repeat;
    background-size: 65px;
    background-position: 50px 20px;
}

.sort_list .sort_list_l .index_t div {
    font-size: 32px;
    margin-bottom: 10px;
}

.sort_list .sort_list_l .index_t h2 {
    font-size: 26px;
}

.sort_list .sort_list_l ul {
    background: #efefef;
}

.sort_list .sort_list_l ul li a {
    color: #333;
    font-size: 16px;
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
    display: block;
}

.sort_list .sort_list_l ul li:hover a {
    background: #009d2c;
    color: #fff;
}

.sort_list_l_phone {
    background: #fc8e11;
    padding: 20px 15px;
}

.sort_list_l_phone .fl {
    width: 58px;
}

.sort_list_l_phone .fr {

}

.sort_list_l_phone div {
    color: #fff;
    font-size: 16px;
}

.sort_list_l_phone p {
    font-weight: bold;
    font-size: 26px;
}

.sort_list_r {
    width: 950px;
    padding-top: 15px;
}

.breadcrumb {
 
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li:after {
    content: '>';
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    font-size: 15px;
    color: #666;
}

.page_content {
    font-size: 15px;
    color: #333;
    line-height: 32px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 10%);
    padding: 1% 1%;
}

/*留言*/
.message_form .form_group {
    line-height: 40px;
    margin-bottom: 20px;
    vertical-align: top;
}

.message_form .form_group input {
    line-height: 40px;
    border: 1px solid #999;
    width: 400px;
    border-radius: 5px;
}

.message_form .form_group textarea {
    width: 400px;
    border: 1px solid #999;
    line-height: 30px;
    border-radius: 5px;
}

/*分页*/
.news-inner-top {
    margin-bottom: 20px;
}
.sort_news_right .pagination {
    text-align: center;
}

.sort_news_right .pagination .page-item {
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.sort_news_right .pagination .page-item:first-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_news_right .pagination .page-item:last-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_news_right .pagination .page-item span {
    font-size: 16px;
}

.sort_product_right .sort_product_list .pagination {
    text-align: center;
}

.sort_product_right .sort_product_list .pagination .page-item {
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.sort_product_right .sort_product_list .pagination .page-item:first-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_product_right .sort_product_list .pagination .page-item:last-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_product_right .sort_product_list .pagination .page-item span {
    font-size: 16px;
}

.sort_case_right .sort_case_list .pagination {
    text-align: center;
}

.sort_case_right .sort_case_list .pagination .page-item {
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.sort_case_right .sort_case_list .pagination .page-item:first-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_case_right .sort_case_list .pagination .page-item:last-child {
    border: 1px solid #999999;
    border-radius: 50%;
}

.sort_case_right .sort_case_list .pagination .page-item span {
    font-size: 16px;
}

/*上一条-下一条*/
.liu_d {
    margin-top: 40px;
}

.liu_d a {
    padding: 5px 20px;
    line-height: 30px;
    border: 1px solid #eee;
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: lighter;
}

.liu_d a:hover {
    background: #39a5ea;
    color: #fff;
}

/*sort_news*/
.sort_news_list {

}

.sort_news_list .sort_news_left {
    width: 380px;
}

.sort_news_list .sort_news_left .index_t {
    text-align: right;
}

.sort_news_list .sort_news_left .index_t div {
    font-size: 48px;
}

.sort_news_list .sort_news_left .index_t h2 {
    font-size: 30px;
}

.sort_news_list .sort_news_left ul {
    background: #efefef;
}

.sort_news_list .sort_news_left ul li a {
    color: #999999;
    font-size: 16px;
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
    display: block;
    font-weight: lighter;
}

.sort_news_list .sort_news_left ul li:hover a {
    background: #39a5ea;
    color: #fff;
}

.sort_news_right form {
    margin-bottom: 30px;
}

.sort_news_right .form_shaixuan input {
    opacity: 0;
    position: absolute;
}

.sort_news_right .form_shaixuan {
    margin-bottom: 20px;
}

.sort_news_right .form_shaixuan .active {
    background: #e7e7e7;
    border-radius: 20px;
    color: #000;
}

.sort_news_right .form_shaixuan label {
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #999;
}

.sort_news_right form > input {
    line-height: 40px;
    background: url(../img/search-img.png) no-repeat #efefef;
    width: 500px;
    background-size: 30px;
    background-position: 5px 5px;
    padding-left: 40px;
}

.sort_news_right form button {
    margin-left: 20px;
    line-height: 40px;
    width: 100px;
    color: #fff;
    background: #046fcd;
    border-radius: 5px;
}

.sort_news_right .sort_news_list .sort_news_list_ul li {
    float: left;
    margin-right: 25px;
    width: 240px;
    padding: 10px;
    margin: 20px 0;
}

.sort_news_right .sort_news_list .sort_news_list_ul li:nth-child(3n) {
    margin-right: 0;
}

.sort_news_right .sort_news_list .sort_news_list_ul li:hover {
    background: #efefef;
}

.sort_news_right .sort_news_list .sort_news_list_ul li a h2 {
    font-size: 18px;
    color: #666666;
    border-bottom: 1px solid #bfbfbf;
    font-weight: lighter;
    padding-bottom: 10px;
}

.sort_news_right .sort_news_list .sort_news_list_ul li a span {
    font-size: 14px;
    color: #999;
    font-weight: lighter;
    margin-top: 20px;
    display: block;
    margin-bottom: 10px;
}

.sort_news_right .sort_news_list .sort_news_list_ul li a p {
    font-size: 14px;
    color: #999;
    font-weight: lighter;
    line-height: 30px;
}

.sort_news_right .sort_news_list .sort_news_list_ul li a div {
    text-align: right;
    color: #333;
    font-weight: lighter;
    margin: 10px 0;
}


/*info_news*/
.info_news_right h2 {
    font-size: 20px;
    color: #333333;
    font-weight: lighter;
    margin-bottom: 20px;
}

.info_news_right span {
    color: #999;
    font-weight: lighter;
}

.info_news_content {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}


/*info_product*/
.info_product_right h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
}

.info_product_right span {
    color: #666;
    font-weight: lighter;
}

.sort_product_list {

}

.sort_product_list .sort_product_left {
    width: 300px;
}

.sort_product_list .sort_product_left .index_t {
    text-align: right;
    background: url(../img/fenlei.png) no-repeat;
    background-size: 65px;
    background-position: 50px 20px;

}

.sort_product_list .sort_product_left .index_t div {
    font-size: 30px;
}

.sort_product_list .sort_product_left .index_t h2 {
    font-size: 30px;
}

.sort_product_list .sort_product_left ul {
    background: #efefef;
}

.sort_product_list .sort_product_left ul li a {
    color: #333;
    font-size: 16px;
    line-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
    display: block;
}

.sort_product_list .sort_product_left ul li:hover a {
    background: #009d2c;
    color: #fff;
}

#product_info_img {
    width: 738px;
    height: 430px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/*大图片*/
#product_info_img .pic {
    width: 738px;
    height: 430px;
    position: relative;
}

#product_info_img .pic ul li {
    list-style: none;
    width: 738px;
    height: 430px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

#product_info_img .pic ul li.first {
    display: block;
}



/*按钮*/
#product_info_img .but {
    width: 104px;
    height: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -52px;
}

#product_info_img .but ul li {
    list-style: none;
    width: 10px;
    height: 10px;
    float: left;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
}

#product_info_img .but ul li.first {
    background-color: red;
}

/*图片导航*/
#product_info_img .picnav {
    width: 625px;
    height: 86px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: -86px;
    left: 50%;
    margin-left: -312px;
}

#product_info_img .picnav ul li {
    list-style: none;
    width: 115px;
    height: 75px;
    float: left;
    margin: 5px;
}

#product_info_img .picnav ul li.first {
    border-bottom: 4px solid red;
}

#product_info_img .picnav ul li img {
    width: 115px;
    height: 70px;
}


/*sort_product*/
.sort_product_right {

}

.sort_product_right form {
    margin-bottom: 30px;
}

.sort_product_right .form_shaixuan input {
    /*opacity: 0;*/
    /*position: absolute;*/
}

.sort_product_right .form_shaixuan {
    margin-bottom: 20px;
}

.sort_product_right .form_shaixuan .active {
    background: #e7e7e7;
    border-radius: 20px;
    color: #000;
}

.sort_product_right .form_shaixuan label {
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #999;
}

.sort_product_right form > input {
    line-height: 40px;
    background: url(../img/search-img.png) no-repeat #efefef;
    width: 500px;
    background-size: 30px;
    background-position: 5px 5px;
    padding-left: 40px;
}

.sort_product_right form button {
    margin-left: 20px;
    line-height: 40px;
    width: 100px;
    color: #fff;
    background: #39a5ea;
    border-radius: 5px;
}

.sort_product_right .sort_product_list .sort_product_list_ul {
    font-size: 0;
    margin-bottom: 20px;
}

.sort_product_right .sort_product_list .sort_product_list_ul li {
    float: left;
    margin-right: 25px;
    width: 301px;
}

.sort_product_right .sort_product_list .sort_product_list_ul li:nth-child(4n) {
    margin-right: 0;
}

.sort_product_right .sort_product_list .sort_product_list_ul li img {
    max-width: 100%;
   display:block;
}

.sort_product_right .sort_product_list .sort_product_list_ul li h4 {
    font-size: 16px;
    color: #666;
    line-height: 40px;
    text-align: center;
}


.sort_product_right .sort_product_list .sort_product_list_ul li:hover h4 {
    color: #fff; background-color:#0542bc;
}
.aweclearfix{ width: 100%; margin-bottom: 10px; }
.aweclearfix>a{ color: #fff; height: 48px; line-height: 48px; background-color:#0542bc;  display: block; font-size: 15px; padding-left: 20px; box-sizing: border-box; }
.uvanvaew{ display: none; }
.uvanvaew li a{width: 220px; display: block; line-height: 48px; color: #fff;background-color:#0036a2; padding-left: 30px;box-sizing: border-box; }
.eyvaa{ height: 590px; overflow: hidden; }

/*sort_case*/
.sort_case_list {

}
.sort_case_right {
    text-align: center;
}
.sort_case_right form {
    margin-bottom: 30px;
}

.sort_case_right .form_shaixuan input {
    opacity: 0;
    position: absolute;
}

.sort_case_right .form_shaixuan {
    margin-bottom: 20px;
}

.sort_case_right .form_shaixuan .active {
    background: #e7e7e7;
    border-radius: 20px;
    color: #000;
}

.sort_case_right .form_shaixuan label {
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #999;
}

.sort_case_right form > input {
    line-height: 40px;
    background: url(../img/search-img.png) no-repeat #efefef;
    width: 500px;
    background-size: 30px;
    background-position: 5px 5px;
    padding-left: 40px;
}

.sort_case_right form button {
    margin-left: 20px;
    line-height: 40px;
    width: 100px;
    color: #fff;
    background: #046fcd;
    border-radius: 5px;
}

.sort_case_right .sort_case_list .sort_case_list_ul {
    font-size: 0;
}

.sort_case_right .sort_case_list .sort_case_list_ul li {
    float: left;
    margin-right: 25px;
    width: 301px;
}
.img_4 {
    border: 1px solid #ddd;
    padding: 5px;
}
.sort_case_right .sort_case_list .sort_case_list_ul li:nth-child(4n) {
    margin-right: 0;
}

.sort_case_right .sort_case_list .sort_case_list_ul li img {
    max-width: 100%;
    height: 220px;
    margin: 0 auto;
    text-align: center;
}

.sort_case_right .sort_case_list .sort_case_list_ul li h4 {
    font-size: 16px;
    color: #666;
    line-height: 40px;
    text-align: center;
}

.sort_case_right .sort_case_list .sort_case_list_ul li:hover {
    background: #f48a12;
}

.sort_case_right .sort_case_list .sort_case_list_ul li:hover h4 {
    color: #fff;
}

.link_info {
    margin-top: 20px;
}

.link_info li {
    display: inline-block;
    padding: 3px;
    margin: 2px 5px;
}

/*友情链接*/
.blogroll {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #efefef;
}

.blogroll-center {
    width: 1280px;
    margin: 0 auto;
}
