.breadcrumbs {
  border-top: 1px solid #CCCCCC;
  margin-top: 128px;
}

.news_box {
  width: 100%;
  height: auto;
  padding: 0px 0 186px;
  background: #fff;
}

.news_box .news_cat {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.news_box .news_cat .cat_item {
  margin-right: 15px;
  margin-top: 20px;
  text-align: center;
  line-height: 40px;
  font-weight: 400;
  font-size: 14px;
  color: #696969;
  padding: 0 15px;
  cursor: pointer;
  width: auto;
  height: 40px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(105, 105, 105, 0.33);
}

.news_box .news_cat .cat_item:hover {
  color: #fff;
  border: 1px solid #2FA8FF;
  background: #2FA8FF;
}

.news_box .news_cat .cat_item.active {
  color: #fff;
  border: 1px solid #2FA8FF;
  background: #2FA8FF;
}

.news_box .news_content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.news_box .news_content .item {
  margin-right: 21px;
  margin-top: 25px;
  width: 386px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.news_box .news_content .item:nth-of-type(3n) {
  margin-right: 0;
}

.news_box .news_content .item:hover .img_box img {
  transform: scale(1.2);
}

.news_box .news_content .item:hover .item_box a {
  background: #2FA8FF;
  color: #fff;
}

.news_box .news_content .item .img_box {
  width: 386px;
  height: 266px;
  overflow: hidden;
}

.news_box .news_content .item .img_box img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.news_box .news_content .item .item_box {
  width: 100%;
  height: 250px;
  border: 1px solid rgba(153, 153, 153, 0.53);
  border-top: none;
  padding: 23px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 10px 10px;
}

.news_box .news_content .item .item_box .item_title {
  height: 60px;
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  line-height: 30px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news_box .news_content .item .item_box .item_desc {
  text-align: center;
  margin-top: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 24px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news_box .news_content .item .item_box a {
  margin-top: 20px;
  padding: 14px 20px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #2FA8FF;
  border-radius: 10px;
  border: 1px solid rgba(47, 168, 255, 0.53);
}

.review {
  width: 100%;
  height: auto;
  padding: 88px 0 68px;
  background: #F1F3F5;
}

.review .review_box {
  width: 100%;
  height: auto;
}

.review .review_box h2 {
  font-weight: 400;
  font-size: 60px;
  color: #000;
  text-align: center;
  margin-bottom: 81px;
}

.review .review_box .review_top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.review .review_box .review_top .item {
  width: 373px;
  margin-right: 40px;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 8px 8px 0px rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 30px;
}

.review .review_box .review_top .item:last-child {
  margin-right: 0;
}

.review .review_box .review_top .item .img_box {
  width: 100%;
  height: 176px;
  overflow: hidden;
}

.review .review_box .review_top .item .img_box img {
  cursor: pointer;
  max-width: 100%;
  height: 100%;
  object-fit: fill;
}

.review .review_box .review_top .item .img_box video {
  width: 100%;
  height: 100%;
}

.review .review_box .review_top .item .item_box {
  width: 100%;
  height: auto;
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review .review_box .review_top .item .item_box .item_desc {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #696969;
  line-height: 28px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review .review_box .review_top .item .item_box .item_desc * {
  text-align: center !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #696969 !important;
  line-height: 28px !important;
}

.review .review_box .review_top .item .item_box .item_star {
  margin-top: 24px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.review .review_box .review_top .item .item_box .item_star img {
  width: 19px;
  height: 18px;
  margin-right: 8px;
}

.review .review_box .review_top .item .item_box .item_star img:last-child {
  margin-right: 0;
}

.review .review_box .review_top .item .item_box .item_name {
  margin-top: 27px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

.review .review_box .review_top .item .item_box .item_country {
  margin-top: 16px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

.review .review_box .review_top .swiper-button-prev {
  top: 50%;
  left: -50px;
  width: 14px;
  height: 23px;
}

.review .review_box .review_top .swiper-button-prev img {
  width: 100%;
  height: 100%;
}

.review .review_box .review_top .swiper-button-prev::after {
  content: '';
}

.review .review_box .review_top .swiper-button-next {
  top: 50%;
  right: -50px;
  width: 14px;
  height: 23px;
}

.review .review_box .review_top .swiper-button-next img {
  width: 100%;
  height: 100%;
}

.review .review_box .review_top .swiper-button-next::after {
  content: '';
}

.review .review_box .review_center {
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.review .review_box .review_center a {
  cursor: pointer;
  border: none;
  padding: 24px 80px;
  background: #2FA8FF;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}

.review .review_box .review_bot {
  margin-top: 75px;
  width: 100%;
  height: 161px;
  background: #FFFFFF;
  box-shadow: 0px 8px 8px 0px rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.review .review_box .review_bot .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review .review_box .review_bot .item .img_box {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.review .review_box .review_bot .item .img_box img {
  width: 100%;
  height: 100%;
}

.review .review_box .review_bot .item .item_title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}

.review .review_box .review_bot .item .item_desc {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #777;
}

.need_help {
  width: 100%;
  height: 532px;
  position: relative;
}

.need_help > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.need_help .need_content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.need_help .need_content .safearea {
  padding-top: 113px;
}

.need_help .need_content .safearea .need_title {
  text-align: left;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
}

.need_help .need_content .safearea .need_desc {
  text-align: left;
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}

.need_help .need_content .safearea .need_desc a {
  font-weight: 400;
  font-size: 18px;
  color: #2FA8FF;
}

.img_popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.img_popup .turn_close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-size: 30px;
}

.img_popup .img_content {
  max-width: 600px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img_popup .img_content img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    border-top: none;
    margin-top: 19.73333vw;
  }
  .news_box {
    width: 100%;
    height: auto;
    padding: 0vw 0 10.66667vw;
    background: #fff;
  }
  .news_box .news_cat {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 2.66667vw;
    padding-bottom: 1.33333vw;
  }
  .news_box .news_cat .cat_item {
    flex-shrink: 0;
    margin-right: 2.66667vw;
    margin-top: 2.66667vw;
    text-align: center;
    line-height: 10.13333vw;
    font-weight: 400;
    font-size: 3.73333vw;
    color: #696969;
    cursor: pointer;
    padding: 0 5.33333vw;
    width: auto;
    height: 10.13333vw;
    background: transparent;
    border-radius: 1.33333vw;
    border: 0.13333vw solid rgba(105, 105, 105, 0.33);
  }
  .news_box .news_cat .cat_item:hover {
    color: #fff;
    border: 0.13333vw solid #2FA8FF;
    background: #2FA8FF;
  }
  .news_box .news_cat .cat_item.active {
    color: #fff;
    border: 0.13333vw solid #2FA8FF;
    background: #2FA8FF;
  }
  .news_box .news_content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .news_box .news_content .item {
    margin-right: 0vw;
    margin-top: 3.33333vw;
    width: 92vw;
    height: auto;
    border-radius: 1.33333vw;
    overflow: hidden;
  }
  .news_box .news_content .item:nth-of-type(3n) {
    margin-right: 0;
  }
  .news_box .news_content .item:hover .img_box img {
    transform: scale(1.2);
  }
  .news_box .news_content .item:hover .item_box a {
    background: #2FA8FF;
    color: #fff;
  }
  .news_box .news_content .item .img_box {
    width: 92vw;
    height: 63.33333vw;
    overflow: hidden;
  }
  .news_box .news_content .item .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
  }
  .news_box .news_content .item .item_box {
    width: 100%;
    height: auto;
    border: 0.13333vw solid rgba(153, 153, 153, 0.53);
    border-top: none;
    padding: 3.06667vw 4vw 3.73333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 1.33333vw 1.33333vw;
  }
  .news_box .news_content .item .item_box .item_title {
    height: auto;
    text-align: center;
    font-weight: 400;
    font-size: 4.53333vw;
    color: #000000;
    line-height: 1.625;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news_box .news_content .item .item_box .item_desc {
    text-align: center;
    margin-top: 3.2vw;
    font-weight: 400;
    font-size: 3.46667vw;
    color: #999999;
    line-height: 5.2vw;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news_box .news_content .item .item_box a {
    margin-top: 2.66667vw;
    padding: 1.86667vw 4vw;
    display: inline-block;
    font-weight: 400;
    font-size: 3.2vw;
    color: #2FA8FF;
    border-radius: 1.33333vw;
    border: 0.13333vw solid rgba(47, 168, 255, 0.53);
  }
  .review {
    width: 100%;
    height: auto;
    padding: 5.33333vw 0 5.33333vw;
    background: #F1F3F5;
  }
  .review .review_box {
    width: 100%;
    height: auto;
  }
  .review .review_box h2 {
    font-weight: 400;
    font-size: 7.2vw;
    color: #000;
    text-align: center;
    margin-bottom: 2.66667vw;
  }
  .review .review_box .review_top {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .review .review_box .review_top .item {
    margin-top: 2.66667vw;
    margin-right: 2.66667vw;
    width: 92% !important;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0vw 1.06667vw 1.06667vw 0vw rgba(51, 51, 51, 0.1);
    border-radius: 1.33333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4.26667vw 4vw;
  }
  .review .review_box .review_top .item .img_box {
    width: 100%;
    height: 51.73333vw;
    overflow: hidden;
  }
  .review .review_box .review_top .item .img_box img {
    max-width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .review .review_box .review_top .item .img_box video {
    width: 100%;
    height: 100%;
  }
  .review .review_box .review_top .item .item_box {
    width: 100%;
    height: auto;
    margin-top: 4.93333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .review .review_box .review_top .item .item_box .item_desc {
    text-align: center;
    font-weight: 400;
    font-size: 3.46667vw;
    color: #696969;
    line-height: 1.71;
  }
  .review .review_box .review_top .item .item_box .item_star {
    margin-top: 3.2vw;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .review .review_box .review_top .item .item_box .item_star img {
    width: 3.16667vw;
    height: 3vw;
    margin-right: 1.06667vw;
  }
  .review .review_box .review_top .item .item_box .item_star img:last-child {
    margin-right: 0;
  }
  .review .review_box .review_top .item .item_box .item_name {
    margin-top: 3.6vw;
    text-align: center;
    font-weight: 400;
    font-size: 3.2vw;
    color: #999999;
  }
  .review .review_box .review_top .item .item_box .item_country {
    margin-top: 2.66667vw;
    text-align: center;
    font-weight: 400;
    font-size: 3.2vw;
    color: #999999;
  }
  .review .review_box .review_top .swiper-button-prev {
    display: none;
    top: 50%;
    left: -50px;
    width: 14px;
    height: 23px;
  }
  .review .review_box .review_top .swiper-button-prev img {
    width: 100%;
    height: 100%;
  }
  .review .review_box .review_top .swiper-button-prev::after {
    content: '';
  }
  .review .review_box .review_top .swiper-button-next {
    display: none;
    top: 50%;
    right: -50px;
    width: 14px;
    height: 23px;
  }
  .review .review_box .review_top .swiper-button-next img {
    width: 100%;
    height: 100%;
  }
  .review .review_box .review_top .swiper-button-next::after {
    content: '';
  }
  .review .review_box .review_center a {
    cursor: pointer;
    border: none;
    padding: 3.2vw 10.66667vw;
    background: #2FA8FF;
    border-radius: 1.33333vw;
    font-weight: 400;
    font-size: 3.73333vw;
    color: #FFFFFF;
  }
  .review .review_box .review_bot {
    margin-top: 5.33333vw;
    width: 100%;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 1.33333vw;
    padding: 0vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .review .review_box .review_bot .item {
    width: 100%;
    margin-top: 2.66667vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5.33333vw;
    background: #fff;
    box-shadow: 0vw 1.06667vw 1.06667vw 0vw rgba(51, 51, 51, 0.2);
  }
  .review .review_box .review_bot .item .img_box {
    width: 8.33333vw;
    height: 8.33333vw;
    overflow: hidden;
  }
  .review .review_box .review_bot .item .img_box img {
    width: 100%;
    height: 100%;
  }
  .review .review_box .review_bot .item .item_title {
    margin-top: 2.66667vw;
    margin-left: 0vw;
    font-weight: 700;
    font-size: 3.33333vw;
    color: #000000;
  }
  .review .review_box .review_bot .item .item_desc {
    margin-top: 1.33333vw;
    margin-left: 0vw;
    font-weight: 400;
    font-size: 2.93333vw;
    color: #777;
  }
  .need_help {
    width: 100%;
    height: 70.93333vw;
    position: relative;
  }
  .need_help > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .need_help .need_content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .need_help .need_content .safearea {
    padding-top: 15.06667vw;
  }
  .need_help .need_content .safearea .need_title {
    text-align: left;
    font-weight: 400;
    font-size: 4.53333vw;
    color: #FFFFFF;
  }
  .need_help .need_content .safearea .need_desc {
    text-align: left;
    margin-top: 2.13333vw;
    font-weight: 400;
    font-size: 3.73333vw;
    color: #FFFFFF;
  }
  .need_help .need_content .safearea .need_desc a {
    font-weight: 400;
    font-size: 3.73333vw;
    color: #2FA8FF;
  }
  .img_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  .img_popup .turn_close {
    cursor: pointer;
    width: 5.33333vw;
    height: 5.33333vw;
    position: absolute;
    top: 5.33333vw;
    right: 5.33333vw;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 20;
    font-size: 4vw;
  }
  .img_popup .img_content {
    max-width: auto;
    width: 92vw;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .img_popup .img_content img {
    width: 100%;
    height: auto;
  }
}
