@import url(./all-work.css);
@import url(./function.css);

:root {
  --border-color: #9590FF;
  --text-color: #3F2F69;
}
.home-set-price-bg {
  background: linear-gradient( 180deg, #E5ECFF 0%, rgba(255,255,255,0) 100%);
  background-size: 100% 500px;
  background-repeat: no-repeat;
}

.home-set-price-bg .title-center {
  padding: 70px 0 50px 0;
}
.home-set-price-bg .title-center span {
  background: linear-gradient(90deg, #8A39FF 0%, #1674FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-set-price-bg .product-preview {
  display: flex;
  column-gap: 70px;
  justify-content: center;
  margin-bottom: 70px;
}
.home-set-price-bg .product-preview .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.home-set-price-bg .product-preview .item .icon {
  width: 40px;
  display: block;
  margin-bottom: 6px;
}
.home-set-price-view {
  display: flex;
  column-gap: 26px;
}
.price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-item > img {
  width: 100%;
}
.price-item .list {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding-top: 20px;
}
.price-item .list > p {
  font-size: 13px;
  line-height: 1.5em;
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
}
.price-item .list > p::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 2px;
  margin-right: 6px;
  flex-shrink: 0;
}
.price-item .price-item-inner {
  position: absolute;
  top: 25px;
  padding: 20px;
  width: 100%;
  height: calc(100% - 25px);
  display: flex;
  flex-direction: column;
}
.price-item .btns .btn {
  position: relative;
}
.price-item h3 {
  font-size: 32px;
  color: #6b56aa;
  margin-bottom: 35px;
}
.price-item .price-item-inner > p {
  color: #6f54b4;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 32px;
}
.price-num {
  font-size: 22px;
  padding-top: 15px;
}
.price-num .num::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 124%;
  height: 1px;
  background: #ff0603;
  transform: rotate(10deg);
}
.price-num .num {
  font-size: 36px;
  color: #3f2f69;
  font-weight: 600;
  position: relative;
}
.price-num .discount {
  font-size: 16px;
  color: #4235ae;
  margin-left: 10px;
}
.price-desc {
  margin-top: 14px;
  color: #4235ae;
  margin-bottom: 19px;
}
.price-item .btns {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: auto;
  font-size: 18px;
}
.price-item .btns .btn {
  flex: 1;
  position: relative;
  height: 48px;
  background: linear-gradient(133deg, #fff4e5 0%, #ffeacc 50%, #fff4e4 100%);
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  line-height: 48px;
  color: #8f6c05;
  cursor: pointer;
}
.price-item .btns .btn:nth-child(2) {
  background: #fff;
}
.price-item .btns .btn2::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -9px;
  width: 39px;
  height: 39px;
  background-image: url(../img/gift.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.price-item:nth-child(2) {
  --border-color: #F1B966;
}
.price-item:nth-child(3) {
  --border-color: white;
}
.price-item:nth-child(4) {
  --border-color: #6694F1;
}
.price-item:nth-child(2) h3 {
 color: #50372B;
}
.price-item:nth-child(2) p {
  color: #946622;
}
.price-item:nth-child(2) p::before {
  background-image: url("../images/marketing/dot\ \(2\).png");
}
.price-item:nth-child(2) .price-num .num {
  color: #55281F;
}
.price-item:nth-child(2) .discount {
  color: #946622;
}
.price-item:nth-child(2) .price-desc {
  color: #946622;
}
.price-item:nth-child(3) h3 {
 color: #fff;
}
.price-item:nth-child(3) p {
  color: #fff;
}
.price-item:nth-child(3) p::before {
  background-image: url("../images/marketing/dot\ \(3\).png");
}
.price-item:nth-child(3) .price-num .num {
  color: #fff;
}
.price-item:nth-child(3) .discount {
  color: #fff;
}
.price-item:nth-child(3) .price-desc {
  color: #fff;
}
.price-item:nth-child(4) p::before {
  display: none;
}
.price-tel {
  color: #3764DA;
  font-size: 26px;
  display: flex;
  font-weight: bold;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}