@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes showing {
  from {
    opacity: 0%;
    transform: scale(0, 0);
  }
  to {
    opacity: 100%;
    transform: scale(1, 1);
  }
}
@keyframes wave {
  5% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  7% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  9% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  11% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100%,
  13% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes mouse {
  0% {
    left: 445px;
    top: 305px;
  }
  25% {
    left: 445px;
    top: 305px;
  }
  28% {
    left: 445px;
    top: 305px;
  }
  75% {
    top: 80px;
    left: 150px;
  }
  76% {
    opacity: 1;
  }
  100% {
    top: 305px;
    left: 445px;
    opacity: 0;
  }
}
@keyframes mouse_2 {
  0% {
    left: 470px;
    top: 190px;
  }
  25% {
    left: 470px;
    top: 190px;
  }
  30% {
    left: 470px;
    top: 190px;
  }
  75% {
    top: 80px;
    left: 150px;
  }
  77% {
    opacity: 1;
  }
  100% {
    left: 420px;
    top: 155px;
    opacity: 0;
  }
}
@keyframes drag {
  0% {
    bottom: -35px;
    right: -35px;
    transform: scale(1);
    opacity: 0;
  }
  25% {
    bottom: -35px;
    right: -35px;
    transform: scale(1);
    opacity: 1;
  }
  30% {
    bottom: -35px;
    right: -35px;
    transform: scale(1.2);
  }
  75% {
    bottom: 170px;
    right: 205px;
    transform: scale(1.2);
  }
  77% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.6);
  }
  100% {
    bottom: 170px;
    right: 205px;
    transform: scale(0.6);
    opacity: 1;
  }
}
@keyframes drag_2 {
  0% {
    bottom: 90px;
    right: -35px;
    transform: scale(1);
    opacity: 0;
  }
  25% {
    bottom: 90px;
    right: -35px;
    transform: scale(1);
    opacity: 1;
  }
  30% {
    bottom: 90px;
    right: -35px;
    transform: scale(1.2);
  }
  75% {
    bottom: 195px;
    right: 250px;
    transform: scale(1.2);
  }
  77% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.6);
  }
  100% {
    bottom: 195px;
    right: 250px;
    transform: scale(0.6);
    opacity: 1;
  }
}
@keyframes selected {
  0% {
    opacity: 0;
  }
  77% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#paweditor div {
  transition: all 180ms linear;
}
.scroll-animate {
  transition-duration: 500ms;
  transition-timing-function: ease-out;
  transition-delay: 200ms;
}
.scroll-animate__show {
  opacity: 0;
  transform: translateY(100px);
}
.scroll-animate__show.animate-active {
  opacity: 1;
  transform: translateY(0px);
}
.scroll-animate__from_left {
  opacity: 0;
  transform: translateX(-100px);
}
.scroll-animate__from_left.animate-active {
  opacity: 1;
  transform: translate(0px);
}
.scroll-animate__from_right {
  opacity: 0;
  transform: translateX(100px);
}
.scroll-animate__from_right.animate-active {
  opacity: 1;
  transform: translateX(0px);
}
.scroll-animate__scale {
  opacity: 0;
  transform: scale(0, 0);
  transform-origin: 50% 50%;
}
.scroll-animate__scale.animate-active {
  opacity: 1;
  transform: scale(1, 1);
}
.scroll-animate__animation-waving {
  transform: scale(0, 0);
}
.scroll-animate__animation-waving.animate-active {
  animation: showing 800ms ease-in-out 200ms forwards, wave 2000ms ease-in-out 700ms forwards;
}
@media (max-width: 767px) {
  #support .support-item img {
    height: auto;
  }
}
@media (max-width: 500px) {
  .support-box {
    margin-top: 25px;
  }
}
.support-box .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.support-box .support-item {
  width: 150px;
  height: 62px;
  line-height: 60px;
  border-right: 1px dashed #ccc;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .support-box .support-item {
    width: 115px;
    height: 46px;
    line-height: 46px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item {
    width: 72px;
    height: 28px;
    line-height: 28px;
  }
}
.support-box .support-item:last-child {
  border-right: none;
}
.support-box .support-item.item-01 img {
  width: 80px;
  height: 31px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-01 img {
    width: 70px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-01 img {
    width: 35px;
  }
}
.support-box .support-item.item-02 img {
  width: 86px;
  height: 40px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-02 img {
    width: 74px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-02 img {
    width: 38px;
  }
}
.support-box .support-item.item-03 img {
  width: 124px;
  height: 21px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-03 img {
    width: 100px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-03 img {
    width: 62px;
  }
}
@media screen and (max-width: 779px) and (min-width: 768px) {
  .support-box .support-item.item-04 {
    border-right: none;
  }
}
@media screen and (max-width: 604px) and (min-width: 501px) {
  .support-box .support-item.item-04 {
    border-right: none;
  }
}
@media screen and (max-width: 389px) {
  .support-box .support-item.item-04 {
    border-right: none;
  }
}
.support-box .support-item.item-04 img {
  width: 108px;
  height: 29px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-04 img {
    width: 84px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-04 img {
    width: 58px;
  }
}
@media screen and (max-width: 929px) and (min-width: 780px) {
  .support-box .support-item.item-05 {
    border-right: none;
  }
}
@media screen and (max-width: 719px) and (min-width: 605px) {
  .support-box .support-item.item-05 {
    border-right: none;
  }
}
@media screen and (max-width: 461px) and (min-width: 390px) {
  .support-box .support-item.item-05 {
    border-right: none;
  }
}
.support-box .support-item.item-05 img {
  width: 85px;
  height: 20px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-05 img {
    width: 80px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-05 img {
    width: 38px;
  }
}
@media screen and (max-width: 1079px) and (min-width: 930px) {
  .support-box .support-item.item-06 {
    border-right: none;
  }
}
@media screen and (max-width: 767px) and (min-width: 720px) {
  .support-box .support-item.item-06 {
    border-right: none;
  }
}
@media screen and (max-width: 500px) and (min-width: 462px) {
  .support-box .support-item.item-06 {
    border-right: none;
  }
}
.support-box .support-item.item-06 img {
  width: 120px;
  height: 34px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-06 img {
    width: 96px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-06 img {
    width: 55px;
  }
}
.support-box .support-item.item-07 img {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .support-box .support-item.item-07 img {
    width: 26px;
  }
}
@media (max-width: 500px) {
  .support-box .support-item.item-07 img {
    width: 18px;
  }
}
.overview {
  font-family: "OpenSans-Regular";
}
.overview p {
  margin-bottom: 0;
}
.overview ul,
.overview li {
  list-style-type: none;
  padding: 0;
}
.overview h2 {
  font-size: 30px;
  text-align: center;
  color: #000000;
  margin: 0 0 50px 0;
  font-family: "OpenSans-Extrabold";
  font-weight: bold;
}
.overview h2 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: inherit;
}
.overview img {
  max-width: 100%;
}
.overview .p1 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}
.overview .p2 {
  font-size: 15px;
  color: #666;
  line-height: 24px;
}
.overview .title {
  font-family: "OpenSans-Extrabold";
  font-weight: bold;
}
.overview .sub-title {
  font-size: 16px;
  color: #333;
  margin-top: -35px;
  margin-bottom: 40px;
  text-align: center;
}
.overview .button {
  display: none;
  vertical-align: top;
  width: 155px;
  height: 34px;
  border: 1px solid;
  font-size: 16px;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  transition: 0.4s;
}
.overview .button i {
  position: relative;
  margin-left: 5px;
  font-size: 14px;
}
.overview .button.buy {
  background-color: #fff;
  color: #000;
  margin-left: 30px;
  border: 2px solid #dcdddd;
}
.overview .button.buy:hover {
  border-color: #000;
  color: #000;
}
.overview .button.download {
  width: 155px;
  background-color: #2d8cff;
  border-color: #2d8cff;
  color: #fff;
}
.overview .button.download:hover {
  background-color: #067DF4;
  color: #fff;
}
.overview .comment .reviews h2 {
  margin-bottom: 0;
}
.overview .comment .more-part .more-box {
  display: flex;
  justify-content: space-around;
}
.overview .comment .more-part .more-box .box-wrap {
  padding: 15px;
  border: 2px solid #dcdddd;
  height: 282px;
  flex: 0 0 40%;
}
.overview .comment .more-part .more-box .box-wrap:hover {
  border: 2px solid #595757;
  box-shadow: 0 40px 25px 0px rgba(177, 187, 201, 0.2);
}
.overview .comment .more-part .more-box .box-wrap .box {
  height: 100%;
  background: url(../img/index-new/SVG/ddot.svg) no-repeat center center;
  background-size: contain;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overview .comment .more-part .more-box .box-wrap .box a {
  text-align: center;
}
.overview .comment .more-part .more-box .box-wrap .box img {
  width: 15%;
}
.overview .comment .more-part .more-box .box-wrap .box p {
  font-size: 16px;
  color: #231815;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
}
.overview .comment .more-part .more-box .box-wrap .box span {
  font-size: 16px;
  line-height: 28px;
  color: #595757;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .overview .comment .more-part .more-box {
    flex-direction: column;
  }
  .overview .comment .more-part .more-box .box-wrap {
    margin-top: 30px;
  }
}
.overview .comment .using-content {
  position: relative;
  background: #eaedf4;
  border-radius: 16px;
  padding-bottom: 70px;
}
.overview .comment .using-content h2 {
  padding-top: 70px;
}
.overview .comment .using-content .scorll-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.overview .comment .using-content .scorll-box #text-Navigation {
  width: 28%;
}
.overview .comment .using-content .scorll-box #text-Navigation::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 77%;
  border-left: 1px dashed #2d8cff;
  left: 8.5px;
  top: 8px;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide {
  display: flex;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide .circle {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px dashed #2d8cff58;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 4px;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide .circle .small-circle {
  width: 10px;
  height: 10px;
  background: #2d8cff58;
  border-radius: 50%;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide .text {
  width: 80%;
  margin-bottom: 25px;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide .text p {
  font-size: 18px;
  font-weight: bold;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide .text span {
  font-size: 16px;
  line-height: 28px;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide.swiper-slide-thumb-active .circle {
  border: 1px dashed #2d8cff;
}
.overview .comment .using-content .scorll-box #text-Navigation .swiper-slide.swiper-slide-thumb-active .circle .small-circle {
  background: #2d8cff;
}
.overview .comment .using-content .scorll-box #pic-content {
  width: 48%;
  text-align: center;
}
.overview .comment .using-content .scorll-box #pic-content img {
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  left: 0;
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-prev::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-l.svg) no-repeat 40% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-prev:hover {
  background: #2D8CFF;
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-next {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  right: 0;
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-next::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-r.svg) no-repeat 60% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .using-content .scorll-box #pic-content .swiper-button-next:hover {
  background: #2D8CFF;
}
.overview .comment .using-content .guide-box {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
.overview .comment .using-content .guide-box a {
  color: #ff7e78;
  position: relative;
}
.overview .comment .using-content .guide-box a::before {
  position: absolute;
  content: '>>';
  right: -25px;
}
.overview .comment .using-content .guide-box a:hover::before {
  right: -35px;
  transition: right 1.5s;
}
.overview .comment .using-content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -23px;
}
.overview .comment .using-content::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -20px;
}
@media screen and (max-width: 769px) {
  .overview .comment .using-content::before {
    display: none;
  }
  .overview .comment .using-content::after {
    display: none;
  }
  .overview .comment .using-content .scorll-box {
    flex-direction: column;
  }
  .overview .comment .using-content .scorll-box #text-Navigation {
    width: 40%;
  }
  .overview .comment .using-content .scorll-box #text-Navigation::before {
    content: '';
    display: none;
  }
  .overview .comment .using-content .scorll-box #pic-content {
    width: 70%;
    text-align: center;
    height: 240px;
  }
  .overview .comment .using-content .guide-box {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .using-content .scorll-box #text-Navigation {
    width: 90%;
  }
  .overview .comment .using-content .scorll-box #text-Navigation::before {
    content: '';
    display: none;
  }
  .overview .comment .using-content .scorll-box #pic-content {
    width: 90%;
    text-align: center;
    height: 240px;
  }
}
.overview .comment .product-buttons-area {
  padding: 50px 0;
  text-align: center;
}
.overview .comment .product-buttons-area h2 {
  color: #fff;
}
.overview .comment .product-buttons-area .button.download {
  background-color: transparent;
  color: #fff;
}
.overview .comment .product-buttons-area .button.download:hover {
  border-color: #000;
  color: #fff;
}
.overview .comment .product-buttons-area .pro-content {
  border-left: 1px dashed #fff;
  border-right: 1px dashed #fff;
}
@media screen and (max-width: 769px) {
  .overview .comment .product-buttons-area .pro-content {
    border-left: 0;
    border-right: 0;
  }
}
.overview .comment .product-buttons-area .product-btn-box {
  position: relative;
}
.overview .comment .product-buttons-area .product-btn-box::before {
  content: '';
  display: block;
  position: absolute;
  background: url('/static/img/adr_new/btn-bg-l.svg') no-repeat;
  width: 144px;
  height: 54px;
  left: 10px;
  top: 6px;
}
.overview .comment .product-buttons-area .product-btn-box::after {
  content: '';
  display: block;
  position: absolute;
  background: url('/static/img/adr_new/btn-bg-r.svg') no-repeat;
  width: 131px;
  height: 93px;
  top: -45px;
  right: 32px;
}
.overview .comment .product-buttons-area .product-btn-box .button {
  display: none;
  vertical-align: top;
  width: 155px;
  height: 34px;
  border: 1px solid;
  font-size: 16px;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  transition: 0.4s;
}
.overview .comment .product-buttons-area .product-btn-box .button.buy {
  background-color: #fff;
  color: #000;
  margin-left: 30px;
  border: 2px solid #dcdddd;
}
.overview .comment .product-buttons-area .product-btn-box .button.buy:hover {
  border-color: #000;
  color: #000;
}
.overview .comment .product-buttons-area .product-btn-box .button.download {
  width: 155px;
  background-color: #2d8cff;
  border-color: #2d8cff;
  color: #fff;
}
.overview .comment .product-buttons-area .product-btn-box .button.download:hover {
  background-color: #067DF4;
  color: #fff;
}
@media screen and (max-width: 769px) {
  .overview .comment .product-buttons-area .product-btn-box::after {
    display: none;
  }
  .overview .comment .product-buttons-area .product-btn-box::before {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .product-buttons-area .product-btn-box .button.buy {
    margin: auto;
  }
}
.overview .comment .product-buttons-area .product-btn-con {
  width: 80%;
  margin: auto;
  background: #0c132b;
  padding: 70px 90px;
  border-radius: 10px;
  position: relative;
}
.overview .comment .product-buttons-area .product-btn-con::before {
  content: '';
  display: block;
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  top: 37.5%;
  left: -43px;
}
.overview .comment .product-buttons-area .product-btn-con::after {
  content: '';
  display: block;
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  top: 37.5%;
  right: -43px;
}
@media screen and (max-width: 769px) {
  .overview .comment .product-buttons-area .product-btn-con {
    padding: 70px 30px;
  }
  .overview .comment .product-buttons-area .product-btn-con::after {
    display: none;
  }
  .overview .comment .product-buttons-area .product-btn-con::before {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .product-buttons-area .product-btn-con {
    width: 100%;
  }
}
.overview .comment .reviews {
  padding: 70px 0 0px;
}
.overview .comment .reviews .container {
  padding: 0;
}
@media screen and (max-width: 1080px) {
  .overview .comment .reviews .container {
    width: 100%;
    padding: 0px 15px;
  }
}
.overview .comment .reviews h2 {
  margin-bottom: 0;
}
.overview .comment .reviews hr {
  width: 35%;
  margin: 35px auto 45px;
  border-top: 1px solid #2d8cff;
}
@media screen and (max-width: 769px) {
  .overview .comment .reviews {
    padding: 30px 0 60px;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-bottom: 140px;
}
@media (max-width: 769px) {
  .overview .comment .reviews .slide-gallery-box-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper {
    margin-top: 2.5rem;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-next,
.overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-prev,
.overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-next,
.overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-prev {
  width: 1.5625rem;
  height: 1.5625rem;
  position: absolute;
  top: 40%;
  z-index: 2;
}
.overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-next,
.overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-next {
  right: 1.5625rem;
  background: url(../css/img/product/arrow.svg) no-repeat center center !important;
  transform: rotateY(180deg);
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-next,
  .overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-next {
    right: 0.3125rem;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-prev,
.overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-prev {
  left: 1.5625rem;
  background: url(../css/img/product/arrow.svg) no-repeat center center !important;
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .info-swiper-button-prev,
  .overview .comment .reviews .slide-gallery-box-wrapper .comment-swiper-button-prev {
    left: 0.3125rem;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-button-disabled {
  opacity: 0.6;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-box-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #cccccc;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide {
  width: 100%!important;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-desc {
  font-size: 16px;
  line-height: 1.8;
  margin: 2.5rem 0;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-logo img {
  width: 7.6875rem;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-link a {
  font-size: 16px;
  color: #2d8cff;
  font-weight: 800;
  position: relative;
  text-decoration: none;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-link a::before {
  content: '';
  display: block;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  background-color: #2d8cff;
  bottom: 0;
}
.overview .comment .reviews .slide-gallery-box-wrapper .swiper-slide .slide-gallery-box-name {
  font-size: 1.5rem;
  color: #2d8cff;
  font-weight: 800;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-info-box {
  width: 48%;
  text-align: center;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
  padding: 3.75rem;
  border: 4px solid transparent;
  position: relative;
}
@media (max-width: 769px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-info-box {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-info-box {
    padding: 1.875rem;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-box-active {
  border-color: #2d8cff !important;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box {
  text-align: center;
  width: 48%;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  padding: 3.75rem;
  border: 4px solid transparent;
  position: relative;
}
@media (max-width: 769px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box {
    padding: 1.875rem;
  }
}
@media (max-width: 769px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .swiper-slide {
    padding-bottom: 6.25rem;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .data-recovery-rating-area {
  display: flex;
  font-size: 0.875rem;
  width: 100%!important;
  height: 2.5rem;
  justify-content: center;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .data-recovery-rating-area img {
  width: 1.25rem;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .data-recovery-rating-area #rating-area #rating-hint {
  display: none;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .data-recovery-rating-area #rating-area .rating-detail {
  display: none;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  position: absolute;
  bottom: 13%;
  right: 0;
  z-index: 2;
  margin-top: 1.25rem;
}
@media (max-width: 600px) {
  .overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link {
    bottom: 10%;
  }
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link a {
  font-size: 16px;
  color: #2d8cff;
  font-weight: 800;
  position: relative;
  text-decoration: none;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2d8cff;
  bottom: 0;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link a span {
  margin-left: 0;
  transition: all 0.2s ease-in-out;
}
.overview .comment .reviews .slide-gallery-box-wrapper .slide-gallery-comment-box .slide-gallery-comment-link a:hover span {
  margin-left: 1.25rem;
}
.overview .comment .reviews .reviews-center {
  width: 80%;
  margin: auto;
  position: relative;
  margin-top: 60px;
  background: url(/static/img/adr_new/reviews-bg.svg) no-repeat center center;
  background-size: 20%;
}
@media screen and (max-width: 769px) {
  .overview .comment .reviews .reviews-center {
    background-size: 40%;
    width: 100%;
  }
}
.overview .comment .reviews .reviews-center .swiper-slide {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .overview .comment .reviews .reviews-center .swiper-slide {
    width: 250px;
    height: 590px;
  }
}
.overview .comment .reviews .reviews-center .swiper-slide .desrp {
  width: 100%;
  color: #595757;
  font-size: 16px;
  line-height: 28px;
  display: none;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.overview .comment .reviews .reviews-center .swiper-slide .desrp p {
  margin-top: 30px;
}
.overview .comment .reviews .reviews-center .swiper-slide .desrp span {
  color: #ff7e78;
}
.overview .comment .reviews .reviews-center .swiper-slide .desrp span a {
  color: #ff7e78;
  font-size: 16px;
}
.overview .comment .reviews .reviews-center .swiper-slide .img-wrap {
  text-align: center;
  margin-top: 50px;
}
.overview .comment .reviews .reviews-center .swiper-slide .img-wrap .head-pic {
  text-align: center;
  display: inline-block;
  width: 20%;
}
.overview .comment .reviews .reviews-center .swiper-slide .img-wrap p {
  color: #000;
  font-size: 16px;
  margin-top: 10px;
}
.overview .comment .reviews .reviews-center .swiper-slide-active .desrp {
  display: block;
  width: 100%;
}
.overview .comment .reviews .reviews-center span.swiper-pagination-bullet {
  background: #000;
}
.overview .comment .reviews .reviews-center .swiper-pagination {
  bottom: 115px;
}
.overview .comment .reviews .reviews-center .swiper-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  top: 20px;
}
.overview .comment .reviews .reviews-center .swiper-btn:hover {
  background: #2D8CFF;
}
.overview .comment .reviews .reviews-center .btn-prev {
  left: 0;
}
.overview .comment .reviews .reviews-center .btn-next {
  right: 0;
}
.overview .comment .reviews .reviews-center span.btn-prev::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-l.svg) no-repeat 40% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .reviews .reviews-center span.btn-next::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-r.svg) no-repeat 60% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .tutorials ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.overview .comment .tutorials ul li {
  flex: 0 0 45%;
  background: #fff;
  border-top: 16px solid #2d8cff;
  border-radius: 8px;
  padding: 15px 25px;
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
  margin-top: 15px;
}
.overview .comment .tutorials ul li a {
  color: #231815;
  font-size: 16px;
}
.overview .comment .tutorials ul li:nth-child(3) {
  border-top: 16px solid #ff7e78;
}
.overview .comment .tutorials ul li:nth-child(4) {
  border-top: 16px solid #ff7e78;
}
.overview .comment .tutorials ul li:nth-child(5) {
  border-top: 16px solid #78ddac;
}
.overview .comment .tutorials ul li:nth-child(6) {
  border-top: 16px solid #78ddac;
}
.overview .comment .tutorials ul li:hover {
  box-shadow: unset;
}
@media screen and (max-width: 769px) {
  .overview .comment .tutorials ul li {
    flex: 0 1 90%;
  }
  .overview .comment .tutorials ul li:nth-child(3n-0) {
    border-top: 16px solid #78ddac;
  }
  .overview .comment .tutorials ul li:nth-child(3n-1) {
    border-top: 16px solid #ff7e78;
  }
  .overview .comment .tutorials ul li:nth-child(4) {
    border-top: 16px solid #2d8cff;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .tutorials ul li {
    flex: 0 1 100%;
    padding: 15px 20px;
  }
}
.overview .comment .tutorials .content {
  transition: all 0.5s;
}
.overview .comment .tutorials .content .desc {
  text-align: center;
  margin: 100px auto 0;
}
.overview .comment .tutorials .content a {
  color: #ff7e78;
  position: relative;
  font-size: 16px;
}
.overview .comment .tutorials .content a:before {
  position: absolute;
  content: '>>';
  right: -25px;
  transition: right 1.5s;
}
.overview .comment .tutorials .content a:hover:before {
  right: -35px;
}
.overview .comment .tutorials .content .item {
  border-bottom: 1.5px solid #dcdddd;
  transition: all 0.5s;
  margin-bottom: 15px;
}
.overview .comment .tutorials .content .item .title {
  position: relative;
  font-size: 18px;
  color: #3e3a39;
  padding: 10px 0;
  display: block;
  font-weight: 400;
  line-height: 27px;
  font-family: "OpenSans-Regular";
}
.overview .comment .tutorials .content .item .title .pulldown {
  border-right: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  width: 10px;
  height: 10px;
  background-color: transparent;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 14px;
  transition: all 0.5s;
}
.overview .comment .tutorials .content .item .title .pulldown.pullup {
  transform: rotate(-135deg);
}
.overview .comment .tutorials .content .item .ans {
  font-size: 16px;
  line-height: 33px;
  width: 98%;
  margin-bottom: 25px;
  display: none;
}
.overview .comment .content-wrapper-5 {
  margin-top: 160px;
}
.overview .comment .content-wrapper-5::before {
  display: none;
}
.overview .comment .content-wrapper-5::after {
  display: none;
}
.overview .comment .content-wrapper-5 .using-content {
  position: relative;
  background: #eaedf4;
  border-radius: 16px;
  padding-bottom: 70px;
}
.overview .comment .content-wrapper-5 .using-content h3,
.overview .comment .content-wrapper-5 .using-content h2 {
  padding-top: 70px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 90px;
  margin-bottom: 30px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 {
  width: 327px;
  margin-top: 30px;
  height: 88px;
  cursor: pointer;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.07);
  background-color: #fff;
  border-radius: 10px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-wrapper,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-wrapper,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-wrapper {
  padding: 0 20px 0 30px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation.active,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2.active,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3.active {
  height: auto;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation:first-child,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2:first-child,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3:first-child {
  margin-top: 0;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3::before {
  display: none;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-title,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-title,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-title {
  font-size: 18px;
  line-height: 26px;
  width: 90%;
  padding: 20px 20px 20px 30px;
  font-family: opensans-extrabold;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide {
  display: flex;
  cursor: pointer;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide .circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide .circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide .circle {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px dashed #2d8cff58;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 7px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide .circle .small-circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide .circle .small-circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide .circle .small-circle {
  width: 10px;
  height: 10px;
  background: #2d8cff58;
  border-radius: 50%;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide .text,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide .text,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide .text {
  width: 70%;
  color: #595757;
  opacity: 0.4;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide .text span,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide .text span,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide .text span {
  font-size: 16px;
  line-height: 30px;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide.swiper-slide-thumb-active .circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide.swiper-slide-thumb-active .circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide.swiper-slide-thumb-active .circle {
  border: 1px dashed #2d8cff;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide.swiper-slide-thumb-active .circle .small-circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide.swiper-slide-thumb-active .circle .small-circle,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide.swiper-slide-thumb-active .circle .small-circle {
  background: #2d8cff;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation .swiper-slide.swiper-slide-thumb-active .text,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-2 .swiper-slide.swiper-slide-thumb-active .text,
.overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation-3 .swiper-slide.swiper-slide-thumb-active .text {
  color: #000;
  opacity: 1;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-2,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-3 {
  display: none;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 {
  width: 436px;
  text-align: center;
  display: none;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content.active,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2.active,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3.active {
  display: block;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-prev,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-prev,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  left: 0;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-prev::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-prev::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-prev::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-l.svg) no-repeat 40% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-prev:hover,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-prev:hover,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-prev:hover {
  background: #2D8CFF;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-next,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-next,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-next {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  right: 0;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-next::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-next::before,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-next::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-r.svg) no-repeat 60% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-button-next:hover,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-button-next:hover,
.overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-button-next:hover {
  background: #2D8CFF;
}
.overview .comment .content-wrapper-5 .using-content .guide-box {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
.overview .comment .content-wrapper-5 .using-content .guide-box a {
  color: #ff7e78;
  position: relative;
}
.overview .comment .content-wrapper-5 .using-content .guide-box a::before {
  position: absolute;
  content: '>>';
  right: -25px;
}
.overview .comment .content-wrapper-5 .using-content .guide-box a:hover::before {
  right: -35px;
  transition: right 1.5s;
}
.overview .comment .content-wrapper-5 .using-content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -23px;
}
.overview .comment .content-wrapper-5 .using-content::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -20px;
}
@media screen and (max-width: 769px) {
  .overview .comment .content-wrapper-5 .using-content::before {
    display: none;
  }
  .overview .comment .content-wrapper-5 .using-content::after {
    display: none;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box {
    flex-direction: column;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation {
    width: 40%;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation::before {
    content: '';
    display: none;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content {
    width: 70%;
    text-align: center;
    height: 240px;
  }
  .overview .comment .content-wrapper-5 .using-content .guide-box {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper {
    width: 100%;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation {
    width: 90%;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #text-Navigation::before {
    content: '';
    display: none;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 {
    display: none;
    width: 90%;
    text-align: center;
    height: 240px;
    height: auto;
    margin-top: 30px;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content.active,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2.active,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3.active {
    display: block;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-wrapper,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-wrapper,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-wrapper {
    padding: 0;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content .swiper-slide,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2 .swiper-slide,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 .swiper-slide {
    display: block;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-2,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-3 {
    width: 90%;
    text-align: center;
    height: 240px;
    height: auto;
    margin-top: 30px;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb.active,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-2.active,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-3.active {
    display: block;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb .swiper-wrapper,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-2 .swiper-wrapper,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-3 .swiper-wrapper {
    padding: 0;
  }
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb .swiper-slide,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-2 .swiper-slide,
  .overview .comment .content-wrapper-5 .using-content .scorll-box #pic-content-mb-3 .swiper-slide {
    display: block;
  }
}
.overview .box-list {
  display: flex;
}
.overview .banner {
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.overview .banner .content {
  text-align: center;
}
.overview .banner .content .p-title {
  font-size: 48px;
  color: #000;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
}
.overview .banner .content .raty-area {
  margin: 20px auto;
  width: 280px !important;
}
.overview .banner .content .raty-area a {
  float: right;
  font-size: 16px;
  color: #2d8cff;
  position: relative;
  top: 2px;
}
.overview .banner .content .raty-area img {
  width: 21px;
  height: 21px;
}
.overview .banner .content .p-desc {
  font-size: 16px;
  color: #595757;
  line-height: 34px;
  width: 66%;
  margin: 0 auto 25px;
}
.overview .banner .content .banner-desc {
  color: #2d8cff;
  font-size: 16px;
  margin-bottom: 15px;
}
.overview .banner .content .banner-desc a {
  color: #2d8cff;
  font-size: 16px;
}
.overview .banner .content ul {
  margin-bottom: 25px;
}
.overview .banner .content ul li {
  font-size: 18px;
  color: #595757;
  text-align: center;
  line-height: 32px;
}
@media (max-width: 600px) {
  .overview .banner .content ul li {
    font-size: 14px;
  }
}
.overview .banner .content ul li span {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  position: relative;
}
@media (max-width: 600px) {
  .overview .banner .content ul li span {
    text-align: left;
  }
}
.overview .banner .content ul li span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #9fa0a0;
  vertical-align: top;
  border-radius: 50%;
  position: relative;
  top: 14px;
  margin-right: 10px;
}
.overview .banner .content .switch-area .choose-btn {
  width: 60px;
  height: 30px;
  border: 2px solid #2d8cff;
  line-height: 30px;
  border-radius: 15px;
  margin: auto;
  position: relative;
  display: flex;
}
.overview .banner .content .switch-area .choose-btn .move {
  position: absolute;
  display: block;
  width: 50%;
  height: 30px;
  border-radius: 50%;
  background: #2d8cff;
  z-index: -1;
  top: -2px;
}
.overview .banner .content .switch-area .choose-btn span {
  color: #2d8cff33;
  display: block;
  width: 50%;
  line-height: 26px;
}
.overview .banner .content .switch-area .choose-btn span.active {
  color: #fff;
}
.overview .banner .content .buttons-area {
  margin-top: 30px;
}
.overview .banner .content .banner-pro-pic {
  width: 100%;
  text-align: center;
}
.overview .banner .content .banner-pro-pic img {
  max-width: 1000px;
}
.overview .inner-nav {
  padding-top: 40px;
  text-align: center;
  display: none;
}
.overview .inner-nav p {
  display: none;
}
.overview .inner-nav ul {
  display: inline-block;
  margin-bottom: 0;
}
.overview .inner-nav ul::after {
  content: "";
  display: block;
  clear: both;
}
.overview .inner-nav ul li {
  float: left;
  padding: 0 30px;
  border-left: 1.5px solid #999;
}
.overview .inner-nav ul li:last-child {
  border-right: 1.5px solid #999;
}
.overview .inner-nav ul li:hover a,
.overview .inner-nav ul li.active a {
  color: #0066cb;
}
.overview .inner-nav ul li a {
  font-size: 18px;
  color: #595757;
}
.overview .inner-nav .buttons-area {
  display: none;
}
.overview .inner-nav.scroll {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 63px;
  background-color: #fff;
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
  padding-top: 0;
  z-index: 100000;
}
.overview .inner-nav.scroll ul {
  float: left;
  height: 63px;
}
.overview .inner-nav.scroll ul li {
  border: none;
  line-height: 60px;
  margin-right: 20px;
  padding: 0;
  height: 63px;
}
.overview .inner-nav.scroll ul li a {
  font-size: 16px;
  color: #595757;
}
.overview .inner-nav.scroll ul li.active,
.overview .inner-nav.scroll ul li:hover {
  border-bottom: 3px solid #2d8cff;
}
.overview .inner-nav.scroll ul li.active a,
.overview .inner-nav.scroll ul li:hover a {
  color: #595757;
}
.overview .inner-nav.scroll .buttons-area-inner {
  float: right;
  position: relative;
  top: 15px;
  display: block;
}
.overview .inner-nav.scroll .buttons-area-inner .button.buy {
  margin-right: 15px;
}
.overview_content hr {
  margin: 0px auto 100px;
  border-top: 2px solid #dcdddd;
}
.overview_content .part {
  padding: 70px 0;
}
.overview_content .part::after {
  content: "";
  display: block;
  clear: both;
}
.overview_content .p2 {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .adr-part-1 h2 {
  width: 52%;
  margin: 0 auto 50px;
}
.overview_content .adr-part-1 .box-list {
  display: flex;
  justify-content: space-around;
}
.overview_content .adr-part-1 .box-list::after {
  content: unset;
  display: none;
}
.overview_content .adr-part-1 .box {
  text-align: center;
  width: 18%;
  margin-right: 0;
}
.overview_content .adr-part-1 .box img {
  display: block;
  width: 62px;
  height: 65px;
  margin: auto;
  margin-bottom: 15px;
}
.overview_content .adr-part-3 h2 {
  width: 52%;
  margin: 0 auto 50px;
}
.overview_content .adr-part-3 .part3-box {
  position: relative;
  padding: 20px 0;
}
.overview_content .adr-part-3 .part3-box::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  background-size: 100%;
  height: 100%;
  background: url(/static/img/adr_new/part-3-bg.svg) no-repeat;
  z-index: -1;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box {
  width: 211px;
  height: 239px;
  border: 1px solid #2d8cff;
  background: #fff;
  text-align: center;
  margin-right: 30px;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box:nth-child(4) {
  margin-right: 0;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box:last-child {
  margin-right: 0;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box img {
  width: 102px;
  margin-bottom: 45px;
}
.overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box h3 {
  font-weight: bold;
  font-size: 16px;
}
.overview_content .adr-part-3 .part3-bottom {
  margin-top: 50px;
  width: 90%;
  margin: auto;
  background: #0c132b;
  padding: 60px 40px;
  margin-top: 107px;
  border-radius: 16px;
}
.overview_content .adr-part-3 .part3-bottom h2 {
  width: 70%;
  color: #fff;
  margin: 0 auto;
}
.overview_content .adr-part-4 h2 {
  width: 72%;
  margin: 0 auto 50px;
  color: #fff;
}
.overview_content .adr-part-4 .part4-box {
  background: #0c132b;
  padding: 80px;
  border-radius: 15px;
  position: relative;
}
.overview_content .adr-part-4 .part4-box .sub-title {
  color: #fff;
}
.overview_content .adr-part-4 .part4-box::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -20px;
}
.overview_content .adr-part-4 .part4-box::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -23px;
}
.overview_content .adr-part-4 .carousel {
  display: flex;
  justify-content: space-around;
}
.overview_content .adr-part-4 .left {
  width: 242px;
  position: relative;
}
.overview_content .adr-part-4 .left::before {
  content: '';
  width: 100px;
  height: 414px;
  display: block;
  position: absolute;
  background-color: #0c132b;
  right: -47px;
  top: 0;
  transform: rotate(13deg);
  border-left: 1px solid #c9caca;
}
.overview_content .adr-part-4 .left ul li {
  cursor: pointer;
  padding: 10px 25px;
  margin-top: 10px;
  font-size: 18px;
  color: #ffffff59;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.overview_content .adr-part-4 .left ul li h3 {
  font-size: 18px;
}
.overview_content .adr-part-4 .left ul li:hover,
.overview_content .adr-part-4 .left ul li.active {
  background-color: #2d8cff75;
  color: #fff;
}
.overview_content .adr-part-4 .left ul li:first-child {
  margin-top: 0px;
}
.overview_content .adr-part-4 .right {
  width: 373px;
  background-color: #0c132b;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 8px;
}
.overview_content .adr-part-4 .right div {
  display: none;
  padding: 15px 0 0px;
  position: relative;
}
.overview_content .adr-part-4 .right div img {
  height: 109px;
  display: inline-block;
  margin-right: 40px;
  vertical-align: middle;
}
.overview_content .adr-part-4 .right div span {
  display: block;
  vertical-align: middle;
  width: 332px;
  margin-top: 40px;
  color: #b5b5b6;
  font-size: 16px;
  line-height: 28px;
}
.overview_content .adr-part-4 .right div span .p2 {
  color: #b5b5b6;
  font-size: 16px;
}
.overview_content .adr-part-4 .right div span .p3 {
  margin-top: 15px;
  font-size: 18px;
  color: #fff;
}
.overview_content .adr-part-4 .right div span .p3::before {
  content: "✓";
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #0066cb;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  position: relative;
  top: -1px;
  margin-right: 10px;
}
.overview_content .adr-part-4 .right div.active {
  display: block;
}
.overview_content .adr-part-5 {
  padding: 70px 0 30px;
}
.overview_content .adr-part-5 h2 {
  margin: 0 auto 50px;
}
.overview_content .adr-part-5 h2 span {
  color: #2d8cff;
  font-size: 48px;
}
.overview_content .adr-part-5 .box-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 410px;
}
.overview_content .adr-part-5 .box-list .box-pic {
  flex: 0 0 40%;
}
.overview_content .adr-part-5 .box-list .desc {
  width: 40%;
}
.overview_content .adr-part-5 .box-list .desc .desc-box {
  font-size: 16px;
  border-top: 16px solid #2d8cff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
  margin-bottom: 20px;
  padding: 15px 25px;
}
.overview_content .adr-part-5 .box-list .desc .desc-box:nth-child(2) {
  border-top: 16px solid #ff7e78;
}
.overview_content .adr-part-5 .box-list .desc .desc-box:nth-child(3) {
  border-top: 16px solid #78ddac;
}
.overview_content .adr-part-5 .box-list .desc .desc-box.active span {
  display: block;
}
.overview_content .adr-part-5 .box-list .desc .desc-box h3 {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
.overview_content .adr-part-5 .box-list .desc .desc-box span {
  display: block;
  display: none;
  margin-top: 23px;
  line-height: 28px;
}
.overview_content .adr-part-5 hr {
  margin: 100px auto 0;
  border-top: 2px solid #dcdddd;
}
.overview_content .adbr-part-1 .box-list {
  justify-content: space-between;
  align-items: center;
}
.overview_content .adbr-part-1 .box-list .box {
  flex: 0 0 40%;
}
.overview_content .adbr-part-1 .box-list .box .title {
  font-size: 30px;
}
.overview_content .adbr-part-1 .box-list .box:last-child {
  flex: 0 0 50%;
}
.overview_content .adbr-part-1 .box-list .box ul li {
  margin-top: 20px;
  position: relative;
  padding-left: 10px;
}
.overview_content .adbr-part-1 .box-list .box ul li::before {
  content: '';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background: #2d8cff;
  border-radius: 50%;
  left: 0;
  top: 20%;
}
.overview_content .adbr-part-1 .box-list .box .p3 {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .adbr-part-2 .box-list {
  background: #0c132b;
  color: #fff;
  padding: 90px 80px;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  position: relative;
}
.overview_content .adbr-part-2 .box-list .box {
  flex: 0 0 55%;
}
.overview_content .adbr-part-2 .box-list .box:last-child {
  flex: 0 0 263px;
}
.overview_content .adbr-part-2 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -50px;
}
.overview_content .adbr-part-2 .box-list::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -50px;
}
.overview_content .adbr-part-2 .title {
  font-size: 30px;
}
.overview_content .adbr-part-2 .p3 {
  font-size: 16px;
  line-height: 28px;
  margin-top: 30px;
}
.overview_content .adbr-part-3 .p3 {
  font-size: 16px;
  color: #595757;
  text-align: center;
}
.overview_content .adbr-part-3 .pic-box {
  display: flex;
  width: 34%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.overview_content .adbr-part-3 .pic-box hr {
  border-top: 0px;
  border-left: 1px dashed #dcdddd;
  height: 142px;
  margin: 0 auto;
}
.overview_content .adbr-part-3 .pic-box img {
  height: 107px;
}
.overview_content .bade-part-1 .box-list {
  flex-wrap: wrap;
  justify-content: space-between;
}
.overview_content .bade-part-1 .box-list .box {
  flex: 0 0 22.5%;
  border: 1px solid #2d8cff;
  border-radius: 8px;
  height: 232px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.overview_content .bade-part-1 .box-list .box img {
  height: 64px;
  margin-bottom: 20px;
}
.overview_content .bade-part-1 .box-list::after {
  display: none;
}
.overview_content .bade-part-1 .box-list h3 {
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.overview_content .bade-part-2 .part-2 {
  background: #0c132b;
  border-radius: 15px;
  color: #fff;
  padding: 90px 60px;
  position: relative;
}
.overview_content .bade-part-2 .part-2::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -23px;
}
.overview_content .bade-part-2 .part-2::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -20px;
}
.overview_content .bade-part-2 .part-2 h2 {
  color: #fff;
}
.overview_content .bade-part-2 .part-2 .box-list {
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
.overview_content .bade-part-2 .part-2 .box-list .box {
  width: 45%;
}
.overview_content .bade-part-2 .part-2 .box-list .box:last-child {
  width: 50%;
}
.overview_content .bade-part-2 .part-2 .box-list .box ul li {
  font-size: 16px;
  line-height: 28px;
  position: relative;
  padding-left: 23px;
  margin-top: 30px;
}
.overview_content .bade-part-2 .part-2 .box-list .box ul li::before {
  content: '';
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  background: url('/static/img/bade/icon-right.svg') no-repeat;
  left: 0;
  top: 8px;
}
.overview_content .bade-part-2 .part-2 .box-list .box ul li:first-child {
  margin-top: 0px;
}
.overview_content .bade-part-3 .box-list {
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  justify-content: center;
  position: relative;
}
.overview_content .bade-part-3 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: -35px;
  top: -45px;
}
.overview_content .bade-part-3 .box-list::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  right: -57px;
  bottom: -40px;
  z-index: -1;
}
.overview_content .bade-part-3 .box-list .box {
  width: 205px;
  border: 1px solid #dcdddd;
  background: #fff;
  position: relative;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.overview_content .bade-part-3 .box-list .box img {
  height: 58px;
  margin-bottom: 25px;
}
.overview_content .bade-part-3 .box-list .box p,
.overview_content .bade-part-3 .box-list .box h3 {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .bade-part-3 .box-list .box .info {
  background: #2d8cff;
  position: absolute;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  padding: 0 15px;
  height: 205px;
  width: 100%;
  transform: scale(0);
}
.overview_content .bade-part-3 .box-list .box:last-child img {
  height: 9px;
}
.overview_content .bade-part-3 .box-list .box:hover .info {
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  background: #2d8cff;
  width: 100%;
  height: 205px;
  transform: scale(1);
  transition: all 0.5s;
}
.overview_content .bade-part-4 h2 {
  margin-bottom: 25px;
}
.overview_content .bade-part-4 p {
  text-align: center;
  color: #595757;
  font-size: 16px;
  width: 78%;
  margin: auto;
  margin-bottom: 50px;
  line-height: 28px;
}
.overview_content .bade-part-4 .bade-supported-bg {
  position: relative;
  background: #0c132b;
  height: 319px;
  border-radius: 15px;
}
.overview_content .bade-part-4 .bade-supported-bg dl {
  position: absolute;
  color: #fff;
  bottom: 30px;
  left: 100px;
}
.overview_content .bade-part-4 .bade-supported-bg dl dt {
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  line-height: 28px;
}
.overview_content .bade-part-4 .bade-supported-bg dl dt h3 {
  font-size: 18px;
}
.overview_content .bade-part-4 .bade-supported-bg dl dd {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}
.overview_content .bade-part-4 .bade-supported-bg img {
  position: absolute;
  top: 0;
}
.overview_content .bade-part-4 .bade-supported-bg img:last-child {
  display: none;
}
@media screen and (max-width: 1080px) {
  .overview_content .bade-part-4 .bade-supported-bg {
    height: 283px;
  }
  .overview_content .bade-part-4 .bade-supported-bg dl {
    bottom: 0px;
    left: 95px;
  }
}
@media screen and (max-width: 960px) {
  .overview_content .bade-part-4 .bade-supported-bg {
    height: 330px;
  }
}
@media screen and (max-width: 500px) {
  .overview_content .bade-part-4 .bade-supported-bg {
    height: auto;
  }
  .overview_content .bade-part-4 .bade-supported-bg dl {
    position: absolute;
    bottom: auto;
    top: 55px;
  }
  .overview_content .bade-part-4 .bade-supported-bg img {
    position: unset;
    display: none;
  }
  .overview_content .bade-part-4 .bade-supported-bg img:last-child {
    display: block;
  }
}
@media screen and (max-width: 360px) {
  .overview_content .bade-part-4 .bade-supported-bg {
    height: auto;
  }
  .overview_content .bade-part-4 .bade-supported-bg dl {
    left: 50px;
  }
}
.overview_content .dt-part-1 .title-box {
  display: flex;
  justify-content: space-around;
  position: relative;
}
.overview_content .dt-part-1 .title-box h2 {
  width: 30%;
  text-align: left;
}
.overview_content .dt-part-1 .title-box .title-desc {
  width: 50%;
  font-size: 16px;
  line-height: 28px;
}
.overview_content .dt-part-1 .title-box::before {
  content: '';
  position: absolute;
  display: block;
  width: 123px;
  height: 123px;
  background: #fff;
  border: 15px solid #2d8cff;
  left: 19px;
  z-index: -1;
  top: -50px;
}
.overview_content .dt-part-1 .dt-scroll {
  position: relative;
  padding: 60px 0;
}
.overview_content .dt-part-1 .dt-scroll .swiper-pagination-progressbar {
  background: #efefef;
  position: absolute;
  border-radius: 2px;
  width: 90%;
  margin: auto;
  height: 4px;
  top: auto;
  bottom: 0;
  left: 45px;
  right: auto;
  overflow: hidden;
}
.overview_content .dt-part-1 .dt-scroll .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 2px;
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.overview_content .dt-part-1 .dt-scroll .swiper-button-prev {
  background: url('/static/img/doTrans_new/arrow-icon.svg') no-repeat;
  right: 95px;
  left: auto;
  top: auto;
  height: 15px;
  bottom: -46px;
  transform: rotate(180deg);
}
.overview_content .dt-part-1 .dt-scroll .swiper-button-next {
  background: url('/static/img/doTrans_new/arrow-icon.svg') no-repeat;
  right: 55px;
  height: 15px;
  left: auto;
  top: auto;
  bottom: -46px;
}
.overview_content .dt-part-1 .dotrans {
  padding: 0 45px;
}
.overview_content .dt-part-1 .dotrans .swiper-slide {
  width: 275px;
  height: 322px;
  background: url('/static/img/doTrans_new/part1_bg.svg') no-repeat;
  background-size: cover;
  padding: 25px 10px;
  border-radius: 8px;
  color: #000;
}
.overview_content .dt-part-1 .dotrans .swiper-slide h3 {
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  font-size: 30px;
}
.overview_content .dt-part-1 .dotrans .swiper-slide span {
  font-size: 16px;
  line-height: 28px;
}
.overview_content .dt-part-1 .dotrans .swiper-slide a {
  color: #fff100;
}
.overview_content .dt-part-2 .part-2 {
  border: 1px solid #2d8cff;
  padding: 80px 0px;
  border-radius: 15px;
  position: relative;
}
.overview_content .dt-part-2 .part-2::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: -35px;
  top: -45px;
}
.overview_content .dt-part-2 .part-2::after {
  content: url(/static/img/doTrans_new/bg-bottom.svg);
  position: absolute;
  width: 150px;
  left: 10px;
  bottom: -45px;
}
.overview_content .dt-part-2 .part-2 .box-list {
  justify-content: space-around;
  margin-top: 75px;
}
.overview_content .dt-part-2 .part-2 .box-list .box {
  text-align: left;
  flex: 0 0 23.4%;
}
.overview_content .dt-part-2 .part-2 .box-list .box:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}
.overview_content .dt-part-2 .part-2 .box-list .box:hover a {
  color: #2d8cff;
}
.overview_content .dt-part-2 .part-2 .box-list .box img {
  height: 91px;
}
.overview_content .dt-part-2 .part-2 .box-list .box p {
  margin-bottom: 10px;
  margin-top: 30px;
}
.overview_content .dt-part-2 .part-2 .box-list .box p a {
  color: #0c132b;
  font-size: 16px;
  font-weight: bold;
  font-family: "OpenSans-SemiBold";
}
.overview_content .dt-part-2 .part-2 .box-list .box span {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
  cursor: default;
}
.overview_content .dt-part-3 h2 {
  text-align: right;
  padding-right: 50px;
  position: relative;
}
.overview_content .dt-part-3 h2::before {
  content: url(/static/img/doTrans_new/bg-top.svg);
  position: absolute;
  width: 150px;
  right: 0px;
  top: -45px;
  z-index: -1;
}
.overview_content .dt-part-3 .content-box {
  position: relative;
}
.overview_content .dt-part-3 .content-box::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 481px;
  background-size: contain;
  background: url('/static/img/doTrans_new/part_bg.svg') no-repeat;
  top: 10px;
}
.overview_content .dt-part-3 .content-box .swiper-pagination {
  display: none;
}
.overview_content .dt-part-3 .content-box .swiper-button-prev {
  display: none;
}
.overview_content .dt-part-3 .content-box .swiper-button-next {
  display: none;
}
.overview_content .dt-part-3 .box-list {
  flex-wrap: wrap;
  width: 85%;
  margin: auto;
  justify-content: space-around;
}
.overview_content .dt-part-3 .box-list .box {
  width: 205px;
  border: 1px solid #0c132b;
  background: #0c132b;
  position: relative;
  height: 205px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}
.overview_content .dt-part-3 .box-list .box img {
  height: 58px;
  margin-bottom: 25px;
}
.overview_content .dt-part-3 .box-list .box p,
.overview_content .dt-part-3 .box-list .box h3 {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}
.overview_content .dt-part-3 .box-list .box .info {
  background: #0c132b;
  position: absolute;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  padding: 0 15px;
  height: 205px;
  width: 100%;
  transform: scale(0);
}
.overview_content .dt-part-3 .box-list .box:last-child img {
  height: 9px;
}
.overview_content .dt-part-3 .box-list .box:hover .info {
  z-index: 10;
  text-align: center;
  display: flex;
  align-items: center;
  background: #0c132b;
  width: 100%;
  height: 205px;
  transform: scale(1);
  transition: all 0.5s;
}
.overview_content .dt-part-4 h2 {
  padding-left: 50px;
  text-align: left;
  width: 40%;
  margin-left: 50px;
  position: relative;
}
.overview_content .dt-part-4 h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  top: -45px;
  z-index: -1;
}
.overview_content .dt-part-4 .box-list {
  width: 80%;
  justify-content: space-between;
  margin: auto;
  margin-top: 100px;
}
.overview_content .dt-part-4 .box-list .box {
  text-align: center;
  width: 143px;
}
.overview_content .dt-part-4 .box-list .box img {
  width: 143px;
  height: 143px;
}
.overview_content .dt-part-4 .box-list .box p {
  font-size: 24px;
  font-family: "OpenSans-SemiBold";
  font-weight: bold;
  margin-top: 20px;
}
.overview_content .dr-part-1 h2 {
  color: #fff;
}
.overview_content .dr-part-1 .part4-box {
  background: #0c132b;
  padding: 80px;
  border-radius: 15px;
  position: relative;
}
.overview_content .dr-part-1 .part4-box .sub-title {
  color: #fff;
}
.overview_content .dr-part-1 .part4-box::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -20px;
}
.overview_content .dr-part-1 .part4-box::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -23px;
}
.overview_content .dr-part-1 .carousel {
  display: flex;
  justify-content: space-around;
}
.overview_content .dr-part-1 .left {
  width: 242px;
  position: relative;
}
.overview_content .dr-part-1 .left::before {
  content: '';
  width: 100px;
  height: 354px;
  display: block;
  position: absolute;
  background-color: #0c132b;
  right: -47px;
  top: 0;
  transform: rotate(13deg);
  border-left: 1px solid #c9caca;
}
.overview_content .dr-part-1 .left ul li {
  cursor: pointer;
  padding: 10px 25px;
  margin-top: 10px;
  color: #ffffff59;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.overview_content .dr-part-1 .left ul li h3 {
  font-size: 18px;
}
.overview_content .dr-part-1 .left ul li:hover,
.overview_content .dr-part-1 .left ul li.active {
  background-color: #2d8cff75;
  color: #fff;
}
.overview_content .dr-part-1 .left ul li:first-child {
  margin-top: 0px;
}
.overview_content .dr-part-1 .right {
  width: 373px;
  background-color: #0c132b;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 8px;
}
.overview_content .dr-part-1 .right div {
  display: none;
  padding: 15px 0 0px;
  position: relative;
}
.overview_content .dr-part-1 .right div img {
  height: 109px;
  display: inline-block;
  margin-right: 40px;
  vertical-align: middle;
}
.overview_content .dr-part-1 .right div .p2 {
  color: #b5b5b6;
  font-size: 16px;
  line-height: 28px;
  width: 332px;
  margin-top: 40px;
}
.overview_content .dr-part-1 .right div.active {
  display: block;
}
.overview_content .dr-part-2 .sub-title {
  color: #727171;
}
.overview_content .dr-part-2 .box-list {
  justify-content: center;
}
.overview_content .dr-part-2 .box-list .box-no-float {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid #e0e0e0;
  height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overview_content .dr-part-2 .box-list .box-no-float img {
  height: 56px;
}
.overview_content .dr-part-2 .box-list .box-no-float .p2 {
  font-size: 16px;
}
.overview_content .dr-part-2 .box-list .box-no-float:first-child {
  border-left: none;
}
.overview_content .dr-part-3 .part3-box {
  background: #2d8cff10;
  border-radius: 16px;
  padding: 75px 60px;
  position: relative;
}
.overview_content .dr-part-3 .part3-box::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -45px;
}
.overview_content .dr-part-3 .part3-box::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -45px;
}
.overview_content .dr-part-3 .box-list {
  flex-wrap: wrap;
  justify-content: space-between;
}
.overview_content .dr-part-3 .box-list .box {
  width: 30%;
  margin-bottom: 60px;
  cursor: default;
}
.overview_content .dr-part-3 .box-list .box:hover .p1 {
  color: #172a88;
  cursor: pointer;
}
.overview_content .dr-part-3 .box-list .box img {
  height: 50px;
}
.overview_content .dr-part-3 .box-list .box .p1 {
  margin: 10px 0;
  padding-top: 10px;
  color: #2d8cff;
  font-weight: bold;
  font-family: "OpenSans-SemiBold";
  border-top: 1.5px dashed #ff7e78;
}
.overview_content .dr-part-3 .box-list .box .p3 {
  font-size: 16px;
  color: #727171;
  line-height: 28px;
  word-break: break-word;
}
.overview_content .dr-part-4 h2 {
  width: 50%;
  margin: auto;
}
.overview_content .dr-part-4 .box-list {
  flex-direction: column;
  position: relative;
  margin: 50px;
}
.overview_content .dr-part-4 .box-list::before {
  content: '';
  display: block;
  width: 30px;
  height: 327px;
  background: url('/static/img/dr/line.svg') no-repeat;
  position: absolute;
  top: 70px;
  left: 180px;
}
.overview_content .dr-part-4 .box-list::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  right: 0px;
  bottom: -80px;
}
.overview_content .dr-part-4 .box-list .box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.overview_content .dr-part-4 .box-list .box img {
  height: 110px;
}
.overview_content .dr-part-4 .box-list .box .desc {
  width: 37%;
  margin-left: 40px;
}
.overview_content .dr-part-4 .box-list .box .desc h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.overview_content .dr-part-4 .box-list .box .desc span {
  font-size: 16px;
  color: #727171;
}
.overview_content .heic-part-1 .box-list {
  justify-content: space-between;
  position: relative;
  padding: 50px 0;
}
.overview_content .heic-part-1 .box-list .desc {
  width: 50%;
}
.overview_content .heic-part-1 .box-list .desc h2 {
  width: 80%;
  text-align: left;
  position: relative;
}
.overview_content .heic-part-1 .box-list .desc h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  top: -45px;
  z-index: -1;
}
.overview_content .heic-part-1 .box-list .desc .p2 {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .heic-part-1 .box-list .box {
  background: #fff;
  padding: 20px;
}
.overview_content .heic-part-1 .box-list::before {
  content: url(/static/img/fhc/bg-icon.svg);
  position: absolute;
  right: 45px;
  bottom: -72px;
  z-index: -1;
  width: 360px;
}
.overview_content .heic-part-2 .box-list {
  background: #2d8cff;
  border-radius: 18px;
  justify-content: space-around;
  align-items: center;
  padding: 50px 30px;
}
.overview_content .heic-part-2 .box-list .box {
  width: 45%;
}
.overview_content .heic-part-2 .box-list .box:first-child {
  width: 40%;
}
.overview_content .heic-part-2 .box-list .box h2 {
  text-align: left;
  color: #fff;
}
.overview_content .heic-part-2 .box-list .box .p1 {
  font-size: 21px;
  font-weight: bold;
  font-family: "OpenSans-SemiBold";
  color: #fff;
}
.overview_content .heic-part-2 .box-list .box .p3 {
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 20px;
  line-height: 28px;
}
.overview_content .heic-part-3 .container {
  position: relative;
  text-align: center;
}
.overview_content .heic-part-3 .container::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  top: -100px;
}
.overview_content .heic-part-3 .container img {
  width: 75%;
  margin: 30px auto 0;
}
.overview_content .heic-part-3 .p2 {
  color: #595757;
  font-size: 16px;
  text-align: center;
}
.overview_content .heic-part-4 .table > tbody > tr > td {
  border-right: 1px solid #b5b5b6;
  border-top: 1px solid #b5b5b6;
  width: 272px;
  padding: 25px 35px;
  text-align: center;
  font-size: 16px;
  color: #595757;
  padding: 0 15px;
  height: 97px;
  vertical-align: middle;
}
.overview_content .heic-part-4 .table > tbody > tr > td:last-child {
  border-right: 0px;
}
.overview_content .heic-part-4 .table > thead > tr > th {
  border-right: 1px solid #b5b5b6;
  height: 97px;
  color: #2d8cff;
  text-align: center;
  vertical-align: middle;
  font-weight: 900;
  font-family: "OpenSans-SemiBold";
}
.overview_content .heic-part-4 .table > thead > tr > th h3 {
  font-size: 18px;
}
.overview_content .heic-part-4 .table > thead > tr > th:last-child {
  border-right: 0px;
}
.overview_content .idbr-part-1 .box-list {
  justify-content: space-between;
  align-items: center;
}
.overview_content .idbr-part-1 .box-list .box {
  width: 45%;
}
.overview_content .idbr-part-1 .box-list .box h2 {
  text-align: left;
  position: relative;
  padding-left: 40px;
  margin-bottom: 80px;
}
.overview_content .idbr-part-1 .box-list .box h2::before {
  content: url(/static/img/idbr/p1-title.svg);
  position: absolute;
  width: 295px;
  z-index: -1;
  top: -138px;
  left: 0;
}
.overview_content .idbr-part-1 .box-list .box .p2 {
  font-size: 16px;
  line-height: 28px;
  padding-left: 40px;
}
.overview_content .idbr-part-1 .box-list .box:last-child {
  width: 48%;
}
.overview_content .idbr-part-2 .box-list {
  background: #f9f7f9;
  border-radius: 18px;
  justify-content: space-around;
  align-items: center;
  padding: 90px 40px;
  position: relative;
}
.overview_content .idbr-part-2 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0px;
  bottom: -50px;
}
.overview_content .idbr-part-2 .box-list .box {
  width: 40%;
}
.overview_content .idbr-part-2 .box-list .box h2 {
  text-align: left;
  position: relative;
  z-index: 1;
}
.overview_content .idbr-part-2 .box-list .box h2::before {
  content: url(/static/img/idbr/p2-title.svg);
  position: absolute;
  width: 139px;
  z-index: -1;
  top: -58px;
  right: 28px;
}
.overview_content .idbr-part-3 .switch-botton {
  width: 144px;
  height: 44px;
  background: #2d8cff;
  border: 2px solid #2d8cff;
  margin: auto;
  border-radius: 22px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  cursor: pointer;
}
.overview_content .idbr-part-3 .switch-botton .move {
  display: block;
  width: 28%;
  height: 39px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  cursor: pointer;
  z-index: 10;
}
.overview_content .idbr-part-3 .switch-botton span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}
.overview_content .idbr-part-3 .switch-botton span:last-child {
  text-align: right;
}
.overview_content .idbr-part-3 .table-container {
  position: relative;
  padding-top: 50px;
}
.overview_content .idbr-part-3 .table-container::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  top: -100px;
}
.overview_content .idbr-part-3 .table-container .table {
  width: 93%;
  margin: auto;
}
.overview_content .idbr-part-3 .table-container .table.restore {
  display: none;
}
.overview_content .idbr-part-3 .table-container .table tr {
  height: 82px;
  font-size: 18px;
  border-top: 1px solid #dcdddd;
}
.overview_content .idbr-part-3 .table-container .table tr:last-child {
  border-bottom: 1px solid #dcdddd;
  height: 111px;
}
.overview_content .idbr-part-3 .table-container .table tr td {
  width: 225px;
  height: 82px;
  vertical-align: middle;
  text-align: center;
  font-weight: 900;
  font-family: "OpenSans-SemiBold";
  padding: 0;
  color: #fff;
}
.overview_content .idbr-part-3 .table-container .table tr td:last-child span.blue {
  display: flex;
  align-items: center;
  width: 92%;
  height: 100%;
  background: #2d8cff;
  justify-content: center;
  margin: auto;
}
.overview_content .idbr-part-3 .table-container .table tr td span.blue {
  display: flex;
  align-items: center;
  width: 95%;
  height: 100%;
  background: #2d8cff;
  justify-content: center;
  margin: auto;
}
.overview_content .idbr-part-3 .table-container .table tr td span.pink {
  display: flex;
  align-items: center;
  width: 95%;
  height: 100%;
  background: #ff7e78;
  justify-content: center;
  margin: auto;
}
.overview_content .idbr-part-3 .table-container .table tr th {
  height: 82px;
  vertical-align: middle;
  font-weight: 900;
  font-family: "OpenSans-SemiBold";
}
.overview_content .idbr-part-3 .table-container .table tr.firstRow {
  border-top: 0px;
}
.overview_content .idbr-part-3 .table-container .table tr.firstRow th {
  text-align: center;
  border-top: 0px;
}
.overview_content .idr-part-1 h2 {
  width: 80%;
  text-align: center;
  margin: 0 auto 50px;
}
.overview_content .idr-part-1 .box-list {
  justify-content: space-around;
  position: relative;
}
.overview_content .idr-part-1 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: -30px;
  top: -58px;
  z-index: -1;
}
.overview_content .idr-part-1 .box-list::after {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: -25px;
  bottom: -45px;
  z-index: -1;
}
.overview_content .idr-part-1 .box-list .box {
  width: 290px;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #2d8cff;
  border-radius: 8px;
  background: #fff;
}
.overview_content .idr-part-1 .box-list .box:hover {
  box-shadow: 2px 2px 12px rgba(208, 211, 214, 0.75);
}
.overview_content .idr-part-1 .box-list .box img {
  height: 165px;
}
.overview_content .idr-part-1 .box-list .box .p1 {
  width: 80%;
  text-align: center;
  font-size: 18px;
  font-family: "OpenSans-SemiBold";
  margin-top: 15px;
}
.overview_content .idr-part-2 .content-box {
  position: relative;
}
.overview_content .idr-part-2 .content-box::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 481px;
  background-size: contain;
  background: url(/static/img/doTrans_new/part_bg.svg) no-repeat;
  top: 10px;
}
.overview_content .idr-part-2 .content-box .swiper-button-prev {
  display: none;
}
.overview_content .idr-part-2 .content-box .swiper-button-next {
  display: none;
}
.overview_content .idr-part-2 .box-list {
  padding: 30px 0;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  justify-content: center;
  border-radius: 8px;
  background: #0c132b;
}
.overview_content .idr-part-2 .box-list .box {
  width: 215px;
  border: 1px solid #0c132b;
  background: #0c132b;
  position: relative;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px dashed #ffffff;
  overflow: hidden;
}
.overview_content .idr-part-2 .box-list .box:nth-child(4) {
  border-right: none;
}
.overview_content .idr-part-2 .box-list .box:nth-child(5) {
  border-top: 1px dashed #ffffff;
}
.overview_content .idr-part-2 .box-list .box:nth-child(6) {
  border-top: 1px dashed #ffffff;
}
.overview_content .idr-part-2 .box-list .box:nth-child(7) {
  border-top: 1px dashed #ffffff;
}
.overview_content .idr-part-2 .box-list .box:nth-child(8) {
  border-right: none;
  border-top: 1px dashed #ffffff;
}
.overview_content .idr-part-2 .box-list .box:hover .info {
  transform: translateY(0);
}
.overview_content .idr-part-2 .box-list .box img {
  height: 84px;
  margin-bottom: 25px;
}
.overview_content .idr-part-2 .box-list .box p,
.overview_content .idr-part-2 .box-list .box h3 {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}
.overview_content .idr-part-2 .box-list .box .info {
  display: flex;
  align-items: center;
  background: #0c132b;
  position: absolute;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  padding: 0 20px;
  height: 205px;
  width: 100%;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-duration: 0.3s;
  transform: translateY(-100%);
}
.overview_content .idr-part-3 .box-list {
  justify-content: space-around;
}
.overview_content .idr-part-3 .box-list .box {
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.overview_content .idr-part-3 .box-list .box img {
  width: 192px;
}
.overview_content .idr-part-3 .box-list .box h2 {
  font-size: 30px;
  text-align: center;
  color: #000;
  margin: 0 0 50px;
  font-family: opensans-extrabold;
  font-weight: 700;
  text-align: left;
  position: relative;
  line-height: 46px;
}
.overview_content .idr-part-3 .box-list .box h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 150px;
  left: -42px;
  top: -40px;
  z-index: -1;
}
.overview_content .idr-part-3 .box-list .box h2 {
  text-align: left;
  position: relative;
  line-height: 46px;
}
.overview_content .idr-part-3 .box-list .box h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 150px;
  left: -42px;
  top: -40px;
  z-index: -1;
}
.overview_content .idr-part-3 .box-list-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.overview_content .idr-part-3 .box-list-2 .table {
  margin-top: 30px;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr {
  display: flex;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow {
  padding: 10px 0 0 0;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td {
  border-top: none;
  padding: 35px 8px 8px;
  position: relative;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  border-top: 1px solid #ddd;
  top: 25px;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr td {
  border-right: 1px solid #ddd;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr td:last-child {
  border-right: none;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td {
  padding: 8px 8px 25px;
  position: relative;
}
.overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ddd;
  bottom: 15px;
}
.overview_content .idr-part-3 .box-list-2 .box-small {
  width: 158px;
  height: 123px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  margin: auto;
}
.overview_content .idr-part-3 .box-list-2 .box-small img {
  height: 43px;
}
.overview_content .idr-part-3 .box-list-3 {
  display: flex;
  justify-content: space-around;
  padding: 70px 0;
  position: relative;
}
.overview_content .idr-part-3 .box-list-3::before {
  content: '';
  display: block;
  position: absolute;
  width: 82px;
  height: 25px;
  background: #ff7e78;
  top: 0;
  right: 0;
}
.overview_content .idr-part-3 .box-list-3::after {
  content: '';
  display: block;
  position: absolute;
  width: 82px;
  height: 25px;
  background: #2d8cff;
  bottom: 0;
  left: 0;
}
.overview_content .idr-part-3 .box-list-3 .box {
  text-align: center;
  width: 19.5%;
}
.overview_content .idr-part-3 .box-list-3 .box img {
  width: 111px;
}
.overview_content .idr-part-3 .box-list-3 .box p {
  font-size: 16px;
  color: #595757;
  text-align: center;
  margin-top: 15px;
}
.overview_content .idr-part-4 .box-list4 {
  display: flex;
  background: #f9f7f9;
  border-radius: 18px;
  justify-content: space-around;
  height: 547px;
  align-items: center;
}
.overview_content .idr-part-4 .box-list4 .desc-box {
  width: 30%;
}
.overview_content .idr-part-4 .box-list4 .desc-box h2 {
  text-align: left;
}
.overview_content .idr-part-4 .box-list4 .desc-box .desc h3 {
  font-weight: bold;
  font-family: "OpenSans-SemiBold";
  font-size: 18px;
  color: #000;
  line-height: 28px;
  margin-bottom: 30px;
}
.overview_content .idr-part-4 .box-list4 .desc-box .desc span {
  line-height: 28px;
  color: #595757;
  font-size: 16px;
}
.overview_content .idr-part-4 .box-list4 .pic-box {
  width: 50%;
  text-align: center;
  height: 323px;
  position: relative;
}
.overview_content .idr-part-4 .box-list4 .pic-box .swiper-pagination {
  bottom: -50px;
  right: 50px;
  width: 100%;
}
.overview_content .idr-part-4 .box-list4 .pic-box .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background: #ff7e78;
}
.overview_content .idr-part-4 .box-list4 .pic-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff7e78;
}
.overview_content .idr-part-4 .box-list4 .pic-box img {
  max-width: 453px;
}
.overview_content .idr-part-4 .box-list4 .pic-box .pic-container {
  width: 100%;
  height: 100%;
}
.overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-prev {
  transform: translateY(-30px) translateX(-40px);
  z-index: 80;
}
.overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-active {
  transform: translateY(70px);
  z-index: 98;
}
.overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-next {
  transform: translateY(20px) translateX(40px);
  z-index: 90;
}
.overview_content .idr-part-4 .box-list4 .pic-box .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.overview_content .idr-part-4 .box-list4 .pic-box .wrapper .pic-slide {
  position: absolute;
  transition-property: transform;
  transition-duration: 400ms;
  transition-timing-function: ease;
  text-align: center;
  width: 100%;
  max-width: 453px;
  height: 264px;
}
.overview_content .isr-part-1 .box-list {
  justify-content: space-between;
  align-items: center;
}
.overview_content .isr-part-1 .box-list .box {
  width: 30%;
}
.overview_content .isr-part-1 .box-list .box h2 {
  text-align: left;
  line-height: 46px;
  position: relative;
}
.overview_content .isr-part-1 .box-list .box h2::before {
  content: url(/static/img/isr_new/p1-title.svg);
  position: absolute;
  width: 150px;
  left: -61px;
  top: -125px;
  z-index: -1;
}
.overview_content .isr-part-1 .box-list .table {
  display: flex;
  width: 60%;
  flex-wrap: wrap;
}
.overview_content .isr-part-1 .box-list .table .t-box {
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 5px;
  border-bottom: 1px solid #dcdddd;
  border-right: 1px solid #dcdddd;
}
.overview_content .isr-part-1 .box-list .table .t-box img {
  height: 88px;
}
.overview_content .isr-part-1 .box-list .table .t-box h3 {
  margin-top: 5px;
  text-align: center;
  font-size: 16px;
}
.overview_content .isr-part-1 .box-list .table .t-box:nth-child(4n) {
  border-right: none;
}
.overview_content .isr-part-1 .box-list .table .t-box:nth-child(9) {
  border-bottom: none;
}
.overview_content .isr-part-1 .box-list .table .t-box:nth-child(10) {
  border-bottom: none;
}
.overview_content .isr-part-1 .box-list .table .t-box:nth-child(11) {
  border-bottom: none;
}
.overview_content .isr-part-2 h2 {
  width: 50%;
  line-height: 46px;
  margin: auto;
}
.overview_content .isr-part-2 .box-list {
  justify-content: space-around;
  margin: auto;
}
.overview_content .isr-part-2 .box-list .flex-box .line-long {
  width: 90%;
  height: 2px;
  background: #727171;
  margin: 15px auto;
}
.overview_content .isr-part-2 .box-list .flex-box .line-short {
  width: 80%;
  height: 2px;
  background: #727171;
  margin: 15px auto;
}
.overview_content .isr-part-2 .box-list .flex-box .box {
  margin-top: 70px;
  width: 291px;
  height: 271px;
  border: 2px solid #727171;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  position: relative;
  background: #fff;
}
.overview_content .isr-part-2 .box-list .flex-box .box .p2 {
  text-align: center;
  margin-top: 15px;
}
.overview_content .isr-part-2 .box-list .flex-box .box img {
  height: 58px;
}
.overview_content .isr-part-2 .box-list .flex-box:first-child .box::before {
  content: url(/static/img/isr_new/p2-title.svg);
  position: absolute;
  width: 282px;
  left: -205px;
  top: -184px;
  z-index: -1;
}
.overview_content .isr-part-2 .box-list .flex-box:last-child .box::before {
  content: '';
  display: block;
  width: 113px;
  height: 113px;
  border-radius: 50%;
  background: #2d8cff;
  position: absolute;
  right: -68px;
  top: -62px;
  z-index: -1;
}
.overview_content .isr-part-2 .box-list .flex-box:last-child .box::after {
  content: url(/static/img/isr_new/p2-bottom.svg);
  position: absolute;
  width: 136px;
  right: -83px;
  bottom: -65px;
  z-index: -1;
}
.overview_content .isr-part-3 .box-list {
  justify-content: space-around;
  background: #f9f7f9;
  border-radius: 18px;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
.overview_content .isr-part-3 .box-list::before {
  content: url(/static/img/isr_new/p3-title.svg);
  position: absolute;
  width: 116px;
  right: 25px;
  top: -37px;
  z-index: 0;
}
.overview_content .isr-part-3 .box-list .box {
  width: 40%;
}
.overview_content .isr-part-3 .box-list .box h2 {
  text-align: left;
  line-height: 46px;
}
.overview_content .isr-part-3 .box-list .box:first-child {
  width: 35%;
}
.overview_content .isr-part-4 .part4-content {
  background: url('/static/img/isr_new/p4-bg.svg') bottom no-repeat;
  background-size: 1060px;
  padding: 0 0 160px;
}
.overview_content .isr-part-4 .part4-content .box-list {
  justify-content: space-around;
}
.overview_content .isr-part-4 .part4-content .box-list .box {
  width: 40%;
}
.overview_content .isr-part-4 .part4-content .box-list .box h2 {
  text-align: left;
  line-height: 46px;
  position: relative;
}
.overview_content .isr-part-4 .part4-content .box-list .box h2::before {
  content: url(/static/img/isr_new/p4-title.svg);
  position: absolute;
  width: 150px;
  left: -20px;
  top: -22px;
  z-index: -1;
}
.overview_content .isr-part-4 .part4-content .box-list2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 100px;
}
.overview_content .isr-part-4 .part4-content .box-list2 .box2 {
  width: 45%;
}
.overview_content .isr-part-4 .part4-content .box-list2 .box2 h2 {
  text-align: left;
  color: #fff;
}
.overview_content .isr-part-4 .part4-content .box-list2 .box2 .p1 {
  font-size: 18px;
  color: #fff;
}
.overview_content .isr-part-4 .part4-content .box-list2 .box-btn a {
  display: block;
  width: 291px;
  height: 65px;
  background: #fff;
  border-radius: 4px;
  font-weight: bold;
  font-size: 24px;
  line-height: 65px;
  text-align: center;
  color: #2d8cff;
}
.overview_content .isr-part-4 .part4-content .box-list2 .box-btn a:hover {
  transform: scale(0.9);
  transition: all 0.3s;
}
.overview_content .isr-part-4 .part4-content .box-list3 {
  margin-top: 50px;
  padding-left: 75px;
}
.overview_content .isr-part-4 .part4-content .box-list3 h2 {
  text-align: left;
  color: #fff100;
}
.overview_content .isr-part-4 .part4-content .box-list3 ul {
  display: flex;
  justify-content: space-evenly;
}
.overview_content .isr-part-4 .part4-content .box-list3 ul li {
  width: 20%;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  list-style-type: square;
}
.overview_content .it-part-1 h2 {
  width: 45%;
  margin: auto;
  line-height: 46px;
  position: relative;
}
.overview_content .it-part-1 h2::before {
  content: url(/static/img/isr_new/p4-title.svg);
  position: absolute;
  width: 192px;
  left: -42px;
  top: -43px;
  z-index: -1;
}
.overview_content .it-part-1 .sub-title {
  width: 70%;
  margin: 10px auto;
  line-height: 28px;
  color: #595757;
}
.overview_content .it-part-1 .box-list {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
  position: relative;
}
.overview_content .it-part-1 .box-list::after {
  content: url(/static/img/isr_new/p2-bottom.svg);
  position: absolute;
  width: 136px;
  right: -83px;
  top: -65px;
  z-index: -1;
}
.overview_content .it-part-1 .box-list .box {
  border: 1px solid;
  background: #fff;
  height: 290px;
  width: 32%;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 77px;
  overflow: hidden;
  position: relative;
}
.overview_content .it-part-1 .box-list .box:nth-child(1) {
  border-color: #72b7fc;
}
.overview_content .it-part-1 .box-list .box:nth-child(2) {
  border-color: #d193f9;
}
.overview_content .it-part-1 .box-list .box:nth-child(3) {
  border-color: #f9bc64;
}
.overview_content .it-part-1 .box-list .box:nth-child(4) {
  border-color: #2cdbba;
}
.overview_content .it-part-1 .box-list .box:nth-child(5) {
  border-color: #13ae67;
}
.overview_content .it-part-1 .box-list .box:nth-child(6) {
  border-color: #7b97ff;
}
.overview_content .it-part-1 .box-list .box img {
  height: 57px;
  margin-bottom: 30px;
}
.overview_content .it-part-1 .box-list .box p,
.overview_content .it-part-1 .box-list .box h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.overview_content .it-part-1 .box-list .box .mask {
  position: absolute;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.79, -0.29, 0.16, 1.22);
  opacity: 0;
  background-color: #fff;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 15px;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  transition-delay: 0.1s;
}
.overview_content .it-part-1 .box-list .box .mask .p2 {
  font-size: 16px;
  font-weight: 500;
  color: #595757;
}
.overview_content .it-part-1 .box-list .box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 25px;
}
.overview_content .it-part-1 .box-list .box:hover .mask {
  transform: translateY(0);
  opacity: 1;
}
.overview_content .it-part-2 h2 {
  width: 50%;
  margin: auto;
  line-height: 46px;
  position: relative;
}
.overview_content .it-part-2 h2::before {
  content: url(/static/img/isr_new/p4-title.svg);
  position: absolute;
  width: 192px;
  left: -42px;
  top: -43px;
  z-index: -1;
}
.overview_content .it-part-2 .sub-title {
  width: 75%;
  margin: 10px auto;
  line-height: 28px;
  color: #595757;
}
.overview_content .it-part-2 .box-title {
  background: #0c132b;
  height: 75px;
  border-radius: 13px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 73px;
  max-width: 1010px;
  margin: 35px auto 10px;
}
.overview_content .it-part-2 .box-list {
  position: relative;
  justify-content: space-around;
}
.overview_content .it-part-2 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  bottom: -80px;
}
.overview_content .it-part-2 .box-list .box {
  border: 1px solid #2d8cff;
  border-radius: 15px;
  overflow: hidden;
  width: 476px;
  text-align: center;
  padding-bottom: 35px;
}
.overview_content .it-part-2 .box-list .box .crown {
  background: #2d8cff;
  padding: 32px;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.overview_content .it-part-2 .box-list .box img {
  width: 210px;
  margin-top: 15px;
}
.overview_content .it-part-2 .box-list .vs {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(/static/img/it_new/vs.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  overflow: hidden;
  text-indent: 10000px;
  left: 50%;
  margin-left: -50px;
  top: 50%;
}
.overview_content .it-part-3 .content {
  background: #0c132b;
  padding: 65px 65px 40px;
  border-radius: 15px;
  position: relative;
}
.overview_content .it-part-3 .content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 55px;
  bottom: -25px;
}
.overview_content .it-part-3 .content::after {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 55px;
  top: -25px;
}
.overview_content .it-part-3 .content h2 {
  color: #fff;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.overview_content .it-part-3 .content h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 113px;
  left: 215px;
  top: -46px;
  z-index: -1;
}
.overview_content .it-part-3 .content .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 0.4;
}
.overview_content .it-part-3 .content .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
.overview_content .it-part-3 .content .box-list {
  flex-wrap: wrap;
}
.overview_content .it-part-3 .content .box-list .box {
  width: 25%;
  text-align: center;
  margin-bottom: 50px;
}
.overview_content .it-part-3 .content .box-list .box img {
  height: 44px;
}
.overview_content .it-part-3 .content .box-list .box .p2 {
  color: #ffffff;
  width: 66%;
  margin: 15px auto 0;
}
.overview_content .it-part-4 {
  padding: 70px 0 0;
}
.overview_content .it-part-4 .box-list .box {
  width: 25%;
  padding: 20px;
  border-right: 1px dashed #dcdddd;
}
.overview_content .it-part-4 .box-list .box:last-child {
  border-right: none;
}
.overview_content .it-part-4 .box-list .box:hover a {
  color: #2d8cff;
}
.overview_content .it-part-4 .box-list .box:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}
.overview_content .it-part-4 .box-list .box img {
  height: 55px;
}
.overview_content .it-part-4 .box-list .box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 15px;
}
.overview_content .it-part-4 .box-list .box span {
  font-size: 16px;
  color: #595757;
}
.overview_content .mt-part-1 .box-list {
  justify-content: space-around;
  align-content: center;
}
.overview_content .mt-part-1 .box-list .box {
  width: 60%;
}
.overview_content .mt-part-1 .box-list .box h2 {
  position: relative;
  text-align: left;
  line-height: 46px;
}
.overview_content .mt-part-1 .box-list .box h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 113px;
  left: -52px;
  top: -33px;
  z-index: -1;
}
.overview_content .mt-part-1 .box-list .box:first-child {
  width: 30%;
}
.overview_content .mt-part-1 .box-list .box:last-child {
  margin-top: 20px;
}
.overview_content .mt-part-2 .content {
  background: #0c132b;
  border-radius: 15px;
  position: relative;
  padding: 40px;
}
.overview_content .mt-part-2 h2 {
  width: 45%;
  margin: auto;
  line-height: 46px;
  color: #fff;
}
.overview_content .mt-part-2 .sub-title {
  width: 70%;
  margin: 10px auto;
  line-height: 28px;
  color: #fff;
}
.overview_content .mt-part-2 .box-list {
  justify-content: space-around;
  margin-top: 50px;
}
.overview_content .mt-part-2 .box-list .box {
  border: 1px solid;
  background: transparent;
  height: 281px;
  width: 281px;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 77px;
  overflow: hidden;
  position: relative;
}
.overview_content .mt-part-2 .box-list .box img {
  height: 68px;
  margin-bottom: 30px;
}
.overview_content .mt-part-2 .box-list .box p {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.overview_content .mt-part-2 .box-list .box .mask {
  position: absolute;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.79, -0.29, 0.16, 1.22);
  opacity: 0;
  background-color: #2d8cff;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  transition-delay: 0.1s;
}
.overview_content .mt-part-2 .box-list .box .mask .p2 {
  font-size: 16px;
  font-weight: 500;
}
.overview_content .mt-part-2 .box-list .box:hover .mask {
  transform: translateY(0);
  opacity: 1;
}
.overview_content .mt-part-3 h2 {
  width: 55%;
  margin: 0 auto 50px;
  line-height: 46px;
  position: relative;
}
.overview_content .mt-part-3 h2::before {
  content: url(/static/img/mt/p3-title.svg);
  position: absolute;
  width: 113px;
  right: 20px;
  top: -33px;
  z-index: -1;
}
.overview_content .mt-part-3 .sub-title {
  margin-bottom: 50px;
}
.overview_content .mt-part-3 .table .text-center {
  vertical-align: middle;
}
.overview_content .mt-part-3 .table .text-center img {
  width: 264px;
}
.overview_content .mt-part-3 .table .text-center::before {
  content: '';
}
.overview_content .mt-part-3 .table td {
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.overview_content .mt-part-3 .table td::before {
  content: '✓';
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #2d8cff;
  position: absolute;
  left: 30px;
}
.overview_content .mt-part-3 .note {
  text-align: center;
  font-size: 16px;
  color: #ff7e78;
}
.overview_content .mt-part-3 .note strong {
  color: #2d8cff;
}
.overview_content .mt-part-4 .wrap-place table {
  width: 1060px;
  border-radius: 15px;
  overflow: hidden;
  border-collapse: unset;
  border: 1px solid #000;
}
.overview_content .mt-part-4 .wrap-place table thead {
  background: #2d8cff;
  border: 1px solid #000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-weight: bold;
}
.overview_content .mt-part-4 .wrap-place table thead tr th {
  height: 52px;
  text-align: center;
  font-weight: 400;
  width: 137px;
}
.overview_content .mt-part-4 .wrap-place table thead tr th:nth-child(1) {
  width: 262px;
}
.overview_content .mt-part-4 .wrap-place table tbody {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 1px solid #000;
}
.overview_content .mt-part-4 .wrap-place table tbody tr:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.overview_content .mt-part-4 .wrap-place table tbody tr td {
  padding: 12px;
  width: 137px;
  border: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  color: #000;
}
.overview_content .mt-part-4 .wrap-place table tbody tr td:nth-child(1) {
  width: 262px;
}
.overview_content .mt-part-4 .wrap-place table tbody tr td.tick {
  font-size: 18px;
  color: #ff7e78;
  font-weight: 700;
}
.overview_content .mt-part-4 .wrap-place table tbody tr td.text {
  width: 268px;
  color: #595757;
  text-align: left;
}
.overview_content .paweditor-part-1 h2 {
  max-width: 540px;
  margin: 0 auto 16px;
}
.overview_content .paweditor-part-1 .p2 {
  color: #595757;
  text-align: center;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 36px;
}
.overview_content .paweditor-part-1 p {
  text-align: center;
}
.overview_content .paweditor-part-1 img {
  object-fit: contain;
  height: 270px;
}
.overview_content .paweditor-part-2 h2 {
  width: 49%;
  margin-bottom: 48px;
  text-align: left;
  position: relative;
  line-height: 46px;
}
.overview_content .paweditor-part-2 h2::before {
  content: url('/static/img/doTrans_new/bg-top_2.svg');
  position: absolute;
  width: 113px;
  left: -34px;
  top: -43px;
  z-index: -1;
}
.overview_content .paweditor-part-2 .flex-container {
  display: flex;
  justify-content: space-between;
}
.overview_content .paweditor-part-2 .flex-container .flex-column {
  flex-direction: column;
  justify-content: space-between;
}
.overview_content .paweditor-part-2 .flex-container .flex-item {
  flex: 0 0 49%;
  display: inline-flex;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  height: 384px;
  background-color: #52a1ff;
  position: relative;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item.showing {
  display: flex;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item .video-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .inner .item .video-wrap .pic-box img {
  height: 35px;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item {
  display: none;
  align-items: flex-start;
  justify-items: flex-start;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item.showing {
  display: flex;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item img {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item .p1 {
  line-height: 1;
  margin-bottom: 6px;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item p {
  color: #6c6d7c;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .top .item .p2 {
  font-size: 16px;
  line-height: 1.7;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom {
  width: 336px;
  display: flex;
  flex-wrap: wrap;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom .tab {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid #f7f8f8;
  padding: 14px;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom .tab img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom .tab .p3 {
  font-size: 12px;
  color: #6c6d7c;
  text-align: center;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom .tab:hover {
  border-color: #52a1ff;
}
.overview_content .paweditor-part-2 .flex-container .flex-item .bottom .tab.active {
  border-color: #52a1ff;
}
.overview_content .paweditor-part-2 .flex-container .flex-column {
  flex-direction: column;
  justify-content: space-between;
}
.overview_content .paweditor-part-3 .box-list {
  justify-content: space-between;
  align-items: center;
}
.overview_content .paweditor-part-3 .flex-item {
  flex: 0 0 45%;
  display: inline-flex;
}
.overview_content .paweditor-part-3 .flex-item h2 {
  width: 80%;
  text-align: left;
  position: relative;
  line-height: 46px;
}
.overview_content .paweditor-part-3 .flex-item h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 136px;
  height: 136px;
  background: #fff;
  border: 15px solid #2d8cff;
  z-index: -1;
  top: -90px;
  left: -25px;
}
.overview_content .paweditor-part-3 .flex-item .p2 {
  color: #595757;
  font-size: 16px;
  line-height: 1.7;
}
.overview_content .paweditor-part-3 .flex-item.image {
  align-items: flex-end;
  height: 420px;
  position: relative;
}
.overview_content .paweditor-part-3 .flex-item.image .table {
  display: block;
  width: 348px;
  height: 302px;
}
.overview_content .paweditor-part-3 .flex-item.image .file {
  display: block;
  position: absolute;
  top: -20px;
  right: 50px;
  width: 223px;
  height: 232px;
}
.overview_content .paweditor-part-3 .flex-item.image .file.animate-active {
  animation: showing 1s ease-in-out 1.5s both, floating 2s linear 2.5s infinite normal;
}
.overview_content .paweditor-part-4 h2 {
  max-width: 600px;
  margin: 0 auto 60px;
}
.overview_content .paweditor-part-4 .container {
  position: relative;
}
.overview_content .paweditor-part-4 .container::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -80px;
}
.overview_content .paweditor-part-4 .box-list {
  height: 550px;
  background: url(/static/img/paweditor/world-map.svg) center 0 no-repeat;
  background-size: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.overview_content .paweditor-part-4 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 0;
  bottom: -23px;
}
.overview_content .paweditor-part-4 .box-list .left {
  display: inline-flex;
  position: relative;
  height: 390px;
  flex: 0 0 486px;
}
.overview_content .paweditor-part-4 .box-list .left .earth {
  width: 352px;
  height: 352px;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 0px;
  margin-left: -176px;
}
.overview_content .paweditor-part-4 .box-list .left .user {
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: 11;
  transition-delay: 2s;
  animation-name: floating;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-duration: 2000ms;
  animation-timing-function: linear;
  animation-delay: 2s;
}
.overview_content .paweditor-part-4 .box-list .right {
  display: inline-flex;
  flex: 0 0 380px;
  max-width: 380px;
}
.overview_content .paweditor-part-4 .box-list .right ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.overview_content .paweditor-part-4 .box-list .right ul li {
  font-size: 16px;
  color: #595757;
  line-height: 1.7;
}
.overview_content .paweditor-part-4 .box-list .right ul::after {
  content: '';
  display: block;
  width: 50px;
  border-top: 6px solid #52a1ff;
  margin-top: 30px;
}
.overview_content .isr-record-part-1 .box-list {
  justify-content: space-around;
  align-items: center;
  background: #ff7e7817;
  border-radius: 15px;
  padding: 50px 15px;
}
.overview_content .isr-record-part-1 .box-list .box {
  width: 40%;
}
.overview_content .isr-record-part-1 .box-list .box h2 {
  text-align: left;
  position: relative;
  line-height: 46px;
  margin-bottom: 15px;
}
.overview_content .isr-record-part-1 .box-list .box h2::before {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 113px;
  left: -18px;
  top: -25px;
  z-index: -1;
}
.overview_content .isr-record-part-2 .box-list {
  justify-content: space-around;
}
.overview_content .isr-record-part-2 .box-list .box {
  width: 45%;
}
.overview_content .isr-record-part-2 .box-list .box:last-child {
  width: 40%;
}
.overview_content .isr-record-part-2 .box-list .box h2 {
  width: 80%;
  text-align: left;
  line-height: 46px;
  position: relative;
}
.overview_content .isr-record-part-2 .box-list .box h2::before {
  content: url(/static/img/screenmo/o2-title.svg);
  position: absolute;
  width: 161px;
  left: -29px;
  top: -77px;
  z-index: -1;
}
.overview_content .isr-record-part-3 .box-list {
  justify-content: space-around;
  align-items: center;
  background: #2d8cff17;
  border-radius: 15px;
  padding: 50px 15px;
  position: relative;
}
.overview_content .isr-record-part-3 .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 19px;
  top: -40px;
}
.overview_content .isr-record-part-3 .box-list .box {
  width: 40%;
}
.overview_content .isr-record-part-3 .box-list .box h2 {
  text-align: left;
  position: relative;
  line-height: 46px;
  margin-bottom: 15px;
}
.overview_content .isr-record-part-3 .box-list .box h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 133px;
  height: 133px;
  background: #fff;
  border: 15px solid #2d8cff;
  left: -15px;
  top: -29px;
  z-index: -1;
}
.overview_content .isr-record-part-4 .container {
  position: relative;
}
.overview_content .isr-record-part-4 .container::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 19px;
  top: -35px;
}
.overview_content .isr-record-part-4 h2 {
  margin: auto;
  margin-bottom: 60px;
  line-height: 46px;
  width: 50%;
}
.overview_content .isr-record-part-4 .box-list {
  justify-content: space-between;
}
.overview_content .isr-record-part-4 .box-list .box {
  flex: 0 0 22%;
  height: 240px;
  padding: 0 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #231815;
  text-align: center;
}
.overview_content .isr-record-part-4 .box-list .box h3 {
  font-size: 18px;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  margin-top: 10px;
}
.overview_content .isr-record-part-4 .box-list .box span {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .isr-record-part-4 .box-list .box img {
  height: 30px;
}
.overview_content .sr-part-1 h2 {
  width: 50%;
  margin: 0px auto 30px;
  line-height: 46px;
}
.overview_content .sr-part-1 .p2 {
  width: 61%;
  margin: auto;
  text-align: center;
}
.overview_content .sr-part-1 .content {
  margin-top: 60px;
}
.overview_content .sr-part-1 .content .swiper-container {
  overflow: initial;
}
.overview_content .sr-part-1 .swiper-button-prev {
  display: none;
}
.overview_content .sr-part-1 .swiper-button-next {
  display: none;
}
.overview_content .sr-part-1 .box-list {
  justify-content: space-around;
}
.overview_content .sr-part-1 .box-list .box {
  width: 268px;
  height: 285px;
  background: #2d8cff;
  text-align: center;
  color: #000;
  padding: 30px 15px;
  position: relative;
}
.overview_content .sr-part-1 .box-list .box:last-child::before {
  content: url('/static/img/sr/p1-top.svg');
  position: absolute;
  width: 342px;
  z-index: -1;
  top: -292px;
  right: -62px;
}
.overview_content .sr-part-1 .box-list .box:first-child::before {
  content: url('/static/img/sr/p1-bot.svg');
  position: absolute;
  width: 185px;
  z-index: -1;
  bottom: -85px;
  left: -104px;
}
.overview_content .sr-part-1 .box-list .box img {
  height: 48px;
}
.overview_content .sr-part-1 .box-list .box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
}
.overview_content .sr-part-1 .box-list .box span {
  font-size: 16px;
  line-height: 28px;
}
.overview_content .sr-part-2 .content-box {
  background: url('/static/img/sr/p2-bg.svg') center no-repeat;
  background-size: contain;
  padding: 35px 0px;
}
.overview_content .sr-part-2 .content-box h2 {
  width: 50%;
  margin: auto;
  line-height: 46px;
  margin-bottom: 50px;
}
.overview_content .sr-part-2 .content-box .box-list {
  flex-wrap: wrap;
  padding: 0 75px;
  position: relative;
}
.overview_content .sr-part-2 .content-box .box-list::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 23px;
  bottom: 0px;
}
.overview_content .sr-part-2 .content-box .box-list .box {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  height: 149px;
}
.overview_content .sr-part-2 .content-box .box-list .box img {
  width: 41px;
}
.overview_content .sr-part-2 .content-box .box-list .box:nth-child(2n) {
  margin-left: 50px;
}
.overview_content .sr-part-2 .content-box .box-list .box .cont {
  margin-left: 40px;
}
.overview_content .sr-part-2 .content-box .box-list .box .cont .p1 {
  margin-bottom: 10px;
}
.overview_content .sr-part-2 .content-box .box-list .box .cont .p2 {
  font-size: 15px;
  line-height: 24px;
}
.overview_content .sr-part-3 h2 {
  width: 45%;
  margin: auto;
  margin-bottom: 20px;
}
.overview_content .sr-part-3 .p2 {
  width: 70%;
  text-align: center;
  margin: auto;
}
.overview_content .sr-part-3 .box-list {
  margin-top: 70px;
  justify-content: space-between;
}
.overview_content .sr-part-3 .box-list .box {
  text-align: center;
  flex: 0 0 22%;
}
.overview_content .sr-part-3 .box-list .box img {
  height: 78px;
}
.overview_content .sr-part-3 .box-list .box p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}
.overview_content .sr-part-3 .box-list .box span {
  font-size: 16px;
  line-height: 28px;
}
.overview_content .arrow {
  text-align: center;
  padding: 0 0 60px 0;
}
.overview_content .arrow img {
  cursor: pointer;
  width: 35px;
  animation: floating 3.5s linear infinite;
}
.overview_content .macmaster-1 .box-list {
  justify-content: space-around;
  align-items: center;
}
.overview_content .macmaster-1 .box-list .box-left {
  width: 38%;
}
.overview_content .macmaster-1 .box-list .box-left ul li {
  margin-top: 20px;
}
.overview_content .macmaster-1 .box-list .box-left ul li h3 {
  font-size: 21px;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  margin-bottom: 10px;
}
.overview_content .macmaster-1 .box-list .box-right {
  width: 39%;
}
.overview_content .macmaster-2 .content {
  background: #f9f7f9;
  border-radius: 15px;
  padding: 50px;
}
.overview_content .macmaster-2 .content h2 {
  margin: 0 0 15px 0;
}
.overview_content .macmaster-2 .content .p2 {
  text-align: center;
  margin-bottom: 35px;
}
.overview_content .macmaster-2 .content .box-list {
  flex-wrap: wrap;
  justify-content: center;
}
.overview_content .macmaster-2 .content .box-list .box {
  display: flex;
  flex: 0 0 45%;
  align-items: flex-end;
  padding: 40px 50px;
}
.overview_content .macmaster-2 .content .box-list .box:first-child {
  border-bottom: 1px solid #dcdddd;
  border-right: 1px solid #dcdddd;
}
.overview_content .macmaster-2 .content .box-list .box:nth-child(2) {
  border-bottom: 1px solid #dcdddd;
}
.overview_content .macmaster-2 .content .box-list .box:nth-child(3) {
  border-right: 1px solid #dcdddd;
}
.overview_content .macmaster-2 .content .box-list .box img {
  height: 52px;
}
.overview_content .macmaster-2 .content .box-list .box .cont {
  margin-left: 20px;
}
.overview_content .macmaster-2 .content .box-list .box .cont h3 {
  font-size: 18px;
  font-weight: bold;
}
.overview_content .macmaster-3 h2 {
  position: relative;
}
.overview_content .macmaster-3 h2::before {
  content: url(/static/img/mt/p3-title.svg);
  position: absolute;
  width: 113px;
  right: 155px;
  top: -120px;
  z-index: -1;
}
.overview_content .macmaster-3 h2::after {
  content: url(/static/img/doTrans_new/bg-top_2.svg);
  position: absolute;
  width: 113px;
  left: 212px;
  top: -52px;
  z-index: -1;
}
.overview_content .macmaster-3 .box-list {
  justify-content: space-around;
  align-items: center;
}
.overview_content .macmaster-3 .box-list .box-left {
  width: 50%;
}
.overview_content .macmaster-3 .box-list .box-right .p2 {
  width: 75%;
  margin-bottom: 30px;
}
.overview_content .macmaster-3 .box-list .box-right ul li {
  font-size: 16px;
  color: #595757;
  margin-top: 20px;
  padding-left: 20px;
  position: relative;
}
.overview_content .macmaster-3 .box-list .box-right ul li::before {
  content: '✓';
  color: #ff7e78;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  position: absolute;
  left: 0;
}
.overview_content .macmaster-4 .scroll-box {
  background: #0c132b;
  border-radius: 15px;
  padding: 50px;
}
.overview_content .macmaster-4 .scroll-box h2 {
  color: #fff;
  margin-bottom: 10px;
}
.overview_content .macmaster-4 .scroll-box .p2 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container {
  width: 100%;
  height: 500px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-prev {
  display: block;
  background: #dcdddd;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-prev:hover {
  background: #2d8cff;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-prev::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/static/img/doTrans_new/arrow-left.svg) center no-repeat;
  position: relative;
  margin: auto;
  top: 15%;
  right: 5%;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-next {
  display: block;
  background: #dcdddd;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-next::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/static/img/doTrans_new/arrow-right.svg) center no-repeat;
  position: relative;
  margin: auto;
  top: 15%;
  left: 5%;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-button-next:hover {
  background: #2d8cff;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper {
  align-items: center;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  width: 277px;
  height: 331px;
  background: #fff;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  transition: 300ms;
  transform: translateY(0px);
  opacity: 0.8;
  padding: 0 50px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: translateY(-25px);
  opacity: 1;
  z-index: 99;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev {
  transform: translateX(90px);
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: translateX(-90px);
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide .pic {
  text-align: center;
  margin-bottom: 30px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide .pic img {
  height: 105px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide .desc {
  text-align: center;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide .desc p {
  font-size: 18px;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  margin-bottom: 20px;
}
.overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide .desc span {
  font-size: 16px;
}
.overview_content .hidata-part-1 .box-list {
  justify-content: space-around;
}
.overview_content .hidata-part-1 .box-list .desc {
  width: 30%;
}
.overview_content .hidata-part-1 .box-list .desc h2 {
  text-align: left;
  position: relative;
  line-height: 46px;
}
.overview_content .hidata-part-1 .box-list .desc h2::before {
  content: url(/static/img/hidata/title-1.svg);
  position: absolute;
  width: 185px;
  left: -44px;
  top: -95px;
  z-index: -1;
}
.overview_content .hidata-part-1 .box-list .pic {
  width: 45%;
}
.overview_content .hidata-part-1 .box-list .pic .background {
  position: relative;
}
.overview_content .hidata-part-1 .box-list .pic .background .moblie {
  display: none;
}
.overview_content .hidata-part-1 .box-list .pic .background .bg {
  max-width: 100%;
}
.overview_content .hidata-part-1 .box-list .pic .background .mouse {
  width: 24px;
  height: 26px;
  position: absolute;
  z-index: 3;
  left: 286px;
  top: 121px;
  animation-name: mouse;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.overview_content .hidata-part-1 .box-list .pic .background .mouse_2 {
  width: 24px;
  height: 26px;
  position: absolute;
  z-index: 3;
  left: 286px;
  top: 121px;
  animation-name: mouse_2;
  animation-delay: 1300ms;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.overview_content .hidata-part-1 .box-list .pic .background .files-1 {
  width: 114px;
  height: 98px;
  position: absolute;
  bottom: -35px;
  right: -35px;
  z-index: 2;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-name: drag;
}
.overview_content .hidata-part-1 .box-list .pic .background .files-1 .selected {
  opacity: 0;
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  top: 0;
  right: 0;
  animation-name: selected;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.overview_content .hidata-part-1 .box-list .pic .background .files-2 {
  width: 57px;
  height: 70px;
  position: absolute;
  bottom: 90px;
  right: -35px;
  z-index: 2;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-delay: 1300ms;
  animation-name: drag_2;
}
.overview_content .hidata-part-1 .box-list .pic .background .files-2 .selected {
  opacity: 0;
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 3;
  top: 20px;
  right: -5px;
  animation-name: selected;
  animation-delay: 1300ms;
  animation-duration: 3000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.overview_content .hidata-part-2 {
  margin-top: 60px;
}
.overview_content .hidata-part-2 .box-list {
  position: relative;
}
.overview_content .hidata-part-2 .box-list::before {
  content: url(/static/img/hidata/title-2.svg);
  position: absolute;
  width: 245px;
  left: -44px;
  bottom: -185px;
  z-index: -1;
}
.overview_content .hidata-part-2 .flex-item {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 212px;
  height: 274px;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 180ms linear;
}
.overview_content .hidata-part-2 .flex-item .cover-item {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 212px;
  height: 100%;
  background: #fff;
  border: 4px solid #2cdbba;
  border-right: none;
}
.overview_content .hidata-part-2 .flex-item .cover-item h3 {
  font-size: 20px;
  color: #3e3a39;
  font-weight: 800;
}
.overview_content .hidata-part-2 .flex-item:last-child .cover-item {
  border: 4px solid #2d8cff;
  border-right: 4px solid #2d8cff;
}
.overview_content .hidata-part-2 .flex-item:nth-child(2) .cover-item {
  border: 4px solid #ff7e78;
  border-right: none;
}
.overview_content .hidata-part-2 .flex-item .hide-item {
  display: none;
  width: 0%;
  flex-wrap: wrap;
  align-items: center;
}
.overview_content .hidata-part-2 .flex-item .hide-item.flex-3-row {
  justify-content: center;
}
.overview_content .hidata-part-2 .flex-item .hide-item.flex-3-row .item {
  display: inline-flex;
  flex: 0 0 32%;
  height: 72px;
}
.overview_content .hidata-part-2 .flex-item .hide-item p {
  width: 60%;
  font-size: 18px;
  line-height: 1.78;
  color: #333;
}
.overview_content .hidata-part-2 .flex-item .hide-item.flex-4-row .item {
  display: inline-flex;
  flex: 0 0 23%;
  height: 72px;
}
.overview_content .hidata-part-2 .flex-item.hovering {
  flex: 1;
  border: 4px solid #2cdbba;
  border-right: none;
  background: #fff;
}
.overview_content .hidata-part-2 .flex-item.hovering:last-child {
  border: 4px solid #2d8cff;
  border-right: 4px solid #2d8cff;
}
.overview_content .hidata-part-2 .flex-item.hovering:nth-child(2) {
  border: 4px solid #ff7e78;
  border-right: none;
}
.overview_content .hidata-part-2 .flex-item.hovering .hide-item {
  display: flex;
  width: 100%;
  height: 80%;
}
.overview_content .hidata-part-2 .flex-item.hovering .cover-item {
  border: none;
}
.overview_content .hidata-part-2 .title {
  display: flex;
  justify-content: flex-end;
}
.overview_content .hidata-part-2 .title h2 {
  width: 40%;
  text-align: left;
  position: relative;
}
.overview_content .hidata-part-2 .title h2::before {
  content: '';
  position: absolute;
  width: 176px;
  height: 176px;
  border: 20px solid #2d8cff;
  left: -52px;
  top: -98px;
  z-index: -1;
}
.overview_content .hidata-part-3 {
  margin-top: 90px;
}
.overview_content .hidata-part-3 .inner {
  background: #0c132b;
  border-radius: 15px;
  text-align: center;
  padding: 40px 20px 80px;
  position: relative;
}
.overview_content .hidata-part-3 .inner::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -50px;
}
.overview_content .hidata-part-3 .inner::after {
  content: url(../img/index-new/SVG/icon-seven.svg);
  position: absolute;
  width: 150px;
  left: 0px;
  bottom: -50px;
}
.overview_content .hidata-part-3 .inner img {
  width: 693px;
}
.overview_content .hidata-part-3 .inner .text {
  width: 85%;
  margin: auto;
}
.overview_content .hidata-part-3 .inner .text h2 {
  width: 65%;
  margin: 0px auto 20px;
  color: #fff;
  line-height: 46px;
}
.overview_content .hidata-part-3 .inner .text .p2 {
  color: #fff;
}
.overview_content .hidata-part-3 .inner .text .p2 a {
  color: #fff100;
}
.overview_content .hidata-part-4 .box-list {
  justify-content: space-between;
}
.overview_content .hidata-part-4 .box-list .flex-item {
  width: 50%;
}
.overview_content .hidata-part-4 .box-list .flex-item .pic {
  position: relative;
  text-align: right;
}
.overview_content .hidata-part-4 .box-list .flex-item .pic::before {
  content: '';
  display: block;
  width: 544px;
  height: 492px;
  background: url(../img/hidata/p4-pic.svg) 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
}
.overview_content .hidata-part-4 .box-list .flex-item .pic img {
  max-width: 460px;
}
.overview_content .hidata-part-4 .box-list .flex-item .text {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 50px;
}
.overview_content .hidata-part-4 .box-list .flex-item .text h2 {
  text-align: left;
  color: #fff;
  line-height: 46px;
}
.overview_content .hidata-part-4 .box-list .flex-item .text .p2 {
  color: #fff;
}
.overview_content .hidata-part-4 .box-list .flex-item .text .p2 a {
  color: #fff100;
}
.overview_content .hidata-part-4 .box-list .flex-item .text::before {
  content: '';
  display: block;
  width: 904px;
  height: 513px;
  background: url(../img/hidata/p4-bg.svg) 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: -30px;
  right: -20px;
  z-index: -1;
}
.overview_content .vcu-part-1 .box-list {
  height: 492px;
  position: relative;
}
.overview_content .vcu-part-1 .box-list .box {
  position: absolute;
  background: #fff;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  padding-right: 20px;
}
.overview_content .vcu-part-1 .box-list .box h3 {
  font-size: 18px;
  font-weight: bold;
  font-family: "OpenSans-Extrabold";
  margin-bottom: 20px;
}
.overview_content .vcu-part-1 .box-list .box .mob {
  display: none;
  width: 102px;
  height: 102px;
}
.overview_content .vcu-part-1 .box-list .box span {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
}
.overview_content .vcu-part-1 .box-list .box.box-one {
  border: 2px solid #2d8cff;
  width: 370px;
  height: 222px;
  transform: rotateZ(-10deg);
}
.overview_content .vcu-part-1 .box-list .box.box-one img {
  position: absolute;
  width: 102px;
  height: 102px;
  top: -60px;
  left: -45px;
}
.overview_content .vcu-part-1 .box-list .box.box-two {
  border: 2px solid #ff7e78;
  width: 364px;
  height: 240px;
  bottom: 0px;
  left: 30%;
  transform: rotateZ(5deg);
}
.overview_content .vcu-part-1 .box-list .box.box-two img {
  position: absolute;
  width: 208px;
  top: -55px;
  left: -151px;
}
.overview_content .vcu-part-1 .box-list .box.box-three {
  border: 2px solid #78ddac;
  width: 401px;
  height: 276px;
  right: 0;
  transform: rotateZ(-5deg);
}
.overview_content .vcu-part-1 .box-list .box.box-three img {
  position: absolute;
  width: 246px;
  top: -67px;
  left: -194px;
}
.overview_content .vcu-part-2 .content {
  background: #0c132b;
  border-radius: 15px;
  padding: 80px 0;
  position: relative;
}
.overview_content .vcu-part-2 .content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -70px;
}
.overview_content .vcu-part-2 .content::after {
  content: url(/static/img/vcu_new/p2-icon.svg);
  position: absolute;
  width: 150px;
  left: 40px;
  top: -90px;
}
.overview_content .vcu-part-2 .content h2 {
  width: 80%;
  line-height: 46px;
  margin: auto;
  color: #fff;
}
.overview_content .vcu-part-2 .content .sub-title {
  width: 80%;
  margin: 20px auto;
  color: #fff;
}
.overview_content .vcu-part-2 .content .box-list {
  justify-content: space-around;
  margin-top: 50px;
}
.overview_content .vcu-part-2 .content .box-list .box {
  position: relative;
  cursor: pointer;
  width: 170px;
  height: 207px;
  text-align: center;
  border-radius: 12px;
}
.overview_content .vcu-part-2 .content .box-list .box img {
  width: 84px;
}
.overview_content .vcu-part-2 .content .box-list .box .p1 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: "OpenSans-bold";
}
.overview_content .vcu-part-2 .content .box-list .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1100;
}
.overview_content .vcu-part-2 .content .box-list .box div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overview_content .vcu-part-2 .content .box-list .box::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0c132b;
  border-radius: 12px;
  box-shadow: rgba(8, 6, 12, 0.45) 3px 2px 18px;
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(0);
  position: absolute;
  z-index: 900;
  transition-duration: 0.3s;
}
.overview_content .vcu-part-2 .content .box-list .box:hover::after {
  transform: scale(1);
}
.overview_content .vcu-part-3 .box-list {
  justify-content: space-around;
  align-items: center;
}
.overview_content .vcu-part-3 .box-list .box {
  width: 45%;
}
.overview_content .vcu-part-3 .box-list .box h2 {
  text-align: left;
  line-height: 46px;
}
.overview_content .vcu-part-3 .box-list .box h2 a {
  font-size: 30px;
  text-align: center;
  color: #000;
  margin: 0 0 50px;
  font-family: opensans-extrabold;
  font-weight: 700;
}
.overview_content .vcu-part-3 .box-list .box h2 a::before {
  display: none;
}
.overview_content .vcu-part-3 .box-list .box .p2 {
  margin-bottom: 30px;
}
.overview_content .vcu-part-3 .box-list .box a {
  color: #2d8cff;
  font-size: 16px;
  position: relative;
  padding-right: 25px;
}
.overview_content .vcu-part-3 .box-list .box a::before {
  content: '>>';
  color: #2d8cff;
  position: absolute;
  right: 0;
}
.overview_content .vcu-part-3 .box-list .box a:hover::before {
  right: -10px;
  transition: right 0.5s;
}
.overview_content .vcu-part-4 .content {
  background: #ff7e7810;
  border-radius: 15px;
  position: relative;
  padding: 60px 0;
}
.overview_content .vcu-part-4 .content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  right: 0;
  top: -70px;
}
.overview_content .vcu-part-4 .content::after {
  content: url(/static/img/vcu_new/p2-icon.svg);
  position: absolute;
  width: 150px;
  left: 40px;
  top: -90px;
}
.overview_content .vcu-part-4 .content h2 {
  margin-bottom: 20px;
}
.overview_content .vcu-part-4 .content h2 a {
  font-size: 30px;
  text-align: center;
  color: #000;
  margin: 0 0 50px;
  font-family: opensans-extrabold;
  font-weight: 700;
}
.overview_content .vcu-part-4 .content h2 {
  margin-bottom: 20px;
}
.overview_content .vcu-part-4 .content .sub-title {
  width: 80%;
  margin: 0px auto 20px;
}
.overview_content .vcu-part-4 .content .box-list {
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
}
.overview_content .vcu-part-4 .content .box-list .pic {
  width: 35%;
}
.overview_content .vcu-part-4 .content .box-list .boxs {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px dashed #2d8cff;
}
.overview_content .vcu-part-4 .content .box-list .boxs .box {
  padding: 10px;
  position: relative;
}
.overview_content .vcu-part-4 .content .box-list .boxs .clip {
  width: 240px;
  height: 201px;
  background: url('/static/img/vcu_new/p4-clip.svg') no-repeat;
}
.overview_content .vcu-part-4 .content .box-list .boxs .clip::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #2d8cff;
  border-radius: 50%;
  position: absolute;
  bottom: -28px;
  left: 48%;
}
.overview_content .vcu-part-4 .content .box-list .boxs .merge {
  width: 240px;
  height: 244px;
  background: url('/static/img/vcu_new/p4-merge.svg') no-repeat;
}
.overview_content .vcu-part-4 .content .box-list .boxs .merge::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #2d8cff;
  border-radius: 50%;
  position: absolute;
  bottom: -28px;
  left: 48%;
}
.overview_content .vcu-part-5 .box-list {
  flex-wrap: wrap;
}
.overview_content .vcu-part-5 .box-list .box {
  flex: 0 0 20%;
  text-align: center;
  margin-top: 50px;
}
.overview_content .vcu-part-5 .box-list .box img {
  height: 103px;
}
.overview_content .vcu-part-5 .box-list .box p {
  width: 137px;
  margin: 10px auto;
  text-align: left;
}
.overview_content .vcu-part-5 .btn {
  display: none;
}
.overview_content .vcu-part-6 .content {
  background: #2d8cff10;
  border-radius: 15px;
  position: relative;
  padding: 60px 0;
}
.overview_content .vcu-part-6 .content::before {
  content: url(/static/img/adr_new/icon-four.svg);
  position: absolute;
  width: 150px;
  left: 25px;
  top: -70px;
}
.overview_content .vcu-part-6 .content .box-list {
  justify-content: space-around;
  align-items: center;
}
.overview_content .vcu-part-6 .content .box-list .box {
  width: 40%;
}
.overview_content .vcu-part-6 .content .box-list .box h2 {
  text-align: left;
  line-height: 46px;
}
.overview_content .vcu-part-7 .box-list {
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.overview_content .vcu-part-7 .box-list::after {
  content: url(/static/img/vcu_new/p2-icon.svg);
  position: absolute;
  width: 135px;
  right: 40px;
  top: -90px;
}
.overview_content .vcu-part-7 .box-list .box {
  width: 40%;
}
.overview_content .vcu-part-7 .box-list .box h2 {
  text-align: left;
  line-height: 46px;
}
.overview_content .vcu-part-7 .box-list .box .p2 {
  margin-bottom: 30px;
}
.overview_content .vcu-part-8 .box-list {
  justify-content: space-around;
  align-items: center;
}
.overview_content .vcu-part-8 .box-list .box {
  width: 48%;
}
.overview_content .vcu-part-8 .box-list .box h2 {
  text-align: left;
  line-height: 46px;
}
.overview_content .vcu-part-8 .box-list .box .p2 {
  margin-bottom: 30px;
}
.overview_content .vcu-part-8 .box-list .box a {
  color: #2d8cff;
  font-size: 16px;
  position: relative;
}
.overview_content .vcu-part-8 .box-list .box a:hover::before {
  right: -10px;
  transition: right 0.5s;
}
.overview_content .vcu-part-8 .box-list .box a::before {
  content: '>>';
  color: #2d8cff;
  position: relative;
  right: 0;
  padding-right: 10px;
}
.overview_content .ios-unlock .title {
  width: 82%;
  margin: auto auto 30px auto;
  line-height: 45px;
  font-size: 30px;
  text-align: center;
  color: #000;
  font-family: opensans-extrabold;
  font-weight: 700;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content {
  padding: 50px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .text-content {
  font-size: 21px;
  width: 168px;
  margin-right: 80px;
  font-weight: bold;
  font-family: opensans-extrabold;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item {
  display: inline-block;
  height: 125px;
  width: 192px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 3px rgba(58, 87, 241, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
  cursor: pointer;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo {
  font-size: 43px;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo-1::before {
  color: #22B573 !important;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo-2::before {
  color: #3a57f1 !important;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo-3::before {
  color: #9652d1 !important;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item:hover {
  background: #3A57F1;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item:hover .block-text {
  color: #fff;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item:hover .icon-logo::before {
  color: #fff !important;
}
.overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .block-text {
  color: #666666;
  margin-top: 10px;
  font-size: 16px;
}
.overview_content .ios-unlock .content-wrapper-2 {
  margin-top: 70px;
}
.overview_content .ios-unlock .content-wrapper-2 .article-content .text-content {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  width: 70%;
  line-height: 30px;
  margin: 0 auto;
}
.overview_content .ios-unlock .content-wrapper-2 .article-content .text-content:last-child {
  margin-top: 30px;
  color: #FF7E78;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item {
  width: 514px;
  height: 179px;
  box-shadow: 0px 0px 15px 3px rgba(58, 87, 241, 0.1);
  display: flex;
  border-radius: 10px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item::before {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 179px;
  border-radius: 16px;
  background: #FF7E78;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item:last-child::before {
  background: #2D8CFF;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article {
  width: 400px;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article .static-block-title {
  font-size: 18px;
  font-weight: bold;
  font-family: opensans-extrabold;
}
.overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article .static-block-text {
  color: #595757;
  font-size: 16px;
  line-height: 30px;
  margin-top: 16px;
}
.overview_content .ios-unlock .content-wrapper-2 .flex-content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overview_content .ios-unlock .content-wrapper-2 .flex-content .flex-item .warning {
  font-size: 16px;
  color: #FF7E78;
}
.overview_content .ios-unlock .content-wrapper-2 .flex-content .flex-item .list-wrapper li {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
  max-width: 500px;
  color: #595757;
}
.overview_content .ios-unlock .content-wrapper-2 .flex-content .flex-item img {
  width: 456px;
}
.overview_content .ios-unlock .content-wrapper-3 {
  margin-top: 160px;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper {
  position: relative;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper::before {
  content: "";
  display: inline-block;
  background-image: url(../../images/iosunlock/absolute-1.svg);
  width: 190px;
  height: 192px;
  background-size: cover;
  position: absolute;
  right: -80px;
  top: -100px;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper::after {
  content: "";
  display: inline-block;
  background-image: url(../../images/iosunlock/absolute-2.svg);
  width: 136px;
  height: 181px;
  background-size: cover;
  position: absolute;
  right: unset;
  top: unset;
  left: -115px;
  bottom: -124px;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content {
  display: flex;
  align-items: center;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box {
  display: inline-block;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item {
  width: 327px;
  height: 108px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 3px rgba(58, 87, 241, 0.1);
  margin-top: 15px;
  opacity: 0.5;
  cursor: pointer;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .mini-screen-block {
  display: none;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item.active-item {
  transform: scale(1.08);
  box-shadow: 0px 0px 15px 3px rgba(58, 87, 241, 0.1);
  opacity: 1;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item {
  width: 68px;
  height: 68px;
  margin-left: 17px;
  display: inline-block;
  background-size: cover;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item-1 {
  background-image: url(../../images/iosunlock/logo-4.svg);
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item-2 {
  background-image: url(../../images/iosunlock/logo-5.svg);
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item-3 {
  background-image: url(../../images/iosunlock/logo-6.svg);
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item-4 {
  background-image: url(../../images/iosunlock/logo-7.svg);
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .logo-item-5 {
  background-image: url(../../images/iosunlock/logo-8.svg);
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .select-text {
  font-size: 16px;
  margin-left: 15px;
  font-family: opensans-extrabold;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article {
  display: none;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article {
  margin-left: 108px;
  display: inline-block;
  vertical-align: top;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-change-text {
  display: none;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-change-text .mini-title {
  font-size: 20px;
  font-family: opensans-extrabold;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-change-text .mini-text {
  margin-top: 17px;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  color: #595757;
  display: inline-block;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-change-text:first-child {
  display: block;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-static-text {
  margin-top: 100px;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-static-text .warning {
  font-size: 18px;
  color: #FF7E78;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-static-text .static-text-box {
  margin-top: 30px;
}
.overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article .select-static-text .static-text-box .static-text-item {
  font-size: 16px;
  color: #4D4D4D;
  line-height: 30px;
  margin-bottom: 10px;
}
.overview_content .ios-unlock .content-wrapper-4 {
  margin-top: 160px;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item:last-child {
  margin-left: 108px;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .title {
  font-size: 30px;
  line-height: 35px;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article,
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .list-wrapper li {
  font-size: 16px;
  line-height: 30px;
  color: #595757;
  max-width: 500px;
  margin-top: 30px;
  margin-bottom: 5px;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 {
  margin-top: 35px;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .mini-title {
  color: #000;
  font-size: 18px;
  font-family: opensans-extrabold;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .list-wrapper {
  margin-top: 25px;
  margin-bottom: 0;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .list-wrapper li {
  margin-top: 0;
}
.overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item img {
  width: 474px;
}
#slider {
  position: relative;
  padding-bottom: 60px;
  margin-top: 70px;
}
#slider .flex-viewport {
  width: 90%;
  margin: auto;
}
#slider .slides-li {
  text-align: center;
  width: 100px;
}
#slider .slides-li img {
  width: 110px;
}
#slider .flex-control-nav {
  bottom: 0;
}
#slider .flex-control-nav li a {
  background-color: #999;
  background: #999999;
}
#slider .flex-control-nav li a.flex-active {
  background-color: #0066cb;
  background: #0066cb;
}
#slider .flex-direction-nav .flex-prev {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  left: 0;
  position: absolute;
}
#slider .flex-direction-nav .flex-prev:hover {
  background: #2D8CFF;
}
#slider .flex-direction-nav .flex-prev::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-l.svg) no-repeat 40% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
#slider .flex-direction-nav .flex-next {
  width: 30px;
  height: 30px;
  background: #C9CACA;
  border-radius: 50%;
  z-index: 2;
  outline: none;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 5px;
  right: 0;
  left: unset;
}
#slider .flex-direction-nav .flex-next:hover {
  background: #2D8CFF;
}
#slider .flex-direction-nav .flex-next::before {
  content: '';
  background: url(../img/index-new/SVG/arrow-r.svg) no-repeat 60% center;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 50% 50%;
  height: 100%;
  border-radius: 50%;
}
.footer {
  box-shadow: none;
}
#android-data-backup-restore .banner .content .banner-pro-pic,
#data-recovery .banner .content .banner-pro-pic,
#ios-system-recovery .banner .content .banner-pro-pic,
#mobile-transfer .banner .content .banner-pro-pic,
#ios-screen-recorder .banner .content .banner-pro-pic,
#whatsapp-transfer .banner .content .banner-pro-pic,
#macmaster .banner .content .banner-pro-pic,
#video-converter .banner .content .banner-pro-pic,
#broken-android-data-extraction .banner .content .banner-pro-pic {
  margin-top: 50px;
}
#ios-transfer .banner .content .banner-pro-pic {
  margin-top: 50px;
}
#ios-transfer .banner .content .banner-pro-pic img {
  margin-right: -40px;
}
#dotrans .banner .content .banner-pro-pic {
  margin-top: 50px;
}
#dotrans .banner .content ul li {
  color: #595757;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .overview_content .dr-part-4 .box-list::before {
    top: 62px;
    left: 134px;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(3) {
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(6) {
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(4) {
    border-top: 1px dashed #ffffff;
    border-right: 1px dashed #ffffff;
  }
}
@media screen and (max-width: 1080px) {
  .overview_content .mt-part-4 .wrap-place {
    overflow: scroll;
  }
  .overview_content .paweditor-part-3 .flex-item.image .file {
    right: 0px;
  }
}
@media screen and (max-width: 960px) {
  .overview_content .adbr-part-1 .box-list {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .overview_content .adbr-part-1 .box-list .box {
    width: 65%;
  }
  .overview_content .adbr-part-1 .box-list .box:last-child {
    width: 87%;
    margin-top: 60px;
  }
  .overview_content .adbr-part-2 .box-list {
    flex-direction: column-reverse;
  }
  .overview_content .adbr-part-2 .box-list .box {
    text-align: center;
  }
  .overview_content .adbr-part-2 .box-list .box:last-child {
    flex: 0 0 262px;
    width: 40%;
  }
  .overview_content .adbr-part-3 .pic-box {
    display: flex;
    width: 50%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
  }
  .overview_content .dr-part-4 .box-list::before {
    content: '';
    display: none;
  }
  .overview_content .heic-part-1 .box-list {
    flex-direction: column;
  }
  .overview_content .heic-part-1 .box-list::before {
    display: none;
  }
  .overview_content .heic-part-1 .box-list .desc {
    width: 100%;
  }
  .overview_content .heic-part-1 .box-list .desc h2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .heic-part-1 .box-list .desc h2::before {
    display: none;
  }
  .overview_content .heic-part-1 .box-list .desc .p2 {
    text-align: center;
  }
  .overview_content .heic-part-1 .box-list .box {
    text-align: center;
  }
  .overview_content .heic-part-2 .box-list {
    flex-direction: column-reverse;
  }
  .overview_content .heic-part-2 .box-list .box {
    width: 100%;
  }
  .overview_content .heic-part-2 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .heic-part-3 .container::before {
    display: none;
  }
  .overview_content .heic-part-4 .table-box {
    width: 100%;
    overflow: scroll;
  }
  .overview_content .heic-part-4 .table-box .table {
    width: 1060px;
  }
  .overview_content .idbr-part-1 .box-list {
    flex-direction: column;
  }
  .overview_content .idbr-part-1 .box-list .box {
    width: 100%;
    margin-top: 20px;
  }
  .overview_content .idbr-part-1 .box-list .box h2 {
    text-align: center;
    padding-left: 0px;
  }
  .overview_content .idbr-part-1 .box-list .box h2::before {
    display: none;
  }
  .overview_content .idbr-part-1 .box-list .box .p2 {
    text-align: center;
    padding-left: 0px;
  }
  .overview_content .idbr-part-2 {
    padding: 20px 0;
  }
  .overview_content .idbr-part-2 .box-list {
    flex-direction: column-reverse;
  }
  .overview_content .idbr-part-2 .box-list::before {
    display: none;
  }
  .overview_content .idbr-part-2 .box-list .box {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .overview_content .idbr-part-2 .box-list .box:first-child {
    width: 60%;
  }
  .overview_content .idbr-part-2 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .idbr-part-2 .box-list .box h2::before {
    display: none;
  }
  .overview_content .idbr-part-3 .table-container {
    overflow: scroll;
  }
  .overview_content .idbr-part-3 .table-container::before {
    display: none;
  }
  .overview_content .idbr-part-3 .table-container .table {
    width: 996px;
    max-width: unset;
  }
  .overview_content .idr-part-1 .box-list::before {
    display: none;
  }
  .overview_content .idr-part-1 .box-list::after {
    display: none;
  }
  .overview_content .idr-part-1 .box-list .box {
    width: 219px;
    height: 219px;
  }
  .overview_content .idr-part-1 .box-list .box img {
    height: 112px;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr td {
    flex: 0 0 30%;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr td:nth-child(3n) {
    border-right: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td {
    padding: 8px 8px 25px;
    position: relative;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td:nth-child(3) {
    display: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td:nth-child(4) {
    display: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.lasttRow td:nth-child(5) {
    display: none;
  }
  .overview_content .idr-part-4 .box-list4 {
    flex-direction: column;
    height: auto;
    align-items: center;
    padding: 60px 0;
  }
  .overview_content .idr-part-4 .box-list4 .desc-box {
    width: 90%;
  }
  .overview_content .idr-part-4 .box-list4 .desc-box .desc {
    text-align: center;
  }
  .overview_content .idr-part-4 .box-list4 .desc-box h2 {
    text-align: center;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box {
    margin-top: 75px;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box .swiper-pagination {
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .overview_content .isr-part-1 .box-list {
    flex-direction: column;
  }
  .overview_content .isr-part-1 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-part-1 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .isr-part-1 .box-list .box h2::before {
    display: none;
  }
  .overview_content .isr-part-1 .box-list .table {
    width: 85%;
    margin-top: 30px;
  }
  .overview_content .isr-part-2 .box-list .flex-box:first-child .box::before {
    display: none;
  }
  .overview_content .isr-part-2 .box-list .flex-box:last-child .box::before {
    display: none;
  }
  .overview_content .isr-part-2 .box-list .flex-box:last-child .box::after {
    display: none;
  }
  .overview_content .isr-part-3 .box-list {
    flex-direction: column-reverse;
    padding: 50px 30px;
  }
  .overview_content .isr-part-3 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-part-3 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .isr-part-3 .box-list .box:first-child {
    width: 55%;
    margin-top: 20px;
  }
  .overview_content .isr-part-3 .box-list::before {
    display: none;
  }
  .overview_content .isr-part-4 {
    padding: 0;
  }
  .overview_content .isr-part-4 .part4-content {
    padding: 0 0 100px;
  }
  .overview_content .isr-part-4 .part4-content .box-list {
    text-align: center;
    flex-direction: column;
  }
  .overview_content .isr-part-4 .part4-content .box-list .box {
    width: 100%;
  }
  .overview_content .isr-part-4 .part4-content .box-list .box:last-child {
    width: 50%;
    margin: 20px auto 0;
  }
  .overview_content .isr-part-4 .part4-content .box-list .box h2 {
    text-align: center;
  }
  .overview_content .isr-part-4 .part4-content .box-list .box h2::before {
    display: none;
  }
  .overview_content .isr-part-4 .part4-content .box-list2 {
    flex-direction: column;
    margin-top: 98px;
    padding: 0 75px;
  }
  .overview_content .isr-part-4 .part4-content .box-list2 .box2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-part-4 .part4-content .box-list2 .box2 h2 {
    text-align: center;
  }
  .overview_content .isr-part-4 .part4-content .box-list3 ul {
    flex-direction: column;
  }
  .overview_content .isr-part-4 .part4-content .box-list3 ul li {
    width: 100%;
  }
  .overview_content .paweditor-part-1 h2 {
    font-size: 24px;
    line-height: 1.36;
  }
  .overview_content .paweditor-part-1 h2::before {
    display: none;
  }
  .overview_content .paweditor-part-2 h2 {
    font-size: 24px;
  }
  .overview_content .paweditor-part-2 h2::before {
    display: none;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .top .item .p1 {
    font-size: 18px;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .top .item .p2 {
    font-size: 14px;
  }
  .overview_content .paweditor-part-3 .flex-item h2 {
    font-size: 24px;
    line-height: 1.36;
  }
  .overview_content .paweditor-part-3 .flex-item h2::before {
    display: none;
  }
  .overview_content .paweditor-part-3 .flex-item .p2 {
    font-size: 14px;
  }
  .overview_content .paweditor-part-3 .flex-item.image .file {
    top: 0;
    right: 0;
    width: 160px;
    height: auto;
  }
  .overview_content .paweditor-part-4 .container::before {
    display: none;
  }
  .overview_content .paweditor-part-4 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .paweditor-part-4 .box-list::before {
    display: none;
  }
  .overview_content .paweditor-part-4 .box-list .left {
    height: 220px;
  }
  .overview_content .paweditor-part-4 .box-list .left .earth {
    top: 0;
    width: 200px;
    height: auto;
    margin-left: -100px;
  }
  .overview_content .paweditor-part-4 .box-list .left .user {
    width: 282px;
    top: 0;
    left: 50%;
    margin-left: -141px;
  }
  .overview_content .paweditor-part-4 .box-list .right {
    flex: 100%;
  }
  .overview_content .sr-part-1 h2 {
    width: 100%;
  }
  .overview_content .sr-part-1 .p2 {
    width: 100%;
  }
  .overview_content .sr-part-1 .box-list .box:last-child::before {
    display: none;
  }
  .overview_content .sr-part-1 .box-list .box:first-child::before {
    display: none;
  }
  .overview_content .sr-part-2 .content-box {
    padding: 0 0px;
  }
  .overview_content .sr-part-2 .content-box h2 {
    width: 100%;
  }
  .overview_content .sr-part-2 .content-box .box-list {
    padding: 0 0px;
  }
  .overview_content .sr-part-2 .content-box .box-list::before {
    display: none;
  }
  .overview_content .sr-part-3 h2 {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
  }
  .overview_content .sr-part-3 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .sr-part-3 .box-list .box {
    text-align: center;
    flex: 0 0 45%;
    margin-top: 15px;
  }
  .overview_content .macmaster-1 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .macmaster-1 .box-list .box-left {
    width: 100%;
  }
  .overview_content .macmaster-1 .box-list .box-right {
    margin-top: 15px;
  }
  .overview_content .macmaster-2 .content .box-list {
    flex-wrap: wrap;
  }
  .overview_content .macmaster-2 .content .box-list .box {
    flex: 100%;
  }
  .overview_content .macmaster-2 .content .box-list .box:first-child {
    border-bottom: none;
    border-right: none;
  }
  .overview_content .macmaster-2 .content .box-list .box:nth-child(2) {
    border-bottom: none;
  }
  .overview_content .macmaster-2 .content .box-list .box:nth-child(3) {
    border-right: none;
  }
  .overview_content .macmaster-3 h2::before {
    display: none;
  }
  .overview_content .macmaster-3 h2::after {
    display: none;
  }
  .overview_content .macmaster-3 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container {
    padding: 0 30px;
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: translateY(0px);
    opacity: 1;
    z-index: 99;
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: translateX(0px);
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev {
    transform: translateX(0px);
  }
  .overview_content .hidata-part-1 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .hidata-part-1 .box-list .desc {
    width: 100%;
  }
  .overview_content .hidata-part-1 .box-list .desc h2 {
    text-align: center;
  }
  .overview_content .hidata-part-1 .box-list .desc h2::before {
    display: none;
  }
  .overview_content .hidata-part-1 .box-list .desc p {
    text-align: center;
  }
  .overview_content .hidata-part-1 .box-list .pic {
    width: 65%;
    margin-top: 15px;
  }
  .overview_content .hidata-part-2 .title h2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .hidata-part-2 .title h2::before {
    display: none;
  }
  .overview_content .hidata-part-2 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .hidata-part-2 .box-list::before {
    display: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item {
    flex: auto;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .cover-item {
    flex: 0 0 130px;
    width: 100%;
    border: 4px solid #2cdbba;
    border-bottom: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item {
    padding-bottom: 40px;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item.flex-4-row .item {
    flex: 0 0 25%;
    margin-bottom: 30px;
  }
  .overview_content .hidata-part-2 .box-list .flex-item.hovering {
    flex: 1;
    border: 4px solid #2cdbba;
    border-bottom: none;
    background: #fff;
  }
  .overview_content .hidata-part-2 .box-list .flex-item.hovering:nth-child(2) {
    border: 4px solid #ff7e78;
    border-bottom: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item.hovering:nth-child(2) .cover-item {
    border: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item.hovering:nth-child(3) {
    border: 4px solid #2d8cff;
  }
  .overview_content .hidata-part-2 .box-list .flex-item.hovering:nth-child(3) .cover-item {
    border: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item:nth-child(2) .cover-item {
    border: 4px solid #ff7e78;
    border-bottom: none;
  }
  .overview_content .hidata-part-2 .box-list .flex-item:nth-child(3) .cover-item {
    border: 4px solid #2d8cff;
  }
  .overview_content .hidata-part-4 {
    overflow: hidden;
  }
  .overview_content .hidata-part-4 .box-list {
    flex-wrap: wrap-reverse;
  }
  .overview_content .hidata-part-4 .box-list .flex-item {
    width: 100%;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .pic::before {
    display: none;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text::before {
    top: -150px;
    right: auto;
    left: -93px;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text h2 {
    text-align: center;
    color: #fff;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text .p2 {
    text-align: center;
  }
  .overview_content .vcu-part-1 {
    padding: 90px 0 30px;
  }
  .overview_content .vcu-part-1 .box-list {
    flex-wrap: wrap;
    height: auto;
  }
  .overview_content .vcu-part-1 .box-list .box {
    position: unset;
    margin-top: 70px;
    padding: 0 20px;
    text-align: center;
  }
  .overview_content .vcu-part-1 .box-list .box img {
    display: none;
  }
  .overview_content .vcu-part-1 .box-list .box .mob {
    display: block;
  }
  .overview_content .vcu-part-1 .box-list .box.box-one {
    width: 100%;
    transform: rotateZ(0deg);
    margin-top: 0px;
  }
  .overview_content .vcu-part-1 .box-list .box.box-one img {
    left: 43%;
  }
  .overview_content .vcu-part-1 .box-list .box.box-two {
    width: 100%;
    transform: rotateZ(0deg);
    left: 43%;
  }
  .overview_content .vcu-part-1 .box-list .box.box-two img {
    width: 102px;
    height: 102px;
    left: 43%;
  }
  .overview_content .vcu-part-1 .box-list .box.box-three {
    width: 100%;
    transform: rotateZ(0deg);
  }
  .overview_content .vcu-part-1 .box-list .box.box-three img {
    width: 102px;
    height: 102px;
    left: 43%;
    top: -50px;
  }
  .overview_content .vcu-part-2 .content::after {
    display: none;
  }
  .overview_content .vcu-part-2 .content::before {
    display: none;
  }
  .overview_content .vcu-part-2 .content h2 {
    width: 100%;
    font-size: 24px;
  }
  .overview_content .vcu-part-2 .content .sub-title {
    width: 90%;
    font-size: 14px;
  }
  .overview_content .vcu-part-2 .content .box-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 80%;
    margin: 50px auto 0;
  }
  .overview_content .vcu-part-2 .content .box-list .box {
    margin-left: 20px;
  }
  .overview_content .vcu-part-3 .box-list {
    flex-direction: column;
  }
  .overview_content .vcu-part-3 .box-list .box {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .overview_content .vcu-part-3 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .vcu-part-3 .box-list .box .p2 {
    text-align: center;
  }
  .overview_content .vcu-part-3 .box-list .box a {
    text-align: center;
  }
  .overview_content .vcu-part-3 .box-list .box:last-child {
    width: 45%;
  }
  .overview_content .vcu-part-4 .content::after {
    display: none;
  }
  .overview_content .vcu-part-4 .content::before {
    display: none;
  }
  .overview_content .vcu-part-4 .content .box-list {
    flex-direction: column-reverse;
    margin-top: 35px;
  }
  .overview_content .vcu-part-4 .content .box-list .boxs {
    flex-direction: column;
    width: 100%;
    border-bottom: none;
    align-items: center;
  }
  .overview_content .vcu-part-4 .content .box-list .boxs .merge {
    margin-top: 30px;
  }
  .overview_content .vcu-part-6 .content::before {
    display: none;
  }
  .overview_content .vcu-part-6 .content .box-list {
    flex-direction: column;
  }
  .overview_content .vcu-part-6 .content .box-list .box {
    width: 90%;
    text-align: center;
    margin-top: 20px;
  }
  .overview_content .vcu-part-6 .content .box-list .box h2 {
    text-align: center;
  }
  .overview_content .vcu-part-6 .content .box-list .box .p2 {
    text-align: center;
  }
  .overview_content .vcu-part-6 .content .box-list .box a {
    text-align: center;
  }
  .overview_content .vcu-part-6 .content .box-list .box:last-child {
    width: 45%;
  }
  .overview_content .vcu-part-7 .box-list {
    flex-direction: column-reverse;
  }
  .overview_content .vcu-part-7 .box-list::after {
    display: none;
  }
  .overview_content .vcu-part-7 .box-list .box {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .overview_content .vcu-part-7 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .vcu-part-7 .box-list .box .p2 {
    text-align: center;
  }
  .overview_content .vcu-part-7 .box-list .box a {
    text-align: center;
  }
  .overview_content .vcu-part-7 .box-list .box:first-child {
    width: 45%;
  }
  .overview_content .vcu-part-8 .box-list {
    flex-direction: column;
  }
  .overview_content .vcu-part-8 .box-list .box {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .overview_content .vcu-part-8 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .vcu-part-8 .box-list .box .p2 {
    text-align: center;
  }
  .overview_content .vcu-part-8 .box-list .box a {
    text-align: center;
  }
  .overview_content .vcu-part-8 .box-list .box:last-child {
    width: 45%;
  }
  .overview_content .adr-part-1 h2 {
    width: 100%;
    margin: 0 auto 50px;
  }
  .overview_content .adr-part-1 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .adr-part-1 .box-list .box {
    width: 35%;
    margin-top: 15px;
  }
  .overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box:nth-child(4) {
    margin-right: 30px;
  }
  .overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box:last-child {
    margin-right: 30px;
  }
  .overview_content .ios-unlock .container {
    width: 95%;
  }
  .overview_content .ios-unlock .title {
    font-size: 24px;
    line-height: 32px;
    margin: auto auto 20px auto;
    width: 100%;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content {
    margin-top: 30px;
    flex-direction: column;
    padding: 30px 0;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .text-content {
    width: auto;
    margin-right: 0;
    text-align: center;
    font-size: 24px;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item {
    margin-right: 0;
    margin-top: 30px;
    background: #3A57F1;
    height: 56px;
    width: 246px;
    flex-direction: initial;
    justify-content: center;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo {
    margin-right: 16px;
    font-size: 30px;
    display: inline-block;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo::before,
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .icon-logo-1::before {
    color: #fff !important;
  }
  .overview_content .ios-unlock .content-wrapper-1 .block-select-content .block-item .block-text {
    color: #fff;
  }
  .overview_content .ios-unlock .content-wrapper-2 {
    margin-top: 40px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .article-content .text-content {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .article-content .text-content:last-child {
    margin-top: 20px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content {
    margin-top: 30px;
    flex-direction: column;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item {
    width: auto;
    height: 122px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item::before {
    height: 122px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article {
    padding-left: 35px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article .static-block-title {
    font-size: 14px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item .item-article .static-block-text {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
    width: 90%;
  }
  .overview_content .ios-unlock .content-wrapper-2 .static-block-content .static-block-item:last-child {
    margin-top: 20px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .flex-content {
    flex-direction: column;
  }
  .overview_content .ios-unlock .content-wrapper-2 .flex-content .warning {
    font-size: 14px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .flex-content .flex-item .list-wrapper li {
    font-size: 12px;
    line-height: 16px;
  }
  .overview_content .ios-unlock .content-wrapper-2 .flex-content .flex-item img {
    margin-top: 30px;
  }
  .overview_content .ios-unlock .content-wrapper-3 {
    margin-top: 40px;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper::before {
    display: none;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper::after {
    display: none;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content {
    display: block;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item {
    width: 100%;
    opacity: 1;
    margin-top: 20px;
    height: 100%;
    align-items: initial;
    padding: 25px 0;
    flex-wrap: wrap;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .select-text {
    font-size: 14px;
    padding-top: 25px;
    display: inline-block;
    width: 60%;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item .mini-screen-block {
    display: block;
    padding: 0 20px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 15px;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item.active-item {
    transform: scale(1);
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item:last-child .select-text,
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-box .select-change-item:nth-child(3) .select-text {
    padding-top: 15px;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .select-change-article {
    display: none;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article {
    display: block;
    margin-top: 30px;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article .warning {
    font-size: 14px;
    color: #FF7E78;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article .static-text-box {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article .static-text-box .static-text-item {
    font-size: 12px;
    color: #4D4D4D;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .overview_content .ios-unlock .content-wrapper-3 .select-change-wrapper .select-change-content .mini-screen-article .static-text-box .static-text-item:last-child {
    margin-bottom: 0;
  }
  .overview_content .ios-unlock .content-wrapper-4 {
    margin-top: 40px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content {
    flex-direction: column;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item {
    margin-left: 0 !important;
    line-height: 32px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item:first-child {
    order: 1;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .title {
    width: auto;
    text-align: center;
    font-size: 24px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article {
    font-size: 12px;
    text-align: center;
    text-indent: 2rem;
    line-height: 20px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 {
    margin-top: 30px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .mini-title {
    font-size: 24px;
    display: block;
    text-align: center;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .list-wrapper {
    margin-top: 30px;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item .flex-item-article2 .list-wrapper li {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
  .overview_content .ios-unlock .content-wrapper-4 .flex-content .flex-item img {
    margin-top: 30px;
  }
  .overview_content .comment .content-wrapper-5 {
    margin-top: 40px;
    padding-top: 25px;
    position: relative;
  }
  .overview_content .comment .content-wrapper-5::before {
    content: '';
    display: inline-block;
    width: 80%;
    height: 2px;
    background: #DCDDDD;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .overview_content .comment .content-wrapper-5 .using-content h2 {
    padding-top: 30px;
    line-height: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    width: 100%;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box {
    flex-direction: column;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper {
    margin-left: 0;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-2,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-3 {
    width: 80%;
    border-radius: 10px;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation .swiper-title,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-2 .swiper-title,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-3 .swiper-title {
    width: 100%;
    font-size: 14px;
    padding: 20px;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation .swiper-wrapper .swiper-slide.swiper-slide-visible .text,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-2 .swiper-wrapper .swiper-slide.swiper-slide-visible .text,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-3 .swiper-wrapper .swiper-slide.swiper-slide-visible .text {
    width: 65%;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation .swiper-wrapper .swiper-slide.swiper-slide-visible .text p,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-2 .swiper-wrapper .swiper-slide.swiper-slide-visible .text p,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-3 .swiper-wrapper .swiper-slide.swiper-slide-visible .text p,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation .swiper-wrapper .swiper-slide.swiper-slide-visible .text span,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-2 .swiper-wrapper .swiper-slide.swiper-slide-visible .text span,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box .swiper-container-wrapper #text-Navigation-3 .swiper-wrapper .swiper-slide.swiper-slide-visible .text span {
    font-size: 12px;
  }
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box #pic-content,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box #pic-content-2,
  .overview_content .comment .content-wrapper-5 .using-content .scorll-box #pic-content-3 {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .overview h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .overview .sub-title {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: -25px;
  }
  .overview .part {
    padding: 30px 0;
  }
  .overview .banner .content {
    width: 100%;
    text-align: center;
  }
  .overview .banner .content .raty-area {
    margin: 15px auto;
  }
  .overview .inner-nav {
    padding-top: 30px;
  }
  .overview .inner-nav ul li a {
    font-size: 16px;
  }
  .overview_content .adr-part-1 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .adr-part-1 .box-list .box {
    flex: 0 0 45%;
  }
  .overview_content .adr-part-3 .part3-top .part3-top-box-list {
    width: 90%;
  }
  .overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box:nth-child(2n+0) {
    margin-right: 0;
  }
  .overview_content .adr-part-4 .carousel {
    flex-direction: column;
  }
  .overview_content .adr-part-4 .left {
    width: 100%;
  }
  .overview_content .adr-part-4 .left ul {
    display: flex;
    flex-wrap: wrap;
  }
  .overview_content .adr-part-4 .left ul li {
    border-radius: 30px;
    padding: 10px;
  }
  .overview_content .adr-part-4 .left ul li:first-child {
    margin-top: auto;
  }
  .overview_content .adr-part-4 .left::before {
    content: '';
    display: none;
  }
  .overview_content .adr-part-4 .right {
    width: 100%;
  }
  .overview_content .adr-part-4 .right div {
    display: none;
    padding: 15px 0 0px;
    text-align: center;
  }
  .overview_content .adr-part-4 .right div span {
    margin: auto;
  }
  .overview_content .adr-part-4 .right div img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .overview_content .adr-part-4 .right div .p2 {
    color: #fff;
  }
  .overview_content .adr-part-5 .box-list {
    flex-direction: column;
    height: auto;
  }
  .overview_content .adr-part-5 .box-list .box-pic {
    width: 45%;
    margin-bottom: 30px;
  }
  .overview_content .adbr-part-2 .box-list {
    padding: 50px 20px;
    flex: auto;
    width: 100%;
    margin-bottom: 50px;
  }
  .overview_content .adbr-part-2 .box-list .box {
    flex: unset;
    width: 100%;
  }
  .overview_content .adbr-part-2 .box-list .box:last-child {
    flex: auto;
    margin-bottom: 30px;
    margin-left: 20px;
  }
  .overview_content .adbr-part-2 .box-list::after {
    display: none;
  }
  .overview_content .adbr-part-2 .box-list::before {
    display: none;
  }
  .overview_content .bade-part-2 .part-2::before {
    display: none;
  }
  .overview_content .bade-part-2 .part-2::after {
    display: none;
  }
  .overview_content .bade-part-3 .box-list::before {
    display: none;
  }
  .overview_content .bade-part-3 .box-list::after {
    display: none;
  }
  .overview_content .dt-part-1 .dotrans .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .overview_content .dt-part-1 .dotrans .swiper-slide {
    margin-top: 30px;
  }
  .overview_content .dt-part-1 .dt-scroll .swiper-button-prev {
    display: none;
  }
  .overview_content .dt-part-1 .dt-scroll .swiper-button-next {
    display: none;
  }
  .overview_content .dt-part-2 .part-2::before {
    display: none;
  }
  .overview_content .dt-part-2 .part-2::after {
    display: none;
  }
  .overview_content .dt-part-2 .part-2 .box-list {
    flex-direction: column;
    align-items: center;
  }
  .overview_content .dt-part-2 .part-2 .box-list .box {
    text-align: center;
    width: 80%;
    margin-top: 30px;
  }
  .overview_content .dt-part-3 h2 {
    text-align: center;
    padding-right: 0;
  }
  .overview_content .dt-part-3 h2::before {
    display: none;
  }
  .overview_content .dt-part-3 .content-box {
    position: relative;
    margin: auto;
  }
  .overview_content .dt-part-3 .content-box::before {
    content: '';
    display: none;
  }
  .overview_content .dt-part-3 .content-box .swiper-container {
    width: 80%;
  }
  .overview_content .dt-part-3 .content-box .swiper-pagination {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .overview_content .dt-part-3 .content-box .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .overview_content .dt-part-3 .content-box .swiper-button-prev {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .dt-part-3 .content-box .swiper-button-prev::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-left.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    right: 5%;
  }
  .overview_content .dt-part-3 .content-box .swiper-button-next {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .dt-part-3 .content-box .swiper-button-next::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-right.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    left: 5%;
  }
  .overview_content .dt-part-3 .content-box .swiper-button-next.swiper-button-disabled,
  .overview_content .dt-part-3 .content-box .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    background: #dcdddd;
  }
  .overview_content .dt-part-3 .box-list {
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    margin: auto;
    justify-content: unset;
  }
  .overview_content .dt-part-3 .box-list .box {
    height: auto;
    padding: 50px 20px;
  }
  .overview_content .dt-part-3 .box-list .box .info {
    display: block;
    position: unset;
    transform: scale(1);
    height: auto;
  }
  .overview_content .dt-part-4 h2 {
    padding-left: 0px;
    text-align: center;
    width: 100%;
    margin-left: 00px;
    position: relative;
  }
  .overview_content .dt-part-4 h2::before {
    display: none;
  }
  .overview_content .dt-part-4 .box-list {
    width: 80%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 100px;
  }
  .overview_content .dt-part-4 .box-list .box {
    text-align: center;
    width: 103px;
  }
  .overview_content .dt-part-4 .box-list .box img {
    width: 101px;
    height: 101px;
  }
  .overview_content .dt-part-4 .box-list .box p {
    font-size: 19px;
  }
  .overview_content .dr-part-1 .part4-box {
    padding: 30px;
  }
  .overview_content .dr-part-1 .part4-box::before {
    display: none;
  }
  .overview_content .dr-part-1 .part4-box::after {
    display: none;
  }
  .overview_content .dr-part-1 .carousel {
    flex-direction: column;
  }
  .overview_content .dr-part-1 .left {
    width: 100%;
  }
  .overview_content .dr-part-1 .left ul {
    display: flex;
    flex-wrap: wrap;
  }
  .overview_content .dr-part-1 .left ul li {
    border-radius: 30px;
    padding: 10px;
  }
  .overview_content .dr-part-1 .left ul li:first-child {
    margin-top: auto;
  }
  .overview_content .dr-part-1 .left::before {
    content: '';
    display: none;
  }
  .overview_content .dr-part-1 .right {
    width: 100%;
  }
  .overview_content .dr-part-1 .right div {
    display: none;
    padding: 15px 0 0px;
    text-align: center;
  }
  .overview_content .dr-part-1 .right div span {
    margin: auto;
  }
  .overview_content .dr-part-1 .right div img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .overview_content .dr-part-1 .right div .p2 {
    color: #fff;
    width: 100%;
  }
  .overview_content .dr-part-2 .box-list {
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .overview_content .dr-part-3 .part3-box::before {
    display: none;
  }
  .overview_content .dr-part-3 .part3-box::after {
    display: none;
  }
  .overview_content .dr-part-3 .box-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: column;
  }
  .overview_content .dr-part-3 .box-list .box {
    width: 100%;
  }
  .overview_content .dr-part-4 h2 {
    width: 100%;
  }
  .overview_content .dr-part-4 .box-list::after {
    display: none;
  }
  .overview_content .dr-part-4 .box-list .box {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
  .overview_content .dr-part-4 .box-list .box .desc {
    width: 100%;
    margin-left: 0px;
    text-align: center;
    margin-top: 20px;
  }
  .overview_content .idr-part-2 .content-box {
    position: relative;
    margin: auto;
  }
  .overview_content .idr-part-2 .content-box::before {
    content: '';
    display: none;
  }
  .overview_content .idr-part-2 .content-box .swiper-container {
    width: 80%;
  }
  .overview_content .idr-part-2 .content-box .swiper-pagination {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .overview_content .idr-part-2 .content-box .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .overview_content .idr-part-2 .content-box .swiper-button-prev {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .idr-part-2 .content-box .swiper-button-prev::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-left.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    right: 5%;
  }
  .overview_content .idr-part-2 .content-box .swiper-button-next {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .idr-part-2 .content-box .swiper-button-next::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-right.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    left: 5%;
  }
  .overview_content .idr-part-2 .content-box .swiper-button-next.swiper-button-disabled,
  .overview_content .idr-part-2 .content-box .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    background: #dcdddd;
  }
  .overview_content .idr-part-2 .box-list {
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    margin: auto;
    justify-content: unset;
    padding: 0;
  }
  .overview_content .idr-part-2 .box-list .box {
    width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #0c132b;
  }
  .overview_content .idr-part-2 .box-list .box .info {
    display: block;
    position: unset;
    transform: scale(1);
    height: auto;
    margin-top: 15px;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(4) {
    border-top: none;
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(5) {
    border-top: none;
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(6) {
    border-top: none;
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(7) {
    border-top: none;
    border-right: none;
  }
  .overview_content .idr-part-2 .box-list .box:nth-child(8) {
    border-top: none;
    border-right: none;
  }
  .overview_content .idr-part-3 .box-list {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .overview_content .idr-part-3 .box-list .box {
    width: 100%;
  }
  .overview_content .idr-part-3 .box-list .box h2::before {
    display: none;
  }
  .overview_content .idr-part-3 .box-list-3 {
    flex-wrap: wrap;
  }
  .overview_content .idr-part-3 .box-list-3 .box {
    width: 40%;
    margin-top: 20px;
  }
  .overview_content .idr-part-3 .box-list-3 .box p {
    margin-top: 15px;
  }
  .overview_content .idr-part-3 .box-list-3::before {
    display: none;
  }
  .overview_content .idr-part-3 .box-list-3::after {
    display: none;
  }
  .overview_content .idr-part-4 .box-list4 {
    flex-direction: column;
  }
  .overview_content .idr-part-4 .box-list4 .desc-box {
    width: 100%;
  }
  .overview_content .isr-part-2 .box-list {
    flex-direction: column;
    align-items: center;
  }
  .overview_content .isr-part-2 .box-list .flex-box {
    width: 291px;
  }
  .overview_content .it-part-1 h2::before {
    display: none;
  }
  .overview_content .it-part-1 .box-list::after {
    display: none;
  }
  .overview_content .it-part-1 .box-list .box {
    width: 45%;
  }
  .overview_content .it-part-2 h2 {
    width: 100%;
  }
  .overview_content .it-part-2 h2::before {
    display: none;
  }
  .overview_content .it-part-2 .sub-title {
    width: 100%;
  }
  .overview_content .it-part-2 .box-list::before {
    display: none;
  }
  .overview_content .it-part-2 .box-list .vs {
    display: none;
  }
  .overview_content .it-part-2 .box-list .box.pc {
    display: none;
  }
  .overview_content .it-part-3 .content::after {
    display: none;
  }
  .overview_content .it-part-3 .content::before {
    display: none;
  }
  .overview_content .it-part-3 .content h2::before {
    display: none;
  }
  .overview_content .it-part-4 .box-list {
    padding: 25px 0;
  }
  .overview_content .it-part-4 .box-list .box {
    width: 25%;
    padding: 20px;
    text-align: center;
    border-right: none;
  }
  .overview_content .mt-part-1 .box-list {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .overview_content .mt-part-1 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .mt-part-1 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .mt-part-1 .box-list .box h2::before {
    display: none;
  }
  .overview_content .mt-part-2 h2 {
    width: 100%;
    margin: auto;
    line-height: 46px;
    color: #fff;
  }
  .overview_content .mt-part-2 .sub-title {
    width: 100%;
  }
  .overview_content .mt-part-2 .box-list {
    flex-direction: column;
    align-items: center;
  }
  .overview_content .mt-part-3 h2 {
    width: 100%;
  }
  .overview_content .mt-part-3 h2::before {
    display: none;
  }
  .overview_content .isr-record-part-1 .box-list {
    flex-wrap: wrap-reverse;
  }
  .overview_content .isr-record-part-1 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-record-part-1 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .isr-record-part-1 .box-list .box h2::before {
    display: none;
  }
  .overview_content .isr-record-part-1 .box-list .box img {
    margin-top: 15px;
    width: 50%;
  }
  .overview_content .isr-record-part-2 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .isr-record-part-2 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-record-part-2 .box-list .box:last-child {
    width: 100%;
  }
  .overview_content .isr-record-part-2 .box-list .box h2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-record-part-2 .box-list .box h2::before {
    display: none;
  }
  .overview_content .isr-record-part-2 .box-list .box img {
    margin-top: 15px;
    width: 50%;
  }
  .overview_content .isr-record-part-3 .box-list {
    flex-wrap: wrap-reverse;
  }
  .overview_content .isr-record-part-3 .box-list::before {
    display: none;
  }
  .overview_content .isr-record-part-3 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .isr-record-part-3 .box-list .box h2 {
    text-align: center;
  }
  .overview_content .isr-record-part-3 .box-list .box h2::before {
    display: none;
  }
  .overview_content .isr-record-part-3 .box-list .box img {
    margin-top: 15px;
    width: 50%;
  }
  .overview_content .isr-record-part-4 h2 {
    margin-bottom: 30px;
  }
  .overview_content .isr-record-part-4 .container::before {
    display: none;
  }
  .overview_content .isr-record-part-4 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .isr-record-part-4 .box-list .box {
    flex: 100%;
    margin-top: 20px;
  }
  .overview_content .sr-part-1 .swiper-button-prev {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .sr-part-1 .swiper-button-prev::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-left.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    right: 5%;
  }
  .overview_content .sr-part-1 .swiper-button-next {
    display: block;
    background: #2d8cff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .overview_content .sr-part-1 .swiper-button-next::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/static/img/doTrans_new/arrow-right.svg) center no-repeat;
    position: relative;
    margin: auto;
    top: 15%;
    left: 5%;
  }
  .overview_content .sr-part-1 .content {
    position: relative;
    margin-top: 60px;
  }
  .overview_content .sr-part-1 .content .swiper-container {
    width: 85%;
    overflow: hidden;
  }
  .overview_content .sr-part-1 .box-list {
    margin-top: 0px;
  }
  .overview_content .sr-part-1 .box-list .box {
    width: 100%;
  }
  .overview_content .sr-part-1 .box-list .box:first-child::before {
    display: none;
  }
  .overview_content .sr-part-1 .box-list .box:last-child::before {
    display: none;
  }
  .overview_content .sr-part-2 .content-box {
    background: none;
  }
  .overview_content .sr-part-2 .content-box .box-list .box {
    flex: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .overview_content .sr-part-2 .content-box .box-list .box:nth-child(2n) {
    margin-left: 0;
  }
  .overview_content .sr-part-2 .content-box .box-list .box .cont {
    margin-left: 0;
  }
  .overview_content .hidata-part-3 .inner::before {
    display: none;
  }
  .overview_content .hidata-part-3 .inner::after {
    display: none;
  }
  .overview_content .hidata-part-4 {
    padding: 60px 0;
  }
  .overview_content .hidata-part-4 .box-list {
    margin-top: 60px;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .pic {
    text-align: center;
    width: 30%;
    margin: 15px auto;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .pic img {
    width: 100%;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text::before {
    width: 880px;
    height: 590px;
    left: -135px;
  }
}
@media screen and (max-width: 500px) {
  .overview .p1 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .overview .p2 {
    font-size: 14px;
  }
  .overview .button {
    margin: 0 auto;
  }
  .overview .button.download {
    margin: 0 10px 20px;
  }
  .overview .button.buy {
    margin-left: 0;
  }
  .overview .banner {
    padding: 50px 0;
    background-position-x: 30%;
  }
  .overview .banner .content .p-title {
    font-size: 32px;
  }
  .overview .banner .content .p-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .overview .inner-nav {
    position: relative;
    display: block;
  }
  .overview .inner-nav p {
    font-size: 16px;
    display: inline-block;
    color: #0066cb;
    padding: 0 20px;
    border-left: 1.5px solid #0066cb;
    border-right: 1.5px solid #0066cb;
    cursor: pointer;
  }
  .overview .inner-nav p::after {
    content: "▾";
    display: inline;
    position: relative;
    color: #0066cb;
    margin-left: 8px;
    top: -1px;
  }
  .overview .inner-nav ul {
    display: none;
    position: absolute;
    width: 150px;
    background-color: #fff;
    z-index: 1000;
    left: 50%;
    margin-left: -75px;
    top: 60px;
  }
  .overview .inner-nav ul li {
    float: none;
    padding: 10px 0;
    border-left: none;
  }
  .overview .inner-nav .buttons-area-inner {
    display: none;
  }
  .overview_content .macmaster-2 .content .box-list .box {
    padding: 40px 0px;
  }
  .overview_content .macmaster-4 .scroll-box {
    background: #0c132b;
    border-radius: 15px;
    padding: 50px 10px;
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container {
    padding: 0 15px;
  }
  .overview_content .macmaster-4 .scroll-box .swiper-container .swiper-wrapper .swiper-slide {
    padding: 0 10px;
  }
  .overview_content .adr-part-1 .box {
    margin: 0 0 30px 0;
    text-align: center;
  }
  .overview_content .adr-part-1 .box img {
    margin: 0 auto 15px;
  }
  .overview_content .adr-part-2 .box {
    width: 192px !important;
    height: 169px;
    margin: 0 auto 30px;
  }
  .overview_content .adr-part-2 .box:last-child {
    margin-bottom: 0;
  }
  .overview_content .adr-part-3 .part3-top .part3-top-box-list .list-box {
    margin-right: 0;
  }
  .overview_content .adr-part-3 .part3-box::before {
    content: '';
    display: none;
  }
  .overview_content .adr-part-3 .part3-bottom h2 {
    width: 100%;
    color: #fff;
  }
  .overview_content .adr-part-4 h2 {
    width: 100%;
    margin: 0 auto 50px;
    color: #fff;
  }
  .overview_content .adr-part-4 .part4-box {
    padding: 40px;
  }
  .overview_content .adr-part-4 .part4-box::before {
    display: none;
  }
  .overview_content .adr-part-4 .part4-box::after {
    display: none;
  }
  .overview_content .adr-part-4 .left ul li {
    font-size: 16px;
  }
  .overview_content .adr-part-4 .right div {
    padding: 40px 20px;
    text-align: center;
  }
  .overview_content .adr-part-4 .right div img {
    margin: 0 0 15px 0;
  }
  .overview_content .adr-part-4 .right div span {
    width: 100%;
  }
  .overview_content .adr-part-5 .box {
    margin: 0 auto 20px;
  }
  .overview_content .adr-part-5 .box:last-child {
    margin-bottom: 0;
  }
  .overview_content .adr-part-5 .box-list .box-pic {
    width: 75%;
    margin-bottom: 30px;
  }
  .overview_content .adr-part-5 .box-list .desc {
    width: 100%;
  }
  .overview_content .adr-part-6 .box {
    padding: 40px 0;
  }
  .overview_content .adr-part-6 .box:last-child {
    border-left: 0;
    border-top: 1px solid #e0e0e0;
  }
  .overview_content .adbr-part-3 .pic-box {
    width: 90%;
  }
  .overview_content .adbr-part-3 .p3 {
    font-size: 12px;
  }
  .overview_content .adbr-part-3 .title {
    font-size: 21px;
  }
  .overview_content .bade-part-1 .box-list {
    justify-content: space-around;
  }
  .overview_content .bade-part-1 .box-list .box {
    flex: 0 0 45.5%;
  }
  .overview_content .bade-part-2 .part-2 {
    padding: 90px 15px;
  }
  .overview_content .bade-part-2 .part-2 .box-list {
    flex-direction: column;
  }
  .overview_content .bade-part-2 .part-2 .box-list .box {
    width: 90%;
  }
  .overview_content .bade-part-2 .part-2 .box-list .box:last-child {
    width: 90%;
    margin-top: 20px;
  }
  .overview_content .dt-part-1 .title-box {
    flex-direction: column;
  }
  .overview_content .dt-part-1 .title-box::before {
    content: '';
    display: none;
  }
  .overview_content .dt-part-1 .title-box h2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .dt-part-1 .title-box .title-desc {
    width: 100%;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
  }
  .overview_content .dt-part-1 .dt-scroll {
    position: relative;
    padding: 0;
  }
  .overview_content .dt-part-1 .dotrans .swiper-wrapper {
    justify-content: center;
  }
  .overview_content .dt-part-4 .box-list {
    justify-content: space-around;
  }
  .overview_content .dt-part-4 .box-list .box {
    text-align: center;
    width: 108px;
    margin-top: 30px;
  }
  .overview_content .dr-part-2 .box-list {
    justify-content: center;
  }
  .overview_content .dr-part-2 .box-list .box-no-float {
    height: 133px;
    padding: 0 20px;
  }
  .overview_content .dr-part-3 .part3-box {
    padding: 35px 10px;
  }
  .overview_content .dr-part-3 .box-list .box {
    width: 100%;
    text-align: center;
  }
  .overview_content .heic-part-2 .box-list .box:first-child {
    width: 70%;
  }
  .overview_content .heic-part-3 .p2 {
    font-size: 12px;
  }
  .overview_content .heic-part-1 .box-list .desc .p2 {
    font-size: 12px;
  }
  .overview_content .heic-part-2 .box-list .box .p1 {
    font-size: 18px;
  }
  .overview_content .heic-part-2 .box-list .box .p3 {
    font-size: 12px;
  }
  .overview_content .heic-part-4 .table > tbody > tr > td {
    font-size: 12px;
    height: 60px;
  }
  .overview_content .idbr-part-2 .box-list {
    padding: 30px;
  }
  .overview_content .idbr-part-2 .box-list .box:first-child {
    width: 100%;
  }
  .overview_content .idbr-part-1 .box-list .box h2 {
    margin-bottom: 30px;
  }
  .overview_content .idr-part-1 .box-list {
    flex-direction: column;
    align-items: center;
  }
  .overview_content .idr-part-1 .box-list .box {
    width: 219px;
    height: 219px;
    margin-top: 25px;
  }
  .overview_content .idr-part-1 .box-list .box img {
    height: 112px;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(4) {
    padding: 8px;
    border-top: 1px solid #ddd;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(4)::before {
    content: '';
    display: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(5) {
    padding: 8px;
    border-top: 1px solid #ddd;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(5)::before {
    content: '';
    display: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(6) {
    border-top: 1px solid #ddd;
    padding: 8px;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr.firstRow td:nth-child(6)::before {
    content: '';
    display: none;
  }
  .overview_content .idr-part-3 .box-list-2 .table tbody tr tr {
    flex: 0 0 26%;
  }
  .overview_content .idr-part-3 .box-list-2 .box-small {
    width: 75px;
    height: 79px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin: auto;
  }
  .overview_content .idr-part-3 .box-list-2 .box-small img {
    height: 26px;
  }
  .overview_content .idr-part-3 .box-list-2 .box-small p {
    font-size: 12px;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box {
    width: 60%;
    text-align: center;
    height: 225px;
    position: relative;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-active {
    transform: translateY(50px);
    z-index: 98;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-prev {
    transform: translateY(-15px) translateX(-40px);
    z-index: 80;
  }
  .overview_content .idr-part-4 .box-list4 .pic-box .pic-slide.swiper-slide-thumb-next {
    transform: translateY(15px) translateX(40px);
    z-index: 90;
  }
  .overview_content .isr-part-1 .box-list .table {
    width: 100%;
  }
  .overview_content .isr-part-1 .box-list .table .t-box {
    flex: 0 0 32.6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 5px;
    border-bottom: 1px solid #dcdddd;
    border-right: 1px solid #dcdddd;
  }
  .overview_content .isr-part-1 .box-list .table .t-box:nth-child(4n) {
    border-right: 1px solid #dcdddd;
  }
  .overview_content .isr-part-1 .box-list .table .t-box:nth-child(3n) {
    border-right: none;
  }
  .overview_content .isr-part-1 .box-list .table .t-box:nth-child(9) {
    border-bottom: 1px solid #dcdddd;
  }
  .overview_content .isr-part-2 h2 {
    width: 100%;
    line-height: 46px;
    margin: auto;
  }
  .overview_content .isr-part-4 .container {
    padding: 0;
  }
  .overview_content .isr-part-4 .container .part4-content {
    padding: 0 0 85px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list {
    padding: 0 10px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list2 {
    margin-top: 0;
    padding: 0 10px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list2 .box-btn a {
    width: 268px;
    height: 60px;
    margin-top: 10px;
    line-height: 59px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list2 .box2 .p1 {
    font-size: 14px;
    color: #fff;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list3 {
    padding: 0 10px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list3 h2 {
    text-align: center;
    margin-bottom: 0px;
  }
  .overview_content .isr-part-4 .container .part4-content .box-list3 ul li {
    text-align: center;
    list-style-type: none;
    margin-top: 30px;
    font-size: 14px;
  }
  .overview_content .it-part-1 .box-list {
    justify-content: center;
  }
  .overview_content .it-part-1 .box-list .box {
    width: 85%;
    height: 266px;
  }
  .overview_content .it-part-3 .content {
    padding: 65px 45px 40px;
  }
  .overview_content .it-part-3 .content h2 {
    margin-bottom: 60px;
  }
  .overview_content .it-part-3 .content .box-list .box .p2 {
    color: #ffffff;
    width: 100%;
    margin: 15px auto 0;
  }
  .overview_content .mt-part-3 .table .text-center img {
    width: 116px;
  }
  .overview_content .paweditor-part-1 .p2 {
    font-size: 14px;
    margin-bottom: 0;
  }
  .overview_content .paweditor-part-2 h2 {
    width: 100%;
    text-align: center;
  }
  .overview_content .paweditor-part-2 .flex-container .for_pc {
    display: none;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-column {
    flex: 100%;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .inner {
    display: none;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .top .item {
    display: flex;
    margin-bottom: 20px;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .top .item img {
    width: 45px;
    height: 45px;
  }
  .overview_content .paweditor-part-2 .flex-container .flex-item .bottom {
    display: none;
  }
  .overview_content .paweditor-part-3 .box-list {
    flex-wrap: wrap;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item {
    flex: 100%;
    margin-bottom: 20px;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item h2 {
    text-align: center;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item p {
    text-align: center;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item.image {
    height: 250px;
    justify-content: center;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item.image .table {
    width: 206px;
    height: 174px;
    margin-bottom: 0;
  }
  .overview_content .paweditor-part-3 .box-list .flex-item.image .file {
    width: 120px;
  }
  .overview_content .paweditor-part-4 .box-list {
    background-size: 1080px;
    background-position: center 0;
    height: 500px;
  }
  .overview_content .paweditor-part-4 .box-list .right ul li {
    font-size: 14px;
  }
  .overview_content .isr-record-part-4 h2 {
    width: 100%;
  }
  .overview_content .sr-part-2 .content-box .box-list .box {
    flex: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
    margin-top: 30px;
    height: auto;
  }
  .overview_content .sr-part-2 .content-box .box-list .box .p2 {
    font-size: 14px;
  }
  .overview_content .sr-part-2 .content-box .box-list .box .cont {
    margin-top: 10px;
  }
  .overview_content .sr-part-3 .p2 {
    width: 100%;
  }
  .overview_content .sr-part-3 .box-list {
    margin-top: 0px;
  }
  .overview_content .sr-part-3 .box-list .box {
    flex: 100%;
    padding: 0 40px;
    margin-top: 25px;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .bg {
    display: none;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .moblie {
    display: block;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .mouse {
    display: none;
    animation: unset;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .mouse_2 {
    display: none;
    animation: unset;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .files-1 {
    display: none;
    animation: unset;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .files-1 .selected {
    animation: unset;
    opacity: 1;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .files-2 {
    display: none;
    animation: unset;
  }
  .overview_content .hidata-part-1 .box-list .pic .background .files-2 .selected {
    opacity: 1;
    animation: unset;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item.flex-4-row .item {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item.flex-3-row {
    justify-content: flex-start;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item.flex-3-row .item {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  .overview_content .hidata-part-2 .box-list .flex-item .hide-item p {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .overview_content .hidata-part-3 .inner .text {
    width: 100%;
    margin-top: 20px;
  }
  .overview_content .hidata-part-3 .inner .text h2 {
    width: 100%;
    margin: 0px auto 20px;
    color: #fff;
    line-height: 46px;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .pic {
    text-align: center;
    width: 50%;
    margin: 15px auto;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text {
    padding: 0px;
  }
  .overview_content .hidata-part-4 .box-list .flex-item .text::before {
    content: '';
    display: block;
    width: 579px;
    height: 644px;
    background: url(../img/macmaster/moblie-p4.svg) 0 0 no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
    top: -170px;
  }
  .overview_content .vcu-part-1 {
    padding: 90px 0 30px;
  }
  .overview_content .vcu-part-1 .box-list .box {
    padding: 60px 20px;
  }
  .overview_content .vcu-part-1 .box-list .box.box-one {
    height: auto;
  }
  .overview_content .vcu-part-1 .box-list .box.box-one img {
    left: 36%;
  }
  .overview_content .vcu-part-1 .box-list .box.box-two {
    height: auto;
  }
  .overview_content .vcu-part-1 .box-list .box.box-two img {
    left: 36%;
  }
  .overview_content .vcu-part-1 .box-list .box.box-three {
    height: auto;
  }
  .overview_content .vcu-part-1 .box-list .box.box-three img {
    left: 36%;
  }
  .overview_content .vcu-part-2 .content .box-list {
    justify-content: center;
  }
  .overview_content .vcu-part-2 .content .box-list .box {
    margin-left: 0;
    margin-right: 10px;
    width: 120px;
  }
  .overview_content .vcu-part-2 .content .box-list .box:nth-child(2n) {
    margin-right: 0;
  }
  .overview_content .vcu-part-2 .content .box-list .box div {
    justify-content: stretch;
    align-items: center;
  }
  .overview_content .vcu-part-3 .box-list .box:last-child {
    width: 80%;
  }
  .overview_content .vcu-part-4 .content .box-list .pic {
    width: 80%;
  }
  .overview_content .vcu-part-4 .content .box-list .boxs .merge {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  .overview_content .vcu-part-5 .box-list {
    justify-content: space-around;
    height: 420px;
    overflow: hidden;
  }
  .overview_content .vcu-part-5 .btn {
    display: block;
    cursor: pointer;
    width: 84px;
    height: 23px;
    text-align: center;
    border: 2px solid #2d8cff;
    border-radius: 10px;
    margin: 10px auto 0;
  }
  #slider .slides-li {
    line-height: 40px;
  }
  #slider .slides-li img {
    width: 70px;
    max-height: 40px;
    object-fit: contain;
  }
  #slider .flex-direction-nav .flex-prev {
    top: 75px;
  }
  #slider .flex-direction-nav .flex-next {
    top: 75px;
  }
}
@media screen and (max-width: 500px) {
  .overview .comment .product-buttons-area .product-btn-box .button.download {
    margin: 25px;
  }
}
#whatsapp-transfer .whatsapp .template-navigation {
  width: 84%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  padding: 40px 0;
}
#whatsapp-transfer .whatsapp .template-navigation li {
  width: 100%;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#whatsapp-transfer .whatsapp .template-navigation li::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #2E8CFF;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
#whatsapp-transfer .whatsapp .template-navigation li::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(46, 140, 255, 0.2);
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
#whatsapp-transfer .whatsapp .template-navigation li:hover::before {
  width: 37px;
  height: 37px;
}
#whatsapp-transfer .whatsapp .template-navigation li:hover:after {
  width: 51px;
  height: 51px;
}
#whatsapp-transfer .whatsapp .template-navigation li a {
  width: 80%;
  font-size: 18px;
  font-weight: bold;
  color: #231815;
  line-height: 23px;
  padding-left: 35px;
  transition: all 0.4s;
  text-align: left;
}
@media (max-width: 1200px) {
  #whatsapp-transfer .whatsapp .template-navigation {
    width: 100%;
  }
  #whatsapp-transfer .whatsapp .template-navigation li a {
    display: flex;
  }
}
@media (max-width: 767px) {
  #whatsapp-transfer .whatsapp .template-navigation {
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
  }
  #whatsapp-transfer .whatsapp .template-navigation li {
    width: 70%;
    min-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  #whatsapp-transfer .whatsapp .template-navigation li:not(:first-child) {
    margin: 10px auto 0;
  }
  #whatsapp-transfer .whatsapp .template-navigation li a {
    padding-left: 30px;
    font-size: 16px;
  }
}
#whatsapp-transfer .whatsapp .template-list {
  margin-top: 60px;
}
#whatsapp-transfer .whatsapp .template-list .item {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
#whatsapp-transfer .whatsapp .template-list .item:nth-child(1) .right {
  position: relative;
}
#whatsapp-transfer .whatsapp .template-list .item:nth-child(1) .right::before {
  content: '';
  position: absolute;
  width: 115px;
  height: 106px;
  background: url(/static/img/whatsapp-transfer/template-one-before.svg);
  background-repeat: no-repeat;
  top: -50px;
  left: -30px;
  z-index: -1;
}
#whatsapp-transfer .whatsapp .template-list .item:nth-child(2) {
  flex-direction: row-reverse;
}
#whatsapp-transfer .whatsapp .template-list .item:nth-child(2) .right {
  position: relative;
}
#whatsapp-transfer .whatsapp .template-list .item:nth-child(2) .right::before {
  content: '';
  position: absolute;
  width: 148px;
  height: 114px;
  background: url(/static/img/whatsapp-transfer/template-two-before.svg);
  background-repeat: no-repeat;
  top: -35px;
  left: -100px;
  z-index: -1;
}
#whatsapp-transfer .whatsapp .template-list .item:not(:first-child) {
  margin-top: 120px;
}
#whatsapp-transfer .whatsapp .template-list .item .left {
  flex: 0 0 48%;
}
#whatsapp-transfer .whatsapp .template-list .item .left img {
  width: 100%;
}
#whatsapp-transfer .whatsapp .template-list .item .right {
  flex: 0 0 40%;
  text-align: left;
}
#whatsapp-transfer .whatsapp .template-list .item .right h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  line-height: 50px;
  text-align: left;
}
#whatsapp-transfer .whatsapp .template-list .item .right .desc {
  font-size: 16px;
  color: #727171;
  line-height: 26px;
}
#whatsapp-transfer .whatsapp .template-list .item .right .note {
  font-size: 16px;
  color: #E83828;
  line-height: 26px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  #whatsapp-transfer .whatsapp .template-list {
    margin-top: unset;
  }
  #whatsapp-transfer .whatsapp .template-list .item {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: unset;
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  #whatsapp-transfer .whatsapp .template-list .item:not(:first-child) {
    margin-top: 50px;
  }
  #whatsapp-transfer .whatsapp .template-list .item:nth-child(1) .right::before {
    content: unset;
  }
  #whatsapp-transfer .whatsapp .template-list .item:nth-child(2) .left {
    order: 2;
  }
  #whatsapp-transfer .whatsapp .template-list .item:nth-child(2) .right {
    order: 1;
    margin-top: 80px;
  }
  #whatsapp-transfer .whatsapp .template-list .item:nth-child(2) .right::before {
    content: unset;
  }
  #whatsapp-transfer .whatsapp .template-list .item .left {
    flex: 0 0 100%;
    margin-top: 30px;
  }
  #whatsapp-transfer .whatsapp .template-list .item .right {
    flex: 0 0 100%;
    text-align: center;
  }
  #whatsapp-transfer .whatsapp .template-list .item .right h2 {
    text-align: center;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
#whatsapp-transfer .whatsapp .more-features {
  margin-top: 80px;
}
#whatsapp-transfer .whatsapp .more-features h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  line-height: 50px;
  text-align: center;
}
#whatsapp-transfer .whatsapp .more-features .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
#whatsapp-transfer .whatsapp .more-features .content .item {
  flex: 0 0 32%;
  padding: 15px;
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
  border: 1px solid #ccc;
  transition: all 0.4s;
}
#whatsapp-transfer .whatsapp .more-features .content .item:hover {
  border: 1px solid #000000;
}
#whatsapp-transfer .whatsapp .more-features .content .item .item-inner {
  background: url(/static/img/whatsapp-transfer/ddot.svg) center;
  text-align: center;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}
#whatsapp-transfer .whatsapp .more-features .content .item .item-inner img {
  width: 95px;
  height: 95px;
}
#whatsapp-transfer .whatsapp .more-features .content .item .item-inner .title {
  font-size: 16px;
  font-weight: bold;
  color: #231815;
  line-height: 46px;
  margin-top: 20px;
}
#whatsapp-transfer .whatsapp .more-features .content .item .item-inner .desc {
  font-size: 16px;
  color: #595757;
  line-height: 28px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  #whatsapp-transfer .whatsapp .more-features {
    margin-top: 100px;
  }
  #whatsapp-transfer .whatsapp .more-features .content {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  #whatsapp-transfer .whatsapp .more-features .content .item {
    flex: 0 0 100%;
    margin-top: 20px;
  }
}
#whatsapp-transfer .comment .part .using-content::before {
  content: unset;
}
#whatsapp-transfer .comment .part .using-content::after {
  content: unset;
}
#whatsapp-transfer .comment .part .using-content .scorll-box #text-Navigation::before {
  content: unset;
}
#whatsapp-transfer .comment .part .using-content .scorll-box #text-Navigation .swiper-slide .circle {
  width: 41px;
  height: 41px;
  background: #000000;
  border: unset;
}
#whatsapp-transfer .comment .part .using-content .scorll-box #text-Navigation .swiper-slide .circle .small-circle {
  width: 100%;
  height: 100%;
  background: unset;
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  line-height: 41px;
}
#whatsapp-transfer .comment .part .using-content .scorll-box #text-Navigation .swiper-slide .text p {
  display: none;
}
#whatsapp-transfer .comment .part .using-content .scorll-box #pic-content .swiper-button-prev,
#whatsapp-transfer .comment .part .using-content .scorll-box #pic-content .swiper-button-next {
  background: rgba(45, 140, 255, 0.4);
}
#whatsapp-transfer .comment .part .using-content .scorll-box #pic-content .swiper-button-prev:hover,
#whatsapp-transfer .comment .part .using-content .scorll-box #pic-content .swiper-button-next:hover {
  background: #2d8cff;
}
#whatsapp-transfer .comment .part .using-content .guide-box {
  display: none;
}
#whatsapp-transfer .comment .reviews h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  line-height: 50px;
  text-align: center;
}
#whatsapp-transfer .comment .reviews .content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  background: url(/static/img/whatsapp-transfer/user-backg.png) top center no-repeat;
  background-size: cover;
}
#whatsapp-transfer .comment .reviews .content .item {
  flex: 0 0 32%;
  padding: 25px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 2px 2px 12px rgba(177, 187, 201, 0.3);
}
#whatsapp-transfer .comment .reviews .content .item .title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  line-height: 50px;
}
#whatsapp-transfer .comment .reviews .content .item .desc {
  font-size: 16px;
  color: #727171;
  line-height: 26px;
  margin-top: 10px;
}
#whatsapp-transfer .comment .reviews .content .item img {
  width: 110px;
  display: block;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  #whatsapp-transfer .comment .reviews {
    margin-top: 30px;
  }
  #whatsapp-transfer .comment .reviews .content {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  #whatsapp-transfer .comment .reviews .content .item {
    flex: 0 0 100%;
    margin-top: 20px;
  }
}
#whatsapp-transfer .comment .tutorials {
  margin-top: 80px;
}
