﻿.container {
  max-width: 1320px;
}

/*网站公共样式*/
.info-content {
  font-size: 15px;
  line-height: 2.5;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #88b9f9;
}
a:focus {
  color: #88b9f9;
}
a.btn-more {
  display: inline-block;
  width: 140px;
  height: 34px;
  line-height: 34px;
  border: 1px #ccc solid;
  color: #999;
  transition: all 0.5s ease;
  font-size: 14px;
  transition: all 0.5s ease;
  text-align: center;
  margin: 0px auto;
  margin-top: 30px;
}
a.btn-more:hover {
  background: #5a9cf8;
  border-color: #5a9cf8;
  color: white;
}
.banner {
  height: 500px\9 !important;
  overflow: hidden\9 !important;
  overflow: hidden;
} /*兼容ie低版*/

/*遮罩层*/
.mask-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 99;
  top: 0;
  left: 0;
}
.mask-bg.active {
  display: block;
}
.search-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 99;
  top: 0;
  left: 0;
}

/*首页模块样式*/
.module-box {
  position: relative;
  padding: 40px 0px;
}
.module-box .module-title {
  clear: both;
  text-align: center;
  margin: 0px 0px 30px 0px;
  font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
}
.module-box .module-title .cn-title {
  display: block;
  color: #333;
  font-size: 28px;
  line-height: 45px;
}
.module-box .module-title .en-title {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #999;
  font-size: 16px;
}
.module-box .module-title .en-title i {
  float: left;
  width: 55px;
  background: #ccc;
  height: 1px;
  margin-top: 15px;
}
.module-box .module-title .en-title span {
  float: left;
  margin: 0px 5px;
}

/*底部*/
footer {
  text-align: left;
  width: 100%;
  min-height: 95px;
  background: #333;
  margin-top: 40px;
  line-height: 2.5;
}

/*顶部样式*/
.header {
  position: relative;
}
.header .logo img {
  height: 89px;
}

/*自定义导航动画，也可以用animater.css中的动画，需要在script.js中修改*/
.nav .animated,
.sub-nav .animated {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.navSlide {
  -webkit-animation-name: navSlide;
  animation-name: navSlide;
}
@keyframes navSlide {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

/*主菜单*/
@media (min-width: 1000px) /*pc端*/ {
  .container {
    position: relative;
  }
  .header {
    z-index: 100;
    background-color: #f6f8fa;
  }
  .header .nav-toggle {
    display: none;
  }
  .header a.logo {
    line-height: 72px;
  }
  .header .phonelogo {
    display: none;
  }
  .pageheader {
    background-color: #fff;
    border-top: 3px solid #e30b20;
    border-bottom: 1px solid rgb(229, 229, 229);
  }
  .pageheader .nav > ul > li > a {
    color: #000;
  }
  .pageheader .nav > ul > li > a::after {
    background-color: #e30b20;
  }
  .pageheader .nav > ul > li.current > a,
  .pageheader .nav > ul > li > a:hover {
    color: #e30b20;
  }
  .pageheader .search .fa {
    color: #e30b20;
  }

  .nav {
    padding-top: 20px;
    padding-right: 80px;
  }
  .nav > ul > li {
    float: left;
    text-align: center;
    line-height: 70px;
    width: 12.5%;
  }
  .nav > ul > li > ul {
    position: absolute;
  }
  .nav > ul > li > a {
    color: #999;
    font-size: 16px;
  }
  .nav > ul > li.current > a,
  .nav > ul > li > a:hover {
    color: #88b9f9;
  }
  .nav li:hover > ul {
    display: block;
  }
  .nav > ul > li > ul::before {
    display: block;
    margin: 0px auto;
    text-align: center;
    position: absolute;
    top: -8px;
    left: 45%;
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid 5a9cf8;
  }
  .nav > ul > li > ul li ul::before {
    display: block;
    margin: 0px auto;
    text-align: center;
    position: absolute;
    top: 20px;
    left: -10px;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
  }
  .nav ul li ul li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 50px;
  }
  .nav ul li ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: #88b9f9;
  }

  .nav ul li {
    position: relative;
  }
  .nav ul li .arrow {
    display: none;
  }
  .nav ul li ul {
    background-color: #5a9cf8 !important;
    display: none;
    position: absolute;
    left: -18%;
    z-index: 2;
    width: 150px;
  } /*二级ul样式*/
  .nav ul li ul li ul {
    left: 100%;
    top: 0px;
    display: none;
  } /*三级以后ul样式*/
  .el-input-group {
    width: 50% !important;
  }
}

