body {
  background-color: #faf9f9;
}
.allWrap .head {
  margin: 0 auto;
}
.allWrap .head .topWrap {
  width: 100%;
  background-color: white;
  color: #666;
}
.allWrap .head .topWrap .top {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  font-size: 14px;
  background-color: white;
}
.allWrap .head .topWrap .top .spans {
  display: flex;
}
.allWrap .head .topWrap .top .spans span {
  margin: 0 10px;
}
.allWrap .head .logoWrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  font-size: 14px;
}
.allWrap .head .logoWrap .logo img {
  width: 100%;
}
.allWrap .head .logoWrap .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.allWrap .head .logoWrap .btns a {
  margin: 0 10px;
  padding: 10px 12px;
  background-color: #006CAC;
  color: white;
  border-radius: 3px;
}
.allWrap .content {
  background-color: white;
  box-shadow: 0 0 10px #cecdcd;
  border-radius: 10px;
  width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.allWrap .content .nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #006CAC;
}
.allWrap .content .nav li {
  padding: 15px 30px;
  font-weight: bold;
}
.allWrap .content .nav li:first-child {
  background-color: #006CAC;
  color: white;
  border-radius: 5px 5px 0 0;
}
.allWrap .content .banner {
  width: 100%;
  margin: 10px 0;
}
.allWrap .content .banner img {
  width: 100%;
}
.allWrap .content .chartWrap {
  display: flex;
  justify-content: space-between;
}
.allWrap .content .chartWrap .chartLeft {
  width: 448px;
  overflow: hidden;
  height: 300px;
}
.allWrap .content .chartWrap .chartLeft .my-swiper {
  position: relative;
  width: 448px;
  height: 300px;
  overflow: hidden;
}
.allWrap .content .chartWrap .chartLeft .swiper-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 896px;
  height: 100%;
  overflow: hidden;
  animation: swiper 10s steps(1, end) infinite;
  transition: left 1s linear;
}
.allWrap .content .chartWrap .chartLeft .swiper-slide {
  width: 448px;
  height: 100%;
  float: left;
  overflow: hidden;
  transition: all 0.4s;
}
.allWrap .content .chartWrap .chartLeft .swiper-slide a {
  display: block;
  height: 100%;
}
.allWrap .content .chartWrap .chartLeft .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
@keyframes swiper {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: -448px;
  }
}
.allWrap .content .chartWrap .chartLeft h3 {
  color: #006CAC;
  font-weight: bold;
  margin: 5px;
}
.allWrap .content .chartWrap .chartLeft img {
  width: 100%;
  height: 100%;
}
.allWrap .content .chartWrap .textRight {
  border-left: 1px dashed #c6c5c5;
  padding-left: 10px;
  width: 670px;
}
.allWrap .content .chartWrap .textRight .title {
  border-bottom: 2px solid #006CAC;
}
.allWrap .content .chartWrap .textRight .title h3 {
  color: #006CAC;
  font-weight: bold;
  margin: 5px;
}
.allWrap .content .chartWrap .textRight .text {
  padding-left: 20px;
}
.allWrap .content .chartWrap .textRight .text h2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}
.allWrap .content .chartWrap .textRight .text > p {
  font-size: 14px;
  color: #999;
  border-bottom: 1px dashed #999;
  line-height: 22px;
}
.allWrap .content .chartWrap .textRight ul {
  margin-top: 20px;
  list-style: disc !important;
  color: #999;
  padding-left: 20px;
}
.allWrap .content .chartWrap .textRight ul li {
  color: #999;
  padding: 8px 0;
  height: 18px;
}
.allWrap .content .chartWrap .textRight ul li span:hover,
.allWrap .content .chartWrap .textRight ul li p:hover {
  color: #006CAC;
}
.allWrap .content .chartWrap .textRight ul li p {
  font-size: 16px;
  color: #666;
  float: left;
}
.allWrap .content .chartWrap .textRight ul li span {
  float: right;
}
.allWrap .content .chartWrap .textRight .btn {
  float: right;
  font-size: 14px;
  color: #999999;
}
.allWrap .content .scrollText {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.allWrap .content .scrollText .section1 {
  width: 32%;
}
.allWrap .content .scrollText .section1 .title {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #006CAC;
  padding: 10px 0;
}
.allWrap .content .scrollText .section1 .title span:nth-child(1) {
  color: #006CAC;
  font-weight: bold;
}
.allWrap .content .scrollText .section1 .title span {
  color: #999999;
}
.allWrap .content .scrollText .section1 ul {
  list-style: disc;
  color: #999;
  padding: 0 20px;
}
.allWrap .content .scrollText .section1 ul li {
  font-size: 14px;
  line-height: 24px;
}
.allWrap .content .scrollText .section1 ul li a:hover {
  color: #ec6666;
}
.allWrap .content .scrollText .section2 {
  width: 32%;
}
.allWrap .content .scrollText .section2 .title {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #006CAC;
  padding: 10px 0;
}
.allWrap .content .scrollText .section2 .title span:nth-child(1) {
  color: #006CAC;
  font-weight: bold;
}
.allWrap .content .scrollText .section2 .title span {
  color: #999999;
}
@keyframes anis {
  100% {
    transform: translateY(-200px);
  }
}
.allWrap .content .scrollText .section2 .scroll {
  height: 192px;
  overflow: hidden;
  position: relative;
}
.allWrap .content .scrollText .section2 .scroll ul:hover {
  animation-play-state: paused;
}
.allWrap .content .scrollText .section2 .scroll ul {
  list-style: disc;
  color: #999;
  padding: 0 20px;
  animation: anis 10s linear infinite;
}
.allWrap .content .scrollText .section2 .scroll ul li {
  font-size: 14px;
  line-height: 24px;
}
.allWrap .content .scrollText .section2 .scroll ul li a:hover {
  color: #ec6666;
}
.allWrap .content .avatars {
  width: 1170px;
  margin: 0 auto;
  overflow: hidden;
}
.allWrap .content .avatars h3 {
  color: #006CAC;
  font-weight: bold;
  margin: 15px 0;
}
.allWrap .content .avatars .imgs {
  font-size: 12px;
  color: #000;
  display: inline-block;
  white-space: nowrap;
  animation: 25s wordsLoop linear infinite;
}
.allWrap .content .avatars .imgs .imgWrap {
  display: inline-block;
}
.allWrap .content .avatars .imgs img {
  width: 122px;
  height: 162px;
  margin: 0 20px;
}
@keyframes wordsLoop {
  100% {
    transform: translateX(-1170px);
    -webkit-transform: translateX(-1170px);
  }
}
@-webkit-keyframes wordsLoop {
  100% {
    transform: translateX(-1170px);
    -webkit-transform: translateX(-1170px);
  }
}
.allWrap .content .vip {
  width: 1170px;
  margin: 0 auto;
  overflow: hidden;
}
.allWrap .content .vip h3 {
  color: #006CAC;
  font-weight: bold;
  margin: 15px 0;
}
.allWrap .content .vip .imgs {
  font-size: 12px;
  color: #000;
  display: inline-block;
  white-space: nowrap;
  animation: 25s wordsLoop linear infinite;
}
.allWrap .content .vip .imgs img {
  width: 191px;
  height: 74px;
  margin: 0 20px;
  border: 1px solid #999;
  padding: 5px;
}
@keyframes wordsLoop {
  100% {
    transform: translateX(-1170px);
    -webkit-transform: translateX(-1170px);
  }
}
@-webkit-keyframes wordsLoop {
  100% {
    transform: translateX(-1170px);
    -webkit-transform: translateX(-1170px);
  }
}
.allWrap .content footer {
  display: block;
  text-align: center;
  border-top: 2px solid #006CAC;
  font-size: 14px;
  padding-bottom: 20px;
  margin-top: 30px;
}
.allWrap .content footer > p {
  line-height: 30px;
}
.allWrap .content footer .info {
  display: flex;
  width: 800px;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  margin: 0 auto;
}
.allWrap .content footer .email {
  margin: 5px;
}
.allWrap .content footer .email a {
  color: #006CAC;
}
