﻿/* 应用中心开始 */
.appli {
  width: 100%;
  margin: 60px 0 30px;
}

.appli_tit {
  width: 70%;
  margin: auto;
  text-align: center;
}

.appli_tit h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 10px;
}

.appli_tit p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
}

.appli_box {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.appli_box li {
  width: 32.5%;
  overflow: hidden;
  margin: 10px 0;
  position: relative;
}

.appli_box li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.appli_box li:hover img {
  transform: scale(1.2);
}

.appli_box li .appli_img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.appli_box li .appli_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #10366c73;
  z-index: 1;
}

.appli_box li .appli_wz1 {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 45%;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  transition: all 0.8s;
  z-index: 2;
}

.appli_box li .appli_wz2 {
  width: calc(100% - 20px);
  text-align: center;
  position: absolute;
  left: 0;
  bottom: -50px;
  color: #fff;
  display: flex;
  align-items: center;
  left: 10px;
  background: #10376c;
  justify-content: space-between;
  border-radius: 5px;
  padding: 20px;
  opacity: 0;
  z-index: 2;
  transition: all 0.5s;
}

.appli_box li .appli_wz2 h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0
}

.appli_box li:hover .appli_wz2 {
  opacity: 1;
  bottom: 10px;
}

.appli_box li:hover .appli_wz1 {
  opacity: 0;
  margin-top: -20px;
}

/* 应用中心结束 */
/* 产品中心开始 */
.prod {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background-color: #f5f5f5;
}

.prod .w ul.prod_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prod .w ul.prod_box li {
  width: 32%;
  background-color: #fff;
  margin: 15px 0;
  border-radius: 10px
}

