* {
  margin: 0;
  padding: 0;
}
.details_box_pc {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  font-family: 'Helvetidb_ba1ca Neue', Verdana, sans-serif;
}
.details_box_move {
  display: none;
}
/* details_content */
.white.details_content {
  color: #fff;
}

.black.details_content {
  color: #333;
}

.details_content {
  transition: all 0.3s;
}

.details_content h3 {
  /* text-transform: capitalize; */
  margin: 0 0 20px 0;
  letter-spacing: normal;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
  transition: all 0.3s;
}

.details_content p {
  margin: 0;
  letter-spacing: normal;
  line-height: 24px;
  font-size: 16px;
  transition: all 0.3s;
  text-align: left;
}

/* nav */
.details_nav {
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 4px 4px;
  box-sizing: border-box;
  padding: 20px 10px;
  margin-bottom: 15px;
  background-color: #5c787c;
}

.details_nav a {
  text-transform: capitalize;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.details_nav a:hover {
  color: rgba(255, 255, 255, 1);
}

/* mobile nav */
.details_mobile_nav {
  display: none;
}

/* swiper 320 */
.details_swiper {
  position: relative;
  width: 100%;
  max-height: 320px;
  margin-bottom: 15px;
  overflow: hidden;
}

input[type='radio'],
.handle_img {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
}

input[type='radio'] {
  opacity: 0;
}

.handle_img {
  pointer-events: none;
}

.radio_left,
.handle_left {
  left: 20px;
}

.radio_right,
.handle_right {
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.radio_left:checked ~ .handle_left,
.radio_right:checked ~ .handle_right {
  display: none;
}

.radio_right:checked ~ .details_swiper_content {
  transform: translateX(-50%);
}

.details_swiper_content {
  position: relative;
  display: flex;
  width: 200%;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.details_swiper_slide {
  position: relative;
  width: 50%;
}

.details_swiper_slide img {
  display: block;
  width: 100%;
}

.details_swiper_slide_content {
  position: absolute;
  top: 47%;
  left: 7%;
  transform: translateY(-50%);
}

/* swiper 600 */
.details_carousel {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.details_carousel_img {
  width: 55%;
  overflow: hidden;
}

.details_carousel_img_content {
  position: relative;
  display: flex;
  width: 500%;
}

.details_carousel_img_content img {
  display: block;
  width: 20%;
}

.white.details_carousel_img_content span {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.black.details_carousel_img_content span {
  border: 1px solid rgba(51, 51, 51, 0.6);
  color: #333;
}

.details_carousel_img_content span {
  cursor: pointer;
  position: absolute;
  bottom: 4%;
  display: flex;
  box-sizing: border-box;
  padding: 5px 2px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.details_carousel_img_content span:hover {
  opacity: 1;
}

.details_carousel_img_content span:nth-of-type(1) {
  left: 21.2%;
  border: 1px solid #000;
  color: #000;
}

.details_carousel_img_content span:nth-of-type(2) {
  left: 41%;
  border: 1px solid #000;
  color: #000;
}

.details_carousel_img_content span:nth-of-type(3) {
  left: 72%;
}

.details_carousel_img_content span:nth-of-type(4) {
  left: 94%;
}

.details_carousel_text {
  width: 45%;
  background-color: #f7f8f9;
}

.details_carousel_text_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.details_carousel_text_content h3 {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding-left: 137px;
  line-height: 28px;
  color: #333;
  font-size: 28px;
  font-weight: normal;
  transition: all 0.3s;
}

.details_carousel_text_content ul {
  box-sizing: border-box;
  margin: 0;
  padding: 0 40px 0 80px;
  transition: all 0.3s;
}

.details_carousel_text_content ul li {
  list-style: disc;
  line-height: 25px;
  color: #333;
  font-size: 16px;
  transition: all 0.3s;
  margin: 4% 0;
  margin-left: 11%;
  font-family: Helvetidb_ba1ca Neue;
}
.details_carousel_text2 {
  width: 100%;
  background-color: #f7f8f9;
  display: none;
}

.details_thumbnail {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

.details_thumbnail_item {
  cursor: pointer;
  position: relative;
  width: calc(100% / 5 - 10px);
}

.details_thumbnail_item::after {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.2s ease;
}

.details_thumbnail_item:hover::after {
  background-color: rgba(0, 0, 0, 0);
}

.details_thumbnail_item img {
  display: block;
  width: 100%;
}

.details_thumbnail_item input[type='radio'] {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* banner */
.details_banner,
.details_banner img {
  display: block;
  width: 100%;
}

.details_banner {
  position: relative;
  margin-bottom: 15px;
}

/* .left.details_banner_content {
  left: 10%;
  text-align: left;
}

.right.details_banner_content {
  right: 10%;
  text-align: right;
} */

/* .details_banner_content .icon {
  width: 300px;
  margin-top: 60px;
} */

.details_banner_title {
  position: absolute;
  top: 10%;
  right: 10%;
}

.details_banner_title h3 {
  margin: 0 0 30px 0;
  letter-spacing: normal;
  line-height: 28px;
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}

.details_banner_title h3 span {
  border-bottom: 1px solid #fff;
}

.left.details_last {
  left: 5% !important;
}

.right.details_last {
  right: 4% !important;
}

.details_last div {
  margin: 30px 0;
}

/* size */
.details_size {
  display: flex;
  justify-content: space-between;
  width: 80%;
  box-sizing: border-box;
  padding: 20px 0;
  margin: auto;
}

.details_size_img:nth-child(1) {
  width: 40%;
}

.details_size_img:nth-child(2) {
  width: 40%;
}

.details_size img {
  display: inline-block;
  margin: auto;
  width: 100%;
}

/* info */
.details_info {
  display: flex;
  align-items: flex-end;
  width: 80%;
  box-sizing: border-box;
  margin: 15px auto;
  padding: 50px 75px;
  background-color: #f4f4f4;
}

.details_info_img img {
  display: block;
  width: 100%;
}

.details_info_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.details_info_content h3 {
  margin: 0 0 30px 0;
  letter-spacing: normal;
  line-height: 20px;
  font-size: 20px;
  font-weight: normal;
  color: #333;
}

.details_info_content p {
  margin: 10px 0;
  line-height: 25px;
  font-size: 16px;
  color: #333;
}

/* img box */
.details_img {
  width: 80%;
  margin: 40px auto;
}

.details_img img {
  display: block;
  width: 100%;
}

/* banner1 */
.details_banner_content_ban1 {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  left: 8%;
  text-align: left;
  width: 33%;
}
/* banner2 */

.details_banner_content_ban2 {
  left: 50%;
  text-align: left;
  width: 47%;
  position: absolute;
  top: 24%;
  transform: translateY(-50%);
}
.leftcontent h3 {
  line-height: 35px;
}
.db_ba2 {
  position: absolute;
  top: 42.5%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  color: #000;
  font-family: Helvetidb_ba1ca Neue;
  font-size: 14px;
}
.db_ba2 p:nth-of-type(1) {
  left: 42%;
  position: relative;
}
.db_ba2 p:nth-of-type(2) {
  left: 107%;
  position: relative;
}
.bar2_bt {
  position: absolute;
  top: 58%;
  font-size: 24px;
  font-family: Helvetica;
  font-weight: 400;
  left: 7%;
}
.bar2_db {
  display: flex;
  width: 83%;
  text-align: center;
  font-size: 15px;
  line-height: 22px;
  font-family: Helvetidb_ba1ca Neue;
  position: absolute;
  top: 85%;
  justify-content: space-between;
  left: 8%;
}
.bar2_db p:nth-child(2) {
  left: 32%;
  position: absolute;
}
.bar2_db p:nth-child(3) {
  left: 58%;
  position: absolute;
}
.leftcontent p {
  width: 100%;
}
/* banner3 */
.details_banner_content_ban3 {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 9%;
  text-align: left;
  width: 31%;
}
.db_ba3 {
  position: absolute;
  top: 90%;
  left: 24%;
  display: flex;
  justify-content: space-between;
  color: #000;
  font-size: 16px;
  font-family: Helvetica;
  width: 48%;
}
h3.bann3_pc_h3 {
  padding-bottom: 7%;
}
.db_ba3_1 {
  display: flex;
  position: absolute;
  width: 25%;
  top: 49%;
  left: 8%;
  text-align: center;
  justify-content: space-around;
  flex-direction: row;
  font-size: 14px;
  color: #fff;
  font-family: Helvetidb_ba1ca Neue;
}
/* banner4 */
.details_banner_content_ban4 {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  right: 7%;
  text-align: left;
  width: 33%;
}

/* banner5 */
.details_banner5 {
  position: relative;
}
.details_banner_content_ban5 {
  margin-bottom: 1%;
  display: flex;
}
.details_banner5 img {
  display: block;
  width: 100%;
}
.ban5_1 {
  width: 49.5%;
  margin-right: 1%;
}
.ban5_2 {
  width: 49.5%;
}
.details_banner_content_ban5 p {
  position: absolute;
  top: 86%;
  font-size: 22px;
  margin-left: 12%;
  font-family: Helvetica;
}

/* banner6_1 */
.ban6_h3 {
  position: absolute;
  top: 8%;
  left: 10%;
  letter-spacing: normal;
  line-height: 32px;
  font-size: 28px;
  font-weight: normal;
}
.ban6_1 {
  position: absolute;
  display: flex;
  top: 49%;
  width: 63%;
  justify-content: space-between;
  left: 19%;
  font-family: Helvetica;
  font-size: 22px;
}
.ban6_2 {
  position: absolute;
  display: flex;
  top: 88%;
  width: 63%;
  justify-content: space-between;
  left: 19%;
  font-family: Helvetica;
  font-size: 22px;
}
/* banner6 */
.details_banner_content_ban6 {
  position: absolute;
  top: 26%;
  transform: translateY(-50%);
  left: 6%;
  text-align: left;
  width: 43%;
}

.details_banner_content_ban6 h4 {
  line-height: 25px;
  margin-top: 6%;
  font-family: Helvetidb_ba1ca Neue;
  font-size: 18px;
  font-weight: 600;
}
.db_ba6 p {
  padding: 1px 1px;
}
/* banner7-8-9*/
.db_title {
  display: flex;
  align-items: center;
  position: absolute;
  top: 9%;
  left: 4%;
  flex-direction: row;
  width: 92%;
}
.details_banner .db_title a:visited {
  color: #000;
}
.db_title a {
  text-decoration: none;
  position: absolute;
  left: 93%;
}

.biaoqian_h3 {
  font-family: Helvetidb_ba1ca Neue;
  font-weight: 400;
  font-size: 24px;
}
/* move ----------------------------------------------------- */
.details_swiper_move {
  position: relative;
  width: 100%;
  max-height: 320px;
  margin-bottom: 15px;
  overflow: hidden;
}

.details_swiper_move input[type='radio'],
.details_swiper_move .handle_img_move {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
}

.details_swiper_move input[type='radio'] {
  opacity: 0;
}

.details_swiper_move .handle_img_move {
  pointer-events: none;
}

.details_swiper_move .radio_left_move,
.details_swiper_move .handle_left_move {
  left: 5px;
}

.details_swiper_move .radio_right_move,
.details_swiper_move .handle_right_move {
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.radio_left_move:checked ~ .handle_left_move,
.radio_right_move:checked ~ .handle_right_move {
  display: none;
}

.radio_right_move:checked ~ .details_swiper_content_move {
  transform: translateX(-50%);
}

.details_swiper_content_move {
  position: relative;
  display: flex;
  width: 200%;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.details_swiper_slide_move {
  position: relative;
  width: 50%;
}

.details_swiper_slide_move img {
  display: block;
  width: 100%;
}
.details_carousel_move {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.details_carousel_img_move {
  width: 55%;
  overflow: hidden;
}
.details_carousel_img_content_move {
  position: relative;
  display: flex;
  width: 500%;
}

.details_carousel_img_content_move img {
  display: block;
  width: 20%;
}

.white.details_carousel_img_content_move span {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.black.details_carousel_img_content_move span {
  border: 1px solid rgba(51, 51, 51, 0.6);
  color: #333;
}

.details_carousel_img_content_move span {
  cursor: pointer;
  position: absolute;
  bottom: 8%;
  display: flex;
  box-sizing: border-box;
  padding: 5px 10px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.details_carousel_img_content_move span:hover {
  opacity: 1;
}

.details_carousel_img_content_move span:nth-of-type(1) {
  left: 21%;
  /* border: 1px solid rgba(15, 1, 1, 0.6);
  color: #000; */
}

.details_carousel_img_content_move span:nth-of-type(2) {
  left: 41%;
  border: 1px solid rgba(15, 1, 1, 0.6);
  color: #000;
}

.details_carousel_img_content_move span:nth-of-type(3) {
  left: 61%;
  bottom: 1%;
}

.details_carousel_img_content_move span:nth-of-type(4) {
  left: 81%;
}
.details_thumbnail_move {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

.details_thumbnail_item_move {
  cursor: pointer;
  position: relative;
  width: calc(100% / 5 - 10px);
}

.details_thumbnail_item_move::after {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.2s ease;
}

.details_thumbnail_item_move:hover::after {
  background-color: rgba(0, 0, 0, 0);
}

.details_thumbnail_item_move img {
  display: block;
  width: 100%;
}

.details_thumbnail_item_move input[type='radio'] {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/* banner */
.details_banner_move,
.details_banner_move img {
  display: block;
  width: 100%;
}

.details_banner_move {
  position: relative;
  margin-bottom: 15px;
}
.details_banner_content_ban2_move {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
}
.details_banner_content_ban3_move {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
}
.details_banner_content_ban4_move {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
}
.details_banner_content_ban5_move {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
}
.details_banner_content_ban6_move {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
}
.details_banner_content_ban2_move,
.details_banner_content_ban4_move,
.details_banner_content_ban6_move {
  left: 10%;
  text-align: left;
  width: 33%;
}
.left.details_banner_content_move {
  left: 10%;
  text-align: left;
}

.right.details_banner_content_move {
  right: 10%;
  text-align: right;
}
.right.details_banner_content_ban3_move,
.details_banner_content_ban5_move {
  right: 10%;
  text-align: right;
  width: 31%;
}

.details_banner_content_move .icon {
  width: 300px;
  margin-top: 60px;
}

.details_banner_title_move {
  position: absolute;
  top: 10%;
  right: 10%;
}

.details_banner_title_move h3 {
  margin: 0 0 30px 0;
  letter-spacing: normal;
  line-height: 28px;
  font-size: 28px;
  font-weight: normal;
  color: #fff;
}

.details_banner_title_move h3 span {
  border-bottom: 1px solid #fff;
}
.details_carousel_text_move {
  width: 45%;
  background-color: #f7f8f9;
}

.details_carousel_text_content_move {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.details_carousel_text_content_move h3 {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding-left: 60px;
  line-height: 28px;
  color: #333;
  font-size: 28px;
  font-weight: normal;
  transition: all 0.3s;
}

.details_carousel_text_content_move ul {
  box-sizing: border-box;
  margin: 0;
  padding: 0 40px 0 80px;
  transition: all 0.3s;
}

.details_carousel_text_content_move ul li {
  list-style: disc;
  line-height: 28px;
  color: #333;
  font-size: 16px;
  transition: all 0.3s;
}
/* media */
@media screen and (max-width: 1180px) {
  /* .details_box_pc {
    display: none;
  } */
  .details_box_move {
    max-width: 1300px;
  }

  /* details_content */
  /* .details_content_move h3 {
    line-height: 32px;
    font-size: 28px;
  } */
  /*
  .details_content_move p {
    line-height: 24px;
    font-size: 16px;
  } */

  /* carousel */
  /* .details_carousel_text_content_move h3 {
    line-height: 24px;
    font-size: 24px;
  } */

  .details_carousel_text_content_move ul li {
    line-height: 24px;
    font-size: 16px;
  }

  /* info */
  .details_info_content_move h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }

  .details_info_content_move p {
    margin: 5px 0;
    line-height: 20px;
    font-size: 14px;
  }

  /* banner */
  .details_banner_title_move h3 {
    line-height: 24px;
    font-size: 24px;
  }

  /* install */
  .details_install_move h3 {
    line-height: 24px;
    font-size: 24px;
  }
}

@media screen and (max-width: 998px) {
  .details_box_pc {
    display: none;
  }
  /* details_content */
  /* .details_content_move p {
    width: 124%;
    font-size: 20px;
    line-height: 27px;
    margin-top: 6%;
  } */

  /* nav */
  .details_mobile_nav_move {
    position: relative;
    display: block;
  }

  .details_mobile_nav_move input[type='checkbox'] {
    display: none;
  }

  .details_mobile_nav_move input[type='checkbox']:checked ~ .nav_list_move {
    opacity: 1;
    pointer-events: visible;
    transform: translateY(0);
  }

  .details_mobile_nav_move .nav_title_move {
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #5c787c;
    color: #fff;
    font-size: 20px;
  }

  .details_mobile_nav_move .nav_list_move {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: all 0.2s ease;
  }

  .details_mobile_nav_move .nav_item_move {
    user-select: none;
    cursor: pointer;
    background-color: rgba(92, 120, 124, 0.9);
    line-height: 40px;
    transition: all 0.2s ease;
  }

  .details_mobile_nav_move .nav_item_move :hover {
    background-color: rgba(92, 120, 124, 1);
  }

  .details_mobile_nav_move .nav_item_move :hover a {
    opacity: 1;
  }

  .details_mobile_nav_move .nav_item_move a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
  }

  /* carousel */
  .details_carousel_move {
    flex-direction: column;
  }

  .details_carousel_img_move,
  .details_carousel_text_move {
    width: 100%;
  }

  .details_carousel_text_move {
    margin-top: 15px;
    padding: 40px 0;
  }

  /* .details_carousel_text_content_move h3 {
    line-height: 28px;
    font-size: 28px;
  } */

  .details_carousel_text_content_move ul li {
    line-height: 28px;
    font-size: 16px;
  }

  .details_banner_title_move h3 {
    line-height: 20px;
    font-size: 20px;
  }

  /* info */
  .details_info_move {
    padding: 50px;
  }

  .details_info_move img {
    padding: 20px 0;
  }

  .details_info_content_move {
    width: 100%;
  }

  .col-6_move h4 {
    margin: 20px 0;
    font-size: 16px;
  }

  .col-6_move p {
    margin: 4px 0;
    font-size: 12px;
  }

  /* install */
  .details_install_move {
    padding: 20px;
  }

  .details_last_move div {
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .details_carousel_img_content_move span:nth-of-type(1) {
    left: 17.5%;
    border: 1px solid #000;
    color: #000;
  }
  .details_carousel_img_content_move span:nth-of-type(2) {
    left: 37%;
  }
  .details_carousel_img_content_move span:nth-of-type(3) {
    left: 69%;
    bottom: 1%;
    /* border: 1px solid rgb(10 9 9);
    color: #0a0909; */
  }
  .details_carousel_img_content_move span:nth-of-type(4) {
    left: 89%;
  }
  .details_carousel_img_content_move span {
    cursor: pointer;
    position: absolute;
    bottom: 8%;
    display: flex;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align: center;
    transition: opacity 0.2s;
    transform: scale(0.5);
  }
  .move_h3 {
    font-family: Helvetica;
    font-weight: 100;
  }
  .move_p {
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }
  .details_box_pc {
    display: none;
  }
  .details_box_move {
    margin: auto;
    font-family: 'Helvetica Neue', Verdana, sans-serif;
    display: block;
    width: 100vw;
  }
  .leftcontent_move {
    width: 80%;
  }
  .height_move {
    height: 256px;
  }
  .db_right_move {
    float: right;
    width: 50%;
  }
  /* install */
  .details_install_move {
    flex-direction: column;
    padding: 40px;
  }

  .install_col_move {
    margin: 20px 0;
  }

  .install_col_move :nth-child(1) {
    border: none;
    padding: 0;
  }

  .install_col_move :nth-child(2) {
    padding: 0;
  }
  /* swiper */
  .details_swiper_slide_content_move.details_content_move.white.left.title2 {
    position: absolute;
    top: 50%;
    left: 11%;
    width: 86%;
    color: #fff;
    line-height: 29px;
  }
  .details_swiper_slide_content_move {
    position: absolute;
    top: 39%;
    left: 8%;
    width: 124%;
  }
  .details_swiper_slide_content_move h3 {
    font-size: 25px;
    margin-bottom: 3%;
  }
  /* .details_swiper_slide_content_move p {
    line-height: 133%;
  } */
  .title2 p {
    width: 100%;
    line-height: 21px;
  }

  /* banner1 */
  .details_banner_content_ban1_move {
    left: 15%;
    text-align: left;
    width: 80%;
    position: absolute;
    top: 82%;
    color: white;
  }
  .bann1 h3 {
    margin: 0;
    top: 66%;
    position: absolute;
    left: 13%;
    color: white;
  }
  .bann1 p {
    font-size: 13px;
    margin: 0;
    width: 73%;
    line-height: 22px;
    position: absolute;
    top: 72%;
    left: 13%;
    color: white;
  }
  /* banner2 */
  .db_ba2_move {
    display: flex;
    position: absolute;
    top: 50.5%;
    font-size: 12px;
    left: 18%;
    width: 46%;
    justify-content: space-between;
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }
  .db_ba2_2_move {
    display: flex;
    position: absolute;
    top: 69%;
    font-size: 12px;
    left: 18%;
    width: 63%;
    justify-content: space-between;
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }
  h3.banner2_h3 {
    position: absolute;
    top: 26%;
    left: 7%;
    width: 91%;
  }
  p.banner2_p {
    position: absolute;
    bottom: 55%;
    transform: scale(0.8);
    width: 108%;
    left: -3%;
  }
  .bar2_bt_move {
    position: absolute;
    top: 62%;
    font-size: 15px;
    font-family: Helvetica;
    font-weight: 100;
    left: 7%;
  }
  .bar2_db_move {
    display: flex;
    width: 125%;
    text-align: center;
    line-height: 23px;
    font-family: Helvetidb_ba1ca Neue;
    position: absolute;
    top: 75%;
    left: -13%;
    flex-wrap: wrap;
    flex-direction: row;
    transform: scale(0.6);
    align-content: space-between;
    font-weight: 300;
  }
  .bar2_db_move :nth-child(2) {
    top: 5%;
    position: absolute;
    left: 64%;
  }
  .bar2_db_move :nth-child(3) {
    top: 285%;
    position: absolute;
    left: 8%;
  }
  .bar2_db_move :nth-child(4) {
    top: 285%;
    position: absolute;
    left: 51%;
    width: 60%;
  }
  /* banner3 */
  .db_ba3_move {
    display: flex;
    position: absolute;
    top: 67%;
    color: #fff;
    left: 2%;
    width: 90%;
    justify-content: space-between;
    transform: scale(0.6);
    font-family: Helvetidb_ba1ca Neue;
  }
  .db_ba3_move p:nth-of-type(2) {
    text-align: left;
    display: flex;
    position: absolute;
    left: 52%;
    flex-wrap: wrap;
    bottom: -57%;
  }
  .db_ba3_move p:nth-of-type(3) {
    text-align: center;
    display: flex;
    position: absolute;
    left: 96%;
    flex-wrap: wrap;
  }
  .right.details_banner_content_ban3_move {
    right: 10%;
    text-align: right;
    width: 31%;
  }
  h3.ban3_h3 {
    margin: 0;
    position: absolute;
    top: 46%;
    color: white;
    left: 11%;
  }
  p.ban3_p {
    position: absolute;
    top: 51%;
    width: 89%;
    transform: scale(0.8);
    left: 3%;
    color: white;
  }

  /* banner4 */
  .db_ba4_move {
    position: absolute;
    top: 6%;
    left: 11%;
    width: 44%;
    transform: scale(0.7);
  }

  h3.ban4_h3 {
    margin: 0;
    position: absolute;
    top: 58%;
    color: #000;
    left: 9%;
  }
  p.ban4_p {
    position: absolute;
    top: 62%;
    width: 98%;
    transform: scale(0.8);
    left: -1%;
    color: #333;
    font-weight: 400;
  }
  .ban4_a {
    width: 100px;
    height: 20px;
    position: absolute;
    top: 89%;
    left: 8%;
  }

  /* banner5_1 */
  .ban6_move_h3 {
    position: absolute;
    top: 4%;
    left: 11%;
    font-family: Helvetica;
    font-weight: 100;
  }
  .ban6_move_1 {
    position: absolute;
    top: 22%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 83%;
    left: 9%;
    flex-direction: row;
    align-items: center;
    height: 86%;
    text-align: center;
  }
  .ban6_move_1 p {
    width: calc(100% / 2);
    font-family: Helvetica;
  }

  /* banner5 */
  .db_ba5_move {
    display: flex;
    position: absolute;
    bottom: 5%;
    left: 0%;
    transform: scale(0.7);
    width: 104%;
    justify-content: space-between;
    text-align: center;
    font-family: Helvetica;
  }

  /* banner6 */
  .db_ba6_move h3 {
    margin: 0;
    left: 6%;
    position: relative;
  }
  .db_ba6_move p {
    width: 100%;
    transform: scale(0.8);
  }
  .db_ba6_move1 {
    position: absolute;
    top: 5%;
    width: 85%;
    left: 10%;
  }
  .db_ba6_move2 {
    position: absolute;
    top: 26%;
    width: 85%;
    left: 10%;
  }
  h3.move_h3.h31,
  h3.move_h3.h32 {
    margin-bottom: 3%;
  }
  p.move_p.mid6_p1,
  p.move_p.mid6_p2,
  p.move_p.mid6_p3 {
    font-size: 13px;
  }

  /*banner7  */
  .ban7 {
    display: flex;
    position: absolute;
    top: 5%;
    justify-content: space-between;
    align-items: center;
    width: 84%;
    left: 8%;
  }
  .ban7 p {
    font-family: Helvetica;
    font-weight: 100;
  }
  .ban7 span {
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }
  /*banner8  */
  .ban8 {
    display: flex;
    position: absolute;
    top: 5%;
    justify-content: space-between;
    align-items: center;
    width: 84%;
    left: 8%;
  }
  .ban8 p {
    font-family: Helvetica;
    font-weight: 100;
  }
  .ban8 span {
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }
  /*banner9  */
  .ban9 {
    display: flex;
    position: absolute;
    top: 5%;
    justify-content: space-between;
    align-items: center;
    width: 84%;
    left: 8%;
  }
  .ban9 p {
    font-family: Helvetica;
    font-weight: 100;
  }
  .ban9 span {
    font-family: Helvetidb_ba1ca Neue;
    font-weight: 100;
  }

  .details_banner_move .ban_a a:link,
  a:visited {
    /* color: #000; */
  }
  .details_banner_move .ban_a {
    text-decoration: none;
  }
}

@media screen and (max-width: 550px) {
  .details_box_pc {
    display: none;
  }
  /* details_content */
  .details_content_move {
    transform: translateY(-50%) scale(0.6);
  }

  .left.details_content_move {
    transform-origin: left;
  }

  .right.details_content_move {
    transform-origin: right;
  }

  /* carousel */
  .details_carousel_text_move {
    padding: 20px 0;
    /* display: none; */
  }

  .details_carousel_text_content_move h3 {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 20px;
  }

  .details_carousel_text_content_move ul {
    padding: 0 10px 0 30px;
  }

  .details_carousel_text_content_move ul li {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 4%;
  }

  .details_carousel_text2_move {
    width: 100%;
    background-color: #f7f8f9;
    display: block;
  }

  .details_carousel_text_content2_move {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }

  .details_carousel_text_content2_move h3 {
    box-sizing: border-box;
    margin: 0 0 20px 0;
    padding-left: 60px;
    line-height: 28px;
    color: #333;
    font-size: 28px;
    font-weight: normal;
    transition: all 0.3s;
  }

  .details_carousel_text_content2_move ul {
    box-sizing: border-box;
    margin: 0;
    padding: 0 40px 0 80px;
    transition: all 0.3s;
  }

  .details_carousel_text_content2_move ul li {
    list-style: disc;
    line-height: 28px;
    color: #333;
    font-size: 16px;
    transition: all 0.3s;
  }

  /* info */
  .details_info_move {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px;
  }

  .details_info_content_move h3 {
    margin: 0 0 20px 0;
    line-height: 14px;
    font-size: 14px;
  }

  .details_info_content_move p {
    font-size: 12px;
  }

  /* install */
  .details_install_move {
    padding: 10px;
  }

  .details_install_move h3 {
    margin: 20px 0;
    line-height: 16px;
    font-size: 16px;
  }

  .details_install_content_move {
    width: 100%;
    top: 10px;
    left: 10px;
    transform: scale(0.5);
    transform-origin: left top;
  }

  /* banner */
  .details_banner_title_move {
    transform: scale(0.5);
    transform-origin: right;
  }

  .details_fitting_content_move {
    transform-origin: left bottom !important;
  }
}
