@import url("./base.css");

.widget-header {
  position: relative;
}

.widget-header .en {
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
  font-family: "Microsoft YaHei";
  color: #3366cc;
  font-size: 40px;
  font-weight: bold;
}

.widget-header img {
  max-width: 100%;
}

.widget-header .title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.widget-header .title::before,
.widget-header .title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.widget-header .title span {
  padding: 0 1em;
  font-size: 22px;
  color: #000;
  position: relative;
  line-height: 1em;
}

.widget-header .title span::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  content: "";
  background: #ef8700;
}

.widget-header .title span::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  content: "";
  background: #ef8700;
}

li {
  list-style-type: none;
}

/* row1 */
.row1 {
  padding: 20px 0;
  background: url(../img/row1bg.jpg)top center no-repeat;
}

.row1 .pro_swiper h3 {
  text-align: center;
  line-height: 38px;
  margin: 0;
  font-size: 14px;
  color: #333;
  font-family: "微软雅黑";
  font-weight: normal;
}

.row1 .pro_swiper span {
  line-height: 1.8em;
}

.row1 .swiper-container {
  width: 100%;
  position: unset;
}

.row1 .swiper-slide a {
  display: block;
  background: #eaeaea;
  border: 15px solid #eaeaea;
}

.row1 .swiper-slide a .img {
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.row1 .swiper-slide a .img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.row1 .swiper-slide a .title {
  line-height: 24px;
  text-align: center;
}

.row1 .swiper-slide a:hover {
  background: #3266cc;
  border-color: #3266cc;
}

.row1 .swiper-slide a:hover h3,
.row1 .swiper-slide a:hover span {
  color: #fff;
}

.row1 .pro_swiper {
  position: relative;
}

.row1 .swiper-button-next {
  right: -47px;
}

.row1 .swiper-button-prev {
  left: -47px;
}

.row1 .swiper-pagination {
  display: none;
  width: 100%;
  bottom: 10px;
}

.row1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

.row1 .swiper-pagination-bullet-active {
  background: #063333;
}

.row1 .widget-header {
  padding-top: 3em;
}

.row1 .line {
  width: 30px;
  height: 1px;
  background: #ababab;
  margin: 1em 0;
}

.row1 .swiper-slide a:hover .line {
  background: #fff;
}

/* row2 */
.row2 {
  background: #f1f1f1;
  padding: 2em 0;
}

.row2 .el-row {
  margin: 0 -10px;
}

.row2 .el-col {
  padding: 0 10px;
}

.row2 .img img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
}

