@charset "UTF-8";
* {
  font-family: '微软雅黑';
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
  -webkit-filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.container {
  position: relative;
  padding-top: 66px;
  box-sizing: border-box;
}

.container .header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background: #ffffff;
}

.container .header > div {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container .header .logo {
  display: flex;
  align-items: center;
}

.container .header .logo img {
  height: 54px;
  margin-right: 20px;
  cursor: pointer;
}

.container .header .logo span {
  font-size: 16px;
}

.container .header .menu {
  display: none;
}

.container .header .nav > ul {
  display: flex;
}

.container .header .nav > ul > li {
  font-size: 18px;
  height: 66px;
  padding: 0 15px;
  line-height: 66px;
  position: relative;
  text-align: center;
}

.container .header .nav > ul > li::after {
  content: '';
  display: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 30px;
  margin-left: -15px;
  height: 3px;
  background: #e60012;
}

.container .header .nav > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
}

.container .header .nav > ul > li.active > a {
  color: #e60012;
}

.container .header .nav > ul > li.active::after {
  display: block;
}

.container .header .nav > ul > li .second_ul {
  position: absolute;
  top: 66px;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  display: none;
  border: solid 1px #eee;
  padding: 10px 0;
  box-sizing: border-box;
  z-index: 1;
  box-shadow: inset 0 0 0 3000px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  transition: all .2s;
}

.container .header .nav > ul > li .second_ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
}

.container .header .nav > ul > li .second_ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.container .header .nav > ul > li .second_ul li.active a {
  color: #e60012;
}

.container .header .nav > ul > li .second_ul li:hover a {
  color: #e60012;
}

.container .header .nav > ul > li .second_div {
  display: none;
  position: fixed;
  left: 0;
  top: 66px;
  width: 100vw;
  z-index: 2;
  border: solid 1px #eee;
  padding: 10px 50px 30px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 3000px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  transition: all .2s;
}

.container .header .nav > ul > li .second_div .unfold {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 30px;
  width: 40px;
  margin-left: -25px;
  cursor: pointer;
}

.container .header .nav > ul > li .second_div .unfold img {
  width: 100%;
  height: 100%;
}

.container .header .nav > ul > li .second_div .second_div_ul {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  height: 277px;
  overflow-y: hidden;
  transition: all .2s;
  margin-bottom: 15px;
}

.container .header .nav > ul > li .second_div .second_div_ul > li {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-right: 50px;
  max-width: 385px;
  min-width: 160px;
}

.container .header .nav > ul > li .second_div .second_div_ul > li span {
  font-size: 20px;
  color: #333333;
  display: block;
  width: 100%;
  border-bottom: solid 1px #ddd;
}

.container .header .nav > ul > li .second_div .second_div_ul > li ul {
  padding-top: 10px;
  width: 190px;
  padding-right: 20px;
}

.container .header .nav > ul > li .second_div .second_div_ul > li ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.container .header .nav > ul > li .second_div .second_div_ul > li ul li a {
  font-size: 16px;
  color: #666666;
}

.container .header .nav > ul > li .second_div .second_div_ul > li ul li a:hover {
  color: #e60012;
}

.container .header .nav > ul > li .second_div .second_div_ul > li ul li.active a {
  color: #e60012;
}

.container .header .nav > ul > li:hover > a {
  color: #e60012;
}

.container .header .nav > ul > li:hover::after {
  display: block;
}

.container .header .nav > ul > li:hover .second_ul {
  display: block;
  z-index: 99;
}

.container .header .nav > ul > li:hover .second_div {
  display: block;
  z-index: 99;
}

.container .banner {
  width: 100%;
  height: 360px;
  background-position: center;
  background-size: cover;
}

.container .menuModel {
  display: none;
}

.container .footer {
  width: 100%;
  background: #434343;
}

.container .footer .footer_menu {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 48px 0;
}

.container .footer .footer_menu .footer_menu_left {
  display: flex;
}

.container .footer .footer_menu .footer_menu_left > li {
  padding-right: 100px;
  box-sizing: border-box;
}

