@charset "UTF-8";
/* common */
h1 {
  font-family: Poppins Bold;
  font-size: 46px;
  line-height: 64px;
}
h2 {
  font-family: Poppins Bold;
  font-size: 36px;
  line-height: 59px;
}
h3 {
  font-family: Poppins Bold;
  font-size: 26px;
  line-height: 42px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 45px;
  }
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
  h3 {
    font-size: 18px;
    line-height: 29px;
  }
}
/* common */

/* tab-btn */
.tab-btn {
  margin-top: 78px;
}
.tab-btn .base-maxwidth {
  overflow-x: scroll;
  border-bottom: 1px solid #e6e6e6;
  -ms-overflow-style: none; /* IE */
  scrollbar-width: none; /* FireFox */
}
.tab-btn .base-maxwidth::-webkit-scrollbar {
  display: none;
}
.tab-btn .tab-btn-list {
  display: flex;
}
.tab-btn .tab-btn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 17px;
  position: relative;
  transition: all 0.5s ease;
}
.tab-btn .tab-btn-item svg {
  color: #1a243d;
  transition: all 0.5s ease;
}
.tab-btn .tab-btn-item svg path {
  transition: all 0.5s ease;
}
.tab-btn .tab-btn-item svg .black-path {
  color: #1a243d;
}
.tab-btn .tab-btn-item svg .blue-path {
  color: rgba(0, 0, 0, 0);
}
.tab-btn .tab-btn-item:hover,
.tab-btn .tab-btn-item.curr {
  color: #00bde3;
}
.tab-btn .tab-btn-item.curr:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #00bde3;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.tab-btn .tab-btn-item:hover svg,
.tab-btn .tab-btn-item.curr svg {
  color: #00bde3;
}
.tab-btn .tab-btn-item:hover svg .black-path,
.tab-btn .tab-btn-item.curr svg .black-path {
  color: rgba(0, 0, 0, 0);
}
.tab-btn .tab-btn-item:hover svg .blue-path,
.tab-btn .tab-btn-item.curr svg .blue-path {
  color: #00bde3;
}
.tab-btn .tab-btn-text {
  margin-top: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 26px;
  font-family: Poppins SemiBold;
}
.tab-btn .tab-btn-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.tab-btn .btn-box {
  display: none;
}
@media (max-width: 925px) {
  .tab-btn {
    position: relative;
  }
  .tab-btn .base-maxwidth:before {
    content: "";
    width: 33px;
    height: 100%;
    background: linear-gradient(
      -91deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 100%
    );
    position: absolute;
    left: 20px;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }
  .tab-btn .base-maxwidth:after {
    content: "";
    width: 33px;
    height: 100%;
    background: linear-gradient(91deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    position: absolute;
    right: 20px;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }
  .tab-btn .base-maxwidth.start:before {
    display: none;
  }
  .tab-btn .base-maxwidth.end:after {
    display: none;
  }
  .tab-btn .tab-btn-item + .tab-btn-item {
    margin-left: 25px;
  }
  .tab-btn .btn-box {
    display: block;
  }
  .tab-btn .btn-box p {
    width: 20px;
    height: 32px;
    background: url(https://images.clevguard.com/en/assets/overview/windows_monitoring_software/choose_btn.svg);
    position: absolute;
    top: 20px;
    cursor: pointer;
  }
  .tab-btn .btn-box p.tab-btn-left {
    border-radius: 0 4px 4px 0;
    left: 0;
  }
  .tab-btn .btn-box p.tab-btn-right {
    border-radius: 4px 0 0 4px;
    background-position-x: 100%;
    right: 0;
  }
}
@media (max-width: 768px) {
  .tab-btn {
    margin-top: 48px;
  }
  .tab-btn .tab-btn-text {
    margin-top: 12px;
    line-height: 20px;
  }
}
/* tab-btn */

/* pricing-plate */
.pricing-plate {
  margin-top: 100px;
}
.pricing-plate h2 {
  text-align: center;
}
.pricing-plate .plate-desc {
  margin-top: 16px;
  line-height: 23px;
  text-align: center;
}
.pricing-plate .pricing-list {
  margin-top: 81px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-plate .pricing-plan {
  width: 32%;
  margin-left: 2%;
  transition: all 0.5s ease;
  padding: 36px 38px 29px;
  border: 2px solid #c6edf4;
  border-radius: 18px;
  background: #fff;
  position: relative;
}
.pricing-plate .pricing-plan:first-child {
  margin-left: 0;
}
.pricing-plate .pricing-plan.best-seller:before {
  content: "Best Seller";
  font-family: Poppins Medium;
  line-height: 26px;
  padding: 2px 13px;
  color: #fff;
  background: #f93;
  border-radius: 15px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.pricing-plate .pricing-plan.curr {
  transform: scale(1.2);
  z-index: 102;
  border: none;
  box-shadow: 0 20px 80px 0 rgba(26, 36, 61, 0.14);
}
.pricing-plate .plan-title {
  font-size: 22px;
  line-height: 37px;
  font-family: Poppins Medium;
}
.pricing-plate .average-price {
  font-size: 20px;
  line-height: 32px;
  font-family: Poppins Medium;
  margin-top: 10px;
}
.pricing-plate .average-price span {
  font-size: 46px;
  line-height: 75px;
  color: #f93;
  font-family: Poppins Bold;
}
.pricing-plate .plan-price {
  line-height: 23px;
  margin-top: 10px;
  padding-bottom: 40px;
  border-bottom: 2px dashed rgba(26, 36, 61, 0.29);
}
.pricing-plate .plan-price span {
  color: #f93;
}
.pricing-plate .plan-info {
  margin-top: 39px;
  color: #5e6577;
  line-height: 23px;
  position: relative;
}
.pricing-plate .info-icon {
  color: #f93;
  cursor: pointer;
}
.pricing-plate .plan-tips {
  position: absolute;
  width: 262px;
  padding: 20px;
  border-radius: 4px;
  font-size: 14px;
  box-shadow: 0 6px 24px 0 rgba(22, 25, 45, 0.1);
  background: #fff;
  left: 265px;
  top: -38px;
  z-index: 103;
  display: none;
}
.pricing-plate .plan-tips:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 10px solid #fff;
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 40px;
  left: -10px;
}
.pricing-plate .plan-tips a {
  color: #f93;
}
.pricing-plate .info-icon:hover + .plan-tips {
  display: block;
}
.pricing-plate .plan-tips:hover {
  display: block;
}
.pricing-plate .btn-box {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}
.pricing-plate .pay-btn {
  width: 100%;
  height: 46px;
  order: 1;
  margin-top: 16px;
  cursor: pointer;
}
.pricing-plate .base-link {
  display: none;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1600px) {
  .pricing-plate .plan-tips.left {
    left: -35px;
  }
  .pricing-plate .plan-tips.left:before {
    border-left: 10px solid #fff;
    border-right: none;
    left: 262px;
  }
}
@media (max-width: 1071px) {
  .pricing-plate .plan-tips {
    left: 26px;
    top: -14px;
  }
  .pricing-plate .plan-tips.left {
    left: -272px;
  }
}
@media (max-width: 1024px) {
  .pricing-plate .plan-tips {
    left: 100px;
  }
  .pricing-plate .plan-tips.left {
    left: -198px;
  }
}
@media (max-width: 794px) {
  .pricing-plate .plan-tips {
    left: 162px;
  }
  .pricing-plate .plan-tips.left {
    left: -136px;
  }
}
@media (max-width: 768px) {
  .pricing-plate {
    margin-top: 56px;
  }
  .pricing-plate .plate-desc {
    margin-top: 8px;
    line-height: 24px;
  }
  .pricing-plate .pricing-list {
    margin-top: 32px;
    flex-direction: column;
    align-items: center;
  }
  .pricing-plate .pricing-plan {
    margin-left: 0;
    margin-top: 24px;
    padding: 24px;
    width: 100%;
    max-width: 540px;
    border: 1px solid #c6edf4;
    border-radius: 10px;
  }
  .pricing-plate .pricing-plan.curr {
    transform: scale(1);
    z-index: auto;
    border: 1px solid #c6edf4;
    box-shadow: none;
  }
  .pricing-plate .pricing-plan:first-child {
    margin-top: 0;
  }
  .pricing-plate .plan-title {
    font-size: 20px;
    line-height: 32px;
  }
  .pricing-plate .average-price {
    margin-top: 8px;
    font-size: 18px;
    line-height: 24px;
    color: #485064;
  }
  .pricing-plate .average-price span {
    font-size: 40px;
    line-height: 66px;
  }
  .pricing-plate .plan-price {
    margin-top: 6px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #bcbfc6;
  }
  .pricing-plate .plan-info {
    margin-top: 30px;
    font-size: 15px;
    line-height: 21px;
  }
  .pricing-plate .info-icon {
    width: 15px;
  }
  .pricing-plate .plan-tips {
    top: 28px;
    left: 10px;
  }
  .pricing-plate .plan-tips:before {
    border-top: none;
    border-bottom: 10px solid #fff;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    top: -10px;
    left: 210px;
  }
  .pricing-plate .plan-tips.left {
    left: 10px;
  }
  .pricing-plate .plan-tips.left:before {
    border-top: none;
    border-bottom: 10px solid #fff;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    left: 210px;
  }
  .pricing-plate .pay-btn {
    margin-top: 12px;
  }
  .pricing-plate .base-link {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
  }
}
/* pricing-plate */

/* monitoring-now-plate */
.monitoring-now-plate {
  margin-top: 123px;
  padding: 100px 0;
  background: #f3f4f7;
}
.monitoring-now-plate h2 {
  text-align: center;
}
.monitoring-now-plate .plate-desc {
  max-width: 810px;
  text-align: center;
  margin: 10px auto 0;
  line-height: 26px;
}
.monitoring-now-plate .plate-content {
  margin-top: 64px;
  position: relative;
}
.monitoring-now-plate .left {
  width: calc(100% - 410px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.monitoring-now-plate .step-list {
  width: 100%;
}
.monitoring-now-plate .step-item {
  padding: 32px 40px;
  border: 1px solid #c6edf4;
  background: #f5f6f9;
  border-radius: 10px;
  margin-top: 32px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.5s ease;
}
.monitoring-now-plate .step-item:first-child {
  margin-top: 0;
}
.monitoring-now-plate .step-item:hover {
  background: #e8eff1;
}
.monitoring-now-plate .step-item.curr {
  border: none;
  background: #fff;
  color: #00bde3;
  box-shadow: 0 6px 24px 0 rgba(22, 25, 45, 0.1);
}
.monitoring-now-plate .step-item.curr:before {
  content: "";
  width: 6px;
  height: 100%;
  background: #00bde3;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px 0 0 10px;
}
.monitoring-now-plate .step-item.curr:after {
  content: "";
  width: 0;
  height: 2px;
  border-left: 30px solid #fff;
  border-top: 20px solid rgba(0, 0, 0, 0);
  border-bottom: 20px solid rgba(0, 0, 0, 0);
  border-radius: 0 21px 21px 0;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.monitoring-now-plate .step-title {
  font-size: 20px;
  line-height: 32px;
  font-family: Poppins SemiBold;
}
.monitoring-now-plate .step-content {
  margin-top: 10px;
  line-height: 26px;
  min-height: 52px;
}
.monitoring-now-plate .base-btn {
  margin-top: 40px;
  width: 224px;
  height: 56px;
}
.monitoring-now-plate .right {
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.monitoring-now-plate .swiper-box {
  width: 100%;
  padding: 10px 15px 32px;
  background: url(https://images.clevguard.com/en/assets/overview/kidsguard_pro_for_android/phone_img_start.png)
    no-repeat;
  background-size: cover;
}
.monitoring-now-plate .swiper-container {
  border-radius: 30px;
}
.monitoring-now-plate .plat-pagination {
  display: none;
}
.monitoring-now-plate .right .base-link-video {
  margin-top: 8px;
  font-size: 16px;
  line-height: 26px;
}
.monitoring-now-plate .right .base-link-video svg {
  color: #f93;
}
@media (max-width: 1024px) {
  .monitoring-now-plate .left {
    width: calc(100% - 350px);
  }
}
@media (max-width: 768px) {
  .monitoring-now-plate {
    margin-top: 56px;
    padding: 56px 0;
  }
  .monitoring-now-plate .plate-desc {
    margin-top: 8px;
    line-height: 24px;
  }
  .monitoring-now-plate .plate-content {
    margin-top: 32px;
  }
  .monitoring-now-plate .left {
    width: 100%;
  }
  .monitoring-now-plate .step-item {
    width: 100%;
    border: none;
    background: none;
    border-radius: 0;
    padding: 0 0 0 32px;
    margin-top: 24px;
  }
  .monitoring-now-plate .step-item:first-child {
    margin-top: 0;
  }
  .monitoring-now-plate .step-item:before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(https://images.clevguard.com/en/assets/overview/kidsguard_pro_for_android/step_unselected.svg)
      no-repeat;
    position: absolute;
    left: 0;
    top: 1px;
    transition: all 0.5s ease;
    z-index: 1;
  }
  .monitoring-now-plate .step-item:after {
    content: "";
    width: 0;
    height: calc(100% + 24px);
    border-right: 1px dashed #b0e6f3;
    position: absolute;
    top: 11px;
    left: 11px;
  }
  .monitoring-now-plate .step-item:hover {
    background: none;
  }
  .monitoring-now-plate .step-item.curr {
    background: none;
    box-shadow: none;
  }
  .monitoring-now-plate .step-item.curr:before {
    width: 22px;
    height: 22px;
    background: url(https://images.clevguard.com/en/assets/overview/kidsguard_pro_for_android/step_checked.svg)
      no-repeat;
    position: absolute;
    left: 0;
    top: 1px;
    transform: rotate(90deg);
  }
  .monitoring-now-plate .step-item.curr:after {
    content: "";
    width: 0;
    height: calc(100% + 24px);
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    border-right: 1px dashed #b0e6f3;
    position: absolute;
    top: 11px;
    left: 11px;
    right: auto;
    transform: translateY(0);
  }
  .monitoring-now-plate .step-item:last-child:after {
    display: none;
  }
  .monitoring-now-plate .step-title {
    font-size: 16px;
    line-height: 24px;
  }
  .monitoring-now-plate .step-content {
    margin-top: 8px;
    line-height: 24px;
    display: none;
    min-height: auto;
  }
  .monitoring-now-plate .base-btn {
    margin-top: 32px;
    width: 190px;
    height: 46px;
    font-size: 16px;
    line-height: 26px;
  }
  .monitoring-now-plate .right {
    width: 224px;
    position: static;
    margin-top: 32px;
  }
  .monitoring-now-plate .swiper-box {
    padding: 8px 12px 24px;
    margin-top: 24px;
  }
  .monitoring-now-plate .swiper-container {
    border-radius: 20px;
  }
  .monitoring-now-plate .plat-pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .monitoring-now-plate .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 189, 227, 0.4);
    margin-left: 10px;
  }
  .monitoring-now-plate .swiper-pagination-bullet:first-child {
    margin-left: 0;
  }
  .monitoring-now-plate .swiper-pagination-bullet-active {
    background: #00bde3;
  }
  .monitoring-now-plate .right .base-link-video {
    order: -1;
    margin-top: 0;
  }
}
/* monitoring-now-plate */

/* table-plate */
.table-plate {
  margin-top: 100px;
  padding: 100px 0;
  background: #f3f4f7;
}
.table-plate h2 {
  text-align: center;
}
.table-plate .plate-desc {
  max-width: 810px;
  margin: 16px auto 0;
  line-height: 26px;
  text-align: center;
}
.table-plate .plate-content {
  margin-top: 48px;
  border-radius: 24px;
  border: 4px solid #1a243d;
  overflow: hidden;
}
.table-plate table {
  width: 100%;
  text-align: center;
  vertical-align: middle;
  border-spacing: 0;
}
.table-plate thead tr {
  background: #cdf2fa;
  font-size: 18px;
  line-height: 29px;
  font-family: Poppins SemiBold;
}
.table-plate th,
.table-plate td {
  border-left: 2px solid #e2e8ed;
  width: 27%;
}
.table-plate th:first-child,
.table-plate td:first-child {
  border-left: none;
  width: 46%;
  padding: 24px 0;
}
.table-plate th a {
  color: #00bde3;
  text-decoration: underline;
}
.table-plate .orange {
  color: #f93;
}
.table-plate tbody tr {
  background: #fff;
}
.table-plate tbody tr:nth-child(2n) {
  background: #f8f9fb;
}
.table-plate td {
  font-size: 16px;
  line-height: 23px;
  color: #303950;
}
.table-plate td:first-child {
  color: #1a243d;
}
.table-plate .table-tips {
  position: relative;
}
.table-plate .table-tips svg {
  cursor: pointer;
}
.table-plate .table-tips span {
  display: none;
}
.table-plate .table-tips:hover span {
  display: block;
  padding: 14px 20px;
  background: #fff;
  width: 400px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  position: absolute;
  right: -50px;
  top: 33px;
  z-index: 2;
}
.table-plate .table-tips span:after {
  content: "";
  width: 0;
  height: 0;
  border: 8px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  position: absolute;
  top: -16px;
  right: 50px;
}
.table-plate .table-price td {
  font-size: 18px;
  line-height: 29px;
  font-family: Poppins SemiBold;
  color: #f93;
}
.table-plate .table-price td:first-child {
  font-size: 16px;
  line-height: 23px;
  font-family: Poppins Regular;
  color: #1a243d;
}
.table-plate .table-button td {
  padding: 15px 0 14px;
}
.table-plate .table-button .base-btn {
  width: 168px;
  height: 42px;
  font-size: 16px;
  line-height: 26px;
  margin: auto;
}
.table-plate .mb-price-buy {
  display: none;
}
@media (max-width: 768px) {
  .table-plate {
    margin-top: 56px;
    padding: 56px 0;
  }
  .table-plate .plate-desc {
    margin-top: 8px;
    line-height: 24px;
  }
  .table-plate .plate-content {
    margin-top: 32px;
    border-radius: 16px;
    border: 2px solid #1a243d;
  }
  .table-plate table {
    position: relative;
  }
  .table-plate thead tr {
    font-size: 14px;
    line-height: 23px;
    font-family: Poppins SemiBold;
  }
  .table-plate th,
  .table-plate td {
    border-left: 1px solid #e2e8ed;
    width: 32%;
  }
  .table-plate th:first-child,
  .table-plate td:first-child {
    width: 36%;
    padding: 16px 0;
  }
  .table-plate td {
    font-size: 15px;
    line-height: 21px;
  }
  .table-plate td > svg {
    width: 22px;
    height: 22px;
  }
  .table-plate td:first-child {
    color: #303950;
  }
  .table-plate .table-tips {
    position: static;
  }
  .table-plate .table-tips:hover span {
    width: 80%;
    top: 133px;
    right: 10%;
  }
  .table-plate .table-tips span:after {
    display: none;
  }
  .table-plate .table-price,
  .table-plate .table-button {
    display: none;
  }
  .table-plate .mb-price-buy {
    display: flex;
    background: #fff;
  }
  .table-plate .mb-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 32px;
  }
  .table-plate .pro-name {
    line-height: 26px;
    color: #303950;
    font-family: Poppins Medium;
  }
  .table-plate .pro-price {
    margin-top: 8px;
    font-size: 18px;
    line-height: 23px;
    font-family: Poppins Medium;
    color: #f93;
  }
  .table-plate .base-btn {
    margin-top: 16px;
    width: 160px;
    height: 46px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 26px;
  }
}
/* table-plate */

/* product-faq */
.product-faq {
  margin: 100px 0;
}
.product-faq .base-maxwidth {
  display: flex;
}
.product-faq .faq-left {
  flex: 1;
}
.product-faq .faq-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}
.product-faq .product-faq h2 {
  text-align: center;
}
.product-faq .faq-list {
  margin-top: 32px;
}
.product-faq .faq-list li {
  padding: 24px 0;
  border-top: 1px solid #e2e8ed;
}
.product-faq .faq-list li:first-child {
  border-top: none;
}
.product-faq .faq-question {
  padding-right: 20px;
  display: flex;
  font-size: 20px;
  line-height: 32px;
  font-family: Poppins SemiBold;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}
.product-faq .faq-question:hover,
.product-faq .faq-question.curr {
  color: #00bde3;
}
.product-faq .faq-question svg {
  flex-shrink: 0;
}
.product-faq .faq-icon {
  margin-top: 4px;
  margin-right: 8px;
}
.product-faq .faq-slide {
  position: absolute;
  top: 6px;
  right: 0;
  transition: all 0.5s ease;
}
.product-faq .faq-question.curr .faq-slide {
  transform: rotate(90deg);
}
.product-faq .faq-answer {
  margin-top: 8px;
  font-size: 18px;
  line-height: 28px;
  padding-left: 32px;
  display: none;
}
.product-faq .faq-list li:first-child .faq-answer {
  display: block;
}
.product-faq .base-btn {
  margin: 16px auto 0;
  width: 224px;
  height: 56px;
}

.faq-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.faq-topic {
  width: 380px;
  margin-left: 40px;
  flex-shrink: 0;
}

.faq-topic ul {
  background: rgba(16, 24, 41, 0.03);
  border-radius: 12px;
  padding: 16px 16px 20px;
}

.faq-topic ul li {
  position: relative;
  color: rgba(16, 24, 41, 0.7);
  padding-left: 10px;
  margin-bottom: 20px;
}

.faq-topic ul li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #101829;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

.faq-topic ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .product-faq .base-maxwidth {
    flex-direction: column;
  }
  .product-faq .faq-topic {
    width: auto;
    margin-top: 60px;
  }
  .faq-topic ul {
    padding: 12px;
  }
  .faq-topic {
    margin-left: 0;
  }

  .faq-topic ul li {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .product-faq {
    margin: 56px 0;
  }
  .product-faq .faq-list {
    margin-top: 8px;
  }
  .product-faq .faq-question {
    font-size: 18px;
    line-height: 26px;
  }
  .product-faq .faq-answer {
    line-height: 24px;
  }
}
/* product-faq */