@media (max-width: 1000px) /*手机端*/ {
  .header .logo img {
    height: 70px;
  }
  .header .nav-toggle {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 25px;
    color: #999;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
  }
  .header .nav-toggle.active {
    color: #ccc;
  }

  .nav {
    position: fixed;
    z-index: 100;
    top: 0px;
    right: 0px;
    width: 0px;
    background: #fff;
    height: 100%;
    height: 100vh;
    opacity: 0;
    transition: all 0.2s linear;
    overflow-y: auto;
  }
  .nav.active {
    opacity: 1;
    width: 300px;
    max-width: 60%;
  }
  .nav ul li {
    line-height: 45px;
    text-align: left;
  }
  .nav ul li ul {
    display: none;
  } /*二级ul样式*/
  .nav ul li a {
    padding-left: 30px;
    display: block;
    color: #999;
    font-size: 15px;
    line-height: 3.5;
    border-bottom: 1px solid #dcdcdc;
  }
  .nav ul li ul li a {
    padding-left: 60px;
    font-size: 14px;
    background-color: #eeeeee;
  }
  .nav ul li ul li ul li a {
    padding-left: 90px;
  }
  .nav ul li ul li ul li li a {
    padding-left: 120px;
  }
  .nav ul li {
    position: relative;
  }
  .nav ul li .arrow {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition-duration: 0s;
  }
  .nav ul li .arrow:after {
    font-family: FontAwesome;
    content: '\f105';
    display: block;
    font-weight: bold;
    font-size: 18px;
  }

  .nav ul li.current > a {
    color: #88b9f9;
  }
  .nav ul li.active > ul {
    display: block;
  }
  .nav ul li.active > .arrow {
    transform: rotate(90deg);
  }
}

/*子栏目样式*/
.sub-nav-box {
  clear: both;
  position: relative;
}
.sub-nav-box .sub-nav-title {
  line-height: 57px;
  text-align: left;
  background: 5a9cf8;
  padding-left: 15px;
  font-size: 22px;
  color: white;
  font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
}

.sub-nav-box .sub-nav {
  clear: both;
  text-align: left;
  margin-bottom: 20px;
  width: 100%;
  overflow: visible;
  background: #fafafa;
}
.sub-nav-box .sub-nav li {
  width: 100%;
  padding: 0px;
  text-align: left;
  position: relative;
  display: block;
}
.sub-nav-box .sub-nav li a {
  display: block;
  padding-left: 25px;
  line-height: 54px;
  font-size: 14px;
  color: #808080;
  font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
  border-bottom: 1px #ececec solid;
  font-size: 15px;
}
.sub-nav-box .sub-nav li a:hover {
  color: #88b9f9;
}
.sub-nav-box .sub-nav li ul {
  display: none;
}
.sub-nav-box .sub-nav li ul li a {
  padding-left: 55px;
}
.sub-nav-box .sub-nav li ul li ul li a {
  padding-left: 85px;
}

