
.about_three .about_three_main, .about_two .about_two_main, .about_one .about_one_introduce, .shipping_box .shipping_content, .performance_box .performance_content .info, .facilities_box .facilities_content ul, .products_box .products_content ul {
  width: 67.263%;
  margin: 0 auto;
}

.about_three .about_three_main .about_three_swiper .swiper-button, .shipping_box .shipping_content .shipping_parameter ul li, .shipping_box .shipping_content .shipping_swiper_component .shipping-swiper-pagination, .shipping_box .shipping_content .shipping_know a, .facilities_box .h_233, .products_box .products_content ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.facilities_box .facilities_content ul li .info span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_title {
  text-align: center;
  position: relative;
  padding-bottom: 2.5rem;
}
.index_title::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 11rem;
  height: 0.6rem;
  background-color: #0056B8;
}
.index_title span {
  font-size: 5.6rem;
  font-weight: 700;
  color: #303030;
  border-bottom: 0.2rem solid #E6E8EA;
  position: relative;
  transition: all 0.6s;
  padding-bottom: 2.5rem;
}
.index_title span::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 0.2rem;
  transition: all 0.9s;
}
.index_title span:hover::after {
  width: 100%;
  background-color: #0056B8;
}
@media only screen and (max-width: 1200px) {
  .index_title::after {
    bottom: -1.2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .index_title.en span {
    font-size: 4.5rem;
  }
  .index_title.en::after {
    bottom: -1rem;
  }
}

/* 首页开始 */
.video_box {
  position: relative;
  border-bottom: 1rem solid #fff;
  height: 100vh;
}
.video_box .video_text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.video_box .video_text span {
  font-size: 9rem;
  color: #FFFEFE;
  text-shadow: 0rem 0.4rem 0.3rem rgba(0, 24, 69, 0.2);
  font-weight: 900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.video_box .video_text span i {
  margin: 1rem 1rem 0;
  width: 1.7rem;
  height: 1.8rem;
  background: url("../image/placard_icon.png") no-repeat center;
  background-size: 100% 100%;
  vertical-align: -webkit-baseline-middle;
}
.video_box .video_text span::after {
  content: "";
  margin-left: 1rem;
  margin-bottom: 1rem;
  width: 1.9rem;
  height: 2rem;
  background: url("../image/placard_icon.png") no-repeat center;
  background-size: 100% 100%;
  vertical-align: -webkit-baseline-middle;
}
.video_box .video_text.cn span {
  letter-spacing: 1rem;
  align-items: center;
}
.video_box .video_text.cn span::after {
  content: none;
}
.video_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes jump {
  0% {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, -15px);
  }
}
.video_box .video_bottom {
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  background-image: url("../image/video_box_bottom.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: jump 0.8s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  /* 取消展示电脑端下滑功能修改为展示视频 */
  display: none;
}
.video_box .video_bottom:hover {
  background-image: url("../image/video_box_bottom_active.svg");
}
.video_box .show_video {
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  padding: 0 2.5rem;
  height: 5rem;
  color: #fff;
  border: 0.17rem solid #FFFFFF;
  border-radius: 1.66rem;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.6s;
}
.video_box .show_video::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2rem;
  background: url("../image/pay.png") no-repeat center;
  background-size: contain;
}
.video_box .show_video:hover {
  border-color: #0056B8;
}
.video_box .video_dialog {
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.15s ease-out;
  z-index: 9999;
  padding: 0 6px;
  box-sizing: border-box;
  display: none;
}
.video_box .video_dialog.active {
  display: flex;
}
@supports (-webkit-touch-callout: none) {
  .video_box .video_dialog {
    height: calc(var(--vh) * 100);
  }
}
.video_box .video_dialog .video_dialog_content {
  height: 60%;
}
.video_box .video_dialog .off {
  text-align: right;
  color: #fff;
  font-size: 28px;
  height: 44px;
  line-height: 44px;
}
@supports (-webkit-touch-callout: none) {
  .video_box {
    height: calc(var(--vh) * 100);
  }
}
@media only screen and (max-width: 1024px) {
  .video_box .video_text {
    width: initial;
  }
  .video_box .video_text span {
    flex-direction: column;
    font-size: 10rem;
    white-space: nowrap;
    margin-left: 0;
  }
  .video_box .video_text span i {
    margin: 0;
    height: 5px;
    background: none;
  }
  .video_box .video_text span::after {
    content: none;
  }
  .video_box .video_bottom {
    display: none;
  }
  .video_box .show_video {
    bottom: 22rem;
  }
  .video_box .video_dialog .video_dialog_content {
    width: initial;
    height: initial;
  }
}
@media only screen and (max-width: 768px) {
  .video_box .video_text span {
    font-size: 6.13rem;
  }
  .video_box .show_video {
    width: 20.48rem;
    height: 5.12rem;
    font-size: 1.81rem;
  }
  .video_box .show_video::after {
    content: "";
    width: 1.05rem;
    height: 1.05rem;
  }
}

.products_box {
  position: relative;
  background: linear-gradient(180deg, #F7F7F7 0%, rgba(255, 255, 255, 0.91) 76%, rgba(255, 255, 255, 0) 100%);
}
.products_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8.9rem;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.6s;
  background: url("../image/products_box_bor.svg") no-repeat center;
  background-size: 100% 100%;
}
.products_box.show_before::before {
  top: -2rem;
}
.products_box .h_270 {
  padding: 12.6rem 0 5.4rem;
  height: 27rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #F7F7F7 0%, rgba(255, 255, 255, 0.91) 76%, rgba(255, 255, 255, 0) 100%);
}
.products_box .products_content ul {
  display: flex;
  justify-content: space-between;
}
.products_box .products_content ul li {
  width: 17.968%;
  padding: 5rem 0rem 7.5rem;
  box-sizing: border-box;
  position: relative;
  height: 45rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.6s;
}
.products_box .products_content ul li img {
  width: 100%;
  height: 80%;
  object-fit: contain;
}
.products_box .products_content ul li span {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin: 3rem auto 0;
  max-width: 90%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.9rem;
  color: #282828;
  transition: all 0.6s;
}
.products_box .products_content ul li a {
  position: absolute;
  left: 50%;
  bottom: -3.5rem;
  transform: translateX(-50%);
  text-align: center;
  width: 7.9rem;
  height: 3.2rem;
  line-height: 3.2rem;
  background: #0056B8;
  border: 1px solid #F7F6F5;
  border-radius: 1rem;
  font-size: 1.2rem;
  color: #FFFFFF;
  transition: all 0.6s;
}
.products_box .products_content ul li a::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
  background: url("../image/products_more_icon.svg") no-repeat center;
  background-size: contain;
}
.products_box .products_content ul li:hover {
  background-color: #fff;
  box-shadow: 0.2rem 0.4rem 2.6rem 0.1rem rgba(0, 0, 0, 0.04);
}
.products_box .products_content ul li:hover span {
  color: #0056B8;
}
.products_box .products_content ul li:hover a {
  bottom: 3.1rem;
}
@media only screen and (max-width: 1024px) {
  .products_box::before {
    background: url("../image/wap_products_box_bor.png") no-repeat center;
    background-size: 100%;
  }
  .products_box.show_before::before {
    top: -5.5rem;
  }
  .products_box .h_270 {
    padding: 8rem 0 6rem;
    height: initial;
  }
  .products_box .products_content ul {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 3.3rem;
    box-sizing: border-box;
  }
  .products_box .products_content ul li {
    width: 30%;
    border-bottom: 2px solid #ebebeb;
    border-radius: initial;
    padding: 0;
    height: 33.13rem;
  }
  .products_box .products_content ul li:hover {
    background-color: transparent;
    box-shadow: initial;
  }
  .products_box .products_content ul li:hover a {
    bottom: 1.96rem;
  }
  .products_box .products_content ul li:nth-of-type(-n+2) {
    width: 48%;
    margin-bottom: 6.02rem;
  }
  .products_box .products_content ul li:nth-of-type(3) img {
    width: 50%;
  }
  .products_box .products_content ul li img {
    position: absolute;
    right: 0;
    width: 70%;
  }
  .products_box .products_content ul li span {
    text-align: left;
    margin: initial;
    font-size: 2.26rem;
    line-height: initial;
    white-space: normal;
    max-width: 65%;
  }
  .products_box .products_content ul li span .wap {
    font-size: 1.51rem;
    color: #EBEBEB;
    transform: scale(0.8);
    transform-origin: left;
  }
  .products_box .products_content ul li a {
    transform: initial;
    left: initial;
    bottom: 1.96rem;
    background: #fff;
    border-color: #303030;
    color: #303030;
  }
  .products_box .products_content ul li a::after {
    background: url("../image/wap_products_more_icon.png") no-repeat center;
    background-size: contain;
  }
  .products_box .products_content.en ul li:first-of-type span {
    max-width: 60%;
  }
  .products_box .products_content.en ul li span {
    font-size: 1.9rem;
    transform: scale(0.95);
  }
}

