/* 公用 */
/* a标签 */
body {
  margin: 0 auto;
  overflow-x: hidden;
  max-width: 1920px;
  min-width: 1280px;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* 弹窗 */

.z_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 10;
}

.z_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
  background: white;
  padding: 50px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../images/out.png) center no-repeat;
  background-size: 20px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
  background: #fff url(../images/out2.png) center no-repeat;
  background-size: 20px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
  padding: 20px;
}

.z_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.z_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.z_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

/* 首页全图轮播样式 */
.swiper_bd {
  height: 100vh;
  overflow: hidden;
}

.swiper_bd > .swiper-wrapper > .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.swiper_bd .swiper-slide {
}

.swiper_bd > .swiper-wrapper > .swiper-slide:last-child {
  height: 620px;
}

.title{
  width: 100%;
  height: 78px;
}
.title .text{
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #005ab8;
  padding-bottom: 28px;
  position: relative;
}
.title .text::after{
  content: '';
  display: block;
  position: absolute;
  width: 50%;
  height: 6px;
  background-color: #005ab8;
  bottom: -2px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.title1{
  width: 100%;
  height: 78px;
  position: relative;
}
.title1 .text{
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #005ab8;
  padding-bottom: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.title1 .text::after{
  content: '';
  display: block;
  position: absolute;
  width: 50%;
  height: 6px;
  background-color: #005ab8;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

/* 公共按钮 */
.g_more{
  width: 170px;
  height: 54px;
  position: relative;
}
.g_more:hover{
  transform: translateY(-5px);
}
.g_more .img{
  width: 100%;
}
.g_more .img img{
  width: 100%;
}
.g_more .s_text{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fdd118;
  text-align: center;
  display: flex;
  justify-content: center;
}
.g_more .s_text .img{
  width: 11%;
  margin-left: 19px;
}
/* 公共按钮样式结束 */

/* 公共banner样式 */
.banner1{
  width: 100%;
  position: relative;
  margin-top: 128px;
}
.banner1 .img{
  width: 100%;
}
.banner1 .img img{
  width: 100%;
}
.banner1 .img img:last-child{
  display: none;
}
.banner1 .img_box{
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -70px;
}
.banner1 .img_box .i_box{
  position: relative;
}
.banner1 .img_box .i_box .text{
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.banner1 .img_box .i_box .text .c_text{
  color: #fff;
  font-weight: bold;
}
.banner1 .img_box .i_box .text .line{
  width: 50%;
  height: 4px;
  background-color: #fdd118;
  margin-top: 30px;
  float: right;
}
/* 公共banner样式结束 */

/* 分页 */
.fy{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.fy .ul2{
  display: flex;
}
.fy .ul2 li{
  width: 42px;
  height: 42px;
  border: 1px solid #e2e2e2;
  line-height: 42px;
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  margin-right: 16px;
  cursor: pointer;
}

.fy .ul2 li:hover{
  background-color: #00479d;
}
.fy .ul2 li.act{
  background-color: #00479d;
}
.fy .ul2 li .img{
  width: 11px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.fy .ul2 .img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fy .img img:last-child{
  opacity: 0;
}
.fy .img1{
  width: 42px;
  height: 42px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  position: relative;
  border-radius: 3px;
}
.fy .img1:first-child{
  margin-right: 16px;
}
.fy .img1:hover{
  background-color: #00479d;
}
.fy .img1 .img{
  width: 11px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.fy .img1 .img img{
   position: absolute;
  top: 0;
  left: 0;
}
.fy .img1:hover .img img:last-child{
  opacity: 1;
}
.fy .img1:hover .img img:first-child{
  opacity: 0;
}
.fy .img1 .text{
  color: #999;
}
.fy li:hover .text{
  color: #fff;
}
.fy li.act .text{
  color: #fff;
}
/* 分页结束 */

@media (max-width: 1680px) {
}
@media (max-width: 1440px) {
}
@media (max-width: 1366px) {
}
@media (max-width: 1280px) {
}

@media (max-width: 1030px) {
  body {
    min-width: 100px;
  }

  .ibox {
    max-width: 1030px;
    min-width: 100px;
    width: 85%;
    margin: 0 auto;
  }

  .wow {
    opacity: 1;
  }
  .title {
    width: 100%;
    height: 50px;
}
.title .text {
    padding-bottom: 10px;
}
  .title1 {
    width: 100%;
    height: 50px;
}
.title1 .text {
    padding-bottom: 10px;
}
 .banner1 {
    width: 100%;
    position: relative;
    margin-top: 60px;
}
.banner1 .img_box .i_box .text .line {
    width: 50%;
    height: 4px;
    background-color: #fdd118;
    margin-top: 10px;
    float: right;
}
.banner1 .img_box .i_box {
    position: relative;
    width: 50%;
}
.banner1 .img_box .i_box .text {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.banner1 .img_box {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -25px;
}
.fy {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
}

@media (max-width: 960px) {
  .wow {
    opacity: 1;
  }
.g_more {
    width: 120px;
    height: 38px;
}
  .banner1 .img img:first-child{
  display: none;
}
  .banner1 .img img:last-child{
  display: block;
}
.title1 {
    width: 100%;
    height: 40px;
}
.fy {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.fy .ul2 li {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.fy .img1 {
    width: 30px;
    height: 30px;
}
}
