/**
 * 这是个 less 变量、函数文件，不会被编译成 common.css
 */
.hover-color-primary:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skeleton-wrapper {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.skeleton-wrapper:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-animation: skeletonLoading 2s ease-in-out infinite;
  animation: skeletonLoading 2s ease-in-out infinite;
  content: "";
}
@keyframes product-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.skeleton-element {
  animation: product-skeleton-loading 1.4s ease infinite;
  background-image: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  height: 0.8rem;
  list-style: none;
}
.skeleton-more-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@-webkit-keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
.skeleton-header {
  display: flex;
  justify-content: center;
  padding: 0 8px;
  height: 72px;
  align-items: center;
}
.skeleton-header .skeleton-title {
  width: 200px;
  height: 28px;
}
.skeleton-more {
  width: 131px;
  height: 32px;
}
.skeleton-product-card {
  width: 16%;
  float: left;
  margin-left: 15px;
}
/**
 * 响应式设计工具文件
 * 提供便捷的混入和工具类来简化响应式开发
 */
:root {
  --root-fs: 16;
}
@media (min-width: 1200px) {
  :root {
    --root-fs: 40;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  :root {
    --root-fs: 38;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  :root {
    --root-fs: 36;
  }
}
@media (min-width: 900px) and (max-width: 1000px) {
  :root {
    --root-fs: 34;
  }
}
@media (min-width: 800px) and (max-width: 900px) {
  :root {
    --root-fs: 32;
  }
}
@media (min-width: 700px) and (max-width: 800px) {
  :root {
    --root-fs: 30;
  }
}
@media (min-width: 675px) and (max-width: 700px) {
  :root {
    --root-fs: 28;
  }
}
@media (min-width: 650px) and (max-width: 674px) {
  :root {
    --root-fs: 27;
  }
}
@media (min-width: 625px) and (max-width: 649px) {
  :root {
    --root-fs: 26;
  }
}
@media (min-width: 600px) and (max-width: 624px) {
  :root {
    --root-fs: 25;
  }
}
@media (min-width: 575px) and (max-width: 599px) {
  :root {
    --root-fs: 24;
  }
}
@media (min-width: 550px) and (max-width: 574px) {
  :root {
    --root-fs: 23;
  }
}
@media (min-width: 525px) and (max-width: 549px) {
  :root {
    --root-fs: 22;
  }
}
@media (min-width: 500px) and (max-width: 524px) {
  :root {
    --root-fs: 21;
  }
}
@media (min-width: 475px) and (max-width: 499px) {
  :root {
    --root-fs: 20;
  }
}
@media (min-width: 450px) and (max-width: 474px) {
  :root {
    --root-fs: 19;
  }
}
@media (min-width: 425px) and (max-width: 449px) {
  :root {
    --root-fs: 18;
  }
}
@media (min-width: 400px) and (max-width: 424px) {
  :root {
    --root-fs: 17;
  }
}
@media (min-width: 375px) and (max-width: 399px) {
  :root {
    --root-fs: 16;
  }
}
@media (min-width: 350px) and (max-width: 374px) {
  :root {
    --root-fs: 15;
  }
}
@media (min-width: 325px) and (max-width: 349px) {
  :root {
    --root-fs: 14;
  }
}
@media (min-width: 300px) and (max-width: 324px) {
  :root {
    --root-fs: 13;
  }
}
@media (min-width: 275px) and (max-width: 299px) {
  :root {
    --root-fs: 12;
  }
}
@media (min-width: 250px) and (max-width: 274px) {
  :root {
    --root-fs: 11;
  }
}
@media (max-width: 249px) {
  :root {
    --root-fs: 11;
  }
}
html {
  background: #fff;
}
@media (min-width: 701px) and (max-width: 1200px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
@media (max-width: 700px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
body {
  font-family: PingFangSC-Medium, PingFangSCSemibold;
  min-width: 1200px;
  min-height: 100vh;
  background-color: #fff;
}
@media (min-width: 701px) and (max-width: 1200px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
@media (max-width: 700px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
.overview-warp {
  padding-bottom: 100px;
}
.overview-warp .banner {
  padding: 70px 0;
  background: linear-gradient(160deg, #ffaf00 0%, #ff7700 100%);
}
.overview-warp .banner .warp-flex {
  justify-content: space-between;
}
.overview-warp .banner .banner-card {
  position: relative;
}
.overview-warp .banner .banner-card .banner-card-img {
  width: 280px;
}
.overview-warp .banner .banner-card .banner-card-img-mobile {
  display: none;
}
.overview-warp .banner .banner-card .banner-card-img-tablet {
  display: none;
}
.overview-warp .banner .banner-card a {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  transition: 0.5s transform;
}
.overview-warp .banner .banner-card:hover a {
  transform: translateY(-10px);
}
.overview-warp .banner .banner-card span {
  position: absolute;
  font-size: 36px;
  color: #333333;
  line-height: 42px;
  left: 24px;
  top: 270px;
}
.overview-warp .layout-row {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-top: 96px;
}
.overview-warp .layout-row.sourcing-banner-box {
  padding-top: 0;
}
.overview-warp .layout-row.sourcing-banner-box .warp-flex {
  margin-top: 137px;
}
.overview-warp .layout-row.sourcing-banner-box .warp-title em {
  font-size: 21px;
}
.overview-warp .layout-row .img-box {
  position: relative;
  top: 0;
  width: 0;
}
.overview-warp .layout-row .img-box img {
  max-width: 580px;
}
.overview-warp .layout-row .img-box .mainimg {
  height: 678px;
}
.overview-warp .layout-row .warp-title {
  width: 576px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.overview-warp .layout-row .footer-page-btn {
  margin-top: 20px;
}
.overview-warp .layout-row:nth-child(odd) .warp-flex {
  justify-content: flex-start;
}
.overview-warp .layout-row:nth-child(odd) .img-box {
  left: 52%;
}
.overview-warp .layout-row:nth-child(even) .warp-flex {
  justify-content: flex-start;
  width: 50%;
}
.overview-warp .layout-row:nth-child(even) .img-box {
  width: 48%;
  margin-right: 50px;
}
.overview-warp .layout-row:nth-child(even) .img-box img {
  float: right;
}
.overview-warp .layout-row.imgRight .warp-flex {
  justify-content: flex-start;
  width: 1200px;
}
.overview-warp .layout-row.imgRight .img-box {
  left: 52%;
  width: 0;
  margin-right: 0;
}
.overview-warp .layout-row.imgRight .img-box img {
  float: none;
}
.overview-warp .layout-row.imgLeft .warp-flex {
  justify-content: flex-start;
  width: 50%;
}
.overview-warp .layout-row.imgLeft .img-box {
  width: 48%;
  margin-right: 50px;
}
.overview-warp .layout-row.imgLeft .img-box img {
  float: right;
}
.overview-warp .footer-page-btn {
  display: inline-block;
  text-align: center;
  background: var(--color-theme-1);
  border-radius: 50px;
  font-size: 16px;
  color: #ffffff;
  padding: 12px 24px;
}
.overview-warp .footer-page-btn i {
  transition: 0.5s all;
  margin-left: 8px;
}
.overview-warp .footer-page-btn:hover i {
  margin-left: 24px;
}
@media (min-width: 701px) and (max-width: 1200px) {
  .overview-warp {
    width: 100vw;
    padding-bottom: calc(100 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .banner {
    padding: 0 6%;
    padding-top: 6%;
    padding-bottom: 6%;
    background: linear-gradient(160deg, #FFAF00 0%, #ff7700 100%);
  }
  .overview-warp .banner .warp-flex {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(24 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .banner .banner-card {
    position: relative;
    width: 100%;
  }
  .overview-warp .banner .banner-card .banner-card-img {
    width: calc(280 / 32 * var(--root-fs) * 1px);
    display: none;
  }
  .overview-warp .banner .banner-card .banner-card-img-mobile {
    display: none;
  }
  .overview-warp .banner .banner-card .banner-card-img-tablet {
    display: block;
  }
  .overview-warp .banner .banner-card a {
    border-radius: calc(8 / 32 * var(--root-fs) * 1px);
    overflow: hidden;
    display: block;
    transition: 0.5s transform;
  }
  .overview-warp .banner .banner-card img {
    width: 100%;
    aspect-ratio: 2.38;
    object-fit: cover;
  }
  .overview-warp .banner .banner-card:hover a {
    transform: translateY(0);
  }
  .overview-warp .banner .banner-card span {
    position: absolute;
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(26 / 32 * var(--root-fs) * 1px);
    color: #333333;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .overview-warp .layout-box {
    padding: 0 6%;
  }
  .overview-warp .layout-box .layout-row {
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .img-box img {
    width: 42vw;
  }
  .overview-warp .layout-box .layout-row .warp-flex {
    width: 100%;
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title h2 {
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(26 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title p {
    margin-top: calc(16 / 32 * var(--root-fs) * 1px);
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    line-height: calc(18 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title .footer-page-btn {
    margin-top: calc(24 / 32 * var(--root-fs) * 1px);
    padding-top: calc(6 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(6 / 32 * var(--root-fs) * 1px);
    padding-left: calc(16 / 32 * var(--root-fs) * 1px);
    padding-right: calc(16 / 32 * var(--root-fs) * 1px);
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    border-radius: calc(50 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row:nth-child(odd) .warp-flex .warp-title {
    width: 50%;
  }
  .overview-warp .layout-box .layout-row:nth-child(even) .img-box {
    margin-right: calc(32 / 32 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row:nth-child(even) .warp-flex .warp-title {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .overview-warp {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: calc(48 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .banner {
    width: 100%;
    padding-top: calc(64 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(64 / 16 * var(--root-fs) * 1px);
    background: linear-gradient(160deg, #FFAF00 0%, #ff7700 100%);
  }
  .overview-warp .banner .warp-flex {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .banner .banner-card {
    position: relative;
    width: 100%;
  }
  .overview-warp .banner .banner-card .banner-card-img {
    display: none;
  }
  .overview-warp .banner .banner-card .banner-card-img-mobile {
    display: block;
  }
  .overview-warp .banner .banner-card .banner-card-img-tablet {
    display: none;
  }
  .overview-warp .banner .banner-card a {
    border-radius: calc(8 / 32 * var(--root-fs) * 1px);
    overflow: hidden;
    display: block;
    transition: 0.5s transform;
  }
  .overview-warp .banner .banner-card img {
    width: 100%;
    height: calc(120 / 16 * var(--root-fs) * 1px);
    object-fit: cover;
  }
  .overview-warp .banner .banner-card:hover a {
    transform: translateY(0);
  }
  .overview-warp .banner .banner-card span {
    position: absolute;
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(26 / 16 * var(--root-fs) * 1px);
    color: #333333;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
  }
  .overview-warp .layout-box .layout-row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding-top: calc(48 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .img-box {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    position: static;
  }
  .overview-warp .layout-box .layout-row .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .overview-warp .layout-box .layout-row .warp-flex {
    width: calc(343 / 16 * var(--root-fs) * 1px);
    justify-content: center;
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title {
    text-align: center;
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title h2 {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(26 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title p {
    margin-top: calc(12 / 16 * var(--root-fs) * 1px);
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    line-height: calc(18 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title .footer-page-btn {
    margin-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-top: calc(6 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(6 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    border-radius: calc(50 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row .warp-flex .warp-title .footer-page-btn .iconfont {
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row:nth-child(odd) .warp-flex .warp-title {
    width: 100%;
  }
  .overview-warp .layout-box .layout-row:nth-child(even) .img-box {
    margin-right: calc(0 / 16 * var(--root-fs) * 1px);
  }
  .overview-warp .layout-box .layout-row:nth-child(even) .warp-flex .warp-title {
    width: 100%;
  }
}
