* {
  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;
  }
}
.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: 16px;
}
.wrap .indexWrap .swiperWrap .swiperMain {
  width: 100%;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperList {
  width: 100%;
  aspect-ratio: 8 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperList .swiperItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperList .swiperItem.active {
  opacity: 1;
  z-index: 1;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperList .swiperItem .swiperImg {
  width: 100%;
  height: 100%;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .preBtn,
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .nextBtn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .preBtn .arrow,
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .nextBtn .arrow {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .preBtn:hover .arrow,
.wrap .indexWrap .swiperWrap .swiperMain .swiperNav .nextBtn:hover .arrow {
  color: #0075EB;
}
.wrap .indexWrap .swiperWrap .swiperThumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
}
.wrap .indexWrap .swiperWrap .swiperThumbs .swiperArrow {
  transition: all 0.3s ease;
}
.wrap .indexWrap .swiperWrap .swiperThumbs .swiperArrow .arrow {
  width: 40px;
  height: 76px;
}
.wrap .indexWrap .swiperWrap .swiperThumbs .swiperArrow:hover {
  filter: brightness(0.8);
}
.wrap .indexWrap .swiperWrap .thumbsList::-webkit-scrollbar {
  /* 隐藏滚动条 */
  display: none;
  /* Chrome Safari */
}
.wrap .indexWrap .swiperWrap .thumbsList {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  transition: all 0.3s ease;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.wrap .indexWrap .swiperWrap .thumbsList::-webkit-scrollbar {
  height: 4px;
}
.wrap .indexWrap .swiperWrap .thumbsList::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.wrap .indexWrap .swiperWrap .thumbsList::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}
.wrap .indexWrap .swiperWrap .thumbsList .thumbItem {
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.wrap .indexWrap .swiperWrap .thumbsList .thumbItem .thumbImg {
  width: auto;
  height: 72px;
  padding: 1px;
  border-radius: 6px;
}
.wrap .indexWrap .swiperWrap .thumbsList .active .thumbImg {
  filter: brightness(0.5);
  border-radius: 8px;
  border: 1px solid #848484;
}
.wrap .indexWrap .cardDetail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #E4E4E4;
}
.wrap .indexWrap .cardDetail .detailTitle {
  width: fit-content;
  padding: 0 8px;
  border-left: 4px solid #0075EB;
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 16px;
}
.wrap .indexWrap .cardDetail .detail {
  padding: 12px 0;
}
.wrap .indexWrap .cardDetail .detail .detailLine {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #E3E3E3;
}
.wrap .indexWrap .cardDetail .detail .detailLine .lineTitle {
  flex-shrink: 0;
  width: 200px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  color: #333333;
  font-weight: 500;
  padding-right: 6px;
}
.wrap .indexWrap .cardDetail .detail .detailLine .lineText {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  word-break: break-word;
}
.wrap .indexWrap .cardDetail .priceCard {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wrap .indexWrap .cardDetail .priceCard .priceItem {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: 6px;
  background: #F5F8FB;
}
.wrap .indexWrap .cardDetail .priceCard .priceItem .priceTitle {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
}
.wrap .indexWrap .cardDetail .priceCard .priceItem .priceText {
  color: #0052CC;
  font-size: 22px;
  font-weight: 600;
  line-height: 135%;
}
.wrap .indexWrap .cardDetail .priceCard .currentBid .priceText {
  color: #43A047;
}
.wrap .indexWrap .cardDetail .cardBtn {
  display: block;
  width: calc(100% - 48px);
  padding: 12px 24px;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
  border-radius: 50px;
  background: #0075EB;
}
.wrap .indexWrap .cardDetail .cardBtn:hover {
  background: #2B94EF;
}
.wrap .indexWrap .cardDetail .cardBtn:active {
  background: #0063c6;
}
.wrap .indexWrap .similarCars .similarTitle {
  font-size: 22px;
  font-weight: 600;
  line-height: 135%;
  padding: 24px 0 16px 0;
}
.wrap .indexWrap .similarCars .saleList {
  grid-gap: 20px 20px;
  grid-template-columns: repeat(2, 1fr);
}
.wrap .indexWrap .contentRight .cardDetail {
  position: sticky;
  top: 5px;
}
.wrap .indexWrap .contentRight .cardDetail .cardContent .detail .detailLine .lineTitle {
  width: 160px;
}
@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 .swiperWrap .swiperThumbs .swiperArrow {
    display: none;
  }
  .wrap .indexWrap .swiperWrap .thumbsList .thumbItem .thumbImg {
    height: 50px;
  }
  .wrap .indexWrap .cardDetail .detail .detailLine .lineTitle {
    width: 120px;
  }
  .wrap .indexWrap .similarCars .similarTitle {
    font-size: 20px;
    padding: 14px 0 16px 0;
  }
  .wrap .indexWrap .similarCars .saleList {
    grid-template-columns: repeat(1, 1fr);
  }
}
