@charset "UTF-8";
.load {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  /* change if the mask should be a color other than white */
  z-index: 1000;
  /* makes sure it stays on top */ }
  .load .load-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center; }
    .load .load-container .spinner {
      width: 40px;
      height: 40px;
      position: relative;
      margin: 100px auto; }
      .load .load-container .spinner .circle1,
      .load .load-container .spinner .circle2 {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #3497ee;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: bounce 2.0s infinite ease-in-out;
        animation: bounce 2.0s infinite ease-in-out; }
      .load .load-container .spinner .circle2 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s; }
@-webkit-keyframes bounce {
  0%,
                100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }
@keyframes bounce {
  0%,
                100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
.c6 {
  position: absolute;
  font-size: 12px;
  color: #555;
  width: 14px;
  text-align: center;
  font-weight: normal;
  -webkit-animation: c6text ease-out .8s;
  animation: c6text ease-out .8s;
  cursor: default;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 15px; }

.c6fixed {
  position: fixed; }

.c6 span {
  color: red;
  font-weight: bold; }

@-webkit-keyframes c6text {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%); }
  50% {
    opacity: 1; }
  99% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate(-50%, -70px); }
  100% {
    visibility: hidden; } }
@keyframes c6text {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%); }
  50% {
    opacity: 1; }
  99% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate(-50%, -70px); }
  100% {
    visibility: hidden; } }
@-moz-keyframes c6text {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%); }
  50% {
    opacity: 1; }
  99% {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate(-50%, -70px); }
  100% {
    visibility: hidden; } }
