.common_info {
  margin-top: 5%;
  background: #F0F5F7;
  padding: 5% 0; text-align: center;
}

.common_info .info_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #273A60;
  line-height: 74px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.common_info .info_desc {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 26px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  max-width: 705px;
  margin: 30px auto;
}

.common_info .info_btn {
  display: inline-block;
  /* max-width: 160px; */
  padding: 10px 30px;
  margin: 0 auto;
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 30px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  border: 2px solid var(--commonColor);
  background-color: var(--commonColor);
}

.common_info .info_btn:hover {
  background-color: transparent;
  color: var(--commonColor);
}


.common_reviews {
  margin-top: 5%;
  position: relative;
}

.common_reviews .reviews_tit {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #333333;
  line-height: 78px;
  text-align: center;
  font-style: normal;
  text-transform: capitalize;
}

.common_reviews .reviews_tit a {
  display: inline-block;
  color: #333333;
}

.common_reviews .reviews_tit a:hover {
  text-decoration: underline;
  color: var(--commonColor);
}

.common_reviews .reviews_wrap {
  margin-top: 50px;
}

.common_reviews .swiper-wrapper {
  padding-bottom: 40px;
}


.common_reviews .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: unset;
  background: #DFDFDF;
  opacity: 1;
}

.common_reviews .swiper-pagination-bullet-active {
  width: 25px;
  height: 5px;
  border-radius: unset;
  background: #223086;
  opacity: 1;
}