.row2 .img span {
  display: block;
  border-radius: 17px;
  padding: .5em 1em;
  text-align: center;
  background: #e16124;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* row3  */
.row3 {
  padding: 20px 0;
}

.row3 .cate-wrap {
  width: 1100px;
  margin: 0 auto;
}

.proBox {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.proContainer {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 1rem auto;
  padding: 0px;
}

.proLi {
  position: relative;
  height: 0px;
  padding-bottom: 27%;
  margin: 0.5rem 0;
  overflow: hidden;
  width: calc(100% / 3);
  float: left;
}

.proLink {
  position: absolute;
  top: 0px;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 100%;
  overflow: hidden;
}

.proImgBox {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
  border: 1px solid #dcdcdc;
}

.proImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.txtBox {
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 80%;
  overflow: hidden;
  padding: 25% 20%;
  box-sizing: border-box;
  color: #fff;
  background: rgba(177, 0, 4, .7);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.proLi:nth-child(3n) .txtBox {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 100%;
}

.proLi:nth-child(2n) .txtBox {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  left: 100%;
  top: 100%;
}

.proLi:hover .txtBox {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  left: 0px;
  top: 0px;
}

.proTitle {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.125rem;
  line-height: 36px;
  border-bottom: 2px solid #fff;
  padding-bottom: 9px;
  text-align: center;
}

.proSummry {
  width: 100%;
  font-size: 0.875rem;
  line-height: 24px;
  margin-top: 19px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.see {
  width: 100px;
  text-align: center;
  font-size: 0.75rem;
  margin: 1rem auto;
  transition: all .5s ease;
}

.see .iconfont {
  display: inline;
  color: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-weight: normal;
  text-decoration: none;
  font-size: inherit;
  font-family: "Microsoft Yahei";
  font-weight: normal;
  text-decoration: none;
}

.proTitleBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 20%;
  color: #333;
  font-size: 1rem;
  padding: 0 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .5s ease;
}

.row3 .el-row {
  margin: 0 -10px;
}

.row3 .el-col {
  padding: 0 10px;
}

.row3 a.s_more {
  display: block;
  width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 1em;
  background: #b10004;
  color: #fff;
  border-radius: 5px;
}

/* row4 */
.row4 .about-con {
  margin-right: 1em;
}

.row4 .about-con p {
  line-height: 2.2em;
}

.circle {
  overflow: hidden;
}

.circle ul {
  padding-left: 0;
}

.circle li {
  display: block;
  float: left;
  margin: 15px
}

.circle .item {
  width: 137px;
  margin: 0px auto;
  display: block
}

.circle .con {
  width: 137px;
  height: 137px;
  position: relative
}

.circle .y1 {
  background: url(../img/circle.png) no-repeat
}

.circle .y2 {
  background: url(../img/circle-w.png) no-repeat
}

.circle .y1,
.circle .y2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: all .5s ease 0s;
  -webkit-transform: all .5s ease 0s;
  z-index: 1
}

.circle .y2 {
  opacity: 0;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  visibility: hidden
}

.circle .ico {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0px 0px -25px;
  background: url(../img/about-icon.png) no-repeat;
  z-index: 3;
  -webkit-transition: .4s ease .2s;
  transition: .4s ease .2s
}

.circle .name {
  font-size: 16px;
  margin-top: 12px;
  color: #333;
  text-decoration: none;
  text-align: center;
  width: 137px
}

.circle .lin1 .ico {
  background-position: 0px 0px
}

.circle .lin2 .ico {
  background-position: -50px 0px
}

.circle .lin3 .ico {
  background-position: -100px 0px
}

.circle .lin4 .ico {
  background-position: -150px 0px
}

.circle .lin1 .item:hover .ico {
  background-position: 0px -50px
}

.circle .lin2 .item:hover .ico {
  background-position: -50px -50px
}

.circle .lin3 .item:hover .ico {
  background-position: -100px -50px
}

.circle .lin4 .item:hover .ico {
  background-position: -150px -50px
}

.circle .item:hover .y1 {
  opacity: 0;
  transform: scale(1.3);
  -webkit-transform: scale(1.3)
}

.circle .item:hover .y2 {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility: visible
}

.active .circle li {
  opacity: 1;
  transition: transform 500ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: transform 500ms, opacity .5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out
}

.active .circle .lin1,
.active .circle .lin2,
.active .circle .lin3,
.active .circle .lin4 {
  transform: translateY(0px) rotate(0deg);
  -webkit-transform: translateY(0px) rotate(0deg)
}

.active .circle .lin1 {
  transition-delay: .6s;
  -webkit-transition-delay: .6s
}

.active .circle .lin2 {
  transition-delay: .8s;
  -webkit-transition-delay: .8s
}

.active .circle .lin3 {
  transition-delay: 1s;
  -webkit-transition-delay: 1s
}

.active .circle .lin4 {
  transition-delay: 1.2s;
  -webkit-transition-delay: 1.2s
}

/* row5 */
.row5 {
  padding: 20px 0;
}

.row5 .el-col {
  padding: 0 .5em;
}

.row5 .new_txt2_l em {
  display: block;
  margin: 12px;
  width: 79px;
  height: 69px;
  font-size: 38px;
  color: #fff;
  line-height: 69px;
  text-align: center;
  background: #969393;
  float: left;
  font-style: normal;
}

.row5 .new_txt2_r h4 {
  margin: 0;
}

.row5 .new_txt2_r h4 a {
  width: 250px;
  height: 30px;
  display: inherit;
  position: inherit;
  margin-top: 10px;
  float: left;
  font-size: 13px;
  color: #252525;
  line-height: 28px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row5 .new_txt2_r p {
  float: left;
  width: 250px;
  height: 36px;
  overflow: hidden;
  font-size: 12px;
  line-height: 18px;
  color: #909090;
  margin: 0;
}

.row5 .new_txt2_r a {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}

.row5 .el-col-8 .new-b {
  margin-right: 10px;
  position: relative;
  margin-bottom: 10px;
  background: #f4f4f4;
  overflow: hidden;
}

.row5 .new-b:hover {
  box-shadow: 0px 5px 5px 0px rgba(0, 11, 25, 0.28);
}

.row5 .el-col-8:hover .new_txt2_r a {
  display: block;
}

.row5 .el-col-8:hover em {
  background: #3366cc;
}

.row5 .el-col-8:hover a {
  color: #3366cc;
}

.ikeyan {
  background: #fff;
  position: relative;
  z-index: 24;
  padding: 20px 0 20px;
}

.ikeyan_bg {
  background: #f6f6f6;
  border: 1px solid #ddd;
  padding: 30px;
  overflow: hidden;
}

.iky-text {
  width: 30%;
  float: left;
  padding-right: 3%;
  border-right: 1px solid #ddd;
  padding-bottom: 30px;
  background: url(../img/iky_xian.gif) no-repeat 0 bottom;
}

.iky-text .ilant {
  margin-bottom: 10px;
}

.iky-text ._sum {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.iky-icolist {
  width: 65%;
  float: right;
}

.iky-icolist li {
  width: 100px;
  float: left;
  text-align: center;
  margin-right: 10%;
}

.iky-icolist li ._ikyico {
  display: inline-block;
  width: 75px;
  height: 75px;
  background-image: url(../img/iky_ico.png);
  background-repeat: no-repeat;
  margin-top: 10px;
  -moz-transition: all .5s ease 0s;
  -ms-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.iky-icolist li ._title {
  font-size: 18px;
}

.iky-icolist li.iky-ico-01 ._ikyico {
  background-position: 0px 0px;
}

.iky-icolist li.iky-ico-02 ._ikyico {
  background-position: -85px 0px;
}

.iky-icolist li.iky-ico-03 ._ikyico {
  background-position: -170px 0px;
}

.iky-icolist li.iky-ico-04 ._ikyico {
  background-position: -255px 0px;
}

.iky-icolist li a:hover ._ikyico {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

.foot_lanse {
  width: 100%;
  background: #246db9;
}

.foot_lanse_mid {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.foot_lanse_mid ul {
  padding: 0;
}

.foot_lanse_mid li {
  width: 290px;
  padding-left: 7px;
  height: 103px;
  background: url(../img/aa1.jpg) right center no-repeat;
  float: left;
  padding-top: 38px;
  box-sizing: unset;
}

.foot_lanse_mid li .imer {
  width: 56px;
  height: 56px;
  float: left;
  margin-left: 5px;
}

.foot_lanse_mid li .leftcahr {
  width: 208px;
  float: left;
  padding-left: 14px;
}

.foot_lanse_mid li .leftcahr h4 {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}

.foot_lanse_mid li .leftcahr h6 {
  color: #fff;
  font-size: 16px;
  text-align: left;
  margin: 0;
  margin-top: .5em;
}

.foot_lanse_mid li:last-child {
  background: none;
}

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 750px) {
  .view-baner .swiper-slide .img img {
    min-height: auto;
  }

  .row4 .about-con {
    margin-right: 0;
  }

  .circle li {
    margin: .5em 0;
    width: 50%;
  }

  .category-list ul li {
    display: inline-block;
  }

  .category-list ul li a {
    border-bottom: none;
  }

  .row5 .new_txt2_l em {
    display: none;
  }

  .pro-list ul li,
  .row3 .pro-list ul li {
    width: 50%;
  }

  .row1 .swiper-slide a {
    border: 5px solid #eaeaea;
  }

  .iky-text {
    width: 100%;
    padding-right: 0;
    border-right: none;
    padding-bottom: 10px;
  }

  .iky-icolist {
    width: 100%;
  }

  .iky-icolist li {
    width: 50%;
    margin-right: 0;
  }

  .iky-icolist .fix {
    overflow: hidden;
    padding-left: 0;
  }

  .foot_lanse_mid li {
    width: 100%;
    padding-left: 1em;
    height: auto;
    background: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #fff;
  }

  .foot_lanse_mid li:last-child {
    border-bottom: none;
  }

  .proLink {
    left: .1rem;
    width: calc(100% - .2rem);
  }

  .row1 .pro_swiper span,
  .row1 .line {
    display: none;
  }

  .row5 .el-col-8 .new-b {
    padding-left: 1em;
  }

  .widget-header .en {
    font-size: 32px;
  }

  .widget-header .title span {
    font-size: 14px;
  }

  .row1 .el-col,
  .row2 .el-col,
  .row3 .el-col,
  .row4 .el-col,
  .row5 .el-col {
    width: 100%;
  }

  .row5 {
    padding: 0;
  }

  .row5 .el-col:nth-child(even) {
    display: none;
  }

  .row5 .el-col-8 .new-b {
    margin-right: 0;
  }

  .row1 .el-col:nth-child(n + 2),
  .row2 .el-col:nth-child(n + 2),
  .row3 .el-col:nth-child(n + 2) {
    margin-top: 20px;
  }

  .row3::before {
    display: none;
  }

  .row3 .widget-header .title {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  #allmap {
    height: 240px;
  }

  #allmap .BMap_bubble_content {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {}