.header {
  width: 100%;
  height: 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #EDEDED;
}

.header .header_l {
  width: 36px;
  height: 40px;
}

.header .header_l a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header .header_l a img {
  width: 28px;
  height: 28px;
}

.header .header_c {
  width: 56%;
  height: auto;
}

.header .header_c .point-progress {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .header_c .point-progress ul:first-child {
  width: calc(100% - 36px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header .header_c .point-progress ul:first-child li i {
  transform: scale(0.8);
  text-align: center;
  margin: 0 auto;
  display: block;
  font-size: 0;
  line-height: 12px;
  color: #000;
  font-style: normal;
  line-height: 16px;
}

.header .header_c .point-progress ul:first-child li:nth-of-type(2n+1) {
  border-radius: 50%;
  background: #F8E9EA;
  height: 10px;
  width: 10px;
}

.header .header_c .point-progress ul:first-child li:nth-of-type(2n+1).active {
  height: 16px;
  width: 16px;
  background: #E30680;
}

.header .header_c .point-progress ul:first-child li:nth-of-type(2n+1).active i {
  font-size: 12px;
  color: #fff;
}

.header .header_c .point-progress ul:first-child li:nth-of-type(2n) {
  border-bottom: 3px solid #F8E9EA;
  flex: 1;
}

.header .header_c .point-progress ul:first-child li:nth-of-type(2n).active {
  border-color: #E30680;
}

.header .header_c .point-progress ul:last-child {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .header_c .point-progress ul:last-child li i {
  font-size: 12px;
  color: #777;
  transform: scale(0.8);
  text-align: center;
  margin: 0 auto;
  display: block;
  font-style: normal;
  line-height: 16px;
}

.header .header_c .point-progress ul:last-child li.active i {
  color: #000;
}

.header .header_r {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header .header_r a {
  margin-left: 12px;
  width: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header .header_r a img {
  width: 28px;
  height: auto;
}

.nav {
  width: 100%;
  height: auto;
  background-color: #FFFCEE;
  padding: 8px 2% 8px 4%;
}

.nav a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nav a span {
  color: #F28F2D;
  font-size: 14px;
}

.min_content {
  width: 100%;
  height: auto;
  padding: 20px 0.2% 100px;
}

.min_content .content_box {
  width: 100%;
  height: auto;
}

.min_content .content_box .content_item {
  width: 100%;
  height: auto;
}

.min_content .content_box .content_item ul {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.min_content .content_box .content_item ul li {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 12px 4%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.min_content .content_box .content_item ul li input[type="checkbox"] {
  margin-right: 15px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  stroke-width: 1px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.min_content .content_box .content_item ul li input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_check.png) no-repeat;
  background-size: 100% 100%;
}

.min_content .content_box .content_item ul li input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_no_check.png) no-repeat;
  background-size: 100% 100%;
}

.min_content .content_box .content_item ul li .item_content {
  width: 650px;
  height: auto;
  display: flex;
  flex-direction: row;
}

.min_content .content_box .content_item ul li .item_content .item_img {
  margin-right: 10px;
  width: 80px;
  height: 80px;
}

.min_content .content_box .content_item ul li .item_content .item_img img {
  width: 100%;
  height: 100%;
}

.min_content .content_box .content_item ul li .item_content .item_r {
  width: 560px;
  height: auto;
  position: relative;
}

.min_content .content_box .content_item ul li .item_content .item_r .title {
  width: 100%;
  font-size: 14px;
  color: #000;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.min_content .content_box .content_item ul li .item_content .item_r .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  font-size: 12px;
  color: #7B7B7B;
  margin-top: 8px;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .price {
  font-size: 14px;
  color: #E30680;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r > img {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  cursor: pointer;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #EDEDED;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num button {
  cursor: pointer;
  width: 28px;
  height: 28px;
  border: none;
  background: #FFF;
  outline: none;
  font-size: 16px;
  color: #363636;
  font-weight: bold;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num > input {
  width: 40px;
  font-size: 14px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  word-break: normal;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num .minus {
  border-right: 1px solid #EDEDED;
}

.min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num .plus {
  border-left: 1px solid #EDEDED;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 750px;
  height: 50px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer .footer_l {
  margin-left: 30px;
}

.footer .footer_l .selectAll {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer .footer_l .selectAll input[type="checkbox"] {
  margin-right: 6px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  stroke-width: 1px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.footer .footer_l .selectAll input[type="checkbox"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_check.png) no-repeat;
  background-size: 100% 100%;
}

.footer .footer_l .selectAll input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_no_check.png) no-repeat;
  background-size: 100% 100%;
}

.footer .footer_l .selectAll p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
}

.footer .footer_r {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer .footer_r .info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .footer_r .info span:first-child {
  font-size: 12px;
  color: #E30680;
  font-weight: 700;
  font-style: normal;
}

.footer .footer_r .info span:first-child i {
  font-style: normal;
}

.footer .footer_r .info span:first-child b {
  font-weight: 700;
  font-size: 18px;
}

.footer .footer_r .info span:last-child {
  font-size: 12px;
  color: #7B7B7B;
  font-weight: 400;
  font-style: normal;
}

.footer .footer_r .info span:last-child em {
  font-style: normal;
}

.footer .footer_r .buynow {
  margin-left: 10px;
  font-size: 14px;
  width: 270px;
  height: 50px;
  border: none;
  cursor: pointer;
  color: #fff !important;
  background-color: #E30680 !important;
}

.class_popup {
  display: none;
  width: 750px;
  height: 100vh;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.class_popup .class_header {
  width: 100%;
  height: 40px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #EDEDED;
}

.class_popup .class_header .class_header_l {
  width: 36px;
  height: 40px;
}

.class_popup .class_header .class_header_l a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.class_popup .class_header .class_header_l a img {
  width: 28px;
  height: 28px;
}

.class_popup .class_header .class_header_r {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.class_popup .class_header .class_header_r a {
  margin-left: 12px;
  width: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.class_popup .class_header .class_header_r a img {
  width: 28px;
  height: auto;
}

.class_popup .content_box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.class_popup .content_box .content_item {
  width: 195px;
  margin-right: 15px;
  height: auto;
}

.class_popup .content_box .content_item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.class_popup .content_box .content_item a .item_img {
  width: 156px;
  height: 156px;
}

.class_popup .content_box .content_item a .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class_popup .content_box .content_item a p {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
}

@media screen and (max-width: 1023px) {
  .header {
    width: 100%;
    height: 10.66667vw;
    padding: 0 1.06667vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 0.13333vw solid #EDEDED;
  }
  .header .header_l {
    width: 9.6vw;
    height: 10.66667vw;
  }
  .header .header_l a {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .header .header_l a img {
    width: 7.46667vw;
    height: 7.46667vw;
  }
  .header .header_c {
    width: 65%;
    height: auto;
  }
  .header .header_c .point-progress {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header .header_c .point-progress ul:first-child {
    width: calc(100% - 36*$mw);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .header_c .point-progress ul:first-child li i {
    transform: scale(0.8);
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 0;
    line-height: 3.2vw;
    color: #000;
    font-style: normal;
    line-height: 4.26667vw;
  }
  .header .header_c .point-progress ul:first-child li:nth-of-type(2n+1) {
    border-radius: 50%;
    background: #F8E9EA;
    height: 2.66667vw;
    width: 2.66667vw;
  }
  .header .header_c .point-progress ul:first-child li:nth-of-type(2n+1).active {
    height: 4.26667vw;
    width: 4.26667vw;
    background: #E30680;
  }
  .header .header_c .point-progress ul:first-child li:nth-of-type(2n+1).active i {
    font-size: 3.2vw;
    color: #fff;
  }
  .header .header_c .point-progress ul:first-child li:nth-of-type(2n) {
    border-bottom: 0.4vw solid #F8E9EA;
    flex: 1;
  }
  .header .header_c .point-progress ul:first-child li:nth-of-type(2n).active {
    border-color: #E30680;
  }
  .header .header_c .point-progress ul:last-child {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .header .header_c .point-progress ul:last-child li i {
    font-size: 3.2vw;
    color: #777;
    transform: scale(0.8);
    text-align: center;
    margin: 0 auto;
    display: block;
    font-style: normal;
    line-height: 4.26667vw;
  }
  .header .header_c .point-progress ul:last-child li.active i {
    color: #000;
  }
  .header .header_r {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header .header_r a {
    margin-left: 3.2vw;
    width: 9.6vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .header .header_r a img {
    width: 7.46667vw;
    height: auto;
  }
  .nav {
    width: 100%;
    height: auto;
    background-color: #FFFCEE;
    padding: 2.13333vw 2% 2.13333vw 4%;
  }
  .nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav a span {
    color: #F28F2D;
    font-size: 3.2vw;
  }
  .min_content {
    width: 100%;
    height: auto;
    padding: 2.66667vw 0.2% 13.33333vw;
  }
  .min_content .content_box {
    width: 100%;
    height: auto;
  }
  .min_content .content_box .content_item {
    width: 100%;
    height: auto;
  }
  .min_content .content_box .content_item ul {
    width: 100%;
    height: auto;
    border-radius: 0.8vw;
  }
  .min_content .content_box .content_item ul li {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 1.6vw 4%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .min_content .content_box .content_item ul li input[type="checkbox"] {
    margin-right: 2vw;
    cursor: pointer;
    width: 4vw;
    height: 4vw;
    stroke-width: 0.13333vw;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
  }
  .min_content .content_box .content_item ul li input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4vw;
    height: 4vw;
    background: url(../img/icon_check.png) no-repeat;
    background-size: 100% 100%;
  }
  .min_content .content_box .content_item ul li input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4vw;
    height: 4vw;
    background: url(../img/icon_no_check.png) no-repeat;
    background-size: 100% 100%;
  }
  .min_content .content_box .content_item ul li .item_content {
    width: 86.66667vw;
    height: auto;
    display: flex;
    flex-direction: row;
  }
  .min_content .content_box .content_item ul li .item_content .item_img {
    margin-right: 1.33333vw;
    width: 16vw;
    height: 16vw;
  }
  .min_content .content_box .content_item ul li .item_content .item_img img {
    width: 100%;
    height: 100%;
  }
  .min_content .content_box .content_item ul li .item_content .item_r {
    width: 74.66667vw;
    height: auto;
    position: relative;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .title {
    width: 100%;
    font-size: 3.2vw;
    color: #000;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: 3.2vw;
    color: #7B7B7B;
    margin-top: 1.06667vw;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .price {
    font-size: 3.46667vw;
    color: #E30680;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r > img {
    width: 3.73333vw;
    height: 3.73333vw;
    margin-right: 1.33333vw;
    cursor: pointer;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0.13333vw solid #EDEDED;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num button {
    cursor: pointer;
    width: 7.46667vw;
    height: 7.46667vw;
    border: none;
    background: #FFF;
    outline: none;
    font-size: 3.73333vw;
    color: #363636;
    font-weight: bold;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num > input {
    width: 5.33333vw;
    font-size: 3.2vw;
    height: 100%;
    margin: 0;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    word-break: normal;
    border: none;
    outline: none;
    padding: 0;
    text-align: center;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num .minus {
    border-right: 0.13333vw solid #EDEDED;
  }
  .min_content .content_box .content_item ul li .item_content .item_r .item_box .item_b_r .item_num .plus {
    border-left: 0.13333vw solid #EDEDED;
  }
  .footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    width: 100vw;
    height: 13.33333vw;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer_l {
    margin-left: 4vw;
  }
  .footer .footer_l .selectAll {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .footer .footer_l .selectAll input[type="checkbox"] {
    margin-right: 0.8vw;
    cursor: pointer;
    width: 4vw;
    height: 4vw;
    stroke-width: 0.13333vw;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
  }
  .footer .footer_l .selectAll input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4vw;
    height: 4vw;
    background: url(../img/icon_check.png) no-repeat;
    background-size: 100% 100%;
  }
  .footer .footer_l .selectAll input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4vw;
    height: 4vw;
    background: url(../img/icon_no_check.png) no-repeat;
    background-size: 100% 100%;
  }
  .footer .footer_l .selectAll p {
    font-size: 3.73333vw;
    color: rgba(0, 0, 0, 0.87);
  }
  .footer .footer_r {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .footer .footer_r .info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer .footer_r .info span:first-child {
    font-size: 3.2vw;
    color: #E30680;
    font-weight: 700;
    font-style: normal;
  }
  .footer .footer_r .info span:first-child i {
    font-style: normal;
  }
  .footer .footer_r .info span:first-child b {
    font-weight: 700;
    font-size: 4vw;
  }
  .footer .footer_r .info span:last-child {
    font-size: 3.2vw;
    color: #7B7B7B;
    font-weight: 400;
    font-style: normal;
  }
  .footer .footer_r .info span:last-child em {
    font-style: normal;
  }
  .footer .footer_r .buynow {
    margin-left: 1.33333vw;
    font-size: 3.73333vw;
    width: 36vw;
    height: 13.33333vw;
    border: none;
    cursor: pointer;
    color: #fff !important;
    background-color: #E30680 !important;
  }
  .class_popup {
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
  }
  .class_popup .class_header {
    width: 100%;
    height: 10.66667vw;
    padding: 0 1.06667vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
  }
  .class_popup .class_header .class_header_l {
    width: 9.6vw;
    height: 10.66667vw;
  }
  .class_popup .class_header .class_header_l a {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .class_popup .class_header .class_header_l a img {
    width: 7.46667vw;
    height: 7.46667vw;
  }
  .class_popup .class_header .class_header_r {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .class_popup .class_header .class_header_r a {
    margin-left: 3.2vw;
    width: 9.6vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .class_popup .class_header .class_header_r a img {
    width: 7.46667vw;
    height: auto;
  }
  .class_popup .content_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .class_popup .content_box .content_item {
    width: 49%;
    margin-right: 0vw;
    margin-bottom: 5.33333vw;
    height: auto;
  }
  .class_popup .content_box .content_item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .class_popup .content_box .content_item a .item_img {
    width: 31.2vw;
    height: 31.2vw;
  }
  .class_popup .content_box .content_item a .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .class_popup .content_box .content_item a p {
    margin-top: 2.66667vw;
    font-size: 3.2vw;
    color: #777;
  }
}