.prod .w ul.prod_box li a {
  padding: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prod .w ul.prod_box li div {
  width: 62%;
  position: relative;
  z-index: 1;
}

.prod .w ul.prod_box li div h3 {
  display: block;
  font-size: 22px;
  line-height: 1em;
  color: #333;
  transition: all .5s;
  font-weight: bold;
}

.prod .w ul.prod_box li div p {
  font-size: 17px;
  line-height: 34px;
  color: #666;
  margin: 12px 0 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 300;
}

.prod .w ul.prod_box li img {
  width: 35%;
  transition: all .5s;
  height: 230px;
  object-fit: cover;
}

.prod .w ul.prod_box li:hover img {
  transform: scale(1.2);
}

.prod .w ul.prod_box li>a span {
  width: 30%;
  height: 44px;
  line-height: 42px;
  border: 1px solid #bfbfbf;
  border-radius: 22px;
  font-size: 14px;
  color: #bfbfbf;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: all .5s;
  margin-top: -30px;
  margin-bottom: 20px;
}

.prod .w ul.prod_box li:hover>a span {
  background-color: #10376c;
  border: 1px solid #10376c;
  color: #fff;
}

.pagination>li>a.page-num-current {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* 产品中心结束 */

/* 企业新闻开始 */
.qylb_pic_box {
  width: 100%;
  overflow: hidden;
}

.qylb_pic_box ul li {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background-color: #f7f7f7;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: 40px 0;
  position: relative;
}

.qylb_pic_box ul li::after {
  position: absolute;
  left: 30%;
  bottom: 0;
  content: "";
  height: 2px;
  background: #10376c;
  width: 0;
  z-index: 2;
  transition: all 0.5s;
}

.qylb_pic_box ul li:hover::after {
  width: 70%;
}

.qylb_pic_box ul li:hover {
  box-shadow: 0 26px 50px -6px rgba(97, 105, 113, 0.3);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

.qylb_pic_box ul li .pic_box {
  width: 30%;
  float: left;
  overflow: hidden;
}

.qylb_pic_box ul li .pic_box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.qylb_pic_box ul li:hover .pic_box img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.qylb_pic_box ul li .qylb_tit {
  width: 70%;
  float: right;
  padding: 0 3%;
}

.qylb_pic_box ul li .qylb_tit h3 {
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 35px 0 15px;
  color: #333;
}

.qylb_pic_box ul li:hover .qylb_tit h3 {
  color: #10376c
}

.qylb_pic_box ul li .qylb_tit p {
  font-size: 15px;
  color: #666;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 30px;
}

.hy_more {
  color: #333;
  display: inline-block;
  background-color: #e5e5e5;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  border-radius: 5px;
  float: right;
  width: 110px;
  line-height: 44px;
  text-align: center;
  position: relative;
  top: -10px;
}

.qylb_pic_box ul li:hover .hy_more {
  background-color: #10376c;
  color: #fff;
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -o-transform: translateX(6px);
  -ms-transform: translateX(6px);
}

.hy_time {
  color: #999;
}

/* 企业新闻结束 */
/* 技术服务开始 */
.jsfw {
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
}

.jsfw .w {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.jsfw .js_left {
  width: 28%;
  background: #f4f4f4;
  padding-bottom: 30px;
}

.jsfw .js_left h1 {
  font-size: 28px;
  margin: 0;
  background: #10376c;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-bottom: 1px dashed #f4f4f4;
}

.jsfw .js_left li {
  padding: 0 30px;
  border-bottom: 1px dashed #cacacb;
}

.jsfw .js_left li a {
  display: block;
  padding: 15px 0;
  color: #333;
  font-size: 16px;
  transition: all 0.5s;
}

.jsfw .js_left li:hover {
  background-color: #10376c;
}

.jsfw .js_left li:hover a {
  color: #fff;
}

.jsfw .js_right {
  width: 68%;
}

.jsfw .js_right li a {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background: #f4f4f4;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.jsfw .js_right li a:hover {
  background-color: #ebebeb;
}

.jsfw .js_right li a span {
  font-size: 32px;
  color: #10376c;
  margin-right: 30px;
  border-right: 1px solid #e1e1e1;
  padding-right: 30px;
}

.jsfw .js_right li a h3 {
  font-size: 16px;
  color: #10376c;
  font-weight: bold;
  margin: 0;
  transition: all 0.5s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jsfw .js_right li a:hover h3 {
  color: #0061b5;
}

/* 技术服务结束 */

/* 分页 */
.fy {
  text-align: center;
}

.fy_box {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
}

.qylb_pic_box .fy {
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.qylb_pic_box .fy li {
  margin: 0 !important;
}

.qylb_pic_box .fy a {
  color: #333;
}

.qylb_pic_box .fy .pagination>.active>a,
.qylb_pic_box .fy .pagination>.active>a:focus,
.qylb_pic_box .fy .pagination>.active>a:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #10376c;
  border-color: #10376c;
}

.qylb_pic_box .fy .active {
  background-color: #10376c !important;
  color: #fff;
}

.fy .center {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d5d5d5;
}

.fy .fy_inp {
  display: inline-block;
}

.fy .fy_inp input {
  width: 50px;
  height: 31px;
  position: relative;
  top: 0;
  text-align: center;
  border: 1px solid #ccc;
  margin: 0 5px;
}

.fy .fy_inp button {
  height: 30px;
  position: relative;
  top: -3px;
  width: 51px;
  border: 0;
  background: #10376c;
  color: #fff;
}

.case_title {
  width: 70%;
  margin: auto;
  text-align: center;
}

@media(max-width:768px) {

  /* 新闻 */
  .qylb_pic_box {
    width: 100%;
    overflow: hidden;
    padding-top: 0;
  }

  .qylb_pic_box ul li {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background-color: #f7f7f7;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    margin: 30px auto;
  }

  .qylb_pic_box ul li .pic_box {
    width: 100%;
    float: none;
    overflow: hidden;
  }

  .qylb_pic_box ul li .qylb_tit {
    width: 100%;
    float: none;
    padding: 0 10px 58px;
  }

  .qylb_pic_box ul li .qylb_tit h3 {
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 20px 0 10px;
  }

  .qylb_pic_box ul li .qylb_tit p {
    font-size: 15px;
    color: #666;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 28px;
  }

  .qylb_pic_box ul li::after {
    left: 0;
  }

  .qylb_pic_box ul li:hover::after {
    width: 100%;
  }

  /* 应用 */
  .fy_box {
    margin: 0;
  }

  .appli_tit {
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .appli_tit h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px;
  }

  .case_title {
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .appli {
    width: 100%;
    margin: 30px 0;
  }

  .appli_box li {
    width: 100%;
    margin-bottom: 15px;
  }

  .appli_box li a {
    display: flex;
    flex-wrap: wrap;
  }

  .appli_box li a .appli_img {
    width: 100%;
    height: 220px;
  }

  .appli_box li a .appli_text {
    width: 100%;
    padding: 20px;
  }

  .appli_box li a .appli_text span {
    margin: 15px 0;
  }

  /* 产品 */
  .prod {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background-color: #f5f5f5;
  }

  .prod .w ul li {
    width: 100%;
    background-color: #fff;
    margin: 15px 0;
    border-radius: 10px;
  }

  .prod .w ul li div {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .prod .w ul li img {
    width: 100%;
    transition: all .5s;
    height: auto;
    object-fit: cover;
  }
  @media (max-width: 768px){
    .prod .w ul.prod_box li { 
      width: 49%;
      background-color: #fff;
      margin: 15px 0;
      border-radius: 10px;
    }
    .prod .w ul.prod_box li img {
      width: 100%;
      transition: all .5s;
      height: 230px;
      object-fit: cover;
      position: relative;
      /* left: 0px; */
      top: -20px;
  }
  
.prod .w ul.prod_box li div p {
  display: none;
  }
  .prod .w ul.prod_box li div {
    width: 100%;
    position: relative;
    z-index: 1;
}

.prod .w ul.prod_box li div h3
 {
    display: block;
    font-size: 22px;
    line-height: 1em;
    color: #333;
    transition: all .5s;
    font-weight: bold;
    text-align: center;
}
.prod .w ul.prod_box li>a span {
  width: 50%;
  height: 44px;
  line-height: 42px;
  border: 1px solid #bfbfbf;
  border-radius: 22px;
  font-size: 14px;
  color: #bfbfbf;
  text-align: center;
  display: inline-flex
;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: all .5s;
  margin-top: -30px;
  margin-bottom: 20px;
}
}

  .prod .w ul li>a span {
    width: 75%;
    height: 48px;
    line-height: 48px;
    border: 1px solid #bfbfbf;
    border-radius: 50px;
    font-size: 14px;
    color: #bfbfbf;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    transition: all .5s;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    background: #fff;
  }

  /* 技术服务 */
  .jsfw .js_left {
    width: 100%;
    background: #f4f4f4;
    padding-bottom: 30px;
  }

  .jsfw .js_right {
    width: 100%;
  }

  .jsfw .js_right li a {
    margin-bottom: 10px;
  }

}