.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;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hidden-xs {
  display: block;
}
.hidden-pc {
  display: none;
}
.box-container {
  width: 1200px;
  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: "mb";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
}
:root {
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs28: 28px;
  --fs30: 30px;
  --fs36: 36px;
  --fs40: 40px;
  --fs48: 48px;
  --fs60: 0.6rem;
  --fs72: 0.72rem;
}
.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;
}
.link {
  font-size: 0;
}
.link a {
  position: relative;
  font-size: 12px;
  padding-right: 16px;
  margin-right: 14px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  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;
}
.link a:hover {
  color: #3c5eaa;
}
.link a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 1;
  width: 1px;
  height: 13px;
  background: #fff;
}
.link a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.link a:last-child:after {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content,
.content div,
.content li {
  font-size: var(--fs16);
}
.content {
  line-height: 0.3rem;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.swiper-box {
  position: relative;
}
.header-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  background-color: #fff;
}
.header-wrapper .box-container {
  height: 1rem;
  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;
}
.header-wrapper .logo-box {
  width: 24.6%;
}
.header-wrapper .logo-box a {
  display: block;
  width: 100%;
}
.header-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.header-wrapper .search {
  cursor: pointer;
  width: 22px;
  height: 22px;
  background-image: url(../img/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.search-form {
  width: 4rem;
  position: fixed;
  right: 0.87rem;
  top: 1rem;
  background: #fff;
  z-index: 40;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0px 0px 5px 5px;
  padding: 0 0.3rem;
  display: none;
  /* input placeholder  */
}
.search-form img {
  width: 0.2rem;
}
.search-form .box {
  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: 100%;
  margin: 0 auto;
  align-items: center;
}
.search-form .keywords {
  flex: 1;
  overflow: hidden;
  line-height: 0.6rem;
  margin-left: 0.14rem;
  color: #000;
  font-size: var(--fs14);
}
.search-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: var(--fs14);
}
.search-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: var(--fs14);
}
.search-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: var(--fs14);
}
.search-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: var(--fs14);
}
.search-form .close {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  color: #999;
  margin-top: -0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/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: #272d82;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.p_h {
  height: 1rem;
}
.pc-nav-box {
  flex: 1;
  margin: 0 1.06rem 0 1rem;
}
.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 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  list-style: none;
}
.pc-nav-box li {
  position: relative;
}
.pc-nav-box li:last-child {
  margin-right: 0;
}
.pc-nav-box li:hover > a,
.pc-nav-box li.on > a {
  color: #272d82;
}
.pc-nav-box li:hover > a:after,
.pc-nav-box li.on > a:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.pc-nav-box li:hover .first {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
.pc-nav-box li:hover .nav {
  display: block;
  opacity: 1;
  visibility: visible;
}
.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: var(--fs16);
  line-height: 1rem;
  position: relative;
  font-weight: 700;
}
.pc-nav-box li > a:after {
  content: "";
  width: 100%;
  height: 0.03rem;
  background-color: #272d82;
  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.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.pc-nav-box a {
  display: block;
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
}
.pc-nav-box .list {
  width: 28.64%;
  height: calc(100vh - 1.44rem);
  overflow-y: auto;
  padding-left: calc((100% - 1200px) / 2);
}
.pc-nav-box .list::-webkit-scrollbar {
  width: 3px;
  background-color: #f7f8f9;
}
.pc-nav-box .list::-webkit-scrollbar-thumb {
  background-color: #272d82;
}
.pc-nav-box .hidebox {
  width: 100%;
  position: fixed;
  left: 0;
  top: 1rem;
  background-color: #fff;
  padding-top: 0.12rem;
  padding-bottom: 0.32rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: -10;
  transition: opacity 0.4s ease;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  display: none;
}
.pc-nav-box .nav {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  text-align: center;
  width: 154px;
  margin-left: -77px;
  padding: 0.2rem 0;
  opacity: 0;
  visibility: hidden;
}
.pc-nav-box .nav:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 0;
  transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  border-radius: 0px 0px 5px 5px;
  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;
  color: #333;
  font-size: var(--fs16);
  line-height: 0.4rem;
  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;
  display: none;
  opacity: 0;
  visibility: hidden;
}
.pc-nav-box .nav a:hover {
  color: #272d82;
}
.pc-nav-box .first {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 2.76rem;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.pc-nav-box .first .item > a {
  padding-left: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  padding-right: 0.4rem;
  margin-bottom: 0.04rem;
}
.pc-nav-box .first .item > a:after {
  right: 0.2rem;
}
.pc-nav-box .first a {
  display: block;
}
.pc-nav-box .first .item {
  position: relative;
}
.pc-nav-box .first .item:hover .second {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.pc-nav-box .first,
.pc-nav-box .second {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.pc-nav-box .second a,
.pc-nav-box .item > a {
  position: relative;
}
.pc-nav-box .second a:last-child,
.pc-nav-box .item > a:last-child {
  margin-bottom: 0;
}
.pc-nav-box .second a:hover,
.pc-nav-box .item > a:hover {
  color: #272d82;
  font-weight: 700;
}
.pc-nav-box .second a:hover:after,
.pc-nav-box .item > a:hover:after {
  background: url(../img/i-right4.png) no-repeat center center;
  background-size: contain;
  transform: translateX(4px);
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
}
.pc-nav-box .second a:after,
.pc-nav-box .item > a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url(../img/i-right.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 10;
  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;
}
.pc-nav-box .second {
  width: 100%;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  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: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.pc-nav-box .second.over {
  max-height: 5rem;
  overflow-y: auto;
}
.pc-nav-box .second.over::-webkit-scrollbar {
  width: 5px;
  background-color: #ececec;
}
.pc-nav-box .second.over::-webkit-scrollbar-thumb {
  background-color: #272d82;
}
.pc-nav-box .second a {
  position: relative;
  color: #666;
  line-height: 0.24rem;
  margin-bottom: 0.06rem;
  padding: 0 0.3rem 0 0.4rem;
  font-size: var(--fs14);
}
.pc-nav-box .second a:hover:after {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.pc-nav-box .second a:after {
  right: auto;
  left: 0.2rem;
  top: 0.06rem;
}
.footer-wrapper {
  background-color: #f7f7f7;
}
.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 {
  padding: 0.56rem 0 0.52rem;
}
.footer-wrapper .box-2 {
  padding: 0.67rem 0 0.45rem;
  background-color: #091a39;
}
.footer-wrapper .copyright,
.footer-wrapper .copyright a {
  font-size: var(--fs14);
  color: rgba(255, 255, 255, 0.55);
}
.footer-wrapper .copyright {
  line-height: 24px;
  margin-top: 0.16rem;
  text-transform: uppercase;
}
.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 .title {
  font-size: var(--fs24);
  font-family: "mb";
  color: #272d82;
  text-transform: uppercase;
  line-height: 0.36rem;
}
.footer-wrapper .tel {
  font-size: var(--fs36);
  color: #3c5eaa;
  font-family: "mb";
  line-height: 0.48rem;
  margin: 0.15rem auto;
}
.footer-wrapper .tel img {
  vertical-align: middle;
  width: 0.3rem;
  margin-right: 0.12rem;
}
.footer-wrapper .desc {
  font-size: var(--fs14);
  color: #767676;
  line-height: 24px;
}
.footer-wrapper .qrcode {
  margin-top: 0.23rem;
}
.footer-wrapper .qrcode 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 */
  align-items: center;
  list-style: none;
}
.footer-wrapper .qrcode li {
  width: 1.1rem;
  margin-right: 0.2rem;
}
.footer-wrapper .qrcode li img {
  display: block;
  width: 100%;
  box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.19);
}
.footer-wrapper .qrcode p {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
  color: #666;
}
.footer-wrapper .other {
  width: 42%;
}
.footer-wrapper .author {
  display: none;
  font-size: 12px;
  color: #fff;
  font-family: "regular";
  flex: 1;
  overflow: hidden;
  text-align: right;
  padding-top: 0.23rem;
}
.footer-wrapper .author a:hover {
  color: #3c5eaa;
}
.friendlink {
  width: 260px;
  position: relative;
}
.friendlink .caption {
  font-size: 12px;
  color: #fff;
  line-height: 0.48rem;
  padding: 0 0.4rem 0 0.2rem;
  cursor: pointer;
  background: url(../img/up.png) no-repeat center right 0.16rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.friendlink .list {
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: 10;
  width: 100%;
  overflow-y: auto;
  max-height: 2.88rem;
  background-color: #091a39;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  display: none;
}
.friendlink .list::-webkit-scrollbar {
  width: 3px;
  background-color: #eee;
}
.friendlink .list::-webkit-scrollbar-thumb {
  background-color: #272d82;
}
.friendlink .list a {
  display: block;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.48rem;
  padding: 0 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  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;
}
.friendlink .list a:hover {
  color: #3c5eaa;
}
.friendlink .list a:last-child {
  border-bottom: none;
}
.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.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s 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.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  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;
  z-index: 10;
  width: 100%;
}
.index-banner-wrapper .info div {
  color: #fff;
}
.index-banner-wrapper .info-1 {
  top: 2.1rem;
}
.index-banner-wrapper .info-1 .name {
  font-size: var(--fs72);
  font-weight: 700;
  line-height: 0.9rem;
}
.index-banner-wrapper .info-1 .en {
  margin-top: 0.1rem;
}
.index-banner-wrapper .en {
  text-transform: uppercase;
  line-height: 0.6rem;
  font-size: var(--fs60);
  font-family: "thin";
}
.index-banner-wrapper .info-2 {
  top: 1.68rem;
}
.index-banner-wrapper .info-2 .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
}
.index-banner-wrapper .info-2 .en {
  margin-bottom: 0.1rem;
}
.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.74rem;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.18rem;
  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;
}
.swiper-btn {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  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;
}
.index-title-box {
  margin-bottom: 0.54rem;
}
.index-title-box.white h2,
.index-title-box.white p {
  color: #fff;
}
.index-title-box h2 {
  font-size: var(--fs30);
  font-weight: 700;
  line-height: 0.48rem;
}
.index-title-box p {
  font-size: var(--fs28);
  color: #d6d6d6;
  line-height: 0.36rem;
  font-family: "mb";
  text-transform: uppercase;
  margin: 0.04rem auto 0.22rem;
}
.index-title-box .line {
  width: 0.4rem;
  height: 0.05rem;
  background-color: #272d82;
  border-radius: 3px;
}
.index-more {
  position: relative;
  display: block;
  font-weight: 700;
  text-align: center;
  width: 2rem;
  height: 0.57rem;
  line-height: 0.53rem;
  font-size: var(--fs16);
  color: #272d82;
  border: solid 2px #272d82;
}
.index-more:hover,
.index-more.on {
  color: #fff;
  background: #3c5eaa;
  transition: all 1s 0.3s;
  -webkit-transition: all 1s 0.3s;
}
.index-more:hover i:nth-child(1),
.index-more.on i:nth-child(1),
.index-more:hover i:nth-child(3),
.index-more.on i:nth-child(3) {
  width: 2rem;
}
.index-more:hover i:last-child,
.index-more.on i:last-child,
.index-more:hover i:nth-child(2),
.index-more.on i:nth-child(2) {
  height: 0.57rem;
}
.index-more.white {
  color: #fff;
  border-color: #fff;
}
.index-more.white:hover {
  background: #272d82;
}
.index-more.white i {
  background-color: #272d82;
}
.index-more i {
  position: absolute;
  display: inline-block;
  background: #3c5eaa;
  z-index: 10;
}
.index-more i:nth-child(1),
.index-more i:nth-child(3) {
  width: 0;
  height: 2px;
}
.index-more i:last-child,
.index-more i:nth-child(2) {
  width: 2px;
  height: 0;
}
.index-more i:nth-child(1) {
  left: -2px;
  top: -2px;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
}
.index-more i:nth-child(2) {
  right: -2px;
  top: -2px;
  transition: all 0.1s 0.1s linear;
  -webkit-transition: all 0.1s 0.1s linear;
  -moz-transition: all 0.1s 0.1s linear;
  -o-transition: all 0.1s 0.1s linear;
}
.index-more i:nth-child(3) {
  right: -2px;
  bottom: -2px;
  transition: all 0.1s 0.2s linear;
  -webkit-transition: all 0.1s 0.2s linear;
  -moz-transition: all 0.1s 0.2s linear;
  -o-transition: all 0.1s 0.2s linear;
}
.index-more i:last-child {
  left: -2px;
  bottom: -2px;
  transition: all 0.1s 0.3s linear;
  -webkit-transition: all 0.1s 0.3s linear;
  -moz-transition: all 0.1s 0.3s linear;
  -o-transition: all 0.1s 0.3s linear;
}
.index-box-1 {
  padding: 1.5rem 0;
  background-color: #f5f5f5;
}
.index-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;
}
.index-box-1 .info {
  width: 43.3%;
}
.index-box-1 .pic {
  width: 50%;
}
.index-box-1 .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);
}
.index-box-1 .pic img {
  height: 100%;
  object-fit: cover;
}
.index-box-1 h1 {
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.index-box-1 .desc {
  font-size: var(--fs16);
  color: #666;
  margin: 0.27rem auto 0.55rem;
  line-height: 0.3rem;
}
.index-box-2 {
  background: url(../img/index2bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.index-box-2 .top {
  display: none;
}
.index-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;
  list-style: none;
}
.index-box-2 li {
  position: relative;
  width: 25%;
  height: 3rem;
  padding: 0.5rem 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}
.index-box-2 li:nth-child(-n+4) {
  border-top: none;
}
.index-box-2 li:nth-child(4n) {
  border-right: none;
}
.index-box-2 li:hover .icon {
  transform: rotateY(180deg);
}
.index-box-2 li:not(:first-child):hover:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.index-box-2 li:not(:first-child):before {
  content: "";
  background-image: linear-gradient(90deg, #2be7f3 0%, #272d82 100%), linear-gradient(#cfcfcf, #cfcfcf);
  background-blend-mode: normal, 
				normal;
  width: 100%;
  height: 70%;
  opacity: 0;
  visibility: hidden;
  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;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.index-box-2 .info {
  position: relative;
  height: 100%;
}
.index-box-2 .icon {
  display: block;
  height: 0.4rem;
  object-fit: 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;
}
.index-box-2 .title {
  font-size: var(--fs22);
  color: #fff;
  line-height: 0.36rem;
  margin: 0.2rem auto 0.02rem;
}
.index-box-2 .en {
  color: #fff;
  font-size: var(--fs16);
  font-family: "regular";
  line-height: 0.22rem;
}
.index-box-2 .more {
  color: #fff;
  line-height: 20px;
  text-decoration: underline;
}
.index-box-2 .index-more,
.index-box-2 .more {
  position: absolute;
  bottom: 0.53rem;
  left: 0;
  z-index: 10;
}
.top {
  position: relative;
}
.top .index-more {
  position: absolute;
  right: 0;
  top: 0.38rem;
  z-index: 10;
}
.index-box-3 {
  padding: 0.8rem 0;
  background: url(../img/index3bg.jpg) no-repeat bottom center;
  background-size: 100%;
}
.index-box-3 .news {
  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;
}
.index-box-3 .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  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;
}
.index-box-3 .left {
  width: 46.22%;
  background-color: #fff;
}
.index-box-3 .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-3 .left:hover .title {
  color: #272d82;
}
.index-box-3 .left .pic img {
  height: 4.62rem;
  object-fit: cover;
}
.index-box-3 .left .info {
  padding: 0.32rem 0.4rem 0.35rem;
}
.index-box-3 .left .title {
  font-size: var(--fs24);
  font-weight: 700;
  line-height: 0.36rem;
}
.index-box-3 .left .desc {
  margin: 0.08rem auto 0.25rem;
  font-size: var(--fs16);
}
.index-box-3 .left .more:before {
  width: 0.28rem;
  margin-right: 0.1rem;
}
.index-box-3 .right {
  width: 49.088%;
}
.index-box-3 .right ul {
  list-style: none;
}
.index-box-3 .right li {
  padding: 0.44rem 0;
  border-bottom: 1px solid #ddd;
}
.index-box-3 .right li:first-child {
  padding-top: 0;
}
.index-box-3 .right li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.index-box-3 .right li:hover .pic:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 110%, 0);
}
.index-box-3 .right li:hover .title {
  font-weight: 700;
  color: #272d82;
}
.index-box-3 .right li:hover .more:before {
  width: 0.28rem;
  margin-right: 0.1rem;
}
.index-box-3 .right 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;
}
.index-box-3 .right .pic {
  position: relative;
  width: 32.54%;
}
.index-box-3 .right .pic img {
  height: 1.6rem;
  object-fit: cover;
}
.index-box-3 .right .pic:before {
  top: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  content: '';
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
}
.index-box-3 .right .info {
  width: 62.76%;
}
.index-box-3 .right .title {
  font-size: var(--fs20);
  line-height: 0.34rem;
}
.index-box-3 .right .desc {
  margin: 0.1rem auto 0.22rem;
}
.index-box-3 .desc {
  color: #666;
  line-height: 0.3rem;
  height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-box-3 .more {
  font-size: var(--fs16);
  color: #666;
  font-family: "regular";
  line-height: 0.24rem;
  text-transform: uppercase;
}
.index-box-3 .more:before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0.02rem;
  background-color: #272d82;
  vertical-align: middle;
  position: relative;
  top: -2px;
  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;
}
.padding {
  padding: 0.8rem 0;
}
.index-box-4 .main {
  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;
}
.index-box-4 .pic {
  width: 48.96%;
}
.index-box-4 .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);
}
.index-box-4 .pic img {
  height: 100%;
  object-fit: cover;
}
.index-box-4 .info {
  width: 49.023%;
  background-color: #f9f9f9;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.index-box-4 .time {
  font-size: var(--fs24);
  font-family: Arial;
  line-height: 0.3rem;
}
.index-box-4 .first-box {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ddd;
}
.index-box-4 .first-box:hover .title {
  color: #272d82;
}
.index-box-4 .title {
  font-size: var(--fs20);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.36rem;
  height: 0.36rem;
  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;
}
.index-box-4 .desc {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.1rem auto;
}
.index-box-4 .first-box,
.index-box-4 .list {
  padding-left: 0.42rem;
  padding-right: 0.3rem;
}
.index-box-4 .list {
  margin-top: 0.2rem;
}
.index-box-4 .list a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.36rem;
  font-size: var(--fs16);
  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;
}
.index-box-4 .list a:hover {
  color: #272d82;
  font-weight: 700;
}
.index-box-5 {
  position: relative;
  background-image: url(../img/index5bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.index-box-5 .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;
  position: relative;
  z-index: 2;
}
.index-box-5 .index-title-box {
  margin-bottom: 0.2rem;
}
.index-box-5 .info {
  width: 32.55%;
}
.index-box-5 .title {
  font-size: var(--fs36);
  font-weight: 700;
  line-height: 0.48rem;
  margin-bottom: 0.56rem;
}
.index-box-5 .list {
  width: 63.15%;
}
.index-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;
}
.index-box-5 .list li {
  width: 18.762%;
  margin-right: 1.5475%;
  margin-top: 1.5475%;
  box-shadow: 4px 6px 38px 0px rgba(135, 135, 135, 0.13);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.index-box-5 .list li: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);
}
.index-box-5 .list li img {
  display: block;
  height: 94px;
  object-fit: 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;
}
.index-box-5 canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
.page-banner-wrapper {
  position: relative;
}
.page-banner-wrapper > img {
  display: block;
  width: 100%;
}
.page-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;
}
.page-banner-wrapper h1,
.page-banner-wrapper .en {
  font-size: var(--fs36);
  color: #fff;
}
.page-banner-wrapper h1 {
  line-height: 0.48rem;
}
.page-banner-wrapper .en {
  line-height: 0.36rem;
  font-family: "thin";
  text-transform: uppercase;
  margin: 0.25rem auto 0.9rem;
}
.page-banner-wrapper .line {
  width: 0.6rem;
  height: 0.05rem;
  background-color: #fff;
}
.page-box {
  padding: 0.5rem 0 0.8rem;
}
.about-wrapper {
  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 .pic {
  width: 40.83%;
}
.about-wrapper .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);
}
.about-wrapper .pic img {
  height: 100%;
  object-fit: cover;
}
.about-wrapper .info {
  width: 50%;
  padding-left: calc((100% - 1200px) / 2);
}
.about-wrapper .title {
  font-size: var(--fs24);
  line-height: 0.48rem;
  margin-bottom: 0.4rem;
  color: #d6d6d6;
}
.about-wrapper .index-title-box {
  margin-bottom: 0.2rem;
}
.history-wrapper .swiper-box {
  position: relative;
}
.history-wrapper .swiper-box:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #eee;
  position: absolute;
  left: 0.2rem;
  top: 0;
  z-index: -1;
}
.history-wrapper .swiper-wrapper {
  flex-flow: wrap;
}
.history-wrapper .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 */
  padding-left: 0.8rem;
  height: auto;
  margin-bottom: 0.3rem;
}
.history-wrapper .swiper-slide:hover:before {
  background-color: #272d82;
  border-color: #272d82;
}
.history-wrapper .swiper-slide:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: solid 1px #bfbfbf;
  box-sizing: border-box;
  left: 0.16rem;
  top: 0.1rem;
  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;
}
.history-wrapper .year {
  width: 1.06rem;
  height: 30px;
  line-height: 30px;
  font-size: var(--fs16);
  color: #fff;
  text-align: center;
  background-image: url(../img/title.png);
  background-position: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  margin-right: 0.5rem;
}
.history-wrapper .desc {
  font-size: var(--fs16);
  line-height: 0.3rem;
  flex: 1;
  overflow: hidden;
}
.history-wrapper .pic {
  width: 40.1%;
}
.history-wrapper .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);
}
.history-wrapper .swiper-btn {
  width: 40px;
  height: 40px;
  transform: none;
  display: none;
}
.culture-wrapper {
  background: url(../img/culturebg.jpg) no-repeat bottom center;
  background-size: 100%;
}
.culture-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;
}
.culture-wrapper .left {
  width: 60.42%;
}
.culture-wrapper .left .info {
  margin-top: 0.75rem;
}
.culture-wrapper .pic {
  background: url(../img/culture.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 0.4rem 0.4rem 0.6rem;
}
.culture-wrapper .pic .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #272d82;
  font-weight: 700;
}
.culture-wrapper .brief {
  font-size: var(--fs30);
  letter-spacing: 0.02rem;
  color: #fff;
  line-height: 0.36rem;
  font-family: "light";
  margin: 0.3rem auto 0.08rem;
}
.culture-wrapper .en {
  color: #fff;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "light";
}
.culture-wrapper .caption {
  font-size: var(--fs24);
  line-height: 30px;
  letter-spacing: 0.05rem;
  color: #000;
  margin-bottom: 0.36rem;
}
.culture-wrapper .caption:after {
  display: block;
  content: "";
  width: 0.24rem;
  height: 0.02rem;
  margin-top: 0.18rem;
  background-color: #1b5fad;
}
.culture-wrapper .content,
.culture-wrapper .content div {
  color: #656565;
}
.culture-wrapper .content img {
  margin: 0;
}
.culture-wrapper .right {
  position: relative;
  width: 33.52%;
  height: 100%;
  margin-bottom: 0.48rem;
}
.culture-wrapper .right.animated:before {
  height: 65.97%;
}
.culture-wrapper .right:before {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  transition: height 2s ease;
  -webkit-transition: height 2s ease;
  -moz-transition: height 2s ease;
  -ms-transition: height 2s ease;
  -o-transition: height 2s ease;
  right: -0.76rem;
  width: 1.04rem;
  top: 17.105%;
  z-index: 1;
  background: url(../img/dot.png) repeat;
  transition-delay: 1s;
}
.culture-wrapper .right img {
  display: block;
  position: relative;
  z-index: 10;
}
.culture-wrapper .right .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 0.66rem 0.6rem 0;
  width: 100%;
}
.culture-wrapper .right .name {
  font-size: 0.6rem;
  line-height: 0.7rem;
  color: #fff;
  font-family: "mb";
  letter-spacing: -2px;
}
.culture-wrapper .right .desc {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.36rem;
  margin-top: 0.32rem;
  font-family: "Microsoft JhengHei";
}
.culture-wrapper .right .desc em {
  display: inline-block;
  margin-right: 0.2rem;
}
.culture-wrapper .right .desc em:last-child {
  margin-right: 0;
}
.culture-wrapper .right .en {
  font-family: "mb";
  font-size: 2.4rem;
  line-height: 2rem;
  letter-spacing: 0.48rem;
  color: rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  position: absolute;
  right: -1.46rem;
  bottom: -1rem;
  z-index: -1;
}
.honor-wrapper .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;
  list-style: none;
}
.honor-wrapper .list li {
  width: 23.18%;
  margin-right: 2.426%;
  margin-top: 2.426%;
  background-color: #fff;
  border: solid 1px #f3f3f3;
  padding: 0.28rem 0.2rem 0.2rem;
  cursor: pointer;
  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 .list li:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.honor-wrapper .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);
}
.honor-wrapper .list li:hover .name {
  font-weight: 700;
}
.honor-wrapper .pic img {
  height: 277px;
  object-fit: contain;
}
.honor-wrapper .info {
  width: 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 */
  height: 0.6rem;
  line-height: 0.3rem;
  align-items: center;
  margin-top: 0.2rem;
}
.honor-wrapper .name {
  font-size: var(--fs16);
  color: #666;
  text-align: center;
  padding: 0 0.1rem;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.pic-modal-box {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}
.pic-modal-box .box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  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;
}
.pic-modal-box .main {
  width: 11.2rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.5rem 0.8rem 0.8rem;
}
.pic-modal-box .main img {
  height: 50vh;
  object-fit: contain;
}
.pic-modal-box .top {
  position: relative;
  margin-bottom: 0.7rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #eeeeee;
}
.pic-modal-box .name {
  font-size: var(--fs30);
  color: #333;
  font-weight: 700;
  line-height: 0.48rem;
  padding: 0 1.2rem;
  text-align: center;
}
.pic-modal-box .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  width: 22px;
  height: 22px;
  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;
  background-image: url(../img/close.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.pic-modal-box .close:hover {
  transform: rotate(-90deg);
}
.pic-modal-box .pic-box {
  font-size: 0;
  overflow: hidden;
  width: 6.4rem;
  margin: 0 auto;
}
.pic-modal-box .pic-box img {
  width: 100%;
}
.brand-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;
  list-style: none;
}
.brand-wrapper li {
  width: 16.66%;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.brand-wrapper li:hover .line_t,
.brand-wrapper li:hover .line_b {
  width: 100%;
}
.brand-wrapper li:hover .line_r,
.brand-wrapper li:hover .line_l {
  height: 100%;
}
.brand-wrapper li: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);
}
.brand-wrapper li span {
  position: absolute;
  background: #272d82;
  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);
}
.brand-wrapper li img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: contain;
  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;
}
.brand-wrapper .line_t {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.brand-wrapper .line_r {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
}
.brand-wrapper .line_b {
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
}
.brand-wrapper .line_l {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
}
.learn {
  display: inline-block;
  line-height: 0.5rem;
  color: #666;
  font-size: var(--fs16);
  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;
  font-family: Arial;
}
.learn:hover {
  color: #fff;
  padding-left: 0.32rem;
  padding-right: 0.32rem;
  background-color: #272d82;
}
.learn:hover i {
  background-image: url(../img/learn2.png);
}
.learn i {
  display: inline-block;
  width: 0.4rem;
  height: 0.1rem;
  background-image: url(../img/learn.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 0.14rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.news-wrapper li {
  background-color: #fff;
  border: solid 1px #e9e9e9;
  padding: 0.3rem;
  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;
  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;
  margin-bottom: 0.3rem;
}
.news-wrapper li:last-child {
  margin-bottom: 0;
}
.news-wrapper li:hover {
  border-color: #fff;
  box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
}
.news-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);
}
.news-wrapper li:hover .learn {
  padding-left: 0.32rem;
  padding-right: 0.32rem;
  color: #fff;
  background-color: #272d82;
}
.news-wrapper li:hover .learn i {
  background-image: url(../img/learn2.png);
}
.news-wrapper .pic {
  display: block;
  width: 25%;
}
.news-wrapper .info {
  position: relative;
  width: 70%;
  padding-right: 2rem;
}
.news-wrapper .title {
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-wrapper .desc {
  color: #999;
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0.1rem auto 0.2rem;
}
.news-wrapper .time {
  display: none;
  font-size: 0.24rem;
  color: #999;
  line-height: 0.32rem;
  margin-top: 0.1rem;
}
.news-wrapper .date {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
  background-color: #efefef;
  padding-top: 0.3rem;
}
.news-wrapper .date p {
  font-size: var(--fs14);
  color: #999;
  line-height: 0.24rem;
}
.news-wrapper .day {
  font-size: 0.36rem;
  font-family: Arial;
  color: #999;
  font-weight: 700;
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
}
.newsinfo-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;
}
.newsinfo-wrapper .main {
  width: 67.7%;
  padding-bottom: 0.4rem;
}
.newsinfo-wrapper .top {
  margin-bottom: 0.36rem;
}
.newsinfo-wrapper .top h2 {
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: 700;
  color: #231e37;
  margin-bottom: 0.3rem;
}
.newsinfo-wrapper .top .bottom {
  font-size: 0;
}
.newsinfo-wrapper .top .bottom span {
  font-size: var(--fs14);
  color: #999;
  margin-right: 0.2rem;
  font-family: "light";
  line-height: 0.24rem;
}
.newsinfo-wrapper .top .bottom span:last-child {
  margin-right: 0;
}
.newsinfo-wrapper .top .bottom img {
  display: inline-block;
  height: 0.16rem;
  object-fit: contain;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 0.1rem;
}
.newsinfo-wrapper .content {
  color: #666;
}
.newsinfo-wrapper .caption-box {
  margin-bottom: 0.4rem;
}
.newsinfo-wrapper .caption-box p {
  font-size: var(--fs16);
  color: #353744;
  opacity: 0.3;
  line-height: 0.24rem;
  font-family: Arial;
  margin: 0.12rem auto 0.42rem;
}
.newsinfo-wrapper .caption-box .line {
  width: 0.24rem;
  height: 0.04rem;
  background-color: #353744;
}
.newsinfo-wrapper .caption {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 700;
  color: #353744;
}
.newsinfo-wrapper .other {
  width: 26.042%;
}
.newsinfo-wrapper .other .bottom {
  padding-top: 0.3rem;
  padding-bottom: 0.4rem;
  margin-top: 0.2rem;
}
.newsinfo-wrapper .other .bottom p,
.newsinfo-wrapper .other .bottom p a {
  font-size: var(--fs16);
}
.newsinfo-wrapper .other .bottom 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 */
  color: #999;
  line-height: 0.36rem;
  margin-bottom: 0.08rem;
  height: 0.36rem;
}
.newsinfo-wrapper .other .bottom p:last-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .other .bottom p:hover a {
  color: #272d82;
}
.newsinfo-wrapper .other .bottom p a {
  max-width: 72%;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  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;
}
.newsinfo-wrapper .other .bottom p span P {
  flex: 1;
}
.newsinfo-wrapper .recommend,
.newsinfo-wrapper .other .bottom {
  background-color: #fafafa;
  padding-left: 0.36rem;
  padding-right: 0.36rem;
}
.newsinfo-wrapper .recommend {
  padding-top: 0.47rem;
  padding-bottom: 0.32rem;
}
.newsinfo-wrapper .recommend ul {
  list-style: none;
}
.newsinfo-wrapper .recommend li {
  padding-bottom: 0.28rem;
  margin-bottom: 0.28rem;
  border-bottom: 1px solid #ededed;
}
.newsinfo-wrapper .recommend li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.newsinfo-wrapper .recommend 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);
}
.newsinfo-wrapper .recommend li:hover .title {
  color: #272d82;
  font-weight: 700;
}
.newsinfo-wrapper .recommend li:hover .more {
  background-image: url(../img/more2.png);
}
.newsinfo-wrapper .recommend .title {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.18rem auto 0.13rem;
}
.newsinfo-wrapper .recommend .more {
  width: 0.47rem;
  height: 0.33rem;
  border-radius: 16px;
  background-image: url(../img/more.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  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;
}
.newsinfo-wrapper .share {
  margin: 0.4rem auto 0.5rem;
  font-size: 0;
}
.newsinfo-wrapper .share a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: top;
  margin-right: 0.15rem;
  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;
}
.newsinfo-wrapper .share a:last-child {
  margin-right: 0;
}
.newsinfo-wrapper .wechat {
  background-image: url(../img/ni-wechat.png);
}
.newsinfo-wrapper .wechat:hover {
  background-image: url(../img/ni-wechat2.png);
}
.newsinfo-wrapper .weibo {
  background-image: url(../img/ni-weibo.png);
}
.newsinfo-wrapper .weibo:hover {
  background-image: url(../img/ni-weibo2.png);
}
.newsinfo-wrapper .qq {
  background-image: url(../img/ni-qq.png);
}
.newsinfo-wrapper .qq:hover {
  background-image: url(../img/ni-qq2.png);
}
.newsinfo-wrapper .return {
  display: block;
  line-height: 0.5rem;
  background-color: #272d82;
  text-align: center;
  color: #fff;
  font-size: var(--fs16);
  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;
}
.newsinfo-wrapper .return:hover {
  background-color: #3c5eaa;
}
.newsinfo-wrapper .return img {
  margin-left: 0.1rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.contact-wrapper {
  /* input placeholder  */
}
.contact-wrapper > div {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.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 .map {
  width: 50%;
  position: relative;
  overflow: hidden;
  height: 5.9rem;
}
.contact-wrapper .map .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-wrapper .info {
  width: 45%;
}
.contact-wrapper .info .name {
  font-size: var(--fs30);
  font-weight: 700;
  line-height: 0.4rem;
  margin-bottom: 0.2rem;
}
.contact-wrapper .info ul {
  list-style: none;
}
.contact-wrapper .info li {
  margin-bottom: 0.16rem;
}
.contact-wrapper .info li:last-child {
  margin-bottom: 0;
}
.contact-wrapper .info li p {
  color: #999;
  line-height: 0.24rem;
  margin-bottom: 0.06rem;
}
.contact-wrapper .info .brief {
  font-size: var(--fs18);
  color: #48413e;
  font-family: Arial;
  line-height: 0.3rem;
}
.contact-wrapper .box-2 {
  position: relative;
  background-color: #fafafa;
}
.contact-wrapper .box-2 .box-container {
  position: relative;
  z-index: 10;
}
.contact-wrapper .box-2 .desc {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  margin-bottom: 0.45rem;
}
.contact-wrapper .box-2 .index-title-box .line {
  margin-top: 0.24rem;
}
.contact-wrapper .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 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.contact-wrapper .form i {
  font-size: var(--fs16);
  color: #f00;
  line-height: 0.6rem;
  position: absolute;
  left: 0.4rem;
  top: 0;
  z-index: 1;
}
.contact-wrapper .group {
  position: relative;
  width: 48.83%;
  margin-top: 0.4rem;
}
.contact-wrapper .group:nth-child(-n+2) {
  margin-top: 0;
}
.contact-wrapper .group.max {
  width: 100%;
}
.contact-wrapper .group.max i {
  line-height: 0.3rem;
  top: 0.2rem;
}
.contact-wrapper .text,
.contact-wrapper .msg {
  width: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: solid 1px #999;
  font-size: var(--fs16);
  color: #333;
  background-color: #fafafa;
  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-wrapper .text:focus,
.contact-wrapper .msg:focus {
  border-color: #272d82;
}
.contact-wrapper ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: var(--fs16);
}
.contact-wrapper :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: var(--fs16);
}
.contact-wrapper ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: var(--fs16);
}
.contact-wrapper :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: var(--fs16);
}
.contact-wrapper .text {
  height: 0.6rem;
  line-height: 0.6rem;
}
.contact-wrapper .msg {
  resize: none;
  line-height: 0.3rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  height: 2.77rem;
}
.contact-wrapper .submit {
  display: block;
  width: 2rem;
  line-height: 0.6rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs16);
  background-color: #272d82;
  border-radius: 5px;
  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;
  margin-top: 0.82rem;
}
.contact-wrapper .submit:hover {
  background-color: #3c5eaa;
}
.contact-wrapper canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.goods-nav-box {
  width: 3rem;
  background: #fbfbfb url(../img/goodsbg2.png) no-repeat center bottom;
  background-size: 100%;
  border-radius: 0 0 5px 5px;
  height: 100%;
  padding-bottom: 2.03rem;
}
.goods-nav-box .title-box {
  background: url(../img/goodsbg.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  padding: 0.2rem 0.3rem;
}
.goods-nav-box .title-box h3 {
  font-size: 0.32rem;
  color: #fff;
  font-weight: 700;
  line-height: 0.6rem;
}
.goods-nav-box .title-box p {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: "mb";
  line-height: 0.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-top: -0.2rem;
}
.goods-nav-box .caption {
  display: none;
}
.goods-nav-box a {
  display: block;
}
.goods-nav-box ul {
  list-style: none;
}
.goods-nav-box li > a {
  position: relative;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  line-height: 0.3rem;
  padding-left: 0.24rem;
  padding-right: 0.52rem;
  font-size: var(--fs16);
  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;
  border-bottom: 1px solid #ebebeb;
}
.goods-nav-box li > a span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.goods-nav-box li > a.on {
  font-weight: 700;
  color: #fff;
  background-color: #272d82;
  border-color: #272d82;
}
.goods-nav-box .cat.on:after {
  background-image: url(../img/down2.png);
  background-size: 11px;
}
.goods-nav-box .cat:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.37rem;
  top: 0;
  z-index: 10;
  height: 100%;
  width: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/i-right.png);
  background-size: 6px;
}
.goods-nav-box .child {
  display: none;
}
.goods-nav-box .child a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--fs14);
  color: #666;
  height: 0.48rem;
  line-height: 0.48rem;
  padding: 0 0.48rem;
}
.goods-nav-box .child a.on {
  color: #272d82;
  font-weight: 700;
  background-image: linear-gradient(90deg, #ffffff 0%, #e4e9f9 100%), linear-gradient(#4a53b7, #4a53b7);
  background-blend-mode: normal, 
					normal;
}
.goods-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;
}
.goods-wrapper .box-container.max .goods-nav-box {
  display: none;
}
.goods-wrapper .box-container.max .main {
  width: 100%;
}
.goods-wrapper .main {
  width: calc(100% - 3.8rem);
}
.goods-wrapper .cate-box {
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e4e4e4;
  padding: 0.3rem;
}
.goods-wrapper .cate-box .title {
  font-size: var(--fs20);
  line-height: 0.36rem;
}
.goods-wrapper .cate-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 */
  flex-flow: wrap;
  list-style: none;
}
.goods-wrapper .cate-box ul li {
  width: 20%;
  margin-top: 0.16rem;
  padding-right: 0.1rem;
}
.goods-wrapper .cate-box ul li:nth-child(5n) {
  padding-right: 0;
}
.goods-wrapper .cate-box ul li:hover a,
.goods-wrapper .cate-box ul li.on a {
  color: #272d82;
  font-weight: 700;
}
.goods-wrapper .cate-box a {
  line-height: 24px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  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;
}
.goods-wrapper .quick-box {
  margin: 0.4rem auto;
  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;
}
.goods-wrapper .quick-box .group:first-child {
  margin-right: 0.6rem;
}
.goods-wrapper .quick-box span {
  font-size: var(--fs16);
  color: #666;
  line-height: 36px;
  margin: 0 0.16rem;
}
.goods-wrapper .quick-box span:first-child {
  margin-left: 0;
}
.goods-wrapper .quick-box .text,
.goods-wrapper .quick-box .submit {
  height: 36px;
  border-radius: 5px;
}
.goods-wrapper .quick-box .text {
  width: 1.8rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  line-height: 36px;
  font-size: var(--fs16);
  color: #666;
  border: 1px solid #d0d0d0;
  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;
}
.goods-wrapper .quick-box .text:hover {
  border-color: #272d82;
}
.goods-wrapper .quick-box .text.mini {
  width: 0.9rem;
}
.goods-wrapper .quick-box .submit {
  width: 0.9rem;
  text-align: center;
  color: #fff;
  line-height: 34px;
  font-size: var(--fs16);
  background-color: #272d82;
  margin-left: 0.3rem;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}
