@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

.scale {
  overflow: hidden;
  -webkit-animation: scale 2s linear infinite;
  animation: scale 2s linear infinite;
}
.scale .light {
  content: '';
  display: block;
  position: absolute;
  width: 80px;
  height: 60px;
  top: -10px;
  left: -10px;
  transform: rotate(-75deg);
  background-image: linear-gradient(rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
  opacity: 0.6;
  -webkit-animation: crossData 1s ease-in infinite;
  animation: crossData 1s ease-in infinite;
}

html,
body {
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

.page {
  min-width: 1200px;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hidden {
  overflow: hidden;
}

.box-list {
  display: none !important;
}
.box-list.show {
  display: flex !important;
}

.home .title {
  padding-bottom: 30px;
  text-align: center;
}
.home .title-cn {
  align-items: center;
  display: flex;
  justify-content: center;
}
.home .title-cn .icon {
  margin-right: 10px;
}
.home .title-cn .text {
  color: #000;
  font-size: 30px;
  font-weight: 600;
}
.home .title-en {
  font-family: Helvetica;
  font-weight: bold;
  color: #c2c2c2;
  font-size: 20px;
}

.content {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  position: relative;
  padding-left: 60px;
  padding-bottom: 65px;
}
.content .con {
  padding: 40px 30px 40px 0;
  position: relative;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .con .con-title {
  color: #666;
  font-size: 20px;
}
.content .con .more {
  width: 40px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  background: url("../images/arrow-r.png") no-repeat right center/8px 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.content .con .more:hover {
  color: #1a4299;
}
.content .con .list-t {
  display: flex;
  flex: 1;
}
.content .con .list-t .item {
  font-size: 16px;
  color: #666;
  position: relative;
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
  padding: 0 12px;
  border-radius: 16px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.content .con .list-t .item:hover {
  color: #1a4299;
}
.content .con .list-t .item.active {
  color: #fff;
  background: #1a4299;
}
.content .con .list-t .more-list {
  position: absolute;
  right: 30px;
  top: 45px;
}
.content .con .list-t .more-list .more {
  display: none;
}
.content .con .list-t .more-list .more.show {
  display: flex;
}