.facilities_box .h_233 {
  height: 23.3rem;
}
.facilities_box .facilities_content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 1.5rem;
  overflow: hidden;
}
.facilities_box .facilities_content ul li {
  width: 31.64%;
  height: 27rem;
  position: relative;
}
.facilities_box .facilities_content ul li .img {
  height: 100%;
  overflow: hidden;
}
.facilities_box .facilities_content ul li .img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 1.6s;
}
.facilities_box .facilities_content ul li .info {
  position: absolute;
  bottom: 0;
  height: 5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.facilities_box .facilities_content ul li .info span {
  padding-left: 4rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.3);
}
.facilities_box .facilities_content ul li .info .more {
  flex: 1;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  padding-right: 2rem;
  background: #0154DA;
  transition: all 0.6s;
}
.facilities_box .facilities_content ul li .info .more::after {
  content: "";
  width: 1.6rem;
  height: 0.5rem;
  margin-left: 1rem;
  background: url("../image/facilities_r_icon.png") no-repeat center;
  background-size: contain;
}
.facilities_box .facilities_content ul li .info::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 4rem;
  width: 7.6rem;
  height: 0.5rem;
  background: #BEBFC1;
  transition: all 0.6s;
}
.facilities_box .facilities_content ul li:nth-of-type(-n +3) {
  margin-bottom: 3.4rem;
}
.facilities_box .facilities_content ul li:hover .img img {
  transform: scale(1);
}
.facilities_box .facilities_content ul li:hover .info .more {
  opacity: 0.84;
}
.facilities_box .facilities_content ul li:hover .info::before {
  width: calc(100% - 4rem);
}
@media only screen and (max-width: 1024px) {
  .facilities_box .h_233 {
    height: 30.12rem;
  }
  .facilities_box .facilities_content ul {
    width: 100%;
    margin: 0 auto;
    padding: 0 3.3rem;
    box-sizing: border-box;
  }
  .facilities_box .facilities_content ul li {
    width: 48%;
    height: 33.58rem;
    border-radius: 1.5rem;
    overflow: hidden;
  }
  .facilities_box .facilities_content ul li .info {
    height: initial;
  }
  .facilities_box .facilities_content ul li .info span {
    font-size: 2.26rem;
  }
  .facilities_box .facilities_content ul li .info .more {
    margin-top: 0.9rem;
    line-height: 3.01rem;
  }
  .facilities_box .facilities_more {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .facilities_box .facilities_content ul li {
    width: 100%;
  }
  .facilities_box .facilities_content ul li:nth-last-of-type(-n+3) {
    display: none;
  }
  .facilities_box .facilities_more {
    display: block;
    margin-top: 4.1rem;
  }
  .facilities_box .facilities_more img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }
}