.goods-wrapper .quick-box .submit:hover {
  background-color: #3c5eaa;
}
.goods-wrapper .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;
}
.goods-wrapper .list li {
  border-radius: 5px;
  background-color: #f6f6f6;
  overflow: hidden;
}
.goods-wrapper .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);
}
.goods-wrapper .list li:hover .name {
  color: #272d82;
  font-weight: 700;
}
.goods-wrapper .list li a {
  display: block;
}
.goods-wrapper .list .pic img {
  height: 190px;
  object-fit: contain;
}
.goods-wrapper .list .info {
  border-top: 1px solid #e7e7e7;
  padding: 0.33rem 0.3rem;
}
.goods-wrapper .list .price {
  color: #ff4000;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.goods-wrapper .list .name {
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  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;
}
.goods-wrapper .list p {
  font-size: var(--fs16);
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 0.24rem;
  margin-top: 0.1rem;
}
.goods-wrapper .load {
  display: block;
  width: 1.6rem;
  line-height: 0.45rem;
  text-align: center;
  background-color: #272d82;
  border-radius: 23px;
  margin: 0 auto;
  color: #fff;
  font-size: 0.13rem;
  margin: 0.6rem auto 0;
  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;
}
.goods-wrapper .load:hover {
  background-color: #3c5eaa;
}
.goodsinfo-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;
}
.goodsinfo-wrapper .main {
  width: calc(100% - 3.8rem);
}
.goodsinfo-wrapper .base-box {
  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;
}
.goodsinfo-wrapper .base-box .pic {
  overflow: inherit;
  width: 3.5rem;
}
.goodsinfo-wrapper .base-box .pic-swiper {
  width: 100%;
  height: 2.8rem;
  background-color: #fff;
  border: solid 1px #e9e9e9;
  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;
}
.goodsinfo-wrapper .base-box .pic-swiper .swiper-wrapper {
  height: auto;
}
.goodsinfo-wrapper .base-box .pic-swiper .swiper-slide {
  display: none;
}
.goodsinfo-wrapper .base-box .pic-swiper .swiper-slide.on {
  display: block;
  animation: fadeIn 0.5s ease;
}
.goodsinfo-wrapper .base-box .info {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin-left: 0.72rem;
  padding-top: 0.1rem;
}
.goodsinfo-wrapper .base-box .thumbs {
  position: relative;
  padding: 0 0.44rem;
  width: 100%;
  margin-top: 0.3rem;
}
.goodsinfo-wrapper .base-box .thumbs .swiper-slide {
  cursor: pointer;
  width: 30%;
  border: 1px solid #eee;
  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;
  height: auto;
  overflow: hidden;
  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;
}
.goodsinfo-wrapper .base-box .thumbs .swiper-slide.on {
  border-color: #091a39;
}
.goodsinfo-wrapper .base-box .thumbs .swiper-slide: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);
}
.goodsinfo-wrapper .base-box .thumbs img {
  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;
  object-fit: contain;
}
.goodsinfo-wrapper .base-box .name {
  font-size: var(--fs24);
  font-weight: 700;
  line-height: 0.36rem;
}
.goodsinfo-wrapper .base-box .title {
  font-size: var(--fs20);
  line-height: 0.36rem;
  margin-bottom: 0.06rem;
}
.goodsinfo-wrapper .base-box .content {
  color: #666;
}
.goodsinfo-wrapper .base-box .btn {
  display: block;
  width: 1.8rem;
  line-height: 0.55rem;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: var(--fs18);
  color: #1c48aa;
  font-weight: 700;
  border: solid 1px #1c48aa;
  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;
  margin-top: 0.5rem;
}
.goodsinfo-wrapper .base-box .btn:hover {
  color: #fff;
  background-color: #272d82;
}
.goodsinfo-wrapper .base-box .swiper-btn {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  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;
}
.goodsinfo-wrapper .base-box .prev {
  left: 0;
  background-image: url(../img/prev5.png);
}
.goodsinfo-wrapper .base-box .prev:hover {
  background-image: url(../img/prev6.png);
}
.goodsinfo-wrapper .base-box .next {
  right: 0;
  background-image: url(../img/next5.png);
}
.goodsinfo-wrapper .base-box .next:hover {
  background-image: url(../img/next6.png);
}
.goodsinfo-wrapper .price {
  color: #ff4000;
  font-size: 0.22rem;
  line-height: 0.36rem;
  margin: 0.12rem auto 0.2rem;
}
.goodsinfo-wrapper .detail-box {
  margin-top: 0.7rem;
}
.goodsinfo-wrapper .detail-box .content {
  line-height: 0.36rem;
}
.goodsinfo-wrapper .item {
  margin-bottom: 0.54rem;
  padding-left: 0.6rem;
  padding-right: 0rem;
  border-top: 1px solid #dce1e7;
  padding-top: 0.5rem;
}
.goodsinfo-wrapper .item:last-child {
  margin-bottom: 0;
}
.goodsinfo-wrapper .item .caption {
  font-size: var(--fs30);
  line-height: 0.48rem;
  margin-bottom: 0.3rem;
}
.goodsinfo-wrapper table {
  width: 100%;
}
.goodsinfo-wrapper table tr:nth-child(odd) {
  background-color: #f4f4f4;
}
.goodsinfo-wrapper table td {
  padding-left: 0.42rem;
  line-height: 0.3rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-right: 0.3rem;
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.6rem;
}
.pageNum a {
  display: inline-block;
  color: #999;
  font-size: var(--fs14);
  font-family: Arial;
  vertical-align: middle;
  width: 0.48rem;
  height: 0.41rem;
  line-height: 0.41rem;
  background-color: #fff;
  border-radius: 20px;
  border: solid 1px #efefef;
  margin: 0 0.05rem;
  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.31rem;
}
.pageNum .ibtn {
  width: 1rem;
  font-size: 0.13rem;
}
.pageNum .ibtn i {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 7px;
  height: 10px;
}
.pageNum .prev i {
  background-image: url(../img/i-prev.png);
  margin-right: 0.1rem;
}
.pageNum .prev:hover i {
  background-image: url(../img/i-prev2.png);
}
.pageNum .next i {
  background-image: url(../img/i-next.png);
  margin-left: 0.1rem;
}
.pageNum .next:hover i {
  background-image: url(../img/i-next2.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #272d82;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #272d82;
  color: #fff;
  font-size: 12px;
  margin-top: 0.6rem;
}
.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 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);
  }
}