.container .footer .footer_menu .footer_menu_left > li span {
  font-size: 16px;
  color: #fff;
}

.container .footer .footer_menu .footer_menu_left > li a {
  color: #ffffff;
}

.container .footer .footer_menu .footer_menu_left > li ul {
  position: relative;
  margin-top: 12px;
}

.container .footer .footer_menu .footer_menu_left > li ul li {
  padding-top: 12px;
}

.container .footer .footer_menu .footer_menu_left > li ul li a {
  font-size: 12px;
}

.container .footer .footer_menu .footer_menu_left > li ul::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.container .footer .footer_menu .footer_menu_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container .footer .footer_menu .footer_menu_right img {
  width: 112px;
  height: 112px;
}

.container .footer .footer_menu .footer_menu_right span {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
}

.container .footer .footer_copyright,
.container .footer .footer_copyright2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background: #313131;
  font-size: 14px;
  color: #fff;
}

.container .footer .footer_copyright2 {
  display: none;
}

.container .main {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.container .main .item {
  margin-top: 40px;
}

.container .main .item .item_title {
  position: relative;
  width: 100%;
  height: 66px;
  line-height: 66px;
  border-bottom: solid 2px #efefef;
  padding-left: 20px;
  box-sizing: border-box;
}

.container .main .item .item_title::before {
  content: '';
  width: 12px;
  height: 32px;
  background: #e60012;
  position: absolute;
  left: 0;
  top: 17px;
}

.container .main .item .item_title span {
  font-size: 24px;
  font-weight: 600;
}

.container .main .item .item_content {
  padding-top: 20px;
  box-sizing: border-box;
}

.container .main .column_title {
  position: relative;
  margin-top: 30px;
  height: 40px;
  line-height: 40px;
  padding-left: 5px;
  font-size: 18px;
  font-weight: 600;
}

.container .main .column_title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 5px;
  height: 40px;
  background: #e60012;
}

.container .main .column_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.container .main .column_list li {
  border: solid 1px #eee;
  padding: 10px 20px;
  background: #eee;
  border-radius: 5px;
  margin: 5px 10px;
  overflow: hidden;
}

.container .main .column_list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.container ol.paging {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.container ol.paging li a {
  display: block;
  height: 40px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  background: #ed4c59;
  line-height: 40px;
  margin: 0 5px;
  border-radius: 2px;
}

.container #back-to-top {
  width: 34px;
  height: 34px;
  position: fixed;
  z-index: 99;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  border: solid 2px #e60012;
  cursor: pointer;
  display: none;
  text-align: center;
}

.container #back-to-top img {
  width: 80%;
  height: 80%;
  margin-top: 5%;
}

@media screen and (max-width: 1220px) {
  .container {
    padding-top: 50px;
  }
  .container .header > div {
    width: 96%;
    height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .container .header .logo img {
    height: 28px;
  }
  .container .header .logo span {
    font-size: 12px;
  }
  .container .header .nav > ul > li {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .container .header .nav > ul > li .second_ul {
    top: 50px;
    width: 120px;
    margin-left: -60px;
  }
  .container .header .nav > ul > li .second_ul li {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }
  .container .header .nav > ul > li .second_div {
    top: 50px;
  }
  .container .header .nav > ul > li .second_div .second_div_ul {
    width: 100%;
  }
  .container .banner {
    height: 240px;
  }
  .container .footer .footer_menu {
    width: 96%;
  }
  .container .footer .footer_menu .footer_menu_left > li {
    padding-right: 50px;
  }
  .container .footer .footer_menu .footer_menu_right {
    width: 200px;
  }
  .container .footer .footer_menu .footer_menu_right .qr div img {
    width: 80px;
    height: 80px;
  }
  .container .footer .footer_copyright {
    height: 60px;
    line-height: 60px;
    font-size: 12px;
  }
  .container .main {
    width: 94%;
  }
}

@media screen and (max-width: 900px) {
  .container .header .logo img {
    height: 22px;
  }
  .container .header .logo span {
    display: none;
  }
  .container .header .nav {
    display: none;
  }
  .container .header .menu {
    display: block;
  }
  .container .header .menu img {
    width: 24px;
  }
  .container .banner {
    height: 160px;
  }
  .container .menuModel {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  .container .menuModel .filter {
    width: 220px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: inset 0 0 0 3000px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
  }
  .container .menuModel > ul {
    width: 220px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: auto;
    z-index: 99;
  }
  .container .menuModel > ul > li {
    padding: 5px 20px;
  }
  .container .menuModel > ul > li a {
    height: 30px;
    line-height: 30px;
    color: #fff;
  }
  .container .menuModel > ul > li.active a {
    color: #e60012;
  }
  .container .menuModel > ul > li .second_ul {
    margin-left: 20px;
  }
  .container .menuModel > ul > li .second_ul a {
    font-size: 14px;
    color: #ccc;
  }
  .container .menuModel > ul > li .second_ul > li.active > a {
    color: #e60012;
  }
  .container .menuModel > ul > li .second_ul .second_tree_ul {
    margin-left: 15px;
  }
  .container .menuModel > ul > li .second_ul .second_tree_ul > li.active a {
    color: #e60012;
  }
  .container .footer .footer_menu {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .container .footer .footer_menu .footer_menu_left {
    width: 100%;
    justify-content: space-between;
  }
  .container .footer .footer_menu .footer_menu_left > li {
    padding-right: 20px;
  }
  .container .footer .footer_menu .footer_menu_right {
    width: 100%;
  }
  .container .footer .footer_menu .footer_menu_right .entrance {
    justify-content: center;
    margin: 20px 0;
  }
  .container .footer .footer_menu .footer_menu_right .qr {
    justify-content: center;
  }
  .container .footer .footer_menu .footer_menu_right .qr div {
    margin: 0 20px;
  }
  .container .footer .footer_copyright {
    display: none;
  }
  .container .footer .footer_copyright2 {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .container .main {
    margin-bottom: 20px;
  }
  .container .main .item {
    margin-top: 20px;
  }
  .container ol.paging {
    margin-top: 20px;
  }
  .container ol.paging li a {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}

.container.home .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 94px;
  position: relative;
}

.container.home .title span {
  font-size: 30px;
  font-weight: 600;
  color: #333333;
}

.container.home .title i {
  font-style: normal;
  font-size: 14px;
  color: #333333;
}

.container.home .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 3px;
  background: #e60012;
}

.container.home .swiper-container {
  width: 100%;
  height: 74.75vh;
}

.container.home .swiper-container .swiper-slide {
  background: url("../images/1.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.container.home .swiper-container .swiper-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.container.home .swiper-container .swiper-slide img.voice {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
}

.container.home .swiper-container .swiper-slide .swiper_video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.container.home .swiper-container .swiper-slide .swiper_video video {
  position: relative;
  width: 100%;
  z-index: 1;
}

.container.home .swiper-container .swiper-slide .swiper_video a {
  position: absolute;
  left: 50%;
  bottom: 100px;
  z-index: 10;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  width: 200px;
  height: 50px;
  line-height: 48px;
  margin-left: -90px;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(90deg, #e60012 5.08%, #ff7247 99.84%);
  box-shadow: -7px 11.6667px 19.8333px rgba(5, 24, 51, 0.2);
}

.container.home .swiper-container .swiper_conten {
  position: relative;
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.container.home .swiper-container .swiper_conten a {
  font-size: 20px;
  color: #666666;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  width: 180px;
  height: 50px;
  line-height: 50px;
  border: solid 1px #bbbdbe;
  position: absolute;
  bottom: 100px;
  left: 0;
}

.container.home .swiper-container .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 0;
}

.container.home .swiper-container .swiper-pagination-bullet-active {
  background: #e60012;
}

.container.home .statistics {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

.container.home .statistics ul {
  display: flex;
  justify-content: space-between;
  height: 100px;
}

.container.home .statistics ul li {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: solid 1px #dedede;
}

.container.home .statistics ul li i {
  font-style: normal;
  font-size: 48px;
  font-weight: 600;
  color: #666666;
}

.container.home .statistics ul li span {
  font-size: 14px;
  color: #666666;
}

.container.home .statistics ul li:nth-child(1) {
  border: 0;
}

.container.home .industry {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  margin: 30px auto;
}

.container.home .industry .industry_main {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  height: 580px;
}

.container.home .industry .industry_main img {
  width: 100%;
  height: 100%;
}

.container.home .industry .industry_main .industry_img {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.container.home .industry .industry_main .industry_img .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container.home .industry .industry_main .industry_img .text a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.container.home .industry .industry_main .industry_img .text p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: all .2s;
}

.container.home .industry .industry_main .industry_img .text p span {
  display: block;
}

.container.home .industry .industry_main .industry_img .text p span:nth-child(1) {
  height: 60px;
  line-height: 60px;
}

.container.home .industry .industry_main .industry_img .text p span:nth-child(2) {
  width: 100%;
  max-height: 60px;
  font-size: 16px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.container.home .industry .industry_main .industry_img .text:hover p {
  height: 120px;
}

.container.home .industry .industry_main .yil {
  width: 511px;
  height: 244px;
}

.container.home .industry .industry_main .jung {
  width: 511px;
  height: 306px;
}

.container.home .industry .industry_main .jiaoy {
  width: 658px;
  height: 356px;
}

.container.home .industry .industry_main .nengy_zhengf {
  width: 658px;
  height: 193px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container.home .industry .industry_main .nengy_zhengf .nengy {
  width: 305px;
  height: 193px;
}

.container.home .industry .industry_main .nengy_zhengf .zhengf {
  width: 331px;
  height: 192px;
}

.container.home .product {
  background: url("../images/4.jpg") no-repeat;
  background-size: cover;
}

.container.home .product > div {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.container.home .product > div > a {
  border: solid 1px #a1a1a1;
  font-size: 20px;
  color: #666666;
  width: 176px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 50px 0;
}

.container.home .product .describe {
  width: 780px;
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin: 32px 0;
  line-height: 24px;
}

.container.home .product .product_ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.container.home .product .product_ul li {
  width: 370px;
  height: 260px;
  box-shadow: 1px 1px 8px #dddddd;
}

.container.home .product .product_ul li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.container.home .product .product_ul li a img {
  width: 100%;
  height: 100%;
}

.container.home .product .product_ul li a > p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: all .2s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.container.home .product .product_ul li a > div {
  position: absolute;
  top: -260px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  color: #eee;
  padding: 20px;
  box-sizing: border-box;
  transition: all .2s;
}

.container.home .product .product_ul li a > div h2 {
  font-size: 22px;
}

.container.home .product .product_ul li a > div p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.container.home .product .product_ul li a:hover > p {
  bottom: -50px;
}

.container.home .product .product_ul li a:hover > div {
  top: 0;
}

.container.home .success_stories {
  padding: 30px 0;
  background: url("../images/4.jpg") no-repeat;
  background-size: cover;
}

.container.home .success_stories > div {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 96%;
}

.container.home .success_stories > div > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto;
  width: 100%;
}

.container.home .success_stories > div > ul > li {
  width: 33.33%;
  height: 240px;
  margin: 10px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.container.home .success_stories > div > ul > li > a {
  display: block;
  width: 380px;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.container.home .success_stories > div > ul > li > a img {
  width: 100%;
  height: 100%;
}

.container.home .success_stories > div > ul > li > a > p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: all .2s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.container.home .success_stories > div > ul > li > a > div {
  position: absolute;
  top: -240px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  color: #eee;
  padding: 20px;
  box-sizing: border-box;
  transition: all .2s;
}

.container.home .success_stories > div > ul > li > a > div h2 {
  font-size: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.container.home .success_stories > div > ul > li > a > div p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.container.home .success_stories > div > ul > li > a:hover > p {
  bottom: -50px;
}

.container.home .success_stories > div > ul > li > a:hover > div {
  top: 0;
}

.container.home .success_stories > div > ul > li.more span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 22px;
  color: #333333;
  transform: translate(-50%, -50%);
}

.container.home .success_stories > div > a {
  border: solid 1px #a1a1a1;
  font-size: 20px;
  color: #666666;
  width: 176px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 50px 0;
}

.container.home .solution {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container.home .solution .solution_content {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  height: 410px;
  display: flex;
  justify-content: space-between;
}

.container.home .solution .solution_content .solution_img {
  width: 520px;
  min-width: 520px;
  height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container.home .solution .solution_content .solution_img img {
  width: 95%;
}

.container.home .solution .solution_content .solution_main {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.container.home .solution .solution_content .solution_main .solution_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 84px;
  position: relative;
}

.container.home .solution .solution_content .solution_main .solution_title span {
  font-size: 30px;
  font-weight: 600;
  color: #333333;
}

.container.home .solution .solution_content .solution_main .solution_title i {
  font-style: normal;
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  padding: 0 10px;
  z-index: 10;
  margin-top: 10px;
}

.container.home .solution .solution_content .solution_main .solution_title::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #a1a1a2;
  position: absolute;
  bottom: 15px;
  left: 0;
}

.container.home .solution .solution_content .solution_main .solution_ul {
  width: 100%;
  margin-top: 20px;
}

.container.home .solution .solution_content .solution_main .solution_ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 18px;
  color: #333333;
  position: relative;
  padding-left: 30px;
  box-sizing: border-box;
}

.container.home .solution .solution_content .solution_main .solution_ul li a {
  width: 72%;
  max-width: 72%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.container.home .solution .solution_content .solution_main .solution_ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  background: #666666;
  border-radius: 2px;
}

.container.home .solution .solution_content .solution_main > a {
  font-size: 18px;
  color: #e60012;
  margin-top: 30px;
}

.container.home .solution .title {
  display: none;
}

@media screen and (max-width: 1220px) {
  .container.home .title span {
    font-size: 22px;
  }
  .container.home .swiper-container {
    height: 46vh;
  }
  .container.home .statistics {
    width: 96%;
  }
  .container.home .statistics ul li i {
    font-size: 36px;
  }
  .container.home .statistics ul li span {
    height: 40px;
    line-height: 20px;
    padding: 0 5px;
    text-align: center;
    font-size: 12px;
  }
  .container.home .industry {
    width: 96%;
    margin: 20px auto;
  }
  .container.home .industry .industry_main {
    margin-top: 20px;
    height: 530px;
  }
  .container.home .industry .industry_main .industry_img .text p {
    height: 50px;
    font-size: 20px;
  }
  .container.home .industry .industry_main .industry_img .text p span:nth-child(1) {
    height: 50px;
    line-height: 50px;
  }
  .container.home .industry .industry_main .industry_img .text p span:nth-child(2) {
    max-height: 50px;
    font-size: 14px;
  }
  .container.home .industry .industry_main .industry_img .text:hover p {
    height: 100px;
  }
  .container.home .industry .industry_main .yil {
    width: 42%;
    height: 224px;
  }
  .container.home .industry .industry_main .jung {
    width: 42%;
    height: 286px;
  }
  .container.home .industry .industry_main .jiaoy {
    width: 56%;
    height: 336px;
  }
  .container.home .industry .industry_main .nengy_zhengf {
    width: 56%;
    height: 173px;
  }
  .container.home .industry .industry_main .nengy_zhengf .nengy {
    width: 48%;
    height: 173px;
  }
  .container.home .industry .industry_main .nengy_zhengf .zhengf {
    width: 48%;
    height: 172px;
  }
  .container.home .product > div {
    width: 96%;
  }
  .container.home .product > div > a {
    width: 120px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }
  .container.home .product .product_ul li {
    width: 32%;
  }
  .container.home .product .describe {
    width: 60%;
    line-height: 20px;
    font-size: 14px;
  }
  .container.home .success_stories > div > ul > li {
    width: 50%;
  }
  .container.home .success_stories > div > a {
    width: 120px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }
  .container.home .solution {
    height: 400px;
  }
  .container.home .solution .solution_content {
    width: 96%;
    height: 300px;
  }
  .container.home .solution .solution_content .solution_img {
    width: 35%;
    min-width: 35%;
    height: auto;
  }
  .container.home .solution .solution_content .solution_main {
    width: 60%;
  }
  .container.home .solution .solution_content .solution_main .solution_title {
    height: 60px;
  }
  .container.home .solution .solution_content .solution_main .solution_title span {
    font-size: 22px;
  }
  .container.home .solution .solution_content .solution_main .solution_title i {
    margin: 0;
  }
  .container.home .solution .solution_content .solution_main .solution_ul li {
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }
  .container.home .solution .solution_content .solution_main > a {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .container.home .title {
    height: 70px;
  }
  .container.home .title span {
    font-size: 18px;
  }
  .container.home .title i {
    font-size: 12px;
  }
  .container.home .swiper-container {
    height: 200px;
  }
  .container.home .swiper-container .swiper_conten a {
    font-size: 14px;
    width: 100px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    bottom: 20px;
    left: 35px;
  }
  .container.home .statistics {
    padding: 20px 0;
  }
  .container.home .statistics ul li i {
    font-size: 18px;
  }
  .container.home .industry {
    margin: 0 auto;
  }
  .container.home .industry .industry_main {
    height: 1050px;
  }
  .container.home .industry .industry_main .industry_img .text p {
    height: 50px;
    font-size: 20px;
  }
  .container.home .industry .industry_main .industry_img .text p span:nth-child(1) {
    height: 50px;
    line-height: 50px;
  }
  .container.home .industry .industry_main .industry_img .text p span:nth-child(2) {
    max-height: 50px;
    font-size: 14px;
  }
  .container.home .industry .industry_main .industry_img .text:hover p {
    height: 100px;
  }
  .container.home .industry .industry_main .yil {
    width: 100%;
    height: 200px;
  }
  .container.home .industry .industry_main .jung {
    width: 100%;
    height: 200px;
  }
  .container.home .industry .industry_main .jiaoy {
    width: 100%;
    height: 200px;
  }
  .container.home .industry .industry_main .nengy_zhengf {
    width: 100%;
    height: 420px;
  }
  .container.home .industry .industry_main .nengy_zhengf .nengy {
    width: 100%;
    height: 200px;
  }
  .container.home .industry .industry_main .nengy_zhengf .zhengf {
    width: 100%;
    height: 200px;
  }
  .container.home .product .describe {
    width: 94%;
    margin: 20px 0;
    font-size: 12px;
  }
  .container.home .product .product_ul {
    display: flex;
    flex-wrap: wrap;
  }
  .container.home .product .product_ul li {
    width: 48%;
    margin: 5px 0;
    height: 140px;
  }
  .container.home .product .product_ul li a {
    height: 140px;
  }
  .container.home .product .product_ul li a p {
    font-size: 14px;
  }
  .container.home .product .product_ul li a:hover > p {
    bottom: 0;
  }
  .container.home .product .product_ul li a:hover > div {
    top: -240px;
  }
  .container.home .product > div > a {
    margin: 20px 0;
  }
  .container.home .success_stories > div {
    margin: 0 auto;
  }
  .container.home .success_stories > div > ul {
    margin: 20px auto;
  }
  .container.home .success_stories > div > ul > li {
    height: 140px;
    margin: 5px 0;
  }
  .container.home .success_stories > div > ul > li > a {
    width: 96%;
    height: 140px;
  }
  .container.home .success_stories > div > ul > li > a p {
    font-size: 14px;
  }
  .container.home .success_stories > div > ul > li > a:hover > p {
    bottom: 0;
  }
  .container.home .success_stories > div > ul > li > a:hover > div {
    top: -240px;
  }
  .container.home .success_stories > div > ul > li.more span {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .container.home .success_stories > div > a {
    margin: 20px 0;
  }
  .container.home .solution {
    flex-direction: column;
    height: 300px;
  }
  .container.home .solution .title {
    display: flex;
  }
  .container.home .solution .solution_content {
    height: 220px;
  }
  .container.home .solution .solution_content .solution_img {
    display: none;
  }
  .container.home .solution .solution_content .solution_main {
    width: 100%;
  }
  .container.home .solution .solution_content .solution_main .solution_title {
    display: none;
  }
  .container.home .solution .solution_content .solution_main .solution_ul li {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .container.home .solution .solution_content .solution_main > a {
    margin-top: 10px;
    font-size: 14px;
  }
}

.container.certification .certification_main {
  width: 100%;
  margin-top: 40px;
}

.container.certification .certification_main ul {
  display: flex;
  flex-wrap: wrap;
}

.container.certification .certification_main ul li {
  width: 25%;
  margin: 10px 0;
}

.container.certification .certification_main ul li div {
  width: 96%;
  border: solid 1px #eee;
  padding: 10px;
  box-sizing: border-box;
}

.container.certification .certification_main ul li div a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container.certification .certification_main ul li div a img {
  height: 180px;
  max-width: 100%;
}

.container.certification .certification_main ul li div a span {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 10px 0;
  color: #333333;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1220px) {
  .container.certification .certification_main ul li div img {
    height: 140px;
  }
  .container.certification .certification_main ul li div span {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .container.certification .certification_main {
    margin-top: 20px;
  }
  .container.certification .certification_main ul li {
    width: 50%;
  }
  .container.certification .certification_main ul li div img {
    height: 110px;
  }
  .container.certification .certification_main ul li div span {
    font-size: 12px;
  }
}

.container.movemen .list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.container.movemen .list li {
  display: flex;
  justify-content: space-between;
  height: 180px;
  margin: 30px 0;
}

.container.movemen .list li .list_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: 100%;
  background: #ed4c59;
  border-radius: 4px;
}

.container.movemen .list li .list_left span {
  font-size: 45px;
  margin-bottom: 20px;
  color: #ffffff;
}

.container.movemen .list li .list_left i {
  font-style: normal;
  font-size: 22px;
  color: #ffffff;
}

.container.movemen .list li .list_right {
  width: 79%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container.movemen .list li .list_right h2 {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.container.movemen .list li .list_right h2 a {
  font-size: 30px;
  color: #333333;
}

.container.movemen .list li .list_right p {
  height: 90px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.container.movemen .list li .list_right p a {
  font-size: 16px;
  color: #666666;
}

.container.movemen .list li .list_right span a {
  font-size: 16px;
  color: #e60012;
}

@media screen and (max-width: 1220px) {
  .container.movemen .list {
    margin-top: 20px;
  }
  .container.movemen .list li {
    height: 140px;
    margin: 20px 0;
  }
  .container.movemen .list li .list_left span {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .container.movemen .list li .list_left i {
    font-size: 18px;
  }
  .container.movemen .list li .list_right h2 a {
    font-size: 24px;
  }
  .container.movemen .list li .list_right p {
    height: 81px;
    line-height: 27px;
  }
  .container.movemen .list li .list_right p a {
    font-size: 14px;
  }
  .container.movemen .list li .list_right span a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .container.movemen .list {
    margin-top: 20px;
  }
  .container.movemen .list li {
    height: 130px;
    margin: 10px 0;
  }
  .container.movemen .list li .list_left {
    width: 30%;
  }
  .container.movemen .list li .list_left span {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .container.movemen .list li .list_left i {
    font-size: 14px;
  }
  .container.movemen .list li .list_right {
    width: 68%;
  }
  .container.movemen .list li .list_right h2 a {
    font-size: 16px;
  }
  .container.movemen .list li .list_right p {
    height: 60px;
    line-height: 20px;
  }
  .container.movemen .list li .list_right p a {
    font-size: 12px;
  }
  .container.movemen .list li .list_right span a {
    font-size: 12px;
  }
}

.container.movemen_page .page_content {
  width: 100%;
}

.container.movemen_page .page_content h1 {
  text-align: center;
  margin-top: 60px;
}

.container.movemen_page .page_content .content {
  padding: 40px 0;
  box-sizing: border-box;
  line-height: 40px;
}

.container.movemen_page .page_content .content div.img {
  width: 100%;
  text-align: center;
}

.container.movemen_page .page_content .content p {
  color: #666666;
  font-size: 18px;
}

.container.movemen_page .page_content .content img {
  max-width: 100%;
}

.container.movemen_page .page_content .subsidiary_file {
  margin-bottom: 20px;
  border: solid 1px #ddd;
  padding: 10px 15px;
  background: #eee;
}

.container.movemen_page .page_content .subsidiary_file span {
  color: #666;
}

.container.movemen_page .page_content .subsidiary_file div {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.container.movemen_page .page_content .subsidiary_file div a {
  font-size: 14px;
  color: #0078d4;
  padding: 5px 10px;
  text-decoration: underline;
}

.container.movemen_page .page_content .page_bottom {
  display: flex;
  justify-content: space-between;
}

.container.movemen_page .page_content .page_bottom div {
  display: flex;
  flex-direction: column;
}

.container.movemen_page .page_content .page_bottom div a {
  font-size: 18px;
  line-height: 34px;
  color: #666666;
}

.container.movemen_page .page_content .page_bottom div:nth-child(2) {
  text-align: right;
}

@media screen and (max-width: 900px) {
  .container.movemen_page .page_content h1 {
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
  }
  .container.movemen_page .page_content .content {
    padding: 20px 0;
    box-sizing: border-box;
    line-height: 24px;
  }
  .container.movemen_page .page_content .content p {
    font-size: 14px;
  }
  .container.movemen_page .page_content .page_bottom {
    flex-direction: column;
  }
  .container.movemen_page .page_content .page_bottom div {
    flex-direction: row;
  }
  .container.movemen_page .page_content .page_bottom div a {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
  }
  .container.movemen_page .page_content .page_bottom div a:nth-child(1) {
    width: 60px;
    min-width: 60px;
  }
  .container.movemen_page .page_content .page_bottom div.page_bottom_turning {
    display: none;
  }
  .container.movemen_page .page_content .page_bottom div:nth-child(2) {
    text-align: left;
  }
}

.container.special_page .special_main {
  width: 100%;
  height: 100%;
}

.container.contact .contact_us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.container.contact .contact_us img {
  width: 1000px;
}

.container.contact .contact_us ul {
  width: 1000px;
  display: flex;
  justify-content: space-between;
}

.container.contact .contact_us ul li {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container.contact .contact_us ul li i {
  font-style: normal;
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

.container.contact .contact_us ul li span {
  font-size: 16px;
  color: #999;
  text-align: center;
}

.container.contact .contact_us ul li span.textSite2 {
  display: none;
}

.container.contact .map {
  width: 80%;
  margin-top: 40px;
  margin: 0 auto;
}

.container.contact .map img {
  width: 100%;
}

@media screen and (max-width: 1220px) {
  .container.contact .contact_us img {
    width: 800px;
  }
  .container.contact .contact_us ul {
    width: 800px;
  }
  .container.contact .contact_us ul li {
    width: 200px;
  }
}

@media screen and (max-width: 900px) {
  .container.contact .contact_us img {
    display: none;
  }
  .container.contact .contact_us ul {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .container.contact .contact_us ul li {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .container.contact .contact_us ul li i {
    width: 60px;
  }
  .container.contact .contact_us ul li span {
    font-size: 14px;
  }
  .container.contact .contact_us ul li span.textSite {
    display: none;
  }
  .container.contact .contact_us ul li span.textSite2 {
    display: block;
    text-align: left;
  }
  .container.contact .map {
    width: 96%;
  }
}