.common_reviews .reviews-button-prev {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 59px;
  height: 59px;
  background: #EAEAEB;
  border: 1px solid #F4F4F4;
  background-image: url(../img/customer_prev.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30%;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.common_reviews .reviews-button-prev:hover {
  background-color: var(--commonColor);
  background-image: url(../img/customer_prev_hover.png);

}


.common_reviews .reviews-button-next {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 59px;
  height: 59px;
  background: #EAEAEB;
  border: 1px solid #F4F4F4;
  background-image: url(../img/customer_next.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30%;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.common_reviews .reviews-button-next:hover {
  background-color: var(--commonColor);
  background-image: url(../img/customer_next_hover.png);

}

@media (max-width:1550px) {
  .common_reviews .reviews_wrap {
    z-index: 1;
  }

  .common_reviews .reviews-button-next {
    z-index: 9;
    right: -2%;
  }

  .common_reviews .reviews-button-prev {
    z-index: 9;
    left: -2%;
  }
}

.common_reviews .reviews_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 25px;
  background: rgba(246, 250, 255, .54);
  border-radius: 20px 20px 20px 20px;
}

.common_reviews .reviews_item .item_avatar {
  width: 119px;
  height: 119px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 150ms ease-out 0ms;
  -moz-transition: all 150ms ease-out 0ms;
  -o-transition: all 150ms ease-out 0ms;
  transition: all 150ms ease-out 0ms;
}

.common_reviews .reviews_item .item_avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.common_reviews .reviews_item .item_avatar:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.common_reviews .reviews_item .item_box .item_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: none;
}

.common_reviews .reviews_item .item_info {
  width: calc(100% - 150px);
}

.common_reviews .reviews_item .item_info .item_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.common_reviews .reviews_item .item_info .item_desc {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}


.common_faq {
  margin-top: 5%;

}

.common_faq .layout {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  padding: 3% 0;
}

.common_faq .faq_left {
  width: 48%;
}

.common_faq .faq_left .faq_tit {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #333333;
  line-height: 60px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 60px;
}

.common_faq .faq_left .faq_desc {
  max-width: 464px;
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--commonColor);
}

.common_faq .faq_left .faq_research {
  margin-top: 70px;
}

.common_faq .faq_left .faq_research {
  justify-content: space-between;
}

.common_faq .faq_left .faq_research .progress_list {
  justify-content: flex-start;
}

.common_faq .faq_left .faq_research .progress_item {
  width: 46%;
  justify-content: space-between;
}

.common_faq .faq_left .faq_research .progress_item .progress_icon {
  position: relative;

}

.common_faq .faq_left .faq_research .progress_item .progress_icon .progress_num {
  position: absolute;
  top: 33px;
  left: 33px;
  /* font-family: 'Roboto-Regular'; */
  font-size: 16px;
  color: var(--commonColor);
  line-height: 30px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.common_faq .faq_left .faq_research .progress_item .progress_icon .progress_num span {
  /* font-family: 'Roboto-Bold'; */
  font-weight: bold;
  font-size: 24px;
  color: var(--commonColor);
  line-height: 30px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.common_faq .faq_left .faq_research .progress_item .progress_info {
  width: calc(100% - 110px);
}

.common_faq .faq_left .faq_research .progress_item .progress_info .progress_title {
  /* font-family: 'PlayfairDisplay-Bold'; */
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_faq .faq_left .faq_research .progress_item .progress_info .progress_desc {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_faq .faq_right {
  width: 48%;
}

.common_faq .faq_right .faq_list .faq-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.common_faq .faq_right .faq_list .faq-item .faq-title {
  position: relative;
  /* font-family: 'PlayfairDisplay-Bold'; */
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  line-height: 42px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background: #F6FAFF;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease;
  z-index: 99;
}

.common_faq .faq_right .faq_list .faq-item .faq-title:after {
  display: inline-block;
  font-family: "fontawesome";
  content: '+';
  font-size: 26px;
  color: var(--commonColor);
}

.common_faq .faq_right .faq_list .faq-item.active .faq-title:after {
  display: inline-block;
  font-family: "fontawesome";
  content: '-';
  font-size: 26px;
  color: #FFFFFF;
  overflow: hidden;

}

.common_faq .faq_right .faq_list .faq-item.active .faq-title {
  background-color: var(--commonColor);
  color: #FFFFFF;
}

.common_faq .faq_right .faq_list .faq-item .faq-cont {
  position: relative;
  z-index: 50;
  display: none;
}

.common_faq .faq_right .faq_list .faq-item.active .faq-cont {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding: 10px 40px;
  display: block;
}

.related_products {
  margin-top: 5%;
  padding: 5% 0;
  background: #F0F5F7;
}

.related_products .pro_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #273A60;
  line-height: 74px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.related_products .pro_title a {
  display: inline-block;
  color: #273A60;
}

.related_products .pro_title a:hover {
  text-decoration: underline;
}

.related_products .pro_wrap {
  margin-top: 50px;
}

.related_products .pro_wrap .pro_list .pro_item {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  padding: 50px 20px;
  -webkit-transition: all 150ms ease-out 0ms;
  -moz-transition: all 150ms ease-out 0ms;
  -o-transition: all 150ms ease-out 0ms;
  transition: all 150ms ease-out 0ms;
}

.related_products .pro_wrap .pro_list .pro_item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 6px;
  background: var(--commonColor);
  transition: all ease-out .5s;
}

.related_products .pro_wrap .pro_list .pro_item:hover:after {
  width: 100%;
}

.related_products .pro_wrap .pro_list .pro_item .item_img {
  width: 35%;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 21%;

}

.related_products .pro_wrap .pro_list .pro_item .item_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.related_products .pro_wrap .pro_list .pro_item:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.related_products .pro_wrap .pro_list .pro_item .item_info {
  width: 60%;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_title {
  /* font-family: 'PlayfairDisplay-Bold'; */
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  text-transform: capitalize;
  height: 60px;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_title a {
  display: inline-block;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_title:hover a {
  color: var(--commonColor);
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_desc {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 20px 0;
  height: 48px;
}


.related_products .pro_wrap .pro_list .pro_item .item_info .item_desc a {
  display: inline-block;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_desc:hover a {
  color: var(--commonColor);
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn {
  display: inline-block;
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  text-transform: capitalize;
  position: relative;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 9px;
  margin-left: 20px;
  background-image: url(../img/read_more_hei.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--commonColor);
  transition: all ease-in-out .35s;
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn:hover {
  color: var(--commonColor);
}

.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn:hover::after {
  background-image: url(../img/read_more.png);
}


.related_products .pro_wrap .pro_list .pro_item .item_info .item_btn:hover::before {
  width: 100%;
}

.related_products .swiper-wrapper {
  padding-bottom: 50px;
}

.related_products .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: unset;
  background: #DFDFDF;
  opacity: 1;
}

.related_products .swiper-pagination-bullet-active {
  width: 25px;
  height: 5px;
  border-radius: unset;
  background: #223086;
  opacity: 1;
}

.related_news {
  margin-top: 5%;
}

.related_news .news_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #273A60;
  line-height: 74px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.related_news .news_title a {
  color: #273A60;
  display: inline-block;
}

.related_news .news_title:hover a {
  text-decoration: underline;
}

.related_news .news_wrap {
  margin-top: 50px;
}

.related_news .news_wrap .news_list {
  justify-content: flex-start;
  align-items: flex-start;
}

.related_news .news_wrap .news_list .news_item {
  width: 31%;
  margin-right: 30px;
  -webkit-transition: all 150ms ease-out 0ms;
  -moz-transition: all 150ms ease-out 0ms;
  -o-transition: all 150ms ease-out 0ms;
  transition: all 150ms ease-out 0ms;
}

.related_news .news_wrap .news_list .news_item:last-child {
  margin-right: 0;
}

.related_news .news_wrap .news_list .news_item .item_img {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 60%;

}

.related_news .news_wrap .news_list .news_item .item_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.related_news .news_wrap .news_list .news_item:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.related_news .news_wrap .news_list .item_date {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 20px 0;
  padding: 0 20px;
}

.related_news .news_wrap .news_list .item_title {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding: 0 20px;
  height: 64px;
}

.related_news .news_wrap .news_list .item_title a {
  display: inline-block;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}


.related_news .news_wrap .news_list .item_title:hover a {
  color: var(--commonColor);
  text-decoration: underline;
}

.common_quote {
  margin-top: 5%;
  margin-bottom: 5%;
}

.common_quote .quote_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #333333;
  line-height: 68px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_quote .quote_wrap {
  margin-top: 50px;
  padding: 5% 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.common_quote .quote_wrap .ch_form .form_top {
  justify-content: space-between;
}

.common_quote .quote_wrap .ch_form .form_top li {
  width: 27%;
  margin-right: 30px;
}

.common_quote .quote_wrap .ch_form .form_top li.item_phone {
  width: 40%;
}

.common_quote .quote_wrap .ch_form li input {
  width: 100%;
  border: none;
  background-color: #FFFFFF;
  padding: 15px 30px;
  margin-bottom: 40px;
}

.common_quote .quote_wrap .ch_form textarea {
  width: 100%;
  height: 146px;
  border: none;
  background-color: #FFFFFF;
  padding: 15px 30px;
  margin-bottom: 40px;

}

.common_quote .quote_wrap .ch_form li input::placeholder {
  font-family: 'ArialMT';
  font-size: 16px;
  color: #808080;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_quote .quote_wrap .ch_form textarea::placeholder {
  font-family: 'ArialMT';
  font-size: 16px;
  color: #808080;
  line-height: 30px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_quote .quote_wrap .ch_form li {
  position: relative;
}

.common_quote .quote_wrap .ch_form li::before {
  content: '*';
  position: absolute;
  top: 8%;
  left: 5%;
  font-family: 'ArialMT';
  font-size: 16px;
  color: #AD222C;
  line-height: 25px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.common_quote .quote_wrap .ch_form li.item_phone::before {
  top: 8%;
  left: 4%;
}

.common_quote .quote_wrap .ch_form li.item_message::before {
  top: 8%;
  left: 1.5%;
}

.common_quote .quote_wrap .ch_form li.item_submit::before {
  content: '' !important;
  color: transparent;
}

.common_quote .quote_wrap .ch_form li input[type='submit'] {
  display: block;
  height: 60px;
  max-width: 200px;
  padding: 8px 30px;
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 43px;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  background-color: var(--commonColor);
  border: 2px solid var(--commonColor);
  transition: all .5s ease;
}

.common_quote .quote_wrap .ch_form li input[type='submit']:hover {
  color: var(--commonColor);
  background-color: transparent;
}

.related_video {
  margin-top: 5%;
}

.related_video .video_title {
  /* font-family: 'PlayfairDisplay-Regular'; */
  font-weight: 400;
  font-size: 50px;
  color: #273A60;
  line-height: 74px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.related_video .video_title a {
  color: #273A60;
  display: inline-block;
}

.related_video .video_title:hover a {
  text-decoration: underline;
}

.related_video .video_wrap {
  margin-top: 50px;
}

.related_video .video_wrap .video_list {
  justify-content: flex-start;
  align-items: flex-start;
}

.related_video .video_wrap .video_list .video_item {
  width: 31%;
  margin-right: 30px;
  -webkit-transition: all 150ms ease-out 0ms;
  -moz-transition: all 150ms ease-out 0ms;
  -o-transition: all 150ms ease-out 0ms;
  transition: all 150ms ease-out 0ms;
}

.related_video .video_wrap .video_list .video_item:last-child {
  margin-right: 0;
}

.related_video .video_wrap .video_list .video_item .item_img {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 60%;

}

.related_video .video_wrap .video_list .video_item .item_img .video_img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.related_video .video_wrap .video_list .video_item:hover .video_img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.related_video .video_wrap .video_list .video_item .item_img .video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  background: rgba(51, 51, 51, .71);
  text-align: center;
  line-height: 60px;
  z-index: 99;
}

.related_video .video_wrap .video_list .video_item .item_img .video_play img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.related_video .video_wrap .video_list .video_item .item_img .video_play:hover {
  animation: pointPulse 1.5s ease-in-out infinite;
}

.related_video .video_wrap .video_list .item_title {
  /* font-family: 'Roboto-Regular'; */
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding: 0 20px;
  margin-top: 20px;
  height: 54px;
}

.related_video .video_wrap .video_list .item_title a {
  display: inline-block;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}


.related_video .video_wrap .video_list .item_title:hover a {
  color: var(--commonColor);
  text-decoration: underline;
}

@media (max-width:1366px) and (min-width:951px) {
  .common_info .info_desc {
    font-size: 20px;
  }

  .common_reviews .reviews_item .item_info .item_title {
    font-size: 22px;
  }

  .common_reviews .reviews_item .item_info .item_desc {
    font-size: 18px;
  }

  .related_products .pro_wrap .pro_list .pro_item .item_info .item_desc {
    font-size: 18px;
  }

  .common_faq .faq_right .faq_list .faq-item.active .faq-cont {
    font-size: 18px;
  }

  .common_faq .faq_left .faq_desc {
    font-size: 18px;
  }
}

@media (max-width:950px) {
  .common_faq .layout {
    flex-direction: column;
  }

  .common_faq .faq_left {
    width: 100%;
    margin-bottom: 30px;
  }

  .common_faq .faq_left .faq_tit {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }

  .common_faq .faq_left .faq_desc {
    max-width: none;
    padding-bottom: 20px;
  }

  @media (max-width:480px) {
    .common_faq .faq_left .faq_research .progress_list {
      flex-direction: column;
    }

    .common_faq .faq_left .faq_research .progress_item {
      width: 100%;
      margin-bottom: 30px;
    }
  }

  .common_faq .faq_left .faq_research {
    margin-top: 30px;
  }

  .common_faq .faq_right {
    width: 100%;
  }

  .common_info .info_desc {
    max-width: none;
  }

  .common_faq .faq_right .faq_list .faq-item .faq-title {
    font-size: 18px;
    line-height: 30px;
  }

  .common_info .info_title {
    font-size: 30px;
    line-height: 35px;
  }

  .common_reviews .reviews_tit {
    font-size: 30px;
    line-height: 35px;
  }

  .common_reviews .reviews_wrap {
    z-index: 1;
    margin-top: 30px;
  }

  .common_reviews .reviews-button-next {
    width: 39px;
    height: 39px;
    z-index: 9;
    right: -2%;
  }

  .common_reviews .reviews-button-prev {
    width: 39px;
    height: 39px;
    z-index: 9;
    left: -2%;
  }

  .common_reviews .reviews_item {
    flex-direction: column;
    align-items: flex-start;
  }

  .common_reviews .reviews_item .item_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .common_reviews .reviews_item .item_box .item_title {
    display: block;
  }

  .common_reviews .reviews_item .item_info .item_title {
    display: none;
  }

  .common_reviews .reviews_item .item_avatar {
    width: 67px;
    height: 67px;
    margin-right: 20px;
  }

  .common_reviews .reviews_item .item_info {
    width: 100%;
    padding: 0 10px;
  }

  .related_products .pro_title ,.related_video .video_title{
    font-size: 30px;
    line-height: 35px;
  }

  .related_products .pro_wrap {
    margin-top: 30px;
  }

  .related_products .pro_wrap .pro_list .pro_item {
    padding: 20px;
  }

  @media (max-width:480px) {
    .related_products .pro_wrap .pro_list .pro_item {
      flex-direction: column;
    }

    .related_products .pro_wrap .pro_list .pro_item .item_img {
      width: 100%;
      margin-bottom: 30px;
      padding-bottom: 66%;
    }

    .related_products .pro_wrap .pro_list .pro_item .item_info {
      width: 100%;
    }
  }

  .related_news .news_title {
    font-size: 30px;
    line-height: 35px;
  }

  .related_news .news_wrap .news_list {
    flex-direction: column;
  }

  .related_news .news_wrap .news_list .news_item {
    width: 100%;
    margin: 0 0 30px;
  }

  .common_quote .quote_title {
    font-size: 30px;
    line-height: 35px;
  }

  .common_quote .quote_wrap {
    margin-top: 30px;
    padding: 5%;
  }

  .common_quote .quote_wrap .ch_form .form_top {
    flex-direction: column;
  }

  .common_quote .quote_wrap .ch_form .form_top li {
    width: 100%;
  }

  .common_quote .quote_wrap .ch_form .form_top li.item_phone {
    width: 100%;
  }

  .common_quote .quote_wrap .ch_form li input {
    margin-bottom: 30px;
  }

  .common_quote .quote_wrap .ch_form textarea {
    margin-bottom: 30px;
    height: 160px;
  }

  .common_quote .quote_wrap .ch_form li.item_message::before {
    left: 3.5%;
  }

  .related_video .video_wrap .video_list {
    flex-direction: column;
  }

  .related_video .video_wrap .video_list .video_item {
    width: 100%;
    margin: 0 0 30px;
  }

  .related_video .video_wrap .video_list .item_title {
    height: auto;
  }

  .related_video .video_wrap .video_list .item_title a {
    -webkit-line-clamp: unset;
    overflow: hidden;
  }

  .related_news .news_wrap .news_list .item_title {
    height: auto;
  }

  .related_news .news_wrap .news_list .item_title a {
    -webkit-line-clamp: unset;
    overflow: hidden;
  }

  .related_products .pro_wrap .pro_list .pro_item .item_info .item_title {
    height: auto;
  }

  .related_products .pro_wrap .pro_list .pro_item .item_info .item_title a {
    -webkit-line-clamp: unset;
    overflow: hidden;
  }

}