.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.hidden-xs {
  display: block;
}
.hidden-pc {
  display: none;
}
.box-container {
  width: 15.36rem;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.box-container-fluid {
  width: 100%;
  margin: 0 auto;
}
.medium-box-container {
  width: 80%;
  margin: 0 auto;
}
body {
  font-size: 16px;
  overflow-x: hidden;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
@font-face {
  font-family: "cn";
  /*src: url('../fonts/misans-normal.ttf');*/
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "light";
  src: url('../fonts/pangmen light.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pm";
  src: url('../fonts/pangmen.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mb";
  src: url('../fonts/montserratbold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ml";
  src: url('../fonts/Montserrat-Light.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mr";
  src: url('../fonts/Montserrat-Regular.otf');
  font-weight: normal;
  font-style: normal;
}
.pic {
  font-size: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
.pic img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pic img.phone {
  display: none;
}
.phone-nav {
  display: none;
}
.p_h {
  height: 1rem;
}
.header-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  background-color: #fff;
}
.header-wrapper.shadow {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.header-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  height: 1rem;
}
.header-wrapper .logo-box {
  width: 1.34rem;
}
.header-wrapper .logo-box a {
  display: block;
  width: 100%;
}
.header-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.header-wrapper .search {
  cursor: pointer;
  width: 0.4rem;
  height: 0.4rem;
  background-image: url(../images/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.pc-nav-box {
  margin-right: 0.8rem;
  flex: 1;
  text-align: right;
}
.pc-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: flex-end;
}
.pc-nav-box li {
  position: relative;
  margin-right: 0.96rem;
}
.pc-nav-box li:last-child {
  margin-right: 0;
}
.pc-nav-box li:hover > a,
.pc-nav-box li.on > a {
  color: #007cd6;
}
.pc-nav-box li:hover > a {
  color: #007cd6;
}
.pc-nav-box li:hover .nav {
  display: block;
}
.pc-nav-box li:hover .nav:before {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.pc-nav-box li:hover .nav a {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
.pc-nav-box li > a {
  font-size: 0.18rem;
  color: #000;
  line-height: 1rem;
}
.pc-nav-box a {
  display: block;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.pc-nav-box .nav {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  text-align: center;
  width: 1.6rem;
  margin-left: -0.8rem;
  padding: 0.16rem;
  overflow: hidden;
}
.pc-nav-box .nav:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.pc-nav-box .nav a {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  display: none;
  opacity: 0;
  visibility: hidden;
}
.pc-nav-box .nav a:last-child {
  margin-bottom: 0;
}
.pc-nav-box .nav a:hover {
  color: #007cd6;
}
.links {
  font-size: 0;
  max-width: 40%;
}
.links a {
  position: relative;
  font-size: 14px;
  padding-right: 0.32rem;
  margin-right: 0.32rem;
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  color: #fff;
}
.links a:hover {
  color: #007cd6;
}
.links a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 1;
  width: 2px;
  height: 13px;
  background: #fff;
}
.links a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.links a:last-child:after {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content {
  font-size: 16px;
  line-height: 0.32rem;
  color: #666;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.swiper-box {
  position: relative;
}
.index-more {
  position: relative;
  display: block;
  width: 1.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: #222;
  font-family: "mb";
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-transform: uppercase;
}
.index-more:hover i {
  right: -0.4rem;
}
.index-more.on {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-family: "cn";
  background-color: #007cd6;
}
.index-more.on:hover {
  color: #fff;
}
.index-more.on i {
  background-image: url(../images/iright.png);
}
.index-more.normal {
  width: 1.6rem;
  line-height: 0.54rem;
}
.index-more.normal i {
  background-image: url(../images/iright3.png);
  width: 0.46rem;
}
.index-more i {
  display: inline-block;
  position: absolute;
  right: -0.3rem;
  top: 50%;
  z-index: 10;
  width: 0.56rem;
  height: 0.09rem;
  background-image: url(../images/iright2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.index-btn {
  display: inline-block;
  width: 0.49rem;
  height: 0.49rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  background-image: url(../images/icon-r4.png);
}
.index-btn:hover {
  background-image: url(../images/icon-r.png);
}
.index-btn.white {
  background-image: url(../images/icon-r2.png);
}
.index-btn.white:hover {
  background-image: url(../images/icon-r3.png);
}
.swiper-btn {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 10;
  width: 0.45rem;
  height: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-size: 100%;
}
.swiper-btn.index {
  width: 0.48rem;
  height: 0.48rem;
}
.swiper-btn.prev {
  left: 0.1rem;
  background-image: url(../images/prev.png);
}
.swiper-btn.prev:hover {
  background-image: url(../images/prev2.png);
}
.swiper-btn.next {
  right: 0.1rem;
  background-image: url(../images/next.png);
}
.swiper-btn.next:hover {
  background-image: url(../images/next2.png);
}
.search-form {
  width: 100%;
  position: fixed;
  left: 0;
  top: 1rem;
  background: #fff;
  z-index: 30;
  padding: 0.7rem 0;
  display: none;
  border-top: 1px solid #f7f8f9;
  /* input placeholder  */
}
.search-form .w960 {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  width: 9.6rem;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #f7f8f9;
}
.search-form .keywords {
  flex: 1;
  overflow: hidden;
  line-height: 0.56rem;
  margin-left: 20px;
  font-size: 15px;
  color: #999;
}
.search-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 15px;
}
.search-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: 15px;
}
.search-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 15px;
}
.search-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 15px;
}
.search-form .close {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  color: #999;
  margin-top: -0.15rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/close.png) no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.search-form .close:hover {
  color: #007cd6;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.footer-wrapper {
  background-color: #272727;
  padding-bottom: 0.7rem;
}
.footer-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-wrapper .box-1 {
  background-color: #383838;
}
.footer-wrapper .box-1 .box-container {
  align-items: center;
  justify-content: center;
  padding: 0.21rem 0;
}
.footer-wrapper .box-1 .title {
  font-size: 0.18rem;
  color: #fff;
  line-height: 0.4rem;
  text-transform: uppercase;
  margin-right: 1.16rem;
  max-width: 80%;
}
.footer-wrapper .box-2 {
  padding: 0.77rem 0 0.58rem;
}
.footer-wrapper .copyright,
.footer-wrapper .copyright a {
  font-size: 14px;
  color: #666;
}
.footer-wrapper .copyright {
  line-height: 24px;
  max-width: 54%;
}
.footer-wrapper .copyright a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-wrapper .copyright a:hover {
  color: #fff;
}
.footer-wrapper .other-box {
  width: 263px;
  text-align: right;
}
.footer-wrapper .other-box p {
  font-size: 16px;
  color: #fff;
  line-height: 0.3rem;
  margin-bottom: 0.08rem;
}
.footer-wrapper .tel {
  font-size: 0.3rem;
  font-family: "mb";
  line-height: 0.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-wrapper .address {
  color: rgba(255, 255, 255, 0.6);
  line-height: 0.3rem;
}
.share {
  margin-top: 0.46rem;
}
.share ul {
  font-size: 0;
}
.share ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.28rem;
}
.share ul li:last-child {
  margin-right: 0;
}
.share ul li.on:before {
  animation: iconScale 1.5s ease infinite;
  opacity: 1;
  visibility: visible;
}
.share ul li.on .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.share ul li a {
  position: relative;
  display: block;
  width: 0.43rem;
  height: 0.43rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.share .wechat a {
  background-image: url(../images/wechat.png);
}
.share .wechat.on a {
  background-image: url(../images/wechat2.png);
}
.share .weibo a {
  background-image: url(../images/weibo.png);
}
.share .weibo.on a {
  background-image: url(../images/weibo2.png);
}
.share .douyin a {
  background-image: url(../images/douyin.png);
}
.share .douyin.on a {
  background-image: url(../images/douyin2.png);
}
.share .hidebox {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.15rem);
  z-index: 1;
  margin-left: -0.6rem;
  width: 1.2rem;
  background-color: #fff;
  box-shadow: 0px 0px 46px 0px rgba(6, 0, 1, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.share .hidebox img {
  display: block;
  width: 100%;
}
.friend-link {
  width: 100%;
  margin-top: 0.48rem;
}
.friend-link .box {
  position: relative;
  width: 100%;
  text-align: left;
}
.friend-link .name {
  cursor: pointer;
  color: #9a9a9a;
  height: 44px;
  line-height: 44px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 0 0.4rem 0 0.22rem;
  background-image: url(../images/up.png);
  background-repeat: no-repeat;
  border: solid 1px #8d8d8d;
  background-position: right 0.28rem center;
}
.friend-link .list {
  font-size: 0;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 100%;
  z-index: 10;
  max-height: 270px;
  overflow-y: auto;
  display: none;
  background-color: #272727;
  border: 1px solid #8d8d8d;
  border-bottom: none;
}
.friend-link .list::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}
.friend-link .list::-webkit-scrollbar-thumb {
  background-color: #007cd6;
}
.friend-link .list a {
  display: block;
  font-size: 14px;
  color: #9a9a9a;
  line-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #8d8d8d;
  padding: 0 26px;
}
.friend-link .list a:hover {
  color: #fff;
}
.friend-link .list a:last-child {
  border-bottom: none;
}
.footer-nav-box {
  width: 60%;
}
.footer-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-nav-box li > a {
  font-size: 16px;
  color: #fff;
  line-height: 0.48rem;
}
.footer-nav-box li > a:hover {
  color: #007cd6;
}
.footer-nav-box a {
  display: block;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-nav-box .nav {
  margin-top: 0.06rem;
}
.footer-nav-box .nav a {
  line-height: 0.36rem;
  color: white;
  font-size:16px;
}
.footer-nav-box .nav a:hover {
  color: #fff;
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active .box-container {
  opacity: 1;
  visibility: visible;
 /* transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);*/
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.index-banner-wrapper .index-banner-swiper .box-container {
  opacity: 0;
  visibility: hidden;
  /*transform: translateY(120px);
  -webkit-transform: translateY(120px);
  -moz-transform: translateY(120px);
  -ms-transform: translateY(120px);
  -o-transform: translateY(120px);
  transition: all 1.7s ease;
  -webkit-transition: all 1.7s ease;
  -moz-transition: all 1.7s ease;
  -ms-transition: all 1.7s ease;
  -o-transition: all 1.7s ease;
  transition-delay: 0.4s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
}
.index-banner-wrapper .swiper-slide {
  overflow: hidden;
}
.index-banner-wrapper .swiper-slide a {
  display: block;
}
.index-banner-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  /*transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: transform 6s ease;
  -webkit-transition: transform 6s ease;
  -moz-transition: transform 6s ease;
  -ms-transition: transform 6s ease;
  -o-transition: transform 6s ease;*/
}
.index-banner-wrapper .swiper-slide img.phone {
  display: none;
}
.index-banner-wrapper .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.index-banner-wrapper .info-1 .box-container > div {
  width: 48.82%;
}
.index-banner-wrapper .info-1 .en {
  font-size: 0.72rem;
  font-family: "mb";
  text-transform: uppercase;
  line-height: 0.7rem;
  background-image: -webkit-linear-gradient(#fff, rgba(255, 255, 255, 0.1) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-banner-wrapper .info-1 .name {
  font-size: 0.68rem;
  font-family: "pm";
  line-height: 0.7rem;
}
.index-banner-wrapper .info-1 .desc {
  font-size: 0.18rem;
  line-height: 0.36rem;
  margin-top: 0.3rem;
}
.index-banner-wrapper .name,
.index-banner-wrapper .desc {
  color: #fff;
}
.index-banner-wrapper .info-2 .box-container {
  text-align: center;
}
.index-banner-wrapper .info-2 .name {
  font-size: 0.6rem;
  font-family: "light";
  line-height: 0.7rem;
}
.index-banner-wrapper .info-2 .desc {
  font-size: 0.9rem;
  line-height: 0.9rem;
  font-family: "pm";
  text-align: center;
  margin-top: 0.16rem;
}
.index-banner-wrapper .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-banner-wrapper .swiper-pagination-bullet svg {
  width: 0.38rem;
  height: 0.38rem;
  position: absolute;
  top: 50%;
  margin-top: -0.19rem;
  left: 50%;
  margin-left: -0.19rem;
}
.index-banner-wrapper .swiper-pagination-bullet svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.index-banner-wrapper .swiper-pagination-bullet {
  fill: none;
}
.index-banner-wrapper .circle-chart__circle {
  stroke-linecap: square;
  fill: none;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__background {
  stroke: rgba(255, 255, 255, 0.2);
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -moz-transform-origin: center;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 3.8s linear reverse;
  -moz-animation: circle-chart-fill 3.8s linear reverse;
  -webkit-animation: circle-chart-fill 3.8s linear reverse;
  -ms-animation: circle-chart-fill 3.8s linear reverse;
}
.index-banner-wrapper .swiper-pagination-bullet.one.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 2.4s linear reverse;
  -moz-animation: circle-chart-fill 2.4s linear reverse;
  -webkit-animation: circle-chart-fill 2.4s linear reverse;
  -ms-animation: circle-chart-fill 2.4s linear reverse;
}
.index-banner-wrapper .swiper-pagination {
  bottom: 0.65rem;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.17rem;
  opacity: 1;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:focus,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:active,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:link {
  outline: none;
}
.fixed-box {
  position: fixed;
  right: 0.1rem;
  bottom: 10%;
  z-index: 40;
  display: none;
  width: 0.84rem;
}
.fixed-box li {
  position: relative;
  margin-bottom: 0.08rem;
}
.fixed-box li:hover a img {
  animation: shake 0.5s ease;
}
.fixed-box a {
  display: block;
  width: 100%;
  background-color: #007cd6;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0.2rem 0.1rem 0.17rem;
  text-align: center;
}
.fixed-box a > img {
  display: block;
  width: 0.28rem;
  margin: 0 auto;
}
.fixed-box a p {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #fff;
  margin-top: 0.03rem;
}
.fixed-box .qrcode:hover .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.fixed-box .qrcode .hidebox {
  width: 1.6rem;
  text-align: center;
  margin-right: 0.1rem;
  padding: 0.14rem 0.2rem 0.16rem;
  transform: translateX(80%);
  -webkit-transform: translateX(80%);
  -moz-transform: translateX(80%);
  -ms-transform: translateX(80%);
  -o-transform: translateX(80%);
}
.fixed-box .qrcode .hidebox img {
  display: block;
  width: 100%;
}
.fixed-box .qrcode a p {
  margin-bottom: 0;
}
.fixed-box .qrcode p {
  line-height: 0.24rem;
  margin-bottom: 0.06rem;
}
.fixed-box .tel:hover a {
  border-radius: 0 5px 5px 0;
  box-shadow: none;
}
.fixed-box .tel:hover .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.fixed-box .tel .hidebox {
  width: 2.6rem;
  padding: 0 0 0 0.2rem;
  transform: translateX(2.6rem);
  -webkit-transform: translateX(2.6rem);
  -moz-transform: translateX(2.6rem);
  -ms-transform: translateX(2.6rem);
  -o-transform: translateX(2.6rem);
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px 0 0 5px;
}
.fixed-box .tel .hidebox span {
  font-size: 0.2rem;
  color: #fff;
  font-family: "mb";
  margin-left: 0.16rem;
}
.fixed-box .gotop {
  display: none;
}
.fixed-box .hidebox {
  position: absolute;
  top: 0;
  right: 100%;
  background-color: #007cd6;
  z-index: -1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}
.index-box-1 .box-container > div {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.index-box-1 .box-container > div > div {
  width: 50%;
}
.index-box-1 .inner-2 a {
  position: relative;
  display: block;
}
.index-box-1 .inner-2 .info {
  padding: 0.56rem 0.66rem 0;
}
.index-box-1 .info-box {
  padding-right: 0.86rem;
}
.index-box-1 .info-box .info {
  padding-left: 0.7rem;
}
.index-box-1 .desc {
  font-size: 16px;
  line-height: 0.3rem;
  height: 1.5rem;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin: 0.15rem auto 0.42rem;
}
.index-box-1 .name {
  font-size: 0.3rem;
  color: #007cd6;
  font-weight: 700;
  line-height: 0.48rem;
}
.index-box-1 .left:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-1 .left:hover .index-btn {
  background-image: url(../images/icon-r5.png);
}
.index-box-1 .left .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}
.index-box-1 .left .en,
.index-box-1 .left .title {
  color: #fff;
}
.index-box-1 .left .index-btn {
  background-image: url(../images/icon-r3.png);
}
.index-box-1 .right {
  background-color: #f4f4f4;
}
.index-box-1 .right:hover .index-btn {
  background-image: url(../images/icon-r5.png);
}
.index-box-1 .right .index-btn {
  background-image: url(../images/icon-r.png);
}
.index-box-1 .en,
.index-box-1 .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-box-1 .en {
  font-size: 0.3rem;
  font-family: "mb";
  line-height: 0.4rem;
  text-transform: uppercase;
  color: #c2c6cc;
}
.index-box-1 .title {
  font-size: 0.24rem;
  color: #222;
  line-height: 0.3rem;
  margin: 0.1rem auto 0.45rem;
}
.index-box-2 {
  /*margin-top: 1.3rem;*/
}
.index-box-2 .swiper-slide {
  width: 25%;
}
.index-box-2 .swiper-slide:hover .pic:before {
  background-color: rgba(0, 124, 214, 0.7);
}
.index-box-2 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-2 .swiper-slide:hover .icon {
  transform: translateY(-0.3rem);
  -webkit-transform: translateY(-0.3rem);
  -moz-transform: translateY(-0.3rem);
  -ms-transform: translateY(-0.3rem);
  -o-transform: translateY(-0.3rem);
}
.index-box-2 .swiper-slide:hover .index-btn {
  background-image: url(../images/icon-r3.png);
}
.index-box-2 .pic {
  position: relative;
}
.index-box-2 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(4, 13, 30, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.index-box-2 .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 1.34rem 1.2rem 0 1rem;
}
.index-box-2 .name,
.index-box-2 .ename {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-box-2 .name {
  font-size: 0.32rem;
  color: #fff;
  font-weight: 700;
  line-height: 0.48rem;
  text-transform: uppercase;
  margin: 1.06rem auto 0.12rem;
  height: 0.96rem;
}
.index-box-2 .ename {
  font-family: "mr";
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  height: 44px;
  margin-bottom: 1.9rem;
}
.index-box-2 .icon {
  display: block;
  width: 0.58rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.index-box-3 .swiper-slide {
  width: 20%;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
}
.index-box-3 .icon {
  width: 0.48rem;
  margin-bottom: 0.87rem;
}
.index-box-3 .pic {
  position: relative;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  height: 7.6rem;
}
.index-box-3 .pic:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.index-box-3 .info {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  width: 100%;
  padding: 1.8rem 0.6rem 0;
  transition: padding 0.6s ease;
  -webkit-transition: padding 0.6s ease;
  -moz-transition: padding 0.6s ease;
  -ms-transition: padding 0.6s ease;
  -o-transition: padding 0.6s ease;
}
.index-box-3 .info p {
  font-size: 0.2rem;
  color: #fff;
  line-height: 0.28rem;
  font-family: "ml";
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.04rem auto 0.18rem;
}
.index-box-3 .title {
  font-size: 0.36rem;
  color: #fff;
  line-height: 0.48rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index-box-3 .desc {
  font-size: 15px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 52px;
  line-height: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.index-box-3 .box-container {
  position: relative;
}
.index-box-3 .index-more {
  position: absolute;
  right: 0;
  top: 0.42rem;
  z-index: 10;
}
.index-box-3 .index-more i {
  background-image: url(../images/iright2.png);
}
.index-box-3 .index-btn {
  position: absolute;
  left: 0.6rem;
  bottom: 1rem;
  z-index: 10;
}
.index-box-4 {
  padding-top: 0!important;
}
.index-box-4 .swiper-slide {
  width: 16.02%;
  transition: box-shadow 0.5s ease;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
}
.index-box-4 .swiper-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.index-box-4 .swiper-slide:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.index-box-4 .swiper-slide:hover .line_t,
.index-box-4 .swiper-slide:hover .line_b {
  width: 100%;
}
.index-box-4 .swiper-slide:hover .line_r,
.index-box-4 .swiper-slide:hover .line_l {
  height: 100%;
}
.index-box-4 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-4 .swiper-slide .pic img {
  height: 1.3rem;
  object-fit: contain;
}
.index-box-4 .swiper-slide .line {
  position: absolute;
  background: #007cd6;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}
.line_t {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.line_r {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
}
.line_b {
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
}
.line_l {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
}
.page-banner-wrapper {
  position: relative;
  z-index: 10;
}
.page-banner-wrapper .info {
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  text-align: center;
}
.page-banner-wrapper .special h1 {
  font-size: 0.54rem;
  line-height: 0.6rem;
}
.page-banner-wrapper .special p {
  font-size: 0.26rem;
  line-height: 0.36rem;
}
.page-banner-wrapper h1 {
  font-size: 0.8rem;
  font-family: "pm";
  color: #fff;
  line-height: 0.8rem;
  margin-bottom: 0.16rem;
}
.page-banner-wrapper p {
  font-size: 0.48rem;
  color: #fff;
  font-family: "light";
  line-height: 0.6rem;
  text-transform: uppercase;
}
.loading {
  text-align: center;
  margin-top: 1rem;
}
.loading a {
  display: inline-block;
  color: #007cd6;
  font-weight: 700;
  line-height: 0.34rem;
}
.loading a:hover img {
  transform: rotateY(180deg);
}
.loading img {
  display: inline-block;
  width: 0.34rem;
  margin-right: 0.15rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.page-box,
.padding {
  padding: 1.2rem 0;
}
.mt {
  margin-top: 1.2rem;
}
.page-title-box {
  margin-bottom: 0.6rem;
}
.page-title-box.center {
  text-align: center;
}
.page-title-box.center .line {
  margin: 0 auto;
}
.page-title-box.white h2,
.page-title-box.white p {
  color: #fff;
}
.page-title-box.special h2 {
  margin-bottom: 0.23rem;
}
.page-title-box.special .line {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 1px;
}
.page-title-box p {
  font-size: 0.48rem;
  color: #222;
  font-family: "mb";
  line-height: 0.48rem;
  text-transform: uppercase;
}
.page-title-box h2 {
  font-size: 0.36rem;
  line-height: 0.48rem;
  font-weight: 700;
  margin: 0.16rem auto;
}
.page-title-box .line {
  width: 0.3rem;
  height: 0.02rem;
  background-color: #007cd6;
}
.honor-wrapper ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.honor-wrapper li {
  width: 24.088%;
  margin-right: 1.216%;
  margin-top: 0.4rem;
  background-color: #f7f7f7;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.honor-wrapper li:hover {
  background-color: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.honor-wrapper li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.honor-wrapper .info {
  text-align: center;
  line-height: 24px;
  padding: 0.18rem 0.3rem 0.34rem;
  border-top: 1px solid rgba(234, 234, 234, 0.5);
}
.honor-wrapper .name {
  font-weight: 700;
  font-size: 16px;
}
.honor-wrapper .time {
  font-size: 12px;
  color: #d1d1d1;
  font-family: "mb";
  margin-top: 0.04rem;
}
.copyright-wrapper {
  position: relative;
}
.copyright-wrapper .prev {
  left: -0.85rem;
  background-image: url(../images/prev3.png);
}
.copyright-wrapper .prev:hover {
  background-image: url(../images/prev4.png);
}
.copyright-wrapper .next {
  right: -0.85rem;
  background-image: url(../images/next3.png);
}
.copyright-wrapper .next:hover {
  background-image: url(../images/next4.png);
}
.copyright-wrapper canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.copyright-wrapper .swiper-box {
  margin-top: 0.3rem;
}
.copyright-wrapper .swiper-container {
  padding: 0.3rem 0;
}
.copyright-wrapper .swiper-slide {
  width: 21.54%;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.2);
}
.copyright-wrapper .swiper-slide img {
  display: block;
  width: 100%;
}
.about-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .info-box {
  width: 43.62%;
}
.about-wrapper .video-box {
  width: 50%;
}
.videoIcon {
  position: relative;
  /*overflow: hidden;*/
}
.videoIcon.on .pic {
  opacity: 0;
  visibility: hidden;
}
.videoIcon.on video {
  opacity: 1;
  visibility: visible;
}
.videoIcon .pic {
  cursor: pointer;
}
.videoIcon .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.videoIcon .pic:before,
.videoIcon .pic:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  margin-top: -0.35rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.videoIcon .pic:before {
  background-image: url(../images/playbg.png);
  z-index: 1;
  animation: iconRotate 6s linear infinite;
}
.videoIcon .pic:after {
  background-image: url(../images/play.png);
  z-index: 10;
}
.videoIcon video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  /*height: 100%;
  object-fit: cover;*/
}
.contact-wrapper .box-1 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.contact-wrapper .box-1 .info {
  width: 36%;
  padding-top: 1rem;
}
.contact-wrapper .box-1 .name {
  font-size: 0.36rem;
  color: #222;
  font-weight: 700;
  line-height: 0.48rem;
  margin-bottom: 0.1rem;
}
.contact-wrapper .box-1 .en {
  font-size: 0.22rem;
  color: #666;
  line-height: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 0.48rem;
}
.contact-wrapper .box-1 li {
  position: relative;
  font-size: 16px;
  color: #666;
  line-height: 0.3rem;
  padding-left: 0.52rem;
  margin-bottom: 0.3rem;
}
.contact-wrapper .box-1 li:last-child {
  margin-bottom: 0;
}
.contact-wrapper .box-1 .icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.contact-wrapper .map {
  width: 56.25%;
  position: relative;
  overflow: hidden;
  height: 5.8rem;
}
.contact-wrapper .map .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-wrapper .box-2 {
  background-color: #f8f8f8;
}
.contact-wrapper .box-2 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.contact-wrapper .box-2 li {
  position: relative;
  width: 47.4%;
  background-color: #fff;
  box-shadow: 0.02rem 0.05rem 0.35rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 10px 10px;
  margin-top: 5.2%;
  padding: 0.6rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.contact-wrapper .box-2 li:nth-child(-n+2) {
  margin-top: 0;
}
.contact-wrapper .box-2 li:hover {
  border-radius: 10px;
}
.contact-wrapper .box-2 li:hover:before {
  width: 100%;
}
.contact-wrapper .box-2 li:hover .icon {
  transform: rotateY(180deg);
}
.contact-wrapper .box-2 li:before {
  content: "";
  width: 0;
  height: 0.02rem;
  background-color: #007cd6;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
}
.contact-wrapper .box-2 .info {
  position: relative;
  padding-left: 1.26rem;
  padding-top: 0.15rem;
  padding-bottom: 0.14rem;
}
.contact-wrapper .box-2 .icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 0.8rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.contact-wrapper .box-2 .title {
  font-size: 0.28rem;
  color: #393435;
  line-height: 0.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-wrapper .box-2 .desc {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.4rem;
}
.contact-wrapper .box-3 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.contact-wrapper .box-3 li {
  position: relative;
  width: 31.12%;
  margin-right: 3.32%;
  margin-top: 3.32%;
  overflow: hidden;
}
.contact-wrapper .box-3 li:hover .pic:before {
  background: rgba(0, 124, 214, 0.85);
}
.contact-wrapper .box-3 li:hover .info {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.contact-wrapper .box-3 li:hover .name {
  bottom: -1rem;
}
.contact-wrapper .box-3 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/shadow.png) repeat-x left bottom;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.contact-wrapper .box-3 .name {
  font-size: 0.24rem;
  color: #fff;
  text-align: center;
  line-height: 0.36rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  padding: 0 0.3rem 0.22rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  transition: bottom 0.6s ease;
  -webkit-transition: bottom 0.6s ease;
  -moz-transition: bottom 0.6s ease;
  -ms-transition: bottom 0.6s ease;
  -o-transition: bottom 0.6s ease;
}
.contact-wrapper .box-3 .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  top: 50%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  padding: 0 0.4rem;
  transform: translateY(-30%);
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -o-transform: translateY(-30%);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.contact-wrapper .box-3 .title {
  font-size: 0.18rem;
  color: #fff;
  line-height: 0.3rem;
}
.contact-wrapper .box-3 .tel {
  font-size: 0.24rem;
  color: #fff;
  margin-top: 0.08rem;
  line-height: 0.3rem;
}
.contact-wrapper .box-3 .tel span {
  margin-right: 0.18rem;
}
.contact-wrapper .box-3 .icon {
  display: block;
  width: 0.7rem;
  margin: 0 auto 0.58rem;
}
.news-wrapper ul li {
  border-bottom: 1px solid #f0f0f0;
  padding: 0.38rem 0;
}
.news-wrapper ul li:first-child {
  border-top: 1px solid #f0f0f0;
}
.news-wrapper ul li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.news-wrapper ul li:hover .name {
  color: #007cd6;
}
.news-wrapper ul li:hover .index-btn {
  background-image: url(../images/icon-r.png);
}
.news-wrapper ul li a {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.news-wrapper .pic {
  width: 19.53%;
}
.news-wrapper .info {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding-left: 0.8rem;
  padding-right: 2.4rem;
}
.news-wrapper .name {
  font-size: 0.24rem;
  color: #222;
  font-weight: 700;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-wrapper .desc,
.news-wrapper .time {
  font-size: 16px;
  line-height: 0.3rem;
}
.news-wrapper .desc {
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 0.6rem;
  margin: 0.2rem auto 0.26rem;
}
.news-wrapper .time {
  font-family: "mb";
  color: rgba(0, 0, 0, 0.3);
}
.news-wrapper .index-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
}
.newsinfo-wrapper {
  background-color: #f5f5f5;
}
.newsinfo-wrapper .top {
  position: relative;
  padding: 0.86rem 0 0.56rem;
  background-color: #fff;
}
.newsinfo-wrapper .top canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.newsinfo-wrapper .top .w1200 {
  position: relative;
  z-index: 10;
}
.newsinfo-wrapper .top h1 {
  font-size: 0.36rem;
  color: #404040;
  line-height: 0.48rem;
  font-weight: 700;
  font-family: "hm";
  margin-bottom: 0.35rem;
}
.newsinfo-wrapper .time {
  font-size: 0.2rem;
  color: #ccc;
  font-family: "mb";
  line-height: 0.3rem;
}
.newsinfo-wrapper .time img {
  vertical-align: middle;
  margin-right: 0.15rem;
  position: relative;
  top: -2px;
}
.newsinfo-wrapper > .w1200 {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  border-top: 1px solid #f0f0f0;
}
.newsinfo-wrapper .main {
  flex: 1;
  background-color: #fff;
  padding: 0.6rem 0.72rem 1.05rem 0.6rem;
}
.newsinfo-wrapper .content {
  line-height: 0.36rem;
  margin-bottom: 2.2rem;
}
.newsinfo-wrapper .relative-box p,
.newsinfo-wrapper .relative-box p a {
  color: #666;
}
.newsinfo-wrapper .relative-box p {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  margin-bottom: 10px;
  line-height: 48px;
  padding: 0 0.24rem;
  background-color: #f7f7f7;
}
.newsinfo-wrapper .relative-box p:last-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .relative-box a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  max-width: 80%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.newsinfo-wrapper .relative-box a:hover {
  color: #007cd6;
}
.share-box {
  width: 1.5rem;
  position: sticky;
  height: 100%;
  top: 0.92rem;
  border-top: 0.03rem solid #007cd6;
}
.share-box a {
  display: block;
  line-height: 0.7rem;
  padding-left: 0.28rem;
  font-size: 0.16rem;
  color: #666;
  background-color: #fafafa;
  border-bottom: 1px solid #ebebeb;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.share-box a:hover {
  color: #007cd6;
}
.share-box a.return {
  color: #fff !important;
  padding-left: 0;
  text-align: center;
  background-color: #007cd6;
}
.share-box a.return img {
  margin-right: 0;
  margin-left: 10px;
  width: 0.17rem;
}
.share-box img {
  vertical-align: middle;
  width: 0.3rem;
  margin-right: 0.15rem;
}
.step-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.step-box li {
  position: relative;
  cursor: default;
}
.step-box li:last-child {
  margin-right: 0;
}
.step-box li:last-child .key i {
  display: none;
}
.step-box li:last-child .line {
  display: none;
}
.step-box li:hover .icon:before,
.step-box li:hover .icon:after {
  animation: iconScale2 1.2s ease;
}
.step-box li:hover .line:after {
  width: 100%;
}
.step-box li:hover .line:before {
  background-color: #007cd6;
}
.step-box li p {
  display: inline-block;
  min-width: 1.34rem;
  font-size: 0.23rem;
  font-weight: 700;
  line-height: 0.3rem;
  text-align: center;
  margin-top: 0.3rem;
}
.step-box .line {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 1.1rem;
  height: 1px;
  background-color: #e6e6e6;
  left: calc(100% + 6px);
}
.step-box .line:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #007cd6;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
}
.step-box .line:before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 100%;
  background-color: #e6e6e6;
  position: absolute;
  z-index: 1;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition-delay: 0.5s;
}
.step-box .radius {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  right: -100%;
}
.step-box .key {
  width: 1.34rem;
  height: 1.34rem;
  line-height: 1.34rem;
  margin: 0;
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #007cd6;
  font-size: 0.48rem;
  color: #fff;
  font-family: "mr";
  text-align: center;
}
.step-box .key:before,
.step-box .key:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.step-box .key i {
  display: block;
  width: 0.19rem;
  height: 100%;
  background: url(../images/radius.png) no-repeat center center;
  position: absolute;
  right: -6px;
  top: 0;
  z-index: 1;
  background-size: contain;
}
.contact-box {
  background: url(../images/factorybg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.contact-box .index-more {
  color: #fff;
}
.contact-box .form {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.contact-box .group {
  width: 24.088%;
  margin-right: 1.216%;
  margin-top: 1.216%;
  /* input placeholder  */
}
.contact-box .group:nth-child(-n+4) {
  margin-top: 0;
}
.contact-box .group:nth-child(4n) {
  margin-right: 0;
}
.contact-box .group .text,
.contact-box .group .msg {
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #ededed;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  width: 100%;
  transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -ms-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
}
.contact-box .group .text:focus,
.contact-box .group .msg:focus {
  border-color: #007cd6;
}
.contact-box .group .text {
  height: 0.55rem;
  line-height: 0.55rem;
}
.contact-box .group .msg {
  height: 2rem;
  font-family: " ";
  line-height: 0.3rem;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}
.contact-box .group ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 14px;
}
.contact-box .group :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: 14px;
}
.contact-box .group ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 14px;
}
.contact-box .group :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 14px;
}
.contact-box .group.max {
  width: 100%;
  margin-right: 0;
}
.contact-box .submit {
  margin: 0.3rem auto 0;
}
.contact-box .submit:hover {
  box-shadow: 0 2px 30px rgba(0, 124, 214, 0.3);
}
.factory-wrapper {
  padding-bottom: 0!important;
}
.factory-wrapper .box-1 .content {
  font-size: 0.18rem;
  line-height: 0.34rem;
}
.factory-wrapper .step-box {
  padding-top: 0!important;
}
.industry-wrapper .content {
  font-size: 0.18rem;
  line-height: 0.36rem;
  color: #666;
}
.industry-wrapper .content i {
  font-style: normal;
}
.industry-wrapper .box-2 {
  margin-top: 1.03rem;
}
.industry-wrapper .swiper-box {
  margin-top: 0.3rem;
}
.industry-wrapper .swiper-container {
  padding: 0.3rem 0 0.7rem;
}
.industry-wrapper .swiper-slide {
  width: 68.33%;
  box-shadow: 0.04rem 0.04rem 0.5rem 0px rgba(0, 0, 0, 0.15);
  border: solid 0.03rem #7e7e7e;
}
.industry-wrapper .swiper-pagination {
  display: block;
  bottom: 0;
  font-size: 0;
}
.industry-wrapper .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.3;
  background: #007cd6;
  margin: 0 0.05rem;
  width: 0.09rem;
  height: 0.09rem;
  border: 1px solid #007cd6;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}
.industry-wrapper .swiper-pagination .swiper-pagination-bullet:focus,
.industry-wrapper .swiper-pagination .swiper-pagination-bullet:active,
.industry-wrapper .swiper-pagination .swiper-pagination-bullet:link {
  outline: none;
}
.industry-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.4rem;
  border-radius: 5px;
}
.system-wrapper .box-1 {
  background-color: #f8f8f8;
}
.system-wrapper .box-1 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.system-wrapper .box-1 .info-box {
  width: 43.62%;
}
.system-wrapper .box-1 .swiper-box {
  width: 50%;
  background-color: #ececec;
}
.system-wrapper .box-1 .swiper-slide.swiper-slide-active .pic {
  opacity: 1;
  visibility: visible;
}
.system-wrapper .box-1 .swiper-slide .pic {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.system-wrapper .box-1 .inner {
  width: 100%;
}
.system-wrapper .box-1 .title {
  font-size: 0.2rem;
  color: #666;
  line-height: 0.3rem;
  font-family: "ml";
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.system-wrapper .box-1 .key {
  font-size: 0.32rem;
  font-family: "mb";
  color: #dedddd;
  line-height: 0.3rem;
  margin-bottom: 0.05rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.system-wrapper .box-1 .prev {
  left: 0;
  background-image: url(../images/prev5.png);
}
.system-wrapper .box-1 .prev:hover {
  background-image: url(../images/prev6.png);
}
.system-wrapper .box-1 .next {
  right: 0;
  background-image: url(../images/next5.png);
}
.system-wrapper .box-1 .next:hover {
  background-image: url(../images/next6.png);
}
.system-wrapper .box-2 table {
  width: 100%;
  margin-bottom: 0.15rem;
  table-layout: fixed;
}
.system-wrapper .box-2 table:last-child {
  margin-bottom: 0;
}
.system-wrapper .box-2 table:last-child td {
  font-size: 0.16rem;
  padding-top: 0.23rem;
  padding-bottom: 0.46rem;
  vertical-align: text-top;
}
.system-wrapper .box-2 table th,
.system-wrapper .box-2 table td {
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.32rem;
  padding: 0.09rem 0.1rem;
}
.system-wrapper .box-2 table th {
  color: #fff;
  height: 0.5rem;
  background-color: #1492ed;
}
.system-wrapper .box-2 table td {
  color: #666;
  height: 0.8rem;
  background-color: #eaf5fd;
}
.system-wrapper .box-2 table td:nth-child(even) {
  background-color: #e1f1fd;
}
.system-wrapper .box-3 {
  background-color: #f7f7f7;
}
.system-wrapper .box-4 .page-title-box {
  margin-bottom: 0.3rem;
}
.system-wrapper .box-4 .swiper-box {
  border-bottom: 1px solid #ebebeb;
}
.system-wrapper .box-4 .box-container {
  position: relative;
}
.system-wrapper .box-4 .icon {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 5px 25px 0px rgba(0, 55, 148, 0.1);
}
.system-wrapper .box-4 .icon img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.system-wrapper .box-4 .icon .on {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
}
.system-wrapper .box-4 .swiper-btn {
  transform: none;
  top: auto;
  bottom: -0.24rem;
  border-radius: 50%;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}
.system-wrapper .box-4 .prev {
  left: -0.88rem;
}
.system-wrapper .box-4 .next {
  right: -0.88rem;
}
.system-wrapper .system-swiper {
  padding-top: 0.3rem;
}
.system-wrapper .system-swiper .swiper-slide {
  cursor: pointer;
  padding: 0 0.3rem 0.3rem;
}
.system-wrapper .system-swiper .swiper-slide:after {
  content: "";
  width: 100%;
  height: 0.02rem;
  background-color: #007cd6;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.system-wrapper .system-swiper .swiper-slide:hover:after,
.system-wrapper .system-swiper .swiper-slide.on:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.system-wrapper .system-swiper .swiper-slide:hover .icon .init,
.system-wrapper .system-swiper .swiper-slide.on .icon .init {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
}
.system-wrapper .system-swiper .swiper-slide:hover .icon .on,
.system-wrapper .system-swiper .swiper-slide.on .icon .on {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.system-wrapper .system-swiper .swiper-slide:hover .title,
.system-wrapper .system-swiper .swiper-slide.on .title {
  color: #007cd6;
}
.system-wrapper .system-swiper .title {
  text-align: center;
  color: rgba(23, 23, 29, 0.6);
  font-size: 0.18rem;
  line-height: 0.3rem;
  margin-top: 0.25rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.system-wrapper .detail-box {
  margin-top: 0.8rem;
}
.system-wrapper .detail-box .box-container {
  box-shadow: 0px 0.05rem 0.35rem 0px rgba(14, 41, 86, 0.08);
}
.system-wrapper .detail-box .swiper-slide {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.system-wrapper .detail-box .swiper-slide-active .pic,
.system-wrapper .detail-box .swiper-slide-active .info {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.system-wrapper .detail-box .pic,
.system-wrapper .detail-box .info {
  width: 50%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.system-wrapper .detail-box .pic {
  transform: translateX(-1rem);
  -webkit-transform: translateX(-1rem);
  -moz-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
}
.system-wrapper .detail-box .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.system-wrapper .detail-box .info {
  transform: translateX(1rem);
  -webkit-transform: translateX(1rem);
  -moz-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  -o-transform: translateX(1rem);
  padding: 0.88rem 1.2rem;
}
.system-wrapper .detail-box .name {
  font-size: 0.36rem;
  color: #222;
  font-weight: 700;
  line-height: 0.48rem;
}
.system-wrapper .detail-box .name:after {
  content: "";
  display: block;
  width: 0.35rem;
  height: 0.02rem;
  margin-top: 0.25rem;
  background-color: #e4e4e4;
}
.system-wrapper .detail-box .desc {
  font-size: 16px;
  color: #666;
  line-height: 0.3rem;
  margin-top: 0.42rem;
}
.system-wrapper .box-5 {
  background-color: #f7f7f7;
}
.system-wrapper .box-5 .content table {
  width: 100%;
}
.system-wrapper .box-5 .content th,
.system-wrapper .box-5 .content td {
  height: 0.6rem;
  padding-left: 0.8rem;
  padding-right: 0.6rem;
}
.system-wrapper .box-5 .content th {
  color: #fff;
  font-size: 0.18rem;
  background-color: #007cd6;
}
.system-wrapper .box-5 .content td {
  color: #666;
  font-size: 0.16rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}
.system-wrapper .box-5 .content tr:first-child th:first-child,
.system-wrapper .box-5 .content tr:first-child td:first-child {
  padding-left: 0.4rem;
}
.system-wrapper .box-5 .content tr:nth-child(even) td {
  background-color: #f8f8f8;
}
.cloud-wrapper .box-1 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.cloud-wrapper .box-1 .list li {
  position: relative;
  width: 32.3%;
  margin-right: 1.55%;
  margin-top: 1.55%;
  background-color: #fff;
  border: solid 1px #e4e4e4;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  padding: 0.28rem 0.5rem 0.28rem 0.4rem;
}
.cloud-wrapper .box-1 .list li:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.cloud-wrapper .box-1 .list li:hover:before,
.cloud-wrapper .box-1 .list li:hover:after {
  width: 100%;
  height: 100%;
}
.cloud-wrapper .box-1 .list li:hover .border {
  width: 100%;
}
.cloud-wrapper .box-1 .list li:hover .border:before,
.cloud-wrapper .box-1 .list li:hover .border:after {
  height: 100%;
}
.cloud-wrapper .box-1 .list li:before,
.cloud-wrapper .box-1 .list li:after {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  box-sizing: border-box;
  position: absolute;
  z-index: 0;
  left: 0;
  border-left: 1px solid #007cd6;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.cloud-wrapper .box-1 .list li:before {
  top: 0;
  border-top: 1px solid #007cd6;
}
.cloud-wrapper .box-1 .list li:after {
  bottom: 0;
  border-bottom: 1px solid #007cd6;
}
.cloud-wrapper .box-1 .key {
  width: 0.55rem;
  height: 0.55rem;
  line-height: 0.55rem;
  border-radius: 50%;
  color: #fff;
  font-size: 0.24rem;
  font-family: "mr";
  text-align: center;
  background-color: #007cd6;
  margin-right: 0.2rem;
  margin-top: 8px;
}
.cloud-wrapper .box-1 .brief {
  font-size: 0.18rem;
  line-height: 0.34rem;
  flex: 1;
  overflow: hidden;
  text-align: justify;
  min-height: 1.02rem;
}
.cloud-wrapper .box-1 .border {
  position: absolute;
  width: 0.1rem;
  right: 0;
  height: 100%;
  top: 0;
  z-index: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.cloud-wrapper .box-1 .border:before,
.cloud-wrapper .box-1 .border:after {
  content: "";
  width: 100%;
  height: 0.1rem;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  right: 0;
  border-right: 1px solid #007cd6;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}
.cloud-wrapper .box-1 .border:before {
  top: 0;
  border-top: 1px solid #007cd6;
}
.cloud-wrapper .box-1 .border:after {
  bottom: 0;
  border-bottom: 1px solid #007cd6;
}
.cloud-wrapper .box-2 {
  background-color: #f8f8f8;
}
.cloud-wrapper .box-2 .content {
  width: 12rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.34rem;
}
.cloud-wrapper .box-2 .list {
  margin-top: 0.7rem;
  padding: 0 0.95rem;
}
.cloud-wrapper .box-2 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cloud-wrapper .box-2 .list li {
  width: 22%;
  text-align: center;
}
.cloud-wrapper .box-2 .list li:hover .icon {
  transform: translateY(-0.2rem);
  -webkit-transform: translateY(-0.2rem);
  -moz-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  -o-transform: translateY(-0.2rem);
}
.cloud-wrapper .box-2 .icon {
  width: 1.18rem;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 4px 4px 35px 0px rgba(0, 36, 63, 0.08);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.cloud-wrapper .box-2 .title {
  font-size: 0.24rem;
  color: #131313;
  line-height: 0.36rem;
  font-weight: 700;
  margin: 0.33rem auto 0.08rem;
}
.cloud-wrapper .box-2 .desc {
  text-align: center;
}
.cloud-wrapper .desc {
  font-size: 16px;
  color: #666;
  line-height: 24px;
}
.cloud-wrapper .box-3 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.cloud-wrapper .box-3 .info {
  width: 43.62%;
}
.cloud-wrapper .box-3 .pic {
  width: 50%;
}
.cloud-wrapper .box-3 .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.cloud-wrapper .box-3 .desc {
  line-height: 0.32rem;
}
.cloud-wrapper .box-4 {
  background: url(../images/cloud4bg.jpg) no-repeat center center;
  background-size: cover;
}
.cloud-wrapper .box-5 {
  background-color: #f8f8f8;
}
.cloud-wrapper .box-5 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.cloud-wrapper .box-5 .list li {
  position: relative;
  width: 23.63%;
  background-color: #fff;
  box-shadow: 4px 4px 0.3rem 0px rgba(0, 0, 0, 0.08);
  border-radius: 0.1rem;
  margin-right: 1.826%;
  margin-top: 1.826%;
  padding: 0.48rem 0.42rem;
}
.cloud-wrapper .box-5 .list li:hover .desc {
  overflow-y: auto;
}
.cloud-wrapper .box-5 .list li:hover .icon {
  transform: rotateY(180deg);
}
.cloud-wrapper .box-5 .info {
  position: relative;
}
.cloud-wrapper .box-5 .icon {
  display: block;
  width: 0.58rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.cloud-wrapper .box-5 .key {
  font-size: 0.9rem;
  font-family: "mb";
  opacity: 0.07;
  color: #007cd6;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  line-height: 0.7rem;
}
.cloud-wrapper .box-5 .name {
  font-size: 0.26rem;
  color: #141414;
  line-height: 0.36rem;
  font-weight: 700;
  margin: 0.32rem auto 0.11rem;
}
.cloud-wrapper .box-5 .desc {
  font-size: 14px;
  line-height: 27px;
  padding-right: 0.16rem;
  height: 135px;
  overflow: hidden;
}
.cloud-wrapper .box-5 .desc::-webkit-scrollbar {
  width: 2px;
  background-color: #ebebeb;
}
.cloud-wrapper .box-5 .desc::-webkit-scrollbar-thumb {
  background-color: #007cd6;
}
.cloud-wrapper .box-7 {
  background-color: #f8f8f8;
}
.cloud-wrapper .box-7 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.cloud-wrapper .box-7 .list li {
  position: relative;
  width: 30.46875%;
  background-color: #fff;
  margin-right: 4.296875%;
  margin-top: 4.296875%;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}
.cloud-wrapper .box-7 .list li:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.cloud-wrapper .box-7 .list li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.cloud-wrapper .box-7 .list li:after {
  content: "";
  width: 100%;
  height: 0.03rem;
  background-color: #007cd6;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.cloud-wrapper .box-7 .info {
  padding: 0.34rem 0.52rem 0.34rem 0.4rem;
}
.cloud-wrapper .box-7 .name {
  font-size: 0.2rem;
  color: #222;
  line-height: 0.3rem;
  font-weight: 700;
}
.cloud-wrapper .box-7 .desc {
  font-size: 15px;
  line-height: 26px;
  color: rgba(51, 51, 51, 0.75);
  margin-top: 0.1rem;
}
.cloud-wrapper .box-6 .echart {
  height: 6.7rem;
  padding: 0.4rem 0.5rem 0.5rem 0.32rem;
  border: 1px solid #eee;
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.98rem;
}
.pageNum a {
  display: inline-block;
  color: #4d4d4d;
  font-size: 14px;
  font-family: "hr";
  vertical-align: middle;
  margin: 0 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.48rem;
  background-color: #fff;
  border: solid 1px #eee;
  text-align: center;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}
.pageNum a:first-child {
  margin-left: 0;
}
.pageNum a:last-child {
  margin-right: 0;
}
.pageNum .dot {
  line-height: 0.38rem;
}
.pageNum .btn {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
}
.pageNum .prev {
  background-image: url(../images/icon-left2.png);
}
.pageNum .prev:hover {
  background-image: url(../images/icon-left.png);
}
.pageNum .next {
  background-image: url(../images/icon-right2.png);
}
.pageNum .next:hover {
  background-image: url(../images/icon-right.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #007cd6;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #007cd6;
  color: #fff;
  font-size: 12px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
@keyframes navInUp50 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes iconScale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    opacity: 0;
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
  0%,
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
    transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