.performance_box {
  background: linear-gradient(0deg, #F8F8F7 0%, rgba(222, 226, 231, 0.56) 56%, rgba(255, 255, 255, 0) 100%);
}
.performance_box .h_252 {
  height: 25.2rem;
  box-sizing: border-box;
  padding: 11.8rem 0 6.5rem;
}
.performance_box .performance_content {
  position: relative;
}
.performance_box .performance_content img {
  width: 100%;
}
.performance_box .performance_content img.wap {
  display: none;
}
@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(0.1, 0.1);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    filter: none;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2, 1.2);
    opacity: 0;
  }
}
.performance_box .performance_content .performance_landmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.performance_box .performance_content .performance_landmark div {
  position: absolute;
  height: 0.4rem;
  width: 0.4rem;
  cursor: pointer;
}
.performance_box .performance_content .performance_landmark div span {
  position: absolute;
  font-size: 1.6rem;
  transition: all 0.6s;
  left: 50%;
  transform: translate(-50%, -120%);
  white-space: nowrap;
  z-index: 999;
}
.performance_box .performance_content .performance_landmark div i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #303030;
  border-radius: 50%;
  height: 0.4rem;
  width: 0.4rem;
  transition: all 0.6s;
  z-index: 999;
}
.performance_box .performance_content .performance_landmark div i::before, .performance_box .performance_content .performance_landmark div i:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.1s;
  z-index: 999;
}
.performance_box .performance_content .performance_landmark div i:after {
  width: 1.4rem;
  height: 1.4rem;
  background-color: rgba(55, 82, 180, 0.1);
}
.performance_box .performance_content .performance_landmark div i::before {
  height: 2.5rem;
  width: 2.5rem;
  background-color: rgba(55, 82, 180, 0.1);
}
.performance_box .performance_content .performance_landmark div img {
  position: absolute;
  width: 0;
  opacity: 0;
  transition: all 0.6s;
  z-index: 9999;
  object-fit: contain;
  backdrop-filter: saturate(100%) blur(5px);
}
.performance_box .performance_content .performance_landmark div:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(55, 82, 180, 0.05);
}
.performance_box .performance_content .performance_landmark div:hover span {
  color: #0052BF;
}
.performance_box .performance_content .performance_landmark div:hover i {
  background: #0052BF;
}
.performance_box .performance_content .performance_landmark div:hover span:after,
.performance_box .performance_content .performance_landmark div:hover i:after,
.performance_box .performance_content .performance_landmark div:hover i:before {
  animation: pulsate 1s infinite ease-out;
  transform-origin: center;
}
.performance_box .performance_content .performance_landmark div:hover img {
  opacity: 1;
}
.performance_box .performance_content .performance_landmark .uk {
  top: 22rem;
  left: 30rem;
}
.performance_box .performance_content .performance_landmark .uk img {
  left: 0.2rem;
}
.performance_box .performance_content .performance_landmark .uk:hover img {
  width: 53.8rem;
}
.performance_box .performance_content .performance_landmark .germany {
  top: 23.1rem;
  left: 36rem;
}
.performance_box .performance_content .performance_landmark .germany img {
  top: 0.2rem;
}
.performance_box .performance_content .performance_landmark .germany:hover img {
  width: 52.2rem;
  width: var(--w);
}
.performance_box .performance_content .performance_landmark .india {
  top: 37.6rem;
  left: 63.4rem;
}
.performance_box .performance_content .performance_landmark .india img {
  bottom: 0.2rem;
  right: 0;
}
.performance_box .performance_content .performance_landmark .india:hover img {
  width: 32.6rem;
}
.performance_box .performance_content .performance_landmark .thailand {
  top: 41.3rem;
  left: 73rem;
}
.performance_box .performance_content .performance_landmark .thailand img {
  right: 0;
  bottom: 0.2rem;
}
.performance_box .performance_content .performance_landmark .thailand:hover img {
  width: 45rem;
}
.performance_box .performance_content .performance_landmark .vietnam {
  top: 43.9rem;
  left: 76.8rem;
}
.performance_box .performance_content .performance_landmark .vietnam img {
  bottom: 0.2rem;
}
.performance_box .performance_content .performance_landmark .vietnam:hover img {
  width: 55.6rem;
}
.performance_box .performance_content .performance_landmark .china {
  top: 34.2rem;
  left: 79.6rem;
}
.performance_box .performance_content .performance_landmark .china img {
  bottom: -4rem;
  left: 0.2rem;
}
.performance_box .performance_content .performance_landmark .china:hover img {
  width: 61.5rem;
}
.performance_box .performance_content .performance_landmark .japan {
  top: 29.3rem;
  left: 90.4rem;
}
.performance_box .performance_content .performance_landmark .japan img {
  bottom: -3.5rem;
  left: 0.2rem;
}
.performance_box .performance_content .performance_landmark .japan:hover img {
  width: 33.5rem;
}
.performance_box .performance_content .performance_intro {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.performance_box .performance_content .performance_intro p {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  line-height: 3.5rem;
  color: #0052BF;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.performance_box .performance_content .performance_intro p i {
  color: #fff;
  position: relative;
}
.performance_box .performance_content .performance_intro p i::before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.5rem;
  position: absolute;
  top: -0.2rem;
  left: -1.3rem;
  background-color: #0052BF;
  z-index: -1;
}
.performance_box .performance_content .performance_intro.cn p i::before {
  left: -1rem;
}
.performance_box .performance_content .info {
  position: absolute;
  bottom: 11rem;
  left: 50%;
  transform: translateX(-50%);
}
.performance_box .performance_content .info ul {
  display: flex;
  justify-content: space-between;
}
.performance_box .performance_content .info ul li {
  display: flex;
  align-items: center;
}
.performance_box .performance_content .info ul li .icon {
  width: 12.4rem;
  height: 12.4rem;
  margin-right: 2.6rem;
}
.performance_box .performance_content .info ul li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.performance_box .performance_content .info ul li .info_box {
  flex: 1;
}
.performance_box .performance_content .info ul li .info_box .info_title {
  margin-bottom: 2.2rem;
}
.performance_box .performance_content .info ul li .info_box .info_title p {
  font-size: 1.6rem;
  color: #303030;
  line-height: 2.1rem;
  font-weight: 700;
}
.performance_box .performance_content .info ul li .info_box .radius_box {
  color: #0052BF;
}
.performance_box .performance_content .info ul li .info_box .radius_box .counter {
  font-size: 4rem;
  font-weight: 700;
}
.performance_box .performance_content .info ul li .info_box .radius_box i {
  font-size: 1.8rem;
}
.performance_box.en .performance_content .info {
  padding: 0 1rem;
  box-sizing: border-box;
}
.performance_box.en .performance_content .info ul li {
  flex: 1;
}
.performance_box.en .performance_content .info ul li .info_box {
  justify-content: flex-end;
}
.performance_box.en .performance_content .info ul li .info_box .info_title {
  flex: 1;
}
.performance_box.en .performance_content .info ul li .info_box .radius_box {
  margin: 1rem 0;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  .performance_box .performance_content > img {
    display: none;
  }
  .performance_box .performance_content > img.wap {
    display: block;
  }
  .performance_box .performance_content > img.wap_small {
    display: none;
  }
  .performance_box .performance_content .performance_landmark {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .performance_box .h_252 {
    padding: 9.49rem 0 3.92rem;
  }
  .performance_box .performance_content > img.wap {
    display: none;
  }
  .performance_box .performance_content > img.wap.wap_small {
    display: block;
  }
  .performance_box .performance_content .performance_intro {
    position: initial;
    transform: initial;
    text-align: center;
  }
  .performance_box .performance_content .performance_intro p {
    white-space: initial;
  }
  .performance_box .performance_content .info {
    position: initial;
    transform: initial;
    width: 100%;
    margin: 0 auto;
    margin: 3.77rem 0;
  }
  .performance_box .performance_content .info ul {
    justify-content: space-around;
    width: 100%;
    box-sizing: border-box;
  }
  .performance_box .performance_content .info ul li {
    flex-direction: column;
  }
  .performance_box .performance_content .info ul li .icon {
    margin-right: initial;
  }
  .performance_box .performance_content .info ul li .info_box {
    display: flex;
    flex-direction: column-reverse;
  }
  .performance_box .performance_content .info ul li .info_box .radius_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0.75rem 0;
  }
  .performance_box .performance_content .info ul li .info_box .info_title {
    display: flex;
    margin-bottom: initial;
  }
  .performance_box .performance_content .info ul li .info_box .info_title p {
    font-weight: initial;
  }
  .performance_box.en .performance_content .info ul li .info_box .info_title {
    display: block;
    text-align: center;
  }
}