.sub-nav-box li .arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  transition-duration: 0.1s;
  cursor: pointer;
}
.sub-nav-box li .arrow:after {
  font-family: FontAwesome;
  content: '\f105';
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.sub-nav-box .sub-nav li.current > a {
  color: #88b9f9;
}
.sub-nav-box .sub-nav li.active > ul {
  display: block;
}
.sub-nav-box .sub-nav li.active > .arrow {
  transform: rotate(90deg);
}

/*首页>>产品展示*/
.product-module-box {
  background: url(images/prodBg.jpg) no-repeat 0 0;
  background-size: cover;
}

/*首页>>我们的优势*/
.advantages-list {
  clear: both;
  overflow: hidden;
  margin: 15px auto;
  line-height: 2;
}
.column > li {
  padding: 0px 10px;
}
.column p img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0px auto;
}
.column p span {
  display: block;
  line-height: 35px;
  margin: 10px 0px 15px 0px;
  color: #4d4d4d;
}
.column p {
  color: #4d4d4d;
}
.advantages-list .last {
  margin-right: 0px;
}

/*首页>>案例*/
.case-list .item {
  float: left;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
.case-list .item a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.case-list .item a img {
  clear: both;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  transition: all 0.5s ease;
}
.case-list .item a:hover img {
  transform: scale(1.3);
  transition: all 0.5s ease;
}
.case-list .item a .tit {
  position: absolute;
  top: 38%;
  left: 0px;
  z-index: 2;
  line-height: 30px;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  display: block;
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s ease;
  padding: 0px 5px;
}
.case-list .item a:hover .tit {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 40%;
}
.case-list .item a .cover-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s ease;
}
.case-list .item a:hover .cover-bg {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/*图片列表*/
.images-list .row .item a {
  display: block;
  overflow: hidden;
}
.images-list .row .item img {
  display: block;
  width: 100%;
  height: auto;
}
.images-list .row .item a:hover img {
  transform: scale(1.3, 1.3);
  transition: all 0.3s ease-out 0s;
}

/*新闻资讯-首页、子栏目公用*/
.news-list {
  clear: both;
  overflow: hidden;
}
.news-list li.tw {
  clear: both;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0px 0px 15px 0px;
  text-align: left;
}
.news-list li.tw .pic {
  float: left;
  width: 160px;
  height: 105px;
  overflow: hidden;
  margin-right: 10px;
}
.news-list li.tw .pic img {
  width: 100%;
  height: 100%;
  display: block;
}
.news-list li.tw .content {
  display: inline;
}
.news-list li.tw .content a {
  display: block;
  line-height: 30px;
  font-size: 16px;
}
.news-list li.tw .content span {
  color: #808080;
  height: 75px;
  line-height: 25px;
}

.news-list li.item {
  clear: both;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0px 10px 0px;
}
.news-list li.item .title {
  padding-left: 11px;
  background: url(images/icon-dot.gif) no-repeat left center;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li.item .date {
  float: right;
}

/*首页-加盟优势*/
.jmys-box a {
  display: block;
  height: 100%;
  position: relative;
}
.jmys-box .pptyg {
  clear: both;
  overflow: hidden;
  padding: 10px 0px;
}
.jmys-box .pptyg span {
  float: left;
  line-height: 40px;
  color: #4d4d4d;
  font-weight: 600;
  font-size: 16px;
}

.jmys-box .yc_box {
  clear: both;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 0px 10%;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s ease;
}
.jmys-box a:hover .yc_box {
  opacity: 1;
  filter: alpha(opacity=100);
}
.jmys-box .yc_box span {
  display: block;
  text-align: center;
  color: white;
}
.jmys-box .yc_box .yc_title {
  line-height: 45px;
  font-size: 25px;
  margin-top: 90px;
  transition: all 0.5s ease;
}
.jmys-box a:hover .yc_title {
  margin-top: 70px;
}
.jmys-box .yc_box .yc_con {
  line-height: 20px;
  padding: 10px 0px;
  margin-top: -30px;
  transition: all 0.5s ease;
  text-align: center;
}
.jmys-box a:hover .yc_con {
  margin-top: 0px;
}
.jmys-box .yc_box .yc_cksq {
  line-height: 33px;
  width: 94px;
  height: 33px;
  border: 1px #fff solid;
  margin: 0px auto;
}
.jmys-box .xs_title {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 2;
  font-size: 20px;
  color: white;
  line-height: 35px;
  border-bottom: 1px #fff solid;
  padding: 0px 10px 0px 0px;
  opacity: 1;
  filter: alpha(opacity=100);
}
.jmys-box a:hover .xs_title {
  opacity: 0;
  filter: alpha(opacity=0);
}
.jmys-box .yc_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #88b9f9;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s ease;
}
.jmys-box a:hover .yc_bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
@media only screen and (max-width: 768px) {
  .jmys-box a:hover .yc_box {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .jmys-box a:hover .xs_title {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .jmys-box a:hover .yc_bg {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

/*产品内容页样式*/
.product-content .detail .title {
  clear: both;
  overflow: hidden;
  background: 5a9cf8;
  line-height: 40px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 16px;
}

/*在线留言表单*/
.ui-validForm {
  padding-top: 30px;
}
.form-group::before,
.form-group::after {
  content: '';
  display: table;
}
.form-group::after {
  clear: both;
}
.form-group {
  position: relative;
  padding: 10px 0px;
}
.form-group .control-label {
  position: absolute;
  left: 0px;
  top: 10px;
}
.form-group .controls {
  padding-left: 100px;
}
.form-group .form-control {
  border: 1px solid #eeeeee;
  height: 32px;
  line-height: 32px;
  width: 100%;
  padding: 2px 5px;
  font-size: 14px;
  color: #666;
  transition: all 0.5s ease-in-out;
}
.form-group .form-control:focus {
  border-color: 5a9cf8;
}
.form-group textarea.form-control {
  height: 300px;
}
.form-group .help-block {
  display: block;
}
.btn {
  border: 1px solid 5a9cf8;
  color: #fff;
  height: 35px;
  width: 120px;
  background: 5a9cf8;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  background: #805246;
}
.form-group .controls-verificationCodeImage {
  position: relative;
  max-width: 400px;
  _width: 400px;
}
.form-group .lb_verificationCodeImage {
  position: absolute;
  display: inline-block;
  right: 1px;
  top: 0px;
  height: 32px;
  overflow: hidden;
}
.form-group .lb_verificationCodeImage img {
  height: 30px;
}

.el-textarea__inner:focus,
.el-input.is-active .el-input__inner,
.el-input__inner:focus {
  border-color: 5a9cf8 !important;
  outline: 0;
}
.el-button--small,
.el-button--small.is-round {
  padding: 12px 50px !important;
}
.el-button--primary {
  background-color: 5a9cf8 !important;
  border-color: 5a9cf8 !important;
}
.el-form--label-left .el-form-item__label {
  text-align: center !important;
}
.el-textarea textarea {
  height: 160px !important;
}

#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 12px;
  right: 12px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: none;
  text-indent: -9999px;
  background: url(Images/ui.totop.png) no-repeat left 0px;
  background-size: auto;
  background-size: cover;
  z-index: 190;
  border-radius: 50%;
  transition: all 0.2s linear;
}
#toTop:hover {
  background-position: left -50px;
  background-size: cover;
}

/*标签*/
.tag-list {
  padding: 20px 0px 20px 0px;
}
.tag-list ul li {
  float: left;
  margin-right: 10px;
}
.tag-list ul li .fa-tags {
  font-size: 16px;
  line-height: 30px;
}
.tag-list ul li a {
  display: inline-block;
  background: #e6f1fb;
  color: #06c;
  font-size: 12px;
  line-height: 30px;
  padding: 0px 10px;
  border-radius: 5px;
}
/*搜索*/
.right-icon-box {
  position: absolute;
  top: 0px;
  right: 10px;
  text-align: right;
  font-size: 20px;
}
.right-icon-box .fa {
  color: #999;
  line-height: 70px;
  font-size: 20px;
  display: inline-block;
  width: 40px;
  cursor: pointer;
  text-align: center;
}
.right-icon-box .fa-remove {
  font-size: 25px;
  color: #88b9f9;
}
.right-icon-box .fa:hover {
  color: #88b9f9;
}
.search-show {
  position: absolute;
  width: 100%;
  top: 91px;
  z-index: 2;
  background: #fff;
  display: none;
  border-bottom: 2px solid #ccc;
  border-top: 1px solid rgb(229, 229, 229);
}
.search-show .box {
  position: relative;
  padding-top: 80px;
  padding-bottom: 50px;
  max-width: 1000px;
  margin: 0px auto;
}
.search-show .box .title {
  position: relative;
}
.search-show .box .title input {
  border: 0;
  border-bottom: 2px solid #e5e5e5;
  width: 90%;
  font-size: 18px;
  padding-bottom: 5px;
}
.search-show .box .fa-search {
  font-size: 25px;
  cursor: pointer;
}
.search-show .box .fa-search:hover {
  color: #e30b20;
}
.search-show .box .hot-word {
}
.search-show .box .hot-word .text {
  margin: 46px 0 27px;
  color: #333;
  font-size: 18px;
  font-family: Hiragino Sans GB;
}
.search-show .box .hot-word ul {
  width: 100%;
}
.search-show .box .hot-word ul li {
  float: left;
  text-align: center;
  margin: 10px;
}
.search-show .box .hot-word ul li {
  display: block;
  color: #333;
  line-height: 40px;
  border-radius: 20px;
  background-color: #f5f5f5;
  padding: 4px 20px;
}
.search-show .hot-word span {
  cursor: pointer;
  display: block;
}
.search-phone {
  margin-top: 20px;
  padding-bottom: 60px;
}
.search-phone .ss-box {
  position: relative;
  margin: 60px auto;
  border: 1px solid #cfcfcf;
  background: #fff;
  width: 100%;
  height: 36px;
  font-size: 15px;
  margin: 0px auto;
}
.search-phone .ss-box .phone-input {
  width: 100%;
  outline: none;
  border: none;
  line-height: 34px;
  padding-left: 0px;
  background-color: transparent;
}
.search-phone .ss-box .phone-btn {
  position: absolute;
  right: -10px;
  top: 0;
  width: 38px;
  height: 32px;
  cursor: pointer;
  font-weight: bold;
  line-height: 32px;
  outline: none;
  border: none;
  background-color: #fff;
}
.search-phone .font span {
  cursor: pointer;
}
.search-phone .font span:hover {
  color: #da0000;
}
.dethingTitle {
  margin: 20px 0;
}
.dethingTitle strong {
  font-size: 20px;
}

@media (min-width: 1000px) /*pc端*/ {
  .right-icon-box {
    padding-top: 20px;
  }
  .right-icon-box .fa-bars {
    display: none !important;
  }
}
@media (max-width: 1000px) /*手机端*/ {
  .search-show {
    top: 70px;
  }
}


/* Theme Bg Color  */
.rn-gradient-circle {
  position: fixed;
  left: -250px;
  top: 250px;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 1000px;
  background-image: linear-gradient(45deg, #059dff, #36c6f0);
  opacity: 0.25;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.rn-gradient-circle.theme-pink {
  left: auto;
  top: -250px;
  right: -250px;
  bottom: auto;
  background-image: linear-gradient(45deg, #fb5343, #6549d5);
}

.theme-shape {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.theme-shape::before {
  position: absolute;
  left: 0px;
  /* top: 250px; */
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 50%;
  height: 100%;
  border-radius: 1000px;
  background-image: linear-gradient(45deg, #059dff, #36c6f0);
  opacity: 0.2;
  filter: blur(100px);
  content: '';
}

.theme-shape::after {
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 100%;
  border-radius: 1000px;
  opacity: 0.2;
  filter: blur(100px);
  content: '';
  left: auto;
  /* top: -250px; */
  right: 0px;
  bottom: auto;
  background-image: linear-gradient(45deg, #fb5343, #6549d5);
}

.link-hover a {
  display: inline-block;
  position: relative;
}

.link-hover a::after {
  position: absolute;
  content: '';
  left: auto;
  bottom: 0;
  background: currentColor;
  width: 0;
  height: 2px;
  transition: 0.3s;
  right: 0;
}

.link-hover a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