header {
  position: absolute;
  top: 20px;
  left: 0;
  height: 80px;
  width: 100%;
  -webkit-transition: box-shadow, background .3s;
  transition: box-shadow, background .3s;
  z-index: 3; }
  header .center {
    position: relative;
    height: 80px; }
  header .logo {
    display: block;
    padding: 6px 20px 6px 0;
    position: relative;
    z-index: 2;
    float: left; }
    header .logo a.no2 {
      display: none; }
  header .menu {
    width: 86px;
    padding-left: 14px;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 10px;
    top: 50%;
    cursor: pointer;
    bottom: auto;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    header .menu .menu_text {
      color: #393939;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      font-family: "微软雅黑"; }
    header .menu .menu_icon {
      left: auto;
      right: 1em;
      -webkit-transform: translateX(0) translateY(-50%);
      transform: translateX(0) translateY(-50%);
      display: inline-block;
      position: absolute;
      top: 50%;
      bottom: auto;
      width: 18px;
      height: 2px;
      background-color: #393939;
      -webkit-transition: background-color 0.3s;
      transition: background-color 0.3s;
      list-style: none; }
      header .menu .menu_icon::before, header .menu .menu_icon:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: #393939;
        right: 0;
        -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
        -webkit-transition: top .3s, background-color 0s, -webkit-transform .3s;
        transition: top .3s, background-color 0s, -webkit-transform .3s;
        transition: transform .3s, top .3s, background-color 0s;
        transition: transform .3s, top .3s, background-color 0s, -webkit-transform .3s; }
      header .menu .menu_icon::before {
        top: -5px; }
      header .menu .menu_icon:after {
        top: 5px; }
      header .menu .menu_icon.on {
        background-color: transparent; }
        header .menu .menu_icon.on::before, header .menu .menu_icon.on:after {
          background-color: #393939; }
        header .menu .menu_icon.on::before {
          top: 0;
          -webkit-transform: rotate(135deg);
          transform: rotate(135deg); }
        header .menu .menu_icon.on:after {
          top: 0;
          -webkit-transform: rotate(225deg);
          transform: rotate(225deg); }
  header nav {
    position: absolute;
    right: 110px;
    left: 0;
    bottom: 0;
    top: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: none; }
    header nav ul {
      float: right;
      padding: 20px;
      box-sizing: border-box; }
      header nav ul li {
        float: left;
        position: relative; }
        header nav ul li a {
          display: block;
          line-height: 39px;
          font-size: 16px;
          padding: 0 25px;
          color: #fff;
          position: relative; }
          header nav ul li a:hover {
            color: #fff; }
        header nav ul li.active a {
          color: #fff; }
        header nav ul li ul {
          position: absolute;
          border-radius: 5px;
          overflow: hidden;
          left: 0;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s;
          visibility: hidden;
          opacity: 0;
          width: 100%;
          padding: 0;
          background-color: rgba(255, 255, 255, 0.9);
          top: 45px; }
          header nav ul li ul li {
            float: none; }
          header nav ul li ul a {
            padding: 0;
            font-size: 14px;
            color: #333;
            text-align: center;
            display: block; }
            header nav ul li ul a:hover {
              background-color: #3497ee;
              color: #fff; }
        header nav ul li:hover ul {
          visibility: visible;
          opacity: 1;
          top: 39px; }
    header nav.active {
      display: block;
      top: 80px; }
      header nav.active ul {
        background-color: #000;
        width: 100%; }
        header nav.active ul li {
          width: 100%;
          float: none;
          width: 100%;
          text-align: center; }
          header nav.active ul li a {
            display: block;
            color: #fff;
            line-height: 46px;
            font-size: 16px; }
            header nav.active ul li a:before {
              display: none; }
            header nav.active ul li a:hover {
              color: #3497ee; }
          header nav.active ul li.active a {
            color: #3497ee;
            font-weight: bold; }
  header .tablanguage {
    position: absolute;
    right: 0;
    overflow: hidden;
    top: 28px;
    background-color: #fff;
    width: 104px;
    box-sizing: border-box;
    height: 25px;
    line-height: 25px;
    border-radius: 13px; }
    header .tablanguage a {
      display: block;
      width: 50%;
      float: left;
      box-sizing: border-box;
      text-align: center; }
      header .tablanguage a:nth-child(1) {
        padding-left: 10px; }
      header .tablanguage a:nth-child(2) {
        padding-right: 10px; }
      header .tablanguage a.on {
        color: #3497ee; }
  header.active, header.nyheader {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04); }
    header.active nav ul li a, header.nyheader nav ul li a {
      color: #000; }
      header.active nav ul li a.hover, header.nyheader nav ul li a.hover {
        color: #3497ee; }
    header.active .logo a.no1, header.nyheader .logo a.no1 {
      display: none; }
    header.active .logo a.no2, header.nyheader .logo a.no2 {
      display: block; }
    header.active .tablanguage, header.nyheader .tablanguage {
      background-color: transparent; }
      header.active .tablanguage a, header.nyheader .tablanguage a {
        color: #000;
        background-color: #fff; }
        header.active .tablanguage a.on, header.nyheader .tablanguage a.on {
          background-color: #3497ee;
          color: #fff; }
  header.nyheader {
    -webkit-box-shadow: none;
    box-shadow: none; }
    header.nyheader.active {
      -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04); }

.banner {
  position: relative;
  display: block; }
  .banner .item {
    height: 100%;
    overflow: hidden;
    display: block;
    background-size: auto 100% !important;
    height: 780px; }
  .banner .owl-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0; }
    .banner .owl-controls .owl-dots {
      text-align: center; }
      .banner .owl-controls .owl-dots .owl-dot {
        display: inline-block;
        width: 17px;
        height: 17px;
        background-color: rgba(255, 255, 255, 0.67);
        margin: 0 5px;
        border-radius: 50%;
        cursor: pointer; }
        .banner .owl-controls .owl-dots .owl-dot.active {
          background-color: rgba(255, 255, 255, 0.87); }

.keywords {
  margin: 22px auto;
  overflow: hidden; }
  .keywords .fl {
    float: left;
    line-height: 42px;
    width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .keywords .fl span {
      color: #000; }
  .keywords .fr {
    position: relative;
    float: right;
    width: 40%;
    padding-left: 20px;
    box-sizing: border-box; }
    .keywords .fr input[type=text] {
      width: 100%;
      box-sizing: border-box;
      font-family: "幼圆", "微软雅黑", "黑体", "宋体";
      border: 1px solid #cccccc;
      height: 40px;
      padding: 10px 58px 10px 18px;
      border-radius: 21px;
      outline: none; }
      .keywords .fr input[type=text]:focus {
        border-color: #3497ee; }
    .keywords .fr input[type=submit] {
      width: 42px;
      cursor: pointer;
      height: 42px;
      background: url(../images/ico.png) no-repeat 7px 8px transparent;
      position: absolute;
      border: 0;
      right: 10px;
      top: -1px; }

.title {
  text-align: center;
  padding-bottom: 30px; }
  .title em {
    font-style: normal;
    font-family: "微软雅黑";
    font-size: 18px;
    text-transform: uppercase;
    color: #999; }
  .title h3 {
    font-size: 34px;
    color: #000;
    padding-top: 4px; }
    .title h3 span {
      color: #3497ee; }

.newProducts {
  padding: 30px 0 60px; }
  .newProducts .title {
    padding-bottom: 30px; }
  .newProducts .item {
    background-color: #fff;
    padding: 0 30px 0 0;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    position: relative; }
    .newProducts .item a {
      display: block;
      padding-left: 185px;
      min-height: 211px;
      color: #666; }
      .newProducts .item a img {
        width: 176px;
        height: 211px;
        position: absolute;
        left: 0;
        top: 0; }
      .newProducts .item a b {
        font-weight: normal;
        color: #333;
        font-size: 18px;
        padding: 35px 0 15px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .newProducts .item a p {
        line-height: 1.6;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden; }
      .newProducts .item a span {
        padding-top: 30px;
        display: block; }
      .newProducts .item a:hover b {
        color: #3497ee; }
      .newProducts .item a:hover span {
        color: #3497ee; }
  .newProducts .owl-stage-outer {
    padding: 40px 30px;
    width: 100%;
    margin-left: -30px; }

.about {
  background-color: #f4f4f4;
  position: relative;
  z-index: 2; }
  .about .center {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px; }
    .about .center .aboutimg {
      position: absolute;
      right: -150px;
      bottom: 0; }
    .about .center .aboutmain {
      width: 80%; }
      .about .center .aboutmain h3 {
        font-size: 46px;
        color: #000; }
      .about .center .aboutmain .aboutdes {
        padding-top: 35px;
        line-height: 28px; }
      .about .center .aboutmain ul {
        padding-top: 50px;
        overflow: hidden; }
        .about .center .aboutmain ul li {
          float: left;
          color: #666;
          padding-right: 80px;
          text-align: center; }
          .about .center .aboutmain ul li b {
            display: block;
            font-size: 47px;
            color: #3497ee;
            font-family: BerlinSansFB Reg, Tunga, georgia;
            line-height: 1.1; }
            .about .center .aboutmain ul li b sup {
              font-family: '黑体';
              font-size: 18px; }
    .about .center a.aboutmore {
      display: block;
      width: 178px;
      height: 44px;
      line-height: 44px;
      border-radius: 8px;
      margin-top: 50px;
      text-align: center;
      color: #fff;
      font-size: 18px;
      background-color: #3497ee;
      background-image: -webkit-linear-gradient(left, #2668e7, #48e3fb);
      background-image: -moz-linear-gradient(left, #2668e7, #48e3fb); }
      .about .center a.aboutmore:hover {
        text-decoration: none;
        opacity: .8; }

.hotproduct {
  padding: 80px 0;
  width: 100%;
  overflow: hidden; }
  .hotproduct .hotproductnav {
    text-align: center;
    padding-bottom: 40px;
    overflow: hidden; }
    .hotproduct .hotproductnav a {
      display: inline-block;
      font-size: 16px;
      width: 150px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      border-radius: 21px;
      height: 42px;
      line-height: 42px; }
      .hotproduct .hotproductnav a:hover {
        color: #fff;
        background-color: #3497ee;
        background-image: -webkit-linear-gradient(left, #2668e7, #48e3fb);
        background-image: -moz-linear-gradient(left, #2668e7, #48e3fb); }
  .hotproduct .owl-carousel .owl-stage-outer {
    padding: 30px 0; }
  .hotproduct .owl-item.center a {
    overflow: visible; }
    .hotproduct .owl-item.center a img {
      width: 130%;
      position: absolute;
      left: -15%;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .hotproduct .owl-item.center a p {
      left: -15%;
      right: -15%; }
    .hotproduct .owl-item.center a:hover p {
      bottom: -15%; }
  .hotproduct .item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    padding-top: 63.6734%; }
    .hotproduct .item p {
      position: absolute;
      left: 0;
      right: 0;
      background-color: rgba(52, 151, 238, 0.5);
      color: #fff;
      z-index: 2;
      bottom: -80px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      line-height: 3;
      font-size: 16px;
      text-align: center; }
    .hotproduct .item:hover p {
      bottom: 0; }
    .hotproduct .item img {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
  .hotproduct .owl-prev,
  .hotproduct .owl-next {
    position: absolute;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 30px;
    text-indent: -999999em;
    width: 600px;
    top: 30px;
    background-color: #f4f4f4; }
    .hotproduct .owl-prev:before,
    .hotproduct .owl-next:before {
      background: url(../images/ico.png) no-repeat left top transparent;
      content: '';
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 50px;
      height: 80px; }
    .hotproduct .owl-prev:hover,
    .hotproduct .owl-next:hover {
      background-color: #3497ee; }
  .hotproduct .owl-prev {
    right: 50%;
    margin-right: 655px; }
    .hotproduct .owl-prev:before {
      right: 40px;
      background-position: 6px -31px; }
    .hotproduct .owl-prev:hover:before {
      background-position: -53px -31px; }
  .hotproduct .owl-next {
    left: 50%;
    margin-left: 655px; }
    .hotproduct .owl-next:before {
      left: 40px;
      background-position: -172px -31px; }
    .hotproduct .owl-next:hover:before {
      background-position: -113px -31px; }

.brand {
  padding: 30px 0 90px;
  width: 100%;
  overflow: hidden; }
  .brand dl {
    position: relative;
    min-height: 361px; }
    .brand dl dt {
      position: absolute;
      right: 55%;
      width: 900px;
      height: 100%; }
      .brand dl dt img {
        display: block;
        float: right;
        height: 100%; }
    .brand dl dd {
      width: 50%;
      float: right; }
      .brand dl dd b {
        font-size: 18px;
        color: #000;
        padding: 93px 0 0;
        display: block; }
      .brand dl dd p {
        line-height: 26px;
        color: #666;
        margin: 30px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; }
      .brand dl dd a {
        color: #3497ee;
        font-size: 18px; }
    .brand dl:nth-child(2) dt {
      right: auto;
      left: 55%; }
      .brand dl:nth-child(2) dt img {
        float: left; }
    .brand dl:nth-child(2) dd {
      float: left;
      text-align: right; }

.join {
  background: url(../images/joinimg.jpg) no-repeat center top transparent;
  position: relative;
  height: 652px;
  background-size: cover; }
  .join .joinmain {
    position: absolute;
    text-align: center;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff; }
    .join .joinmain h3 {
      font-size: 60px; }
    .join .joinmain p {
      padding: 15px 0 40px; }
    .join .joinmain a {
      display: block;
      width: 250px;
      height: 50px;
      margin: 0 auto;
      color: #fff;
      border-radius: 25px;
      line-height: 50px;
      background-color: #3497ee;
      background-image: -webkit-linear-gradient(left, #2668e7, #48e3fb);
      background-image: -moz-linear-gradient(left, #2668e7, #48e3fb); }
      .join .joinmain a:hover {
        text-decoration: none;
        opacity: .8; }

.iconav {
  padding: 80px 0; }
  .iconav ul {
    overflow: hidden; }
    .iconav ul li {
      width: 25%;
      text-align: center;
      float: left;
      font-size: 16px; }
      .iconav ul li .ico {
        background: url(../images/ico.png) no-repeat left top transparent;
        width: 98px;
        height: 78px;
        margin: 0 auto 20px;
        display: block;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }
      .iconav ul li.no3 .ico {
        background-position: -238px 2px; }
      .iconav ul li.no2 .ico {
        background-position: -356px 2px; }
      .iconav ul li.no1 .ico {
        background-position: -476px 2px; }
      .iconav ul li.no4 .ico {
        background-position: -595px 2px; }
      .iconav ul li a {
        display: block; }
      .iconav ul li.no3 a:hover .ico {
        background-position: -238px -86px; }
      .iconav ul li.no2 a:hover .ico {
        background-position: -356px -86px; }
      .iconav ul li.no1 a:hover .ico {
        background-position: -476px -86px; }
      .iconav ul li.no4 a:hover .ico {
        background-position: -595px -86px; }

footer {
  background-color: #333333;
  padding: 80px 0 0;
  color: #ccc; }
  footer .gsjj {
    padding-top: 20px;
    width: 80%;
    line-height: 1.6; }
    footer .gsjj strong {
      display: block;
      font-size: 18px;
      padding-bottom: 10px;
      color: #fff;
      font-weight: normal; }
  footer .link {
    width: 60%;
    overflow: hidden; }
    footer .link a {
      color: #ccc;
      display: block;
      line-height: 32px;
      width: 50%;
      float: left; }
      footer .link a:hover {
        color: #fff; }
    footer .link h3 {
      color: #3497ee;
      font-size: 18px;
      margin-bottom: 20px;
      font-weight: normal;
      padding-bottom: 15px;
      position: relative;
      line-height: 1.6; }
      footer .link h3:after {
        content: '';
        width: 36px;
        height: 1px;
        background-color: #3497ee;
        position: absolute;
        left: 0;
        bottom: 0; }
  footer .lianxi {
    padding-top: 10px; }
    footer .lianxi li {
      padding-left: 60px;
      position: relative;
      line-height: 1.6;
      padding-bottom: 36px; }
      footer .lianxi li .ico {
        background: url(../images/ico.png) no-repeat -34px 1px transparent;
        position: absolute;
        left: 0;
        top: 5px;
        width: 30px;
        height: 30px; }
        footer .lianxi li .ico.no2 {
          background-position: -64px 1px; }
        footer .lianxi li .ico.no3 {
          background-position: -100px 1px; }
  footer .copyright {
    background-color: #3497ee;
    text-align: center;
    margin-top: 50px;
    color: #fff;
    padding: 20px;
    line-height: 24px; }
    footer .copyright a {
      color: #fff; }

/* backto top==================================================*/
.backtop {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 20px;
  line-height: 40px;
  font-size: 16px;
  right: 10px;
  text-align: center;
  color: #fff;
  background: rgba(255, 191, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s; }
  .backtop:hover {
    text-decoration: none;
    color: #fff;
    opacity: .8; }
  .backtop.active {
    opacity: 1;
    visibility: visible; }

.site {
  padding: 30px 0;
  line-height: 32px;
  margin-top: 80px;
  color: #333;
  background-color: #eee;
  overflow: hidden;
  text-align: right; }
  .site h3 {
    float: left;
    font-size: 22px;
    font-weight: normal; }

.newtitle {
  font-size: 42px;
  text-align: center;
  color: #000;
  margin-top: 60px; }

.home_new {
  display: none; }
  .home_new.no0 {
    display: block; }

.content {
  padding-top: 100px;
  line-height: 2;
  max-width: 1200px;
  margin: 0 auto; }
  .content.nyservice {
    padding-top: 70px;
    padding-bottom: 60px; }
  .content.service h1 {
    font-size: 42px;
    text-align: center;
    color: #000;
    padding: 0 0 20px; }
  .content.service .chao6-row {
    background-color: #eee;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; }
    .content.service .chao6-row .chao6-col-md4 {
      position: relative;
      -webkit-transition: all .3s;
      transition: all .3s; }
      .content.service .chao6-row .chao6-col-md4:hover {
        box-shadow: 0 0 20px #ddd;
        position: relative;
        z-index: 2; }
    .content.service .chao6-row .servicemain {
      background-color: #fff;
      height: 530px;
      padding: 20px;
      text-align: center;
      overflow: hidden;
      position: relative; }
      .content.service .chao6-row .servicemain .hot {
        color: #fff;
        background-color: #e80000;
        padding: 0 100px;
        line-height: 2;
        font-size: 16px;
        font-weight: bold;
        transform: rotateZ(45deg);
        right: -100px;
        top: 19px;
        position: absolute; }
      .content.service .chao6-row .servicemain h3 {
        color: #000;
        font-size: 20px;
        line-height: 20px;
        padding: 20px 0 5px; }
        .content.service .chao6-row .servicemain h3 span {
          background-color: #3497ee;
          border-radius: 50%;
          color: #fff;
          display: inline-block;
          width: 22px;
          height: 22px;
          line-height: 22px;
          margin-right: 3px;
          font-size: 16px;
          font-weight: bold;
          vertical-align: top; }
      .content.service .chao6-row .servicemain b {
        font-size: 14px;
        display: block;
        text-align: center;
        color: #555;
        font-weight: normal; }
      .content.service .chao6-row .servicemain .price {
        line-height: 48px;
        padding: 10px 0 5px; }
        .content.service .chao6-row .servicemain .price strong {
          color: #e80000;
          font-size: 32px; }
        .content.service .chao6-row .servicemain .price del {
          margin-left: 5px;
          color: #999; }
      .content.service .chao6-row .servicemain ul li {
        font-size: 13px;
        color: #909090;
        line-height: 24px;
        padding: 8px 0;
        border-bottom: 1px #eee dotted; }
        .content.service .chao6-row .servicemain ul li:last-child {
          border-bottom: 0; }
        .content.service .chao6-row .servicemain ul li a {
          margin-left: 5px;
          color: #4581fb;
          text-decoration: underline; }
          .content.service .chao6-row .servicemain ul li a:hover {
            text-decoration: none; }
        .content.service .chao6-row .servicemain ul li span.jiage {
          color: red;
          padding-left: 5px; }
      .content.service .chao6-row .servicemain .connect {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0; }
        .content.service .chao6-row .servicemain .connect a {
          display: inline-block;
          padding: 0 30px;
          -webkit-transition: all .3s;
          transition: all .3s;
          line-height: 38px;
          border-radius: 3px;
          margin: 0 10px;
          background-color: #eee;
          color: #999; }
          .content.service .chao6-row .servicemain .connect a:nth-child(2):hover {
            background-color: #3497ee;
            color: #fff; }
          .content.service .chao6-row .servicemain .connect a:nth-child(1):hover {
            background-color: #4581fb;
            color: #fff; }
  .content #map {
    width: 100%;
    height: 300px; }
  .content .mapform {
    margin-bottom: 50px; }
    .content .mapform .mapformtit {
      text-align: center;
      padding-bottom: 20px; }
      .content .mapform .mapformtit h3 {
        font-size: 24px; }
      .content .mapform .mapformtit p {
        color: #999;
        text-transform: uppercase; }
    .content .mapform input[type=text],
    .content .mapform textarea {
      border: 1px solid #eee;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      padding: 10px 20px;
      box-sizing: border-box;
      width: 100%;
      display: block;
      font-family: "寰蒋闆呴粦";
      outline: none;
      height: 46px;
      line-height: 46px; }
      .content .mapform input[type=text]:focus,
      .content .mapform textarea:focus {
        border-color: #3497ee; }
    .content .mapform textarea {
      height: 150px; }
    .content .mapform input[type=submit] {
      line-height: 42px;
      outline: none;
      width: 96%;
      text-align: center;
      margin: 0 auto;
      display: block;
      border: 0;
      background-color: #3497ee;
      color: #fff;
      border-radius: 23px;
      cursor: pointer;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      .content .mapform input[type=submit]:hover {
        opacity: 0.8;
        filter: alpha(opacity=80); }
  .content .mapcontact {
    margin-bottom: 40px; }
  .content .Details h1 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: #222; }
  .content .Details .detail_h1_p {
    text-align: center;
    padding-top: 11px; }
    .content .Details .detail_h1_p span {
      padding: 0 10px; }
  .content .Details .Multi {
    overflow: hidden;
    padding-bottom: 20px; }
    .content .Details .Multi .gallery-top img {
      display: block;
      width: 100%; }
    .content .Details .Multi .gallery-thumbs {
      padding-top: 10px; }
      .content .Details .Multi .gallery-thumbs img {
        display: block;
        width: 100%; }
      .content .Details .Multi .gallery-thumbs .swiper-slide {
        box-sizing: border-box;
        padding: 2px;
        float: left; }
      .content .Details .Multi .gallery-thumbs .swiper-slide-thumb-active {
        background-color: #3497ee; }
    .content .Details .Multi .Multi_fr h1 {
      font-size: 28px;
      overflow: hidden;
      text-align: left; }
    .content .Details .Multi .Multi_fr .detail_h1_p {
      text-align: left; }
    .content .Details .Multi .Multi_fr .Multi_fr_des {
      padding-top: 20px; }
  .content .Details .Details_text {
    padding: 0 0 20px;
    margin-top: 30px;
    border-bottom: 1px dotted #eee;
    border-top: 1px dotted #eee; }
    .content .Details .Details_text img{ max-width:100% !important; height:auto!important}
    .content .Details .Details_text .details_tag {
      padding: 30px 0 0; }
      .content .Details .Details_text .details_tag a {
        display: inline-block;
        padding: 0 20px;
        -webkit-transform: perspective(1px) translateZ(0);
        -moz-transform: perspective(1px) translateZ(0);
        -ms-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        position: relative;
        background-color: #f2f4f5; }
        .content .Details .Details_text .details_tag a:before {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          top: 0;
          right: 0;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s;
          background-color: #3497ee;
          -webkit-transform: scaleX(0);
          -moz-transform: scaleX(0);
          -ms-transform: scaleX(0);
          transform: scaleX(0);
          -webkit-transform-origin: 50%;
          transform-origin: 50%; }
        .content .Details .Details_text .details_tag a:hover {
          color: #fff; }
          .content .Details .Details_text .details_tag a:hover:before {
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1); }
    .content .Details .Details_text h3 {
      margin-bottom: 20px;
      color: #000;
      line-height: 3.2;
      padding: 0 20px;
      border-top: 2px solid #ccc;
      background-color: #eee; }
  .content .Details .Details_Relevant h3 {
    font-size: 18px;
    color: #000;
    padding: 30px 0 20px; }
  .content .Details .Details_Relevant .productslist a {
    display: block;
    border: 1px solid transparent;
    overflow: hidden; }
    .content .Details .Details_Relevant .productslist a img {
      display: block;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      width: 100%; }
    .content .Details .Details_Relevant .productslist a p {
      white-space: nowrap;
      background-color: #fff;
      position: relative;
      z-index: 2;
      width: 100%;
      line-height: 3;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center; }
    .content .Details .Details_Relevant .productslist a:hover {
      border: 1px solid #eee;
      text-decoration: none; }
      .content .Details .Details_Relevant .productslist a:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1); }

.form {
  position: fixed;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  box-sizing: border-box;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.6); }
  .form .formmain {
    background-color: #fff;
    -webkit-transform-origin: center;
    transform-origin: center;
    padding: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    max-width: 550px; }
  .form h3 {
    text-align: center;
    font-size: 18px; }
  .form input[type=text],
  .form textarea {
    width: 100%;
    margin-top: 15px;
    border: 2px solid #eee;
    font-family: "微软雅黑";
    box-sizing: border-box;
    padding: 8px 20px;
    outline: none;
    line-height: 26px;
    height: 42px; }
    .form input[type=text]:focus,
    .form textarea:focus {
      border-color: #3497ee; }
    .form input[type=text].error,
    .form textarea.error {
      border-color: red; }
  .form textarea {
    padding: 10px 20px;
    line-height: 22px;
    height: 80px; }
  .form input[type=submit] {
    width: 100%;
    margin-top: 15px;
    font-family: "微软雅黑";
    transition: all .3s;
    line-height: 42px;
    background-color: #3497ee;
    border-radius: 21px;
    border: 0;
    display: block;
    outline: none;
    cursor: pointer;
    color: #000; }
    .form input[type=submit]:hover {
      background-color: #ffb400; }
  .form .close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    height: 26px;
    width: 26px; }
    .form .close:after, .form .close:before {
      content: '';
      -webkit-transition: all .3s;
      transition: all .3s;
      position: absolute;
      right: 0;
      left: 0;
      top: 12px;
      -webkit-transform-origin: center;
      transform-origin: center;
      height: 2px;
      background-color: #333; }
    .form .close:after {
      transform: rotateZ(45deg); }
    .form .close:before {
      transform: rotateZ(-45deg); }
    .form .close:hover:after {
      transform: rotateZ(135deg);
      background-color: #ffb400; }
    .form .close:hover:before {
      transform: rotateZ(45deg);
      background-color: #ffb400; }
  .form #slider {
    margin-right: 10px;
    margin: 15px auto 0; }
  .form .errorinfo {
    display: none;
    line-height: 12px;
    color: red;
    padding-top: 5px; }
  .form.hide {
    visibility: hidden;
    z-index: -1;
    opacity: 0; }
    .form.hide .formmain {
      -webkit-transform: translate(-50%, -50%) scale(0.8);
      transform: translate(-50%, -50%) scale(0.8); }
  .form.show {
    visibility: visible;
    z-index: 999;
    opacity: 1; }
    .form.show .formmain {
      -webkit-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1); }

.classify {
  overflow: hidden; }
  .classify #nyproduct {
    margin-top: 60px;
    overflow: hidden;
    background-color: #fff;
    padding: 0 15px 20px;
    position: relative;
    z-index: 2; }
    .classify #nyproduct .nyproduct_content {
      padding: 12px;
      box-shadow: 0 0 30px #eee;
      overflow: hidden;
      -webkit-box-shadow: 0 0 35px #eee; }
      .classify #nyproduct .nyproduct_content img {
        display: block;
        -webkit-transition: all .3s;
        transition: all .3s;
        width: 100%; }
      .classify #nyproduct .nyproduct_content .nyproduct_link {
        position: absolute;
        -webkit-transition: all .3s;
        transition: all .3s;
        z-index: 9;
        left: 12px;
        top: 12px;
        bottom: 12px;
        right: 12px;
        text-align: center; }
        .classify #nyproduct .nyproduct_content .nyproduct_link a {
          display: block;
          width: 130px;
          height: 40px;
          border: 1px solid white;
          border-radius: 25px;
          line-height: 40px;
          -webkit-transition: all .3s;
          transition: all .3s;
          font-size: 15px;
          position: absolute;
          top: 50%;
          left: 50%;
          margin-top: 0;
          opacity: 0;
          margin-left: -65px;
          color: #fff; }
      .classify #nyproduct .nyproduct_content:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .8; }
      .classify #nyproduct .nyproduct_content:hover .nyproduct_link {
        background-color: rgba(0, 0, 0, 0.5); }
        .classify #nyproduct .nyproduct_content:hover .nyproduct_link a {
          margin-top: -20px;
          opacity: 1; }
      .classify #nyproduct .nyproduct_content.template {
        height: 400px; }
        .classify #nyproduct .nyproduct_content.template .nyproduct_img {
          height: 370px;
          background-size: 100% auto !important; }
        .classify #nyproduct .nyproduct_content.template p {
          text-align: center;
          line-height: 20px;
          padding-top: 10px; }
          .classify #nyproduct .nyproduct_content.template p span {
            color: red; }
      .classify #nyproduct .nyproduct_content .nybrandtitle {
        margin: 30px 0 15px; }
      .classify #nyproduct .nyproduct_content .nybranddes {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
        color: #999; }
      .classify #nyproduct .nyproduct_content .more {
        display: block;
        color: #3497ee;
        padding: 15px 0 20px; }
    .classify #nyproduct .nyproductlist {
      padding: 10px; }
    .classify #nyproduct .nylist {
      padding: 15px 0;
      border-bottom: 1px solid #ECECEC;
      border-top: 1px solid #ECECEC;
      margin-bottom: 40px;
      text-align: center; }
      .classify #nyproduct .nylist a {
        position: relative;
        display: inline-block;
        margin-left: 1px;
        padding: 8px 25px;
        height: 1pc;
        color: #898989;
        line-height: 1pc;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        font-size: 14px;
        color: #898989; }
        .classify #nyproduct .nylist a.hover {
          background-color: #333;
          color: #fff; }
          .classify #nyproduct .nylist a.hover:before {
            opacity: 0; }
        .classify #nyproduct .nylist a:before {
          position: absolute;
          content: "";
          color: #e7e7e7;
          left: 0;
          width: 1px;
          height: 16px;
          top: 50%;
          margin-top: -8px;
          background-color: #ECECEC;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s;
          opacity: 1; }
        .classify #nyproduct .nylist a:first-child:before {
          opacity: 0; }
        .classify #nyproduct .nylist a:hover {
          text-decoration: none;
          background-color: #333;
          color: #fff; }
          .classify #nyproduct .nylist a:hover:before {
            opacity: 0; }
        .classify #nyproduct .nylist a.first {
          color: #3497ee;
          cursor: default;
          font-weight: bold; }
          .classify #nyproduct .nylist a.first:hover {
            background-color: transparent; }

.casetit {
  text-align: center;
  width: 100%;
  margin-top: 70px; }
  .casetit h3 {
    font-size: 48px;
    color: #58585b;
    font-weight: normal;
    line-height: 1.3; }
  .casetit p {
    color: #888;
    font-family: "幼圆"; }

.casediy {
  text-align: center;
  color: #999;
  font-size: 24px;
  background-color: #fff;
  padding-bottom: 60px; }
  .casediy .blue-btn {
    float: none;
    margin-top: 20px; }

#ArticleCategory {
  margin-top: 70px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  z-index: 2; }
  #ArticleCategory .Articlelist a {
    padding: 30px 30px 30px 404px;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid #eee;
    margin-bottom: 30px; }
    #ArticleCategory .Articlelist a img {
      position: absolute;
      left: 20px;
      top: 30px;
      width: 352px;
      height: 230px; }
    #ArticleCategory .Articlelist a .newtime {
      text-align: right;
      float: right;
      color: #bdbdbd;
      line-height: 1.8; }
    #ArticleCategory .Articlelist a .item_info {
      box-sizing: border-box; }
      #ArticleCategory .Articlelist a .item_info .item_info_title {
        font-size: 16px;
        line-height: 26px;
        padding: 5px 0 20px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      #ArticleCategory .Articlelist a .item_info .item_info_description {
        overflow: hidden;
        margin-bottom: 20px;
        line-height: 1.8;
        color: #999;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; }
      #ArticleCategory .Articlelist a .item_info span {
        color: #3497ee; }
    #ArticleCategory .Articlelist a:hover {
      box-shadow: 0 0 30px #eee; }

.page {
  text-align: center; }
  .page .pagination {
    display: inline-block; }
  .page .pagination a {
    text-decoration: none;
    color: #a6a6a6;
    font-size: 16px;
    line-height: 40px;
    padding: 0 15px;
    text-align: center;
    display: block;
    border: 0 !important;
    background-color: #f2f4f5;
    height: 40px; }
  .page .pagination p,
  .page .pagination a[title="首页"],
  .page .pagination a[title="尾页"] {
    display: none; }
  .page .pagination a.cur {
    background-color: #3497ee; }
  .page .pagination a:hover {
    color: #3497ee;
    background-color: #f9f9f9; }
  .page .pagination a[title="上一页"],
  .page .pagination a[title="下一页"] {
    text-indent: -200000em;
    position: relative; }
  .page .pagination a[title="上一页"]:after {
    content: "<";
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
    font: normal normal normal 20px/40px FontAwesome; }
  .page .pagination a[title="下一页"]:after {
    content: ">";
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
    font: normal normal normal 20px/40px FontAwesome; }

.details {
  padding-top: 100px;
  padding-bottom: 60px; }
  .details .left {
    box-sizing: border-box;
    padding-right: 5%; }
    .details .left h1 {
      font-size: 18px;
      line-height: 1.1; }
    .details .left .fbtime {
      color: #888;
      margin-bottom: 30px;
      margin-top: 5px; }
    .details .left .nyContent {
      line-height: 2;
      color: #555; }
      .details .left .nyContent img {
        max-width: 100%; }
    .details .left .page {
      text-align: left;
      line-height: 2.2;
      color: #555;
      padding-top: 10px;
      border-top: 1px dashed #eee;
      margin-top: 10px; }
      .details .left .page a {
        color: #555; }
        .details .left .page a:hover {
          color: #000; }
  .details .right h3 {
    color: #666;
    font-weight: 400;
    font-size: 16px; }
  .details .right .tag {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0; }
    .details .right .tag a {
      display: inline-block;
      margin: 3px;
      padding: 0 9pt;
      height: 24px;
      background-color: #f0f0f0;
      color: #7b7b7b;
      -webkit-transition: all .3s;
      transition: all .3s;
      line-height: 24px; }
      .details .right .tag a:hover {
        border-color: #333;
        background-color: #333;
        color: #fff;
        text-decoration: none; }
  .details .right ul {
    padding-top: 20px; }
    .details .right ul li a {
      display: block;
      line-height: 2.8;
      color: #333;
      transition: all .3s;
      transition: all .3s;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      .details .right ul li a:hover {
        text-decoration: none;
        padding: 0 10px;
        background-color: #f8f8f8; }
  .details .right .contact {
    overflow: hidden;
    padding: 20px;
    border: 5px solid #f0f0f0;
    margin-top: 20px;
    line-height: 2; }
    .details .right .contact a {
      color: #3497ee;
      text-decoration: underline; }
      .details .right .contact a:hover {
        text-decoration: none; }

.contact {
  padding-top: 70px;
  padding-bottom: 70px; }

.showtemplate {
  padding-bottom: 83px; }
  .showtemplate img {
    display: block;
    width: 100%; }
  .showtemplate .casediy {
    position: fixed;
    color: #555;
    line-height: 40px;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 20px 0;
    -webkit-box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.04); }
    .showtemplate .casediy .blue-btn {
      height: 40px;
      margin-top: 0;
      line-height: 40px;
      animation: anibtn 2s infinite;
      position: relative; }

@-webkit-keyframes anibtn {
  0% {
    transform: translateY(-4px); }
  10% {
    transform: translateY(4px); }
  20% {
    transform: translateY(-3px); }
  30% {
    transform: translateY(3px); }
  40% {
    transform: translateY(-2px); }
  50% {
    transform: translateY(2px); }
  55% {
    transform: translateY(0); } }
@keyframes anibtn {
  0% {
    transform: translateY(-4px); }
  10% {
    transform: translateY(4px); }
  20% {
    transform: translateY(-3px); }
  30% {
    transform: translateY(3px); }
  40% {
    transform: translateY(-2px); }
  50% {
    transform: translateY(2px); }
  55% {
    transform: translateY(0); } }
.tempalte_vf {
  min-height: 500px;
  height: 100vh; }
  .tempalte_vf form {
    display: block;
    width: 320px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -200px;
    margin-left: -160px; }
    .tempalte_vf form input[type=text] {
      padding: 5px 15px;
      border: 1px solid #eee;
      float: left;
      height: 46px;
      line-height: 46px;
      width: 220px;
      outline: none;
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px;
      border-right: 0; }
      .tempalte_vf form input[type=text]:focus {
        border-color: #3497ee; }
      .tempalte_vf form input[type=text].error {
        border-color: red; }
    .tempalte_vf form input[type=submit] {
      height: 46px;
      box-sizing: border-box;
      font-family: "微软雅黑";
      color: #fff;
      background-color: #3497ee;
      border: 0;
      outline: none;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px;
      width: 100px;
      text-align: center;
      float: left;
      cursor: pointer; }
    .tempalte_vf form .casetit {
      margin: 0 0 20px; }
    .tempalte_vf form .tempalte_tel {
      text-align: center;
      padding-top: 10px;
      clear: both;
      font-size: 16px;
      color: #666; }
      .tempalte_vf form .tempalte_tel a {
        color: red;
        text-decoration: underline;
        margin: 0 5px; }
        .tempalte_vf form .tempalte_tel a:hover {
          text-decoration: none; }
    .tempalte_vf form .errorinfo {
      color: red;
      padding-top: 5px;
      display: none;
      text-indent: 20px;
      clear: both; }

.siteseo {
  margin-top: 30px; }

.nymenulist {
  margin-bottom: 40px;
  text-align: center;
  display: none; }
  .nymenulist a {
    position: relative;
    display: inline-block;
    margin-left: 1px;
    padding: 8px 25px;
    height: 1pc;
    color: #898989;
    line-height: 1pc;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    color: #898989;
    border-radius: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
    .nymenulist a.hover {
      background-color: #3497ee;
      background-image: -webkit-linear-gradient(left, #2668e7, #48e3fb);
      background-image: -moz-linear-gradient(left, #2668e7, #48e3fb);
      color: #fff; }
      .nymenulist a.hover:before {
        opacity: 0; }
    .nymenulist a:before {
      position: absolute;
      content: "";
      color: #e7e7e7;
      left: 0;
      width: 1px;
      height: 16px;
      top: 50%;
      margin-top: -8px;
      background-color: #ECECEC;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      opacity: 1; }
    .nymenulist a:first-child:before {
      opacity: 0; }
    .nymenulist a:hover {
      text-decoration: none;
      background-color: #3497ee;
      background-image: -webkit-linear-gradient(left, #2668e7, #48e3fb);
      background-image: -moz-linear-gradient(left, #2668e7, #48e3fb);
      color: #fff; }
      .nymenulist a:hover:before {
        opacity: 0; }

#syArticleCategory {
  margin-top: 10px;
  margin-bottom: 70px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  z-index: 2; }
  #syArticleCategory .Articlelist a {
    padding: 8% 4%;
    display: block;
    overflow: hidden; }
    #syArticleCategory .Articlelist a .newtime {
      width: 20%;
      float: left;
      text-align: right;
      color: #bdbdbd;
      line-height: 1.8; }
      #syArticleCategory .Articlelist a .newtime b {
        font-size: 24px;
        color: #222;
        font-family: HELVETICANEUELTPRO-THEX, Arial;
        line-height: 1.1;
        font-weight: normal;
        display: block;
        white-space: nowrap; }
    #syArticleCategory .Articlelist a .item_info {
      float: left;
      width: 80%;
      box-sizing: border-box;
      padding-left: 20px; }
      #syArticleCategory .Articlelist a .item_info .item_info_title {
        font-size: 16px;
        line-height: 26px;
        color: #222;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      #syArticleCategory .Articlelist a .item_info .item_info_description {
        overflow: hidden;
        margin-top: 18px;
        height: 46px;
        line-height: 1.8;
        color: #999; }

/*# sourceMappingURL=chao6.css.map */