.shipping_box {
  background-color: #0056B8;
  display: flex;
  position: relative;
  height: 88rem;
}
.shipping_box .shipping_swiper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.shipping_box .shipping_swiper .left {
  width: 16.4%;
}
.shipping_box .shipping_swiper .swiper {
  flex: 1;
}
.shipping_box .shipping_swiper .swiper img {
  width: 100%;
  height: 100%;
}
.shipping_box .shipping_content {
  position: relative;
  z-index: 99;
  background: linear-gradient(90deg, #0056B8 0%, rgba(0, 85, 184, 0) 100%);
}
.shipping_box .shipping_content .shipping_title {
  margin-top: 8.5rem;
}
.shipping_box .shipping_content .shipping_title span {
  font-size: 5.6rem;
  color: #FFFFFE;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #E6E8EA;
  position: relative;
}
.shipping_box .shipping_content .shipping_title span::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 10.7rem;
  height: 0.2rem;
  background-color: #0055B8;
}
.shipping_box .shipping_content .shipping_info {
  margin-top: 7rem;
  color: #fff;
}
.shipping_box .shipping_content .shipping_info span {
  display: block;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.shipping_box .shipping_content .shipping_info p {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.shipping_box .shipping_content .shipping_know {
  margin-top: 8rem;
  display: inline-block;
}
.shipping_box .shipping_content .shipping_know a {
  padding: 0 1rem;
  height: 4.6rem;
  background: #FFFFFF;
  border: 0.1rem solid #F7F6F5;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #0052BF;
  white-space: nowrap;
}
.shipping_box .shipping_content .shipping_know a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  margin-left: 1.9rem;
  background: url("../image/shipping_know_icon.svg") no-repeat center;
  background-size: contain;
}
.shipping_box .shipping_content .shipping_swiper_component {
  margin-top: 8.5rem;
  position: relative;
  height: 4.5rem;
}
.shipping_box .shipping_content .shipping_swiper_component.cn {
  margin-top: 14rem;
}
.shipping_box .shipping_content .shipping_swiper_component::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.2rem;
  background: #fff;
  opacity: 0.3;
}
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-next,
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-prev {
  width: 4.5rem;
  height: 4.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  --swiper-navigation-size: 4.5rem;
}
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-next::after,
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-prev::after {
  content: none;
}
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-next.swiper-button-disabled,
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-prev {
  left: 0;
  background-image: url("../image/swiper_left.png");
  transform: rotate(0);
}
.shipping_box .shipping_content .shipping_swiper_component .swiper-button-next {
  right: 0;
  background-image: url("../image/swiper_right.png");
}
.shipping_box .shipping_content .shipping_swiper_component .shipping-swiper-pagination {
  height: 100%;
}
.shipping_box .shipping_content .shipping_swiper_component .shipping-swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.3;
  border: 1px solid #fff;
  margin: 0 1.85rem;
}
.shipping_box .shipping_content .shipping_swiper_component .shipping-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  border: none;
  width: 3.4rem;
  height: 3.4rem;
  background: url("../image/shipping_swiper_pagination_active.png") no-repeat center;
  background-size: 100%;
}
.shipping_box .shipping_content .shipping_parameter {
  margin-top: 5.4rem;
  height: 13.4rem;
  background: #F9FAFD;
  border-radius: 0rem 1.5rem 1.5rem 0rem;
}
.shipping_box .shipping_content .shipping_parameter ul {
  height: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}
