@keyframes bigger {
  0% {
    transform: scale(0.81, 0.67);
    margin-left: 17px;
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes breathe {
  0% {
    filter: brightness(80%);
  }
  50% {
    filter: brightness(140%);
  }
  100% {
    filter: brightness(80%);
  }
}
@keyframes jumping {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(13px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes circling {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.index {
  min-width: 1300px; /*no*/
  font-family: "微软雅黑", Microsoft YaHei;
  overflow-x: hidden;
}
.index .prod_button {
  background-color: #1f2a68;
  border-radius: 6px;
  /*no*/
  border: none;
  font-weight: normal;
  text-align: center;
  margin: auto;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  outline: none;
}
.index .prod_button:hover {
  background-color: #fbdb7d;
  color: #010101;
  box-shadow: 0px 5px 8px 0px rgba(254, 217, 17, 0.5);
  /*no*/
}
.index .banner_box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-width: 1300px;
  height: 400px;
}
.index .banner_box .banner_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040929;
  animation: breathe 3s linear infinite;
}
.index .banner_box .banner_container > img {
  width: 100%;
  height: 100%;
}
.index .banner_box .banner_text {
  position: relative;
}
.index .banner_box .arrow {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  bottom: 41px;
  width: 30px;
  height: auto;
  animation: jumping 2s linear infinite;
}
.index .banner_box .knowledge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55px;
  width: 800px;
  height: 80px;
  box-shadow: 0px 3px 8px 0px rgba(4, 9, 41, 0.15);
  border-radius: 10px;
  background-color: #fff;
  line-height: 80px;
  text-align: center;
  cursor: pointer;
}
.index .banner_box .knowledge > .icon {
  width: 20px;
  vertical-align: sub;
}
.index .banner_box .knowledge > span {
  margin-left: 18px;
  margin-right: 30px;
  font-size: 20px;
  color: #000000;
}
.index .banner_box .knowledge .prod_button {
  width: 110px;
  height: 40px;
  background-color: transparent;
  color: #010101;
  background-image: url("../images/button_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  line-height: normal;
}
.index .module {
  padding: 125px 0 75px 0;
  /*no*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.index .module .module_title {
  font-size: 24px;
  color: #040929;
  margin: 0 27px;
}
.index .module > span {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #040929;
}
.index .product_intr {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
.index .product_intr .intr_item {
  position: relative;
  display: inline-block;
  width: 280px;
  background-color: #ffffff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px 0 #eee;
  margin-right: 27px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.index .product_intr .intr_item:first-child > img {
  animation: jumping 3s ease infinite;
}
.index .product_intr .intr_item:nth-child(2) > img {
  animation: jumping 3s 1.5s ease infinite;
}
.index .product_intr .intr_item:nth-child(3) > img {
  animation: jumping 3s ease infinite;
}
.index .product_intr .intr_item:last-child {
  margin-right: 0;
}
.index .product_intr .intr_item:last-child > img {
  animation: jumping 3s 1.5s ease infinite;
}
.index .product_intr .intr_item > span {
  display: inline-block;
  margin: 75px 0 25px 0;
  font-size: 20px;
  color: #000000;
}
.index .product_intr .intr_item p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #666666;
}
.index .product_intr .intr_item p + p {
  margin-top: 15px;
}
.index .product_intr .intr_item > img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: -47.5px;
  margin-left: -47.5px;
  width: 95px;
  height: 95px;
  animation: jumping 2s linear infinite;
}
.index .product_intr .intr_item .prod_button {
  display: block;
  margin: 37px auto 27px;
  width: 120px;
  height: 38px;
  border-radius: 19px;
  font-size: 16px;
}
.index .product_intr .intr_item:hover {
  transform: translate3d(0, -15px, 0);
}
.index .service_content .tap_box {
  display: flex;
  margin: auto;
  width: 660px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
}
.index .service_content .tap_box .tap_item {
  flex: 1;
  height: 100%;
  background-color: #eeeeee;
  font-size: 16px;
  color: #9999a3;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.index .service_content .tap_box .tap_item_active {
  background-color: #1f2a68;
  color: #fff;
}
.index .service_content .tap_content {
  margin: 45px auto 0;
  white-space: nowrap;
  max-width: 1300px;
  overflow: hidden;
}
.index .service_content .tap_content .transition_box {
  white-space: nowrap;
  transition: transform 0.45s ease;
}
.index .service_content .tap_content .transition_box .tap_content_item {
  display: inline-flex;
  justify-content: space-around;
  width: 1300px;
}
.index .service_content .tap_content .transition_box .tap_content_item .example_content {
  position: relative;
  padding: 30px 60px 0 60px;
  width: 360px;
  height: 532px;
  background-color: #ffffff;
  border-radius: 30px;
  border: solid 1px #cccccc;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.index .service_content .tap_content .transition_box .tap_content_item .example_content > img {
  width: 100%;
}
.index .service_content .tap_content .transition_box .tap_content_item .example_content .example_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  color: #333333;
  box-shadow: 0px -3px 7px 0px rgba(32, 42, 103, 0.2);
  transition: all 0.3s ease;
}
.index .service_content .tap_content .transition_box .tap_content_item .example_content:hover {
  transform: scale(0.95);
}
.index .service_content .tap_content .transition_box .tap_content_item .example_content:hover .example_bottom {
  background-color: #1f2a68;
  color: #fbdb7d;
}
.index .apps {
  display: flex;
  margin: auto;
  max-width: 1300px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.index .apps .apps_item {
  display: flex;
  margin-bottom: 20px;
  height: 270px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
}
.index .apps .apps_item > img {
  width: auto;
  height: 100%;
}
.index .apps .apps_item .app_detail {
  display: inline-block;
  width: 242px;
  height: 100%;
  background: #fff;
  text-align: center;
}
.index .apps .apps_item .app_detail .detail_title {
  margin-top: 55px;
  margin-bottom: 29px;
  display: inline-block;
  padding: 0 6px;
  height: 20px;
  background-color: #fdedbe;
  font-size: 22px;
  line-height: 0;
  color: #000000;
  transition: all 0.35s ease;
}
.index .apps .apps_item .app_detail > p {
  margin: 0;
  margin-top: 18px;
  font-size: 18px;
  color: #666666;
  transition: all 0.35s ease;
}
.index .apps .apps_item .app_detail .prod_button {
  margin-top: 0px;
  width: 120px;
  height: 38px;
  opacity: 0;
  transition: all 0.35s ease;
}
.index .apps .apps_item:hover {
  transform: translate3d(0, -5px, 0);
  cursor: pointer;
}
.index .apps .apps_item:hover .app_detail .detail_title {
  margin-top: 35px;
  margin-bottom: 10px;
}
.index .apps .apps_item:hover .app_detail > p {
  margin-top: 12px;
}
.index .apps .apps_item:hover .app_detail .prod_button {
  margin-top: 25px;
  opacity: 1;
}
.index .apps .item_big .app_detail {
  width: 290px;
}
.index .steps {
  display: flex;
  justify-content: center;
}
.index .steps .step_item {
  display: inline-block;
  margin-right: 257px;
  cursor: pointer;
}
.index .steps .step_item:last-child {
  margin-right: 0;
}
.index .steps .step_item .step_pic {
  position: relative;
  margin: auto;
  width: 145px;
  height: 145px;
  text-align: center;
  line-height: 145px;
  cursor: pointer;
}
.index .steps .step_item .step_pic:hover .step_bg {
  animation-play-state: paused;
}
.index .steps .step_item .step_pic .step_bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  animation: circling 5s linear infinite;
}
.index .steps .step_item .step_pic .step_icon {
  position: relative;
}
.index .steps .step_item .step_title {
  margin: 30px 0 20px 0;
  text-align: center;
  font-size: 20px;
  color: #282828;
}
.index .steps .step_item .step_desc {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}
.index .steps .step_item .step_desc > a {
  font-size: 16px;
  color: #4559cb;
}
.index .parners {
  width: 1200px;
  /*no*/
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.index .parners .ladder {
  display: inline-block;
  margin: auto;
  text-align: center;
}
.index .parners .ladder .parner_item {
  display: inline-block;
  margin-right: 60px;
  width: 115px;
  height: 115px;
  border: 1px solid #999999;
  transform: rotate(45deg);
  text-align: center;
  line-height: 115px;
  overflow: hidden;
}
.index .parners .ladder .parner_item > img {
  transform: rotate(-45deg);
  vertical-align: middle;
}
.index .parners .ladder .parner_item:last-child {
  margin-right: 0;
}
.index .parners .ladder .parner_item:hover {
  border: 1px solid #202a67;
}
.index .parners .ladder + .ladder {
  margin-top: -20px;
}
.index .observation_ward {
  width: 1200px;
  /*no*/
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.index .observation_ward .ward_item {
  display: flex;
  margin-bottom: 20px;
  /*no*/
  margin-right: 40px;
  /*no*/
  width: 560px;
  /*no*/
  box-sizing: border-box;
  cursor: pointer;
}
.index .observation_ward .ward_item .item_date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  /*no*/
  height: 100px;
  /*no*/
  background-color: #cccccc;
  color: #ffffff;
  text-align: center;
}
.index .observation_ward .ward_item .item_date .item_day {
  font-size: 36px;
  /*no*/
  color: #ffffff;
}
.index .observation_ward .ward_item .item_date .item_local {
  font-size: 18px;
  /*no*/
  color: #ffffff;
}
.index .observation_ward .ward_item .item_content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
  padding-left: 15px;
  /*no*/
}
.index .observation_ward .ward_item .item_content .item_title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}
.index .observation_ward .ward_item .item_content .item_desc {
  font-size: 16px;
  /*no*/
  line-height: 24px;
  /*no*/
  color: #666666;
}
.index .observation_ward .ward_item:hover .item_date {
  background-color: #202a67;
}
.index .observation_ward .ward_item:hover .item_content .item_title {
  color: #202a67;
}
.index .observation_ward .ward_item:nth-child(2n) {
  margin-left: 20px;
  /*no*/
  margin-right: 0;
}
.index .button_box {
  width: 1200px;
  /*no*/
  margin: auto;
}
.index .button_box .prod_button {
  margin-bottom: 115px;
  /*no*/
  width: 200px;
  /*no*/
  height: 60px;
  /*no*/
  border-radius: 30px;
  /*no*/
  line-height: 60px;
  /*no*/
  font-weight: normal;
}
