* {
  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;
  }
}
.bannerWrap {
  width: 100%;
  height: 380px;
  background-image: url(/statics/images/Banner/usedcars-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 96 / 19;
}
.bannerWrap .banner {
  max-width: 1160px;
  height: 320px;
  padding: 30px 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bannerWrap .banner .bannerInfo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bannerWrap .banner .bannerInfo .bannerTitle {
  color: #FFF;
  font-size: 50px;
  font-weight: 600;
  line-height: 135%;
  text-align: start;
}
.bannerWrap .banner .bannerInfo .bannerText {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 135%;
  text-align: start;
}
.bannerWrap .banner .bannerBtn .jumpBtn {
  width: fit-content;
  height: 52px;
  padding: 0 48px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #FF7822;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.25s ease, transform 0.15s ease;
}
.bannerWrap .banner .bannerBtn .jumpBtn .btnText {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 135%;
}
.bannerWrap .banner .bannerBtn .jumpBtn svg {
  width: 24px;
  height: 24px;
}
.bannerWrap .banner .bannerBtn .jumpBtn:hover {
  background: #FF9545;
  transform: scale(1.03);
}
.bannerWrap .banner .bannerBtn .jumpBtn:active {
  background: #EF691C;
  transform: scale(0.97);
}
.indexBanner {
  background-image: url(/statics/images/Banner/homepage-pc.webp);
}
.indexBanner .banner .bannerInfo .bannerTitle {
  text-align: center;
}
.indexBanner .banner .bannerInfo .bannerText {
  text-align: center;
}
.indexBanner .banner .bannerBtn .jumpBtn {
  margin: 30px auto 0 auto;
}
@media only screen and (max-width: 767px) {
  .bannerWrap {
    height: 270px;
    background-image: url(/statics/images/Banner/usedcars-mobile.webp);
    aspect-ratio: 75 / 54;
  }
  .bannerWrap .banner {
    height: 230px;
    padding: 20px 16px;
    align-items: center;
  }
  .bannerWrap .banner .bannerInfo .bannerTitle {
    font-size: 24px;
    text-align: center;
  }
  .bannerWrap .banner .bannerInfo .bannerText {
    font-size: 14px;
    text-align: center;
  }
  .bannerWrap .banner .bannerBtn .jumpBtn {
    padding: 0 32px;
    margin-top: 20px;
  }
  .indexBanner {
    background-image: url(/statics/images/Banner/homepage-mobile.webp);
  }
  .indexBanner .banner .bannerBtn .jumpBtn {
    margin: 20px auto 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
  .bannerWrap {
    background-image: url(/statics/images/Banner/usedcars-mobile.webp);
    aspect-ratio: 75 / 54;
  }
  .bannerWrap .banner .bannerInfo .bannerTitle {
    font-size: 46px;
  }
  .bannerWrap .banner .bannerInfo .bannerText {
    font-size: 18px;
  }
  .indexBanner {
    background-image: url(/statics/images/Banner/homepage-mobile.webp);
  }
}
.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));
  }
}
.brandList {
  display: grid;
  grid-gap: 24px 20px;
  grid-template-columns: repeat(6, calc((100% - 100px) / 6));
}
.brandList .brandItem .itemLink {
  display: block;
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid #E4E4E4;
  background: #FFF;
  transition: all 0.3s ease;
}
.brandList .brandItem .itemLink .itemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brandList .brandItem .itemLink .itemImg .brandImg {
  max-width: 100%;
  max-height: 1005;
}
.brandList .brandItem .itemLink .brandName {
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  text-align: center;
}
.brandList .brandItem .itemLink .brandNum {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  margin-top: 4px;
  text-align: center;
}
.brandList .brandItem .itemLink:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .brandList {
    grid-gap: 16px 16px;
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .brandList {
    grid-template-columns: repeat(4, calc((100% - 60px) / 4));
  }
}
.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: 40px 20px;
}
.wrap .adWrap {
  padding: 20px 20px 0 20px;
}
.wrap .brands {
  background: #F2F2F2;
}
.wrap .carHub {
  background: #EDF6FF;
}
.wrap .indexTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 20px 0;
}
.wrap .indexTitle .sectionTitle {
  font-size: 40px;
  font-weight: 600;
  line-height: 135%;
  text-align: center;
}
.wrap .indexTitle .sectionDesc {
  color: #666666;
  font-size: 20px;
  font-weight: 400;
  line-height: 135%;
  text-align: center;
}
.wrap .list {
  padding: 10px 0;
}
.wrap .allBtn {
  width: fit-content;
  padding: 12px 24px;
  margin: auto;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #9B9B9B;
  background: #FFFFFF;
  cursor: pointer;
}
.wrap .allBtn .btnText {
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
  text-transform: capitalize;
}
.wrap .allBtn:hover {
  background: #F2F2F2;
}
.wrap .newsWrap {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
  gap: 16px 20px;
}
.wrap .newsWrap .newsLeft {
  position: relative;
  display: block;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wrap .newsWrap .newsLeft:hover .newsTitle {
  text-decoration: underline;
}
.wrap .newsWrap .newsMiddle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wrap .newsWrap .newsMiddle .newsCard {
  height: calc(50% - 12px);
  position: relative;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
}
.wrap .newsWrap .newsMiddle .newsCard:hover .newsTitle {
  text-decoration: underline;
}
.wrap .newsWrap .newsLeft,
.wrap .newsWrap .newsMiddle {
  flex: 1;
}
.wrap .newsWrap .newsLeft .newsImg,
.wrap .newsWrap .newsMiddle .newsImg {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.wrap .newsWrap .newsLeft .newsTitle,
.wrap .newsWrap .newsMiddle .newsTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  padding: 40px 20px 20px 20px;
  display: flex;
  align-items: flex-end;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 135%;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.91%, rgba(0, 0, 0, 0.8) 81.18%);
}
.wrap .newsWrap .newsList {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(0deg, #F5F5F5 0%, #F5F5F5 100%), #FFF;
}
.wrap .newsWrap .newsList .newsItem .itemLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E4E4E4;
}
.wrap .newsWrap .newsList .newsItem .itemLink .newsTitle {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.wrap .newsWrap .newsList .newsItem .itemLink .newsImg {
  flex-shrink: 0;
  width: 116px;
  height: 86px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.wrap .newsWrap .newsList .newsItem:hover .newsTitle {
  text-decoration: underline;
}
.wrap .newsWrap .newsList .newsItem:hover .newsImg {
  transform: scale(1.03);
}
.wrap .newsWrap .newsList .newsItem:last-child .itemLink {
  border: none;
}
.wrap .carHubList {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.wrap .carHubList .carHubItem .itemLink {
  display: flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
}
.wrap .carHubList .carHubItem .itemLink .carHubImg {
  width: 500px;
  height: auto;
  aspect-ratio: 25 / 14;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubTitle {
  width: fit-content;
  font-size: 30px;
  font-weight: 600;
  line-height: 135%;
  box-shadow: 0 -10px 0 0 #FFC574 inset;
}
.wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubDesc {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 165%;
  margin-top: 10px;
}
.wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubBtn {
  width: fit-content;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
  text-transform: capitalize;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 50px;
  background: #0075EB;
  transition: all 0.3s ease;
}
.wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubBtn:hover {
  background: #2B94EF;
}
.wrap .carHubList .carHubItem .itemLink:hover .carHubImg {
  transform: scale(1.03);
}
.wrap .carHubList .carHubItem:nth-child(2) .itemLink .carHubImg {
  order: 2;
}
.wrap .carHubList .carHubItem:nth-child(2) .itemLink .carHubInfo {
  order: 1;
}
@media only screen and (max-width: 767px) {
  .wrap .indexWrap {
    padding: 16px 16px 30px 16px;
  }
  .wrap .adWrap {
    padding: 16px 16px 0 16px;
  }
  .wrap .indexTitle {
    padding: 20px 0 10px 0;
  }
  .wrap .indexTitle .sectionTitle {
    font-size: 28px;
  }
  .wrap .indexTitle .sectionDesc {
    font-size: 16px;
  }
  .wrap .allBtn {
    margin-top: 16px;
  }
  .wrap .newsWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .wrap .newsWrap .newsLeft,
  .wrap .newsWrap .newsMiddle,
  .wrap .newsWrap .newsList {
    width: 100%;
    flex: auto;
  }
  .wrap .newsWrap .newsLeft .newsImg,
  .wrap .newsWrap .newsMiddle .newsImg,
  .wrap .newsWrap .newsList .newsImg {
    display: block;
  }
  .wrap .carHubList {
    margin: 20px 0;
    gap: 30px;
  }
  .wrap .carHubList .carHubItem .itemLink {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubImg {
    width: 100%;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo {
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubTitle {
    font-size: 24px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubDesc {
    font-size: 16px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubBtn {
    font-size: 14px;
  }
  .wrap .carHubList .carHubItem:nth-child(2) .itemLink .carHubImg {
    order: 1;
  }
  .wrap .carHubList .carHubItem:nth-child(2) .itemLink .carHubInfo {
    order: 2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .wrap .indexTitle .sectionTitle {
    font-size: 32px;
  }
  .wrap .indexTitle .sectionDesc {
    font-size: 18px;
  }
  .wrap .newsWrap {
    display: flex;
    flex-wrap: wrap;
  }
  .wrap .newsWrap .newsLeft .newsImg,
  .wrap .newsWrap .newsMiddle .newsImg {
    display: block;
  }
  .wrap .newsWrap .newsList {
    width: 100%;
    flex: auto;
  }
  .wrap .carHubList .carHubItem .itemLink {
    gap: 24px;
    cursor: pointer;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubImg {
    width: 360px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubTitle {
    font-size: 26px;
  }
  .wrap .carHubList .carHubItem .itemLink .carHubInfo .carHubDesc {
    font-size: 16px;
  }
}