.shipping_box .shipping_content .shipping_parameter ul li {
  position: relative;
  flex: 1;
}
.shipping_box .shipping_content .shipping_parameter ul li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 5.5rem;
  background: #0056B8;
  opacity: 0.54;
}
.shipping_box .shipping_content .shipping_parameter ul li .text {
  color: #303030;
  margin-right: 3rem;
}
.shipping_box .shipping_content .shipping_parameter ul li .text span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.shipping_box .shipping_content .shipping_parameter ul li .text p {
  font-size: 4rem;
  display: inline-block;
  position: relative;
}
.shipping_box .shipping_content .shipping_parameter ul li .text p em {
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  left: -25%;
  bottom: 0.5rem;
}
.shipping_box .shipping_content .shipping_parameter ul li .text i {
  font-size: 1.4rem;
  font-weight: 700;
}
.shipping_box .shipping_content .shipping_parameter ul li .icon {
  position: relative;
}
.shipping_box .shipping_content .shipping_parameter ul li .icon img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s;
}
.shipping_box .shipping_content .shipping_parameter ul li .icon img.active {
  opacity: 0;
}
.shipping_box .shipping_content .shipping_parameter ul li:hover .icon img {
  opacity: 0;
}
.shipping_box .shipping_content .shipping_parameter ul li:hover .icon img.active {
  opacity: 1;
}
@media only screen and (max-width: 1200px) {
  .shipping_box .shipping_content .shipping_parameter ul li .text {
    margin-right: 1rem;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .text p em {
    left: -30%;
    transform: scale(0.9);
  }
  .shipping_box .shipping_content .shipping_parameter ul li .icon img {
    max-width: 4rem;
  }
}
.shipping_box .shipping_small_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 31.8rem;
}
.shipping_box .shipping_small_img img {
  width: 100%;
}
.shipping_box::after {
  content: "";
  position: absolute;
  bottom: -2.4rem;
  right: 0;
  width: 83.6%;
  height: 2.4rem;
  background: #0056B8;
  box-shadow: 1.2rem 1.1rem 1.4rem 0.2rem rgba(0, 0, 0, 0.06);
  border-radius: 0rem 0rem 0rem 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .shipping_box {
    height: 60.24rem;
  }
  .shipping_box .shipping_swiper .left {
    display: none;
  }
  .shipping_box .shipping_content {
    width: 100%;
    margin: 0 auto;
    padding: 0 3.3rem;
    box-sizing: border-box;
  }
  .shipping_box .shipping_content .shipping_title {
    margin-top: 6.78rem;
  }
  .shipping_box .shipping_content .shipping_info {
    margin-top: 4.52rem;
  }
  .shipping_box .shipping_content .shipping_know {
    margin-top: 3.01rem;
  }
  .shipping_box .shipping_content .shipping_swiper_component {
    margin-top: 5rem;
  }
  .shipping_box .shipping_content .shipping_swiper_component.cn {
    margin-top: 8.28rem;
  }
  .shipping_box .shipping_content .shipping_parameter {
    width: 100%;
    position: absolute;
    left: 0;
    border-radius: initial;
  }
  .shipping_box .shipping_content .shipping_parameter.en {
    margin-top: 3.6rem;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .text p {
    font-weight: 700;
  }
  .shipping_box .shipping_small_img {
    display: none;
  }
  .shipping_box::after {
    width: 92%;
    bottom: -14.91rem;
    height: 1.51rem;
  }
  .shipping_box.en .shipping_content .shipping_info {
    transform: scale(0.9);
    transform-origin: left top;
  }
  .shipping_box.en .shipping_content .shipping_info span {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .shipping_box.en .shipping_content .shipping_info p:nth-last-of-type(2) {
    display: inline;
  }
  .shipping_box.en .shipping_content .shipping_know {
    margin-top: 0;
  }
  .shipping_box.en::after {
    bottom: -9.91rem;
  }
}
@media only screen and (max-width: 768px) {
  .shipping_box {
    height: 37.65rem;
  }
  .shipping_box .shipping_content .shipping_title {
    margin-top: 4rem;
  }
  .shipping_box .shipping_content .shipping_title span {
    font-size: 3.77rem;
  }
  .shipping_box .shipping_content .shipping_info {
    margin-top: 3rem;
  }
  .shipping_box .shipping_content .shipping_info p {
    display: inline;
    line-height: 2.5rem;
  }
  .shipping_box .shipping_content .shipping_info p:nth-last-of-type(-n+2) {
    display: none;
  }
  .shipping_box .shipping_content .shipping_know {
    margin-top: 2.5rem;
    transform: scale(0.8);
    transform-origin: left;
  }
  .shipping_box .shipping_content .shipping_swiper_component.cn {
    margin-top: 3.5rem;
  }
  .shipping_box .shipping_content .shipping_parameter {
    margin-top: 1rem;
    height: 10rem;
  }
  .shipping_box .shipping_content .shipping_parameter ul li {
    align-items: flex-start;
    padding-top: 3rem;
  }
  .shipping_box .shipping_content .shipping_parameter ul li:first-of-type {
    flex: 0.8;
  }
  .shipping_box .shipping_content .shipping_parameter ul li:nth-of-type(3) .icon {
    left: -20%;
    top: -15%;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .text {
    margin-right: 0;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .text p {
    font-size: 1.81rem;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .text p em {
    position: initial;
    margin-right: 2px;
  }
  .shipping_box .shipping_content .shipping_parameter ul li .icon img {
    transform: scale(0.9);
    transform-origin: top left;
  }
  .shipping_box::after {
    height: 6.02rem;
    bottom: -11.5rem;
  }
  .shipping_box.en {
    height: 42rem;
  }
  .shipping_box.en .shipping_content .shipping_swiper_component {
    margin-top: 3rem;
  }
  .shipping_box.en .shipping_content .shipping_parameter {
    margin-top: 2.5rem;
  }
  .shipping_box.en .shipping_content .shipping_parameter ul li {
    align-items: center;
    padding-top: initial;
  }
  .shipping_box.en .shipping_content .shipping_parameter ul li .text {
    text-align: center;
  }
  .shipping_box.en .shipping_content .shipping_parameter ul li .icon {
    display: none;
  }
}

.news_box {
  margin-top: 2.4rem;
  margin-bottom: 8rem;
}
.news_box .h_298 {
  height: 29.8rem;
  box-sizing: border-box;
  padding: 10.2rem 0 9rem;
}
.news_box .news_content {
  display: flex;
  align-items: center;
}
.news_box .news_content .news_imgs {
  width: 82rem;
  height: 49.4rem;
  margin-right: 3rem;
  border-radius: 0 2rem 2rem 0;
}
.news_box .news_content .news_imgs ul {
  height: 100%;
  position: relative;
}
.news_box .news_content .news_imgs ul li {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  transition: all 0.6s;
}
.news_box .news_content .news_imgs ul li.active {
  opacity: 1;
}
.news_box .news_content .news_imgs ul li img {
  width: 100%;
}
.news_box .news_content .news_list {
  width: 74rem;
}
.news_box .news_content .news_list ul li {
  border-bottom: 0.2rem solid #B3B3B3;
  padding: 3.3rem 0;
  display: flex;
  justify-content: space-between;
}
.news_box .news_content .news_list ul li:first-of-type {
  border-top: 0.2rem solid #B3B3B3;
}
.news_box .news_content .news_list ul li .time {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #8B8A8A;
  line-height: 3.1rem;
  margin: 0 9.6rem 0 3rem;
  font-weight: 700;
}
.news_box .news_content .news_list ul li .time span {
  font-size: 3rem;
}
.news_box .news_content .news_list ul li .time i {
  font-size: 1.2rem;
}
.news_box .news_content .news_list ul li .time:after {
  content: "";
  opacity: 0;
  margin-top: 1.5rem;
  height: 1.8rem;
  background: url("../image/news_icon.svg") no-repeat center right;
  background-size: contain;
  transition: all 0.6s;
}
.news_box .news_content .news_list ul li .text {
  flex: 1;
  overflow: hidden;
}
.news_box .news_content .news_list ul li .text a {
  color: #8B8A8A;
}
.news_box .news_content .news_list ul li .text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.7rem;
}
.news_box .news_content .news_list ul li .text p {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.05rem;
}
.news_box .news_content .news_list ul li.active .time {
  color: #303030;
}
.news_box .news_content .news_list ul li.active .time::after {
  opacity: 1;
}
.news_box .news_content .news_list ul li.active .text a {
  color: #303030;
}
.news_box .view_more {
  margin-top: 8rem;
}
@media only screen and (max-width: 1024px) {
  .news_box .h_298 {
    margin-top: 10.54rem;
  }
  .news_box .news_content {
    display: initial;
  }
  .news_box .news_content .news_imgs {
    display: none;
  }
  .news_box .news_content .news_list {
    width: 100%;
    padding: 0 3.3rem;
    box-sizing: border-box;
  }
  .news_box .news_content .news_list ul li {
    flex-direction: column;
    padding: 0;
  }
  .news_box .news_content .news_list ul li:last-of-type {
    border: none;
  }
  .news_box .news_content .news_list ul li:first-of-type {
    padding-bottom: 3.77rem;
    border-top: none;
  }
  .news_box .news_content .news_list ul li:first-of-type .text {
    box-shadow: 0.3rem 0.3rem 2.26rem 0rem rgba(0, 0, 0, 0.04);
  }
  .news_box .news_content .news_list ul li .time {
    display: none;
  }
  .news_box .news_content .news_list ul li > .wap {
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
  }
  .news_box .news_content .news_list ul li > .wap img {
    width: 100%;
    transform: scale(1.4);
  }
  .news_box .news_content .news_list ul li .text {
    padding: 2.41rem;
  }
  .news_box .news_content .news_list ul li .text h3 {
    font-size: 2.41rem;
    line-height: 3.5rem;
    color: #303030;
  }
  .news_box .news_content .news_list ul li .text p {
    margin: 3.92rem 0 2.41rem;
    color: #403F3F;
    font-size: 1.96rem;
    line-height: 2.86rem;
  }
  .news_box .news_content .news_list ul li .text .wap_time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.01rem;
  }
  .news_box .news_content .news_list ul li .text .wap_time span {
    color: #403F3F;
    font-weight: 700;
  }
  .news_box .news_content .news_list ul li .text .wap_time::after {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background: url("../image/wap_news_icon.png") no-repeat center right;
    background-size: contain;
  }
  .news_box .news_content .news_list ul li:hover .text h3 {
    color: #0056B8;
  }
  .news_box .news_content .news_list ul li:hover .text .wap_time::after {
    background: url("../image/wap_news_icon_active.png") no-repeat center right;
    background-size: contain;
  }
  .news_box .view_more {
    padding: 0 3.3rem;
    box-sizing: border-box;
    margin-top: 1rem;
  }
  .news_box .view_more a {
    width: 100%;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    color: #1E1E1E;
    justify-content: space-between;
    padding: 0 2.71rem;
    box-sizing: border-box;
  }
  .news_box .view_more a::after {
    background: url(../image/wap_news_more.png) no-repeat center;
    background-size: 100% 100%;
  }
  .news_box.en .h_298 {
    height: initial;
    padding: 6rem 0;
  }
}

/* 关于我们 */
.about_one {
  padding: 11.1rem 0 10.5rem;
  position: relative;
}
.about_one .about_one_introduce .introduce_tit {
  max-width: 65rem;
  margin-bottom: 10rem;
}
.about_one .about_one_introduce .introduce_tit span {
  display: block;
  font-size: 5rem;
  color: #333333;
}
.about_one .about_one_introduce .introduce_tit span + span {
  margin: 1rem 0 4.6rem;
}
.about_one .about_one_introduce .introduce_tit span i {
  font-weight: 700;
}
.about_one .about_one_introduce .introduce_tit p {
  font-size: 2.3rem;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
}
.about_one .about_one_introduce .introduce_info i {
  font-size: 2.4rem;
  color: #333333;
  line-height: 1.5rem;
}
.about_one .about_one_introduce .introduce_info .year {
  margin: 3rem 0;
  display: flex;
  align-items: flex-end;
}
.about_one .about_one_introduce .introduce_info .year .counter {
  color: #0558DF;
  font-size: 13.2rem;
  margin-right: 3.6rem;
  width: 31rem;
}
.about_one .about_one_introduce .introduce_info .year span {
  font-size: 5rem;
  color: #333333;
  padding-bottom: 1.3rem;
  border-bottom: 0.2rem solid #0055B8;
}
.about_one .about_one_introduce .introduce_info p {
  font-size: 2.3rem;
  color: #333333;
  line-height: 3.4rem;
}
.about_one .about_one_introduce .introduce_info p + p {
  margin-top: 1rem;
}
.about_one .about_one_img {
  position: absolute;
  top: 11.1rem;
  right: 0;
  overflow: hidden;
  width: 80.7rem;
  height: 49.8rem;
}
.about_one .about_one_img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 2s;
}
.about_one .about_one_img:hover img {
  transform: scale(1);
}

.about_two {
  height: 102.5rem;
  position: relative;
  background: url("../image/about_two_img.png") no-repeat center top;
  background-size: 100%;
}
.about_two .about_two_main {
  padding-top: 20.3rem;
}
.about_two .about_two_main .text_box {
  text-align: right;
  color: #FFFFFF;
  text-shadow: 0.2rem 0.3rem 0.3rem rgba(0, 24, 69, 0.35);
}
.about_two .about_two_main .text_box span {
  font-size: 5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10.2rem;
}
.about_two .about_two_main .text_box p {
  font-size: 4rem;
  line-height: 6rem;
}
.about_two .about_two_main .product_lis {
  margin-top: 17rem;
}
.about_two .about_two_main .product_lis ul {
  display: flex;
  justify-content: space-between;
}
.about_two .about_two_main .product_lis ul li {
  width: 30.7rem;
}
.about_two .about_two_main .product_lis ul li .img {
  overflow: hidden;
  box-shadow: 0rem 0.4rem 1rem 0.4rem rgba(0, 0, 0, 0.35);
}
.about_two .about_two_main .product_lis ul li .img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 0.6s;
}
.about_two .about_two_main .product_lis ul li span {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  color: #2A2B2F;
  font-size: 2rem;
}
.about_two .about_two_main .product_lis ul li:hover img {
  transform: scale(1);
}

.about_three {
  background-color: #FBFBFB;
  padding-top: 8.5rem;
}
.about_three .about_three_main .about_three_title {
  text-align: center;
}
.about_three .about_three_main .about_three_title span {
  font-size: 5rem;
  font-weight: 700;
  padding-bottom: 3rem;
  border-bottom: 0.4rem solid #0558DF;
}
.about_three .about_three_main .about_three_title p {
  margin-top: 7.5rem;
  color: #333333;
  font-size: 4rem;
}
.about_three .about_three_main .about_three_swiper {
  margin-top: 7rem;
  position: relative;
}
.about_three .about_three_main .about_three_swiper .swiper-slide img {
  width: 100%;
}
.about_three .about_three_main .about_three_swiper .swiper-button {
  height: 19rem;
}
.about_three .about_three_main .about_three_swiper .swiper-button .swiper-button-next,
.about_three .about_three_main .about_three_swiper .swiper-button .swiper-button-prev {
  --swiper-navigation-size: 2.3rem;
  position: initial;
  width: 6rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 50%;
  color: #9e9e9e;
  box-shadow: 0rem 0rem 0.2rem 0.3rem #f1f1f1;
}
.about_three .about_three_main .about_three_swiper .swiper-button .swiper-button-disabled {
  box-shadow: none;
}
.about_three .about_three_main .about_three_swiper .swiper-button .swiper-button-next {
  margin-left: 2.8rem;
}

/* 里程碑 */
.milestone_main {
  display: flex;
  padding-top: 12rem;
  height: 52rem;
  overflow: auto;
  padding-bottom: 5rem;
}
.milestone_main .milestone_time_old {
  width: 32rem;
  height: 100%;
  padding: 0 6.8rem 0 9.5rem;
  box-sizing: border-box;
}
.milestone_main .milestone_time_old .swiper-wrapper {
  border-left: 1px solid #F3F3F3;
}
.milestone_main .milestone_time_old .swiper-wrapper .swiper-slide {
  color: #F3F3F3;
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.milestone_main .milestone_time_old .swiper-wrapper .swiper-slide::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #F3F3F3;
  border-radius: 50%;
  transform: translateX(-50%);
}
.milestone_main .milestone_time_old .swiper-wrapper .swiper-slide + .swiper-slide {
  margin-top: 5rem;
}
.milestone_main .milestone_time_old .swiper-wrapper .swiper-slide.swiper-slide-active {
  color: #0066DD;
}
.milestone_main .milestone_time_old .swiper-wrapper .swiper-slide.swiper-slide-active::before {
  background-color: #0066DD;
  box-shadow: 0 0 0 0.5rem #fff, 0 0 0 0.7rem #0066DD;
}
.milestone_main .milestone_time {
  width: 32rem;
  padding: 0 6.8rem 0 9.5rem;
  box-sizing: border-box;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  transition: all 0.6s ease;
}
.milestone_main .milestone_time::-webkit-scrollbar {
  display: none;
}
.milestone_main .milestone_time ul {
  border-left: 1px solid #F3F3F3;
}
.milestone_main .milestone_time ul li {
  color: #F3F3F3;
  font-size: 5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.milestone_main .milestone_time ul li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #F3F3F3;
  border-radius: 50%;
  transform: translateX(-50%);
}
.milestone_main .milestone_time ul li + li {
  margin-top: 5rem;
}
.milestone_main .milestone_time ul li.active {
  color: #0066DD;
}
.milestone_main .milestone_time ul li.active::before {
  background-color: #0066DD;
  box-shadow: 0 0 0 0.5rem #fff, 0 0 0 0.7rem #0066DD;
}
.milestone_main .milestone_list {
  width: 128rem;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide {
  border-top: 0.2rem solid #F3F3F3;
  padding: 5rem 0 11rem;
  position: relative;
  box-sizing: border-box;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 17rem;
  height: 0.8rem;
  background: #888787;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a {
  display: flex;
  justify-content: space-between;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .img {
  width: 54rem;
  height: 36rem;
  border-radius: 0.7rem;
  margin-right: 6rem;
  overflow: hidden;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 0.6s;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .text {
  flex: 1;
  overflow: hidden;
  color: #121212;
  font-size: 3rem;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .text span {
  font-weight: 700;
  position: relative;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .text span::after {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  width: 1.2rem;
  height: 0.4rem;
  background-color: #fff;
  transition: all 0.6s;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide a .text p {
  margin-top: 7rem;
  line-height: 5.2rem;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide.swiper-slide-active::before {
  background-color: #0066DD;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide.swiper-slide-active a .text span {
  color: #0066DD;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide.swiper-slide-active a .text span::after {
  background-color: #0066DD;
}
.milestone_main .milestone_list .swiper-wrapper .swiper-slide.swiper-slide-active a .text p {
  color: #0066DD;
}