* {
  padding: 0;
  margin: 0;
  color: #333333;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-display: swap;
}
p {
  font-family: Roboto, sans-serif;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
img {
  margin: 0;
  padding: 0;
  object-fit: cover;
  background: #FFFFFF;
  /*清除选择时高亮*/
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
svg {
  width: 24px;
  height: 24px;
}
.ad-box {
  width: 100%;
  height: 250px;
  text-align: center;
}
.adHeight {
  width: 100%;
  height: 252px;
  background: #F2F2F2;
}
.adTitle {
  color: #CCC;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 356px) {
  .adHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 748px) {
  .adHeight {
    width: 100%;
    height: 280px;
  }
}
.wrap {
  min-height: 90vh;
}
.wrap .indexWrap {
  max-width: 1160px;
  margin: 0 auto;
}
.wrap .indexWrap .content {
  display: flex;
}
.wrap .indexWrap .content .contentLeft {
  width: calc(100% - 410px);
  padding-right: 60px;
}
.wrap .indexWrap .content .contentRight {
  flex-shrink: 0;
  width: 350px;
}
.wrap .indexWrap .guidesList .guideItem {
  margin-bottom: 24px;
  cursor: pointer;
}
.wrap .indexWrap .guidesList .guideItem .guideImg {
  width: 100%;
}
.wrap .indexWrap .guidesList .guideItem .guideImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 12px;
}
.wrap .indexWrap .guidesList .guideItem .guideLink {
  display: block;
  padding: 20px 16px;
  margin: -20px 12px 0 12px;
  border-radius: 12px;
  border: 1px solid #EEEEEE;
  background: #FFF;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.wrap .indexWrap .guidesList .guideItem .guideLink .guideTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 135%;
}
.wrap .indexWrap .guidesList .guideItem .guideLink .guideDesc {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.5px;
  margin: 8px 0 16px 0;
}
.wrap .indexWrap .guidesList .guideItem .guideLink .guideBtn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wrap .indexWrap .guidesList .guideItem .guideLink .guideBtn .btnText {
  color: #0375D3;
  font-size: 14px;
  font-weight: 600;
  line-height: 135%;
}
.wrap .indexWrap .guidesList .guideItem .guideLink .guideBtn .btnArrow {
  width: 16px;
  height: 16px;
}
.wrap .indexWrap .guidesList .guideItem:hover .guideLink {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .wrap .indexWrap .content {
    display: block;
    padding: 0;
  }
  .wrap .indexWrap .content .contentLeft {
    width: 100%;
    padding-right: 0;
  }
  .wrap .indexWrap .content .contentRight {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .wrap .indexWrap .content {
    display: block;
    padding: 0;
  }
  .wrap .indexWrap .content .contentLeft {
    width: 100%;
    padding-right: 0;
  }
  .wrap .indexWrap .content .contentRight {
    display: none;
  }
}
.headWrap {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  top: 0;
  left: 0;
  z-index: 5;
}
.headWrap .head {
  max-width: 1160px;
  height: 66px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  align-items: center;
}
.headWrap .head .headIcon {
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
}
.headWrap .head .headIcon svg {
  color: #5E5E5E;
  width: 24px;
  height: 24px;
  padding: 7px;
  border-radius: 50%;
}
.headWrap .head .headIcon:hover svg {
  color: #0075EB;
  background: #F2F2F2;
}
.headWrap .head .menuIcon {
  display: none;
}
.headWrap .head .menuMask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 6;
}
.headWrap .head .menuWrap {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 7;
  width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.headWrap .head .menuWrap .menuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  border-bottom: 1px solid #EEEEEE;
}
.headWrap .head .menuWrap .menuTop .logoLink {
  display: block;
}
.headWrap .head .menuWrap .menuTop .logoLink .logoImg {
  height: 24px;
  width: auto;
}
.headWrap .head .menuWrap .menuTop .closeMenu {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.headWrap .head .menuWrap .menuList {
  padding-bottom: 20px;
}
.headWrap .head .menuWrap .menuList .menuItem a {
  display: flex;
  padding: 16px;
  font-size: 16px;
  line-height: 135%;
}
.headWrap .head .menuWrap .menuList .menuItem a:hover {
  background: #F2F2F2;
}
.headWrap .head .logoLink {
  flex-shrink: 0;
  display: flex;
}
.headWrap .head .logoLink .logoImg {
  height: 40px;
  width: auto;
}
.headWrap .head .topList {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.headWrap .head .topList .topItem {
  display: flex;
  align-items: center;
}
.headWrap .head .topList .topItem .itemLink {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: capitalize;
  border-radius: 40px;
}
.headWrap .head .topList .topItem .itemLink:hover {
  color: #0075EB;
  background: #F2F2F2;
}
@media only screen and (max-width: 767px) {
  .headWrap .head {
    height: 48px;
    padding: 0 16px;
    justify-content: space-between;
  }
  .headWrap .head .headIcon svg {
    padding: 0;
  }
  .headWrap .head .headIcon:hover svg {
    background: #FFFFFF;
  }
  .headWrap .head .menuIcon {
    display: block;
  }
  .headWrap .head .logoLink .logoImg {
    height: 30px;
  }
  .headWrap .head .topList {
    display: none;
  }
}
.selectWrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.selectWrap .selected {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 10px 25px;
  border-radius: 25px;
  border: 2px solid #0075EB;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.selectWrap .selected::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 11px;
  background-image: url('../images/downArrow.svg');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 25px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.selectWrap .selectList {
  display: none;
  width: 100%;
  max-height: 380px;
  padding: 10px 0;
  overflow-y: scroll;
  position: absolute;
  top: 64px;
  z-index: 2;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}
.selectWrap .selectList .selectItem {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
}
.selectWrap .selectList .selectItem:hover {
  background-color: #F2F2F2;
}
.selectWrap .selectList .selectHide {
  display: none;
}
.selectWrap .originalSelect {
  display: none;
}
.selectWrap.active .selected::after {
  transform: translateY(-50%) rotate(-180deg);
}
.selectWrap.active .selectList {
  display: block;
}
@media only screen and (max-width: 767px) {
  .selectWrap .selectList .selectItem {
    padding: 4px 24px;
  }
}
.saleList {
  display: grid;
  grid-gap: 24px 24px;
  grid-template-columns: repeat(3, calc((100% - 48px) / 3));
}
.saleList .saleItem .itemLink {
  display: block;
  padding: 16px 16px 24px 16px;
  border-radius: 12px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  transition: all 0.3s ease;
}
.saleList .saleItem .itemLink .saleCate {
  color: #0075EB;
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 10px;
}
.saleList .saleItem .itemLink .saleTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 135%;
}
.saleList .saleItem .itemLink .saleInfo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 10px;
}
.saleList .saleItem .itemLink .saleInfo .info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.saleList .saleItem .itemLink .saleInfo .info .infoIcon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.saleList .saleItem .itemLink .saleInfo .info .infoText {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  text-transform: capitalize;
}
.saleList .saleItem .itemLink .saleImg {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  border-radius: 8px;
  margin: 24px 0;
  transition: all 0.3s ease;
}
.saleList .saleItem .itemLink .saleBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.saleList .saleItem .itemLink .saleBottom .salePrice .currentPrice {
  font-size: 28px;
  font-weight: 600;
  line-height: 135%;
}
.saleList .saleItem .itemLink .saleBottom .salePrice .dropPrice {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  margin-top: 4px;
}
.saleList .saleItem .itemLink .saleBottom .saleBtn {
  flex-shrink: 0;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 135%;
  text-transform: capitalize;
  padding: 10px 24px;
  border-radius: 40px;
  background: #0075EB;
  transition: all 0.3s ease;
}
.saleList .saleItem .itemLink .saleBottom .saleBtn:hover {
  background: #2B94EF;
}
.saleList .saleItem .itemLink:hover {
  border: 1px solid #FFF;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
}
.saleList .saleItem .itemLink:hover .saleImg {
  transform: scale(1.03);
}
@media only screen and (max-width: 767px) {
  .saleList {
    grid-gap: 16px 16px;
    grid-template-columns: repeat(1, 100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .saleList {
    grid-template-columns: repeat(2, calc((100% - 24px) / 2));
  }
}
.footWrap {
  height: fit-content;
  border-top: 1px solid #DDDDDD;
}
.footWrap .foot {
  max-width: 1160px;
  height: 100%;
  padding: 50px 20px;
  margin: 0 auto;
  display: flex;
}
.footWrap .foot .footLogo {
  flex-shrink: 0;
  display: block;
  cursor: pointer;
}
.footWrap .foot .footLogo .logoImg {
  height: 40px;
  width: auto;
}
.footWrap .foot .footList {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 32px;
}
.footWrap .foot .footList .footItem .footLink {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  .footWrap .foot {
    display: block;
    padding: 32px 16px;
  }
  .footWrap .foot .footList {
    margin: 20px 0 0 0;
  }
}
.wrap .indexWrap {
  padding: 30px 20px 40px 20px;
}
.wrap .indexWrap .firstTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 16px;
}
.wrap .indexWrap .contentLeft {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wrap .indexWrap .selectGroup {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.wrap .indexWrap .selectGroup .selectWrap .selected {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 165%;
  padding-bottom: 10px;
  line-height: 24px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #DDDDDD;
}
.wrap .indexWrap .selectGroup .selectWrap .selected::after {
  background-image: url('../images/grayDownArrow.svg');
}
.wrap .indexWrap .selectGroup .selectWrap .selectList {
  top: 46px;
}
.wrap .indexWrap .selectGroup .selectWrap .selectList .selectItem {
  padding: 8px 16px;
  line-height: 24px;
}
.wrap .indexWrap .selectGroup .chooseWrap {
  flex: 1;
}
.wrap .indexWrap .selectGroup .filterBtn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0075EB;
  cursor: pointer;
}
.wrap .indexWrap .selectGroup .filterBtn .btnText {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.wrap .indexWrap .selectGroup .filterBtn:hover {
  background: #2B94EF;
}
.wrap .indexWrap .selectGroup .filterBtn:active {
  background: #0063c6;
}
.wrap .indexWrap .saleList {
  grid-gap: 20px 20px;
  grid-template-columns: repeat(2, 1fr);
}
.wrap .indexWrap .saleList .ad-box {
  grid-column: span 2;
}
.wrap .indexWrap .pageBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.wrap .indexWrap .pageBtn .preBtn,
.wrap .indexWrap .pageBtn .nextBtn {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #8C8D94;
}
.wrap .indexWrap .pageBtn .preBtn .arrow,
.wrap .indexWrap .pageBtn .nextBtn .arrow {
  width: 24px;
  height: 24px;
}
.wrap .indexWrap .pageBtn .preBtn .btnText,
.wrap .indexWrap .pageBtn .nextBtn .btnText {
  color: #005BAA;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}
.wrap .indexWrap .pageBtn .preBtn:hover,
.wrap .indexWrap .pageBtn .nextBtn:hover {
  background: #EDF6FF;
}
.wrap .indexWrap .pageBtn .disableBtn {
  opacity: 0.6;
  cursor: no-drop;
}
.wrap .indexWrap .pageBtn .disableBtn:hover {
  background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .wrap .indexWrap {
    padding: 16px 16px 30px 16px;
  }
  .wrap .indexWrap .firstTitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 135%;
  }
  .wrap .indexWrap .contentLeft {
    gap: 16px;
  }
  .wrap .indexWrap .selectGroup {
    gap: 12px;
    flex-wrap: wrap;
  }
  .wrap .indexWrap .selectGroup .chooseWrap {
    flex: auto;
  }
  .wrap .indexWrap .selectGroup #makeWrap {
    width: calc(100% - 40px);
  }
  .wrap .indexWrap .selectGroup .filterBtn {
    width: calc(100% - 48px);
  }
  .wrap .indexWrap .saleList {
    grid-gap: 16px 16px;
    grid-template-columns: repeat(1, 1fr);
  }
  .wrap .indexWrap .saleList .ad-box {
    grid-column: span 1;
  }
}
