main{
  background: #fff;
}
.banner {
  background-color: #f0f7ff;
  padding: 60px 0;
  margin-bottom: 120px;
}
.banner-title {
  text-align: center;
  font-size: 42px;
  color: #212121;
  margin-bottom: 15px;
}
.banner-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #000;
}
.banner-desc::before {
  content: '';
  width: 42px;
  height: 42px;
  background-image: url(../../img/store/icon-100-safe-purchase.svg);
  background-size: 100% 100%;
}
.area-title {
  width: fit-content;
  position: relative;
  font-size: 32px;
  text-align: center;
  color: #212121;
  margin: 0 auto 45px;
}
.area-title::before,
.area-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 3px;
  height: 80%;
  border-radius: 10px;
  background-color: #212121;
}
.area-title::before {
  left: -25px;
  transform: translateY(-50%) rotate(-15deg);
}
.area-title::after {
  right: -25px;
  transform: translateY(-50%) rotate(15deg);
}
.product-all {
  margin-bottom: 120px;
}
.product-all .product-wrap {
  display: flex;
  justify-content: center;
}
.product-all .product-item {
  width: 520px;
  border-radius: 8px;
  border: 1px solid #ececec;
  background: #fff;
  padding: 15px 15px 35px;
}
.product-all .product-item_info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 35px;
  margin-bottom: 54px;
}
.product-all .product-item_info::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% + 2px);
  transform: translateX(-50%) translateY(38px);
  box-sizing: border-box;
  border: 20px solid transparent;
  border-top-color: #f9f9f9;
}
.product-all .product-item_info::after {
  content: '';
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 434px;
  height: 25px;
  background-image: url(../../img/store/product-item-line.svg);
}
.product-all .product-item_logo {
  display: none;
}
.product-all .product-item_title {
  display: block;
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
}
.product-all .product-item_desc {
  font-size: 16px;
  line-height: 1.5;
  color: #565656;
}
.product-all .product-item_price {
  display: block;
  font-size: 32px;
  text-align: center;
  color: #ff8000;
  margin-bottom: 25px;
}
.product-all .product-item_buy {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.product-all .product-item .buy-win,
.product-all .product-item .buy-mac {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 204px;
  height: 50px;
  border-radius: 6px;
  background: #007bff;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: all 300ms;
  overflow: hidden;
}
.product-all .product-item .buy-win span,
.product-all .product-item .buy-mac span {
  transition: all 300ms;
}
.product-all .product-item .buy-win::before,
.product-all .product-item .buy-mac::before {
  content: '';
  background-size: 100% 100%;
  transition: all 300ms;
}
.product-all .product-item .buy-win:hover,
.product-all .product-item .buy-mac:hover {
  background-color: #0068d7;
}
.product-all .product-item .buy-win::before {
  width: 19px;
  height: 20px;
  background-image: url(../../img/store/icon-win-white.svg);
}
.product-all .product-item .buy-mac::before {
  width: 17px;
  height: 22px;
  background-image: url(../../img/store/icon-mac-white.svg);
}
.product-platform {
  margin-bottom: 100px;
}
.product-platform .product-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
.product-platform .product-tab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  font-size: 16px;
  color: #000;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  cursor: pointer;
  transition: all 300ms;
}
.product-platform .product-tab_item.active {
  color: #007bff;
  border-radius: 4px;
  border: 1px solid #6fb4ff;
  background: rgba(0, 123, 255, 0.1);
}
.product-platform .product-wrap {
  display: none;
  flex-flow: row wrap;
  justify-content: space-between;
  row-gap: 40px;
}
.product-platform .product-wrap::after {
  content: '';
  width: 340px;
  height: 0;
}
.product-platform .product-wrap.active {
  display: flex;
}
.product-platform .product-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 340px;
  border: 1px solid #ececec;
  background: #fff;
  padding: 30px 20px;
}
.product-platform .product-item.hide {
  display: none;
}
.product-platform .product-item_logo {
  margin-bottom: 20px;
}
.product-platform .product-item_logo.small-margin {
  margin-bottom: 10px;
}
.product-platform .product-item_title {
  font-size: 22px;
  line-height: 1.5;
  color: #212121;
  margin-bottom: 12px;
}
.product-platform .product-item_title.small-title {
  padding-right: 40px;
}
.product-platform .product-item_desc {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: #565656;
  margin-bottom: 20px;
}
.product-platform .product-item_price {
  position: relative;
  width: fit-content;
  font-size: 20px;
  color: #007bff;
  padding: 15px 0 30px;
  border-top: 1px solid rgba(168, 168, 168, 0.3);
  margin-bottom: 25px;
}
.product-platform .product-item_price::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: url(../../img/store/product-item-line-solid.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.product-platform .product-item_area {
  height: 90px;
}
.product-platform .product-item .buy-win,
.product-platform .product-item .buy-mac,
.product-platform .product-item .buy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 210px;
  height: 50px;
  border-radius: 6px;
  background: #007bff;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 300ms;
}
.product-platform .product-item .buy-win::after,
.product-platform .product-item .buy-mac::after,
.product-platform .product-item .buy::after {
  content: '';
  width: 6px;
  height: 9px;
  background-image: url(../../img/store/icon-arrow.svg);
  background-size: 100% 100%;
  transition: all 300ms;
  transform: scale(1.5);
}
.product-platform .product-item .buy-win:hover,
.product-platform .product-item .buy-mac:hover,
.product-platform .product-item .buy:hover {
  background-color: #0068d7;
}
.product-platform .product-item .buy-win:hover::after,
.product-platform .product-item .buy-mac:hover::after,
.product-platform .product-item .buy:hover::after {
  transform: scale(1.5) translateX(5px);
}
.product-platform .product-item .buy-win,
.product-platform .product-item .buy-mac {
  display: none;
}
.product-platform .product-item .buy-win::before,
.product-platform .product-item .buy-mac::before {
  content: '';
  background-size: 100% 100%;
}
.product-platform .product-item .buy-win.active,
.product-platform .product-item .buy-mac.active {
  display: flex;
}
.product-platform .product-item .buy-win::before {
  width: 19px;
  height: 20px;
  background-image: url(../../img/store/icon-win-white.svg);
}
.product-platform .product-item .buy-mac::before {
  width: 17px;
  height: 22px;
  background-image: url(../../img/store/icon-mac-white.svg);
}
.product-platform .product-item .buy {
  justify-content: space-around;
}
.product-platform .product-item .switch-win,
.product-platform .product-item .switch-mac {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #007bff;
  cursor: pointer;
  user-select: none;
}
.product-platform .product-item .switch-win::after,
.product-platform .product-item .switch-mac::after {
  content: '>>';
  font-size: 16px;
  transition: all 300ms;
}
.product-platform .product-item .switch-win.active,
.product-platform .product-item .switch-mac.active {
  display: flex;
}
.product-platform .product-item .switch-win:hover::after,
.product-platform .product-item .switch-mac:hover::after {
  transform: translateX(5px);
}
.reasons-for-choice {
  padding-bottom: 100px;
}
.reasons-for-choice .area-title {
  margin-bottom: 75px;
}
.reasons-for-choice .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.reasons-for-choice .swiper-slide {
  width: 288px;
  height: 210px;
}
.reasons-for-choice .swiper-slide_icon {
  display: block;
  margin-bottom: 20px;
}
.reasons-for-choice .swiper-slide_title {
  font-weight: normal;
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}
.reasons-for-choice .swiper-slide_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #565656;
}
.reasons-for-choice .swiper-slide:first-child {
  position: relative;
}
.reasons-for-choice .swiper-slide:first-child::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  width: 1px;
  height: 180px;
  background: #e0e0e0;
}
.reasons-for-choice .swiper-slide:last-child {
  position: relative;
}
.reasons-for-choice .swiper-slide:last-child::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  width: 1px;
  height: 180px;
  background: #e0e0e0;
}
@media (max-width: 768px) {
  .banner {
    margin-bottom: 60px;
  }
  .banner-title {
    font-size: 32px;
  }
  .banner-desc {
    gap: 8px;
    font-size: 16px;
  }
  .banner-desc::before {
    content: '';
    width: 32px;
    height: 32px;
  }
  .area-title {
    font-size: 24px;
    margin: 0 auto 35px;
  }
  .area-title::before,
  .area-title::after {
    height: 70%;
    border-radius: 10px;
    background-color: #212121;
  }
  .area-title::before {
    left: -25px;
    transform: translateY(-50%) rotate(-15deg);
  }
  .area-title::after {
    right: -25px;
    transform: translateY(-50%) rotate(15deg);
  }
  .product-all {
    margin-bottom: 60px;
  }
  .product-all .product-wrap {
    flex-direction: column;
    gap: 45px;
  }
  .product-all .product-item {
    width: 100%;
    padding: 15px 15px 30px;
  }
  .product-all .product-item_info {
    flex-direction: column;
    gap: 0;
    padding: 25px;
    margin-bottom: 45px;
  }
  .product-all .product-item_info::after {
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .product-all .product-item_pic {
    display: none;
  }
  .product-all .product-item_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  .product-all .product-item_logo {
    display: block;
  }
  .product-all .product-item_title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .product-all .product-item_price {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .product-all .product-item_buy {
    gap: 18px;
  }
  .product-all .product-item .buy-win,
  .product-all .product-item .buy-mac {
    gap: 6px;
    width: 148px;
    height: 38px;
    border-radius: 4px;
    font-size: 12px;
  }
  .product-all .product-item .buy-win::after,
  .product-all .product-item .buy-mac::after {
    display: none;
  }
  .product-all .product-item .buy-win::before {
    width: 13px;
    height: 13px;
  }
  .product-all .product-item .buy-mac::before {
    width: 12px;
    height: 15px;
  }
  .product-platform {
    margin-bottom: 50px;
  }
  .product-platform .product-wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  .product-platform .product-wrap::after {
    display: none;
  }
  .product-platform .product-item {
    width: 100%;
    padding: 30px 20px;
  }
  .product-platform .product-item_desc {
    flex: 0 0 auto;
  }
  .product-platform .product-item_area {
    height: auto;
  }
  .product-platform .product-item .buy-win:hover::after,
  .product-platform .product-item .buy-mac:hover::after,
  .product-platform .product-item .buy:hover::after {
    transform: unset;
  }
  .product-platform .product-item .switch-win:hover::after,
  .product-platform .product-item .switch-mac:hover::after {
    transform: unset;
  }
  .reasons-for-choice {
    padding-bottom: 50px;
    overflow: hidden;
  }
  .reasons-for-choice .area-title {
    margin-bottom: 35px;
  }
  .reasons-for-choice .swiper-container {
    position: relative;
    padding-bottom: 50px;
  }
  .reasons-for-choice .swiper-slide {
    height: auto;
    background-color: #f9f9f9;
    padding: 30px 25px;
  }
  .reasons-for-choice .swiper-slide:first-child::after,
  .reasons-for-choice .swiper-slide:last-child::after {
    display: none;
  }
  .reasons-for-choice .swiper-pagination {
    display: block;
  }
  .reasons-for-choice .swiper-pagination-bullet {
    background: #e3e3e3;
    opacity: 1;
  }
  .reasons-for-choice .swiper-pagination-bullet-active {
    background: #007bff;
    opacity: 1;
  }
}
