.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal; }

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal; }

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal; }

::before,
::after,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  font-size: 16px;
  --secondary-font: Montserrat, sans-serif;
  --default-layout-width: 1440px;
  --search-input-height: 36px;
  --primary-font: Poppins, sans-serif;
  --color-primary: #222222; }

*, *:before, *:after {
  color: inherit; }

body {
  color: #000;
  font-family: var(--primary-font); }

*:focus {
  outline: none; }

.text-white {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html {
  min-width: 1200px; }

.flex {
  display: flex; }

.flex-content-sb {
  display: flex;
  justify-content: space-between; }

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

.header {
  width: 100%;
  background-color: #fff; }
  .header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; }
  .header .header-content {
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: var(--default-layout-width);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box; }
    .header .header-content .menu-logo {
      display: block;
      font-size: 0; }
      .header .header-content .menu-logo > img {
        height: 36px; }
    .header .header-content .search-bar {
      margin-left: 24px;
      width: 480px;
      position: relative;
      background-color: #f7f7f7;
      border: 1px solid #949494;
      border-radius: 18px;
      overflow: hidden; }
      .header .header-content .search-bar:hover {
        border-color: #000;
        background-color: #fff;
        color: #000; }
      .header .header-content .search-bar input {
        height: var(--search-input-height);
        line-height: var(--search-input-height);
        padding: 0 24px;
        width: 100%;
        outline: none;
        border-width: 0;
        background-color: #f7f7f7; }
        .header .header-content .search-bar input:focus-visible {
          outline: none; }
      .header .header-content .search-bar .search-btn {
        cursor: pointer;
        right: 0;
        outline-offset: 2px;
        position: absolute;
        background-color: transparent;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #949494;
        border: none;
        width: var(--search-input-height);
        height: var(--search-input-height); }
    .header .header-content .user-action {
      margin-left: 24px;
      color: var(--color-white); }
      .header .header-content .user-action a {
        text-decoration: none;
        color: var(--color-white); }
      .header .header-content .user-action .cart-entry {
        display: flex;
        position: relative; }
        .header .header-content .user-action .cart-entry > img {
          margin-left: 16px;
          width: 30px;
          margin-right: 4px; }
        .header .header-content .user-action .cart-entry .cart-number {
          width: 20px;
          height: 20px;
          border: 1px solid #666;
          color: #666;
          border-radius: 50%;
          background-color: #fff;
          position: absolute;
          top: -8px;
          right: -8px;
          font-size: 12px;
          display: flex;
          align-items: center;
          justify-content: center; }
      .header .header-content .user-action .sign-in-btn {
        cursor: pointer; }
  .header .header-bottom {
    margin-top: 16px;
    height: 36px;
    width: 100%;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative; }
    .header .header-bottom .category-wrap {
      width: 100%;
      max-width: var(--default-layout-width);
      display: flex;
      margin: 0 auto;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      height: 37px;
      position: relative; }
      .header .header-bottom .category-wrap .categories {
        display: flex;
        align-items: center;
        justify-content: center; }
        .header .header-bottom .category-wrap .categories .category-item {
          list-style: none;
          margin: 0;
          position: relative; }
          .header .header-bottom .category-wrap .categories .category-item + .category-item {
            margin-left: 40px; }
          .header .header-bottom .category-wrap .categories .category-item .category-name {
            cursor: default;
            display: flex;
            align-items: center;
            padding: 0 var(--space-lg);
            font-family: var(--primary-font);
            font-size: var(--text-base);
            font-weight: 400;
            color: var(--color-gray-100);
            height: var(--desktop-nav-height); }
            .header .header-bottom .category-wrap .categories .category-item .category-name:hover + .sub-item-wrap {
              display: flex; }
          .header .header-bottom .category-wrap .categories .category-item .sub-item-wrap {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 600px;
            padding: 12px var(--space-lg);
            transform: translateY(-8px);
            flex-wrap: wrap;
            background-color: #fff;
            z-index: 9;
            gap: 12px; }
            .header .header-bottom .category-wrap .categories .category-item .sub-item-wrap .sub-item {
              font-weight: bold;
              text-decoration: none;
              font-family: var(--primary-font);
              font-size: var(--text-base);
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              background-color: var(--color-gray-100);
              transition: background-color .1s ease-in-out;
              padding: var(--space-sm); }
              .header .header-bottom .category-wrap .categories .category-item .sub-item-wrap .sub-item:hover {
                color: var(--color-primary);
                background-color: var(--color-gray-200); }
            .header .header-bottom .category-wrap .categories .category-item .sub-item-wrap:hover {
              display: flex; }

.main {
  background-color: #f7f7f7; }
  .main .category-wrap {
    display: flex;
    justify-content: center; }
    .main .category-wrap .category-title {
      overflow: hidden;
      display: flex;
      align-items: center;
      margin: 40px 60px;
      flex-direction: column;
      font-size: 16px;
      transform-origin: center center;
      transition: all .3s; }
      .main .category-wrap .category-title:hover {
        transform: scale(1.05);
        text-decoration: underline; }
    .main .category-wrap .img-wrap {
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background-color: #fff;
      padding: 20px;
      margin-bottom: 20px;
      overflow: hidden;
      text-decoration: none; }
      .main .category-wrap .img-wrap > img {
        width: 100%;
        height: 100%; }
  .main > .swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background-color: #f7f7f7; }
    .main > .swiper-container .swiper-slide > img {
      height: 520px;
      margin: 0 16px; }
  .main > .swiper-container .swiper-button-next, .main > .swiper-container .swiper-button-prev {
    color: #000; }
  .main .section {
    background-color: #fff;
    padding: 40px 0; }
    .main .section .section-con {
      margin: 0 auto;
      width: 100%;
      max-width: var(--default-layout-width); }
  .main .section-title {
    font-size: 22px;
    color: #222;
    padding: 16px 0;
    font-weight: bold;
    display: flex;
    align-items: center; }
    .main .section-title > svg {
      margin-top: -5px;
      margin-left: 4px; }

.trending-slide {
  display: flex;
  justify-content: space-around; }

.trending-slide > img {
  margin: 40px; }

.site-footer {
  background-color: #151515;
  color: #fff;
  text-align: center;
  padding: var(--space-lg) 0; }
  .site-footer p {
    padding: 8px 0;
    font-size: 12px; }

.hot-goods-wrap {
  display: flex; }
  .hot-goods-wrap .hot-image {
    flex: 1;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 40px 16px 24px;
    background-image: url("/mall/image/HOT.png");
    background-position: 16px 0;
    background-repeat: no-repeat;
    background-size: 40px auto; }
    .hot-goods-wrap .hot-image .name {
      font-size: 16px;
      line-height: 20.8px;
      font-family: Poppins, sans-serif;
      -webkit-font-smoothing: antialiased;
      padding: 12px 0 8px; }
    .hot-goods-wrap .hot-image .price {
      font-size: 20px;
      font-family: Poppins, sans-serif;
      -webkit-font-smoothing: antialiased;
      padding: 12px 0 8px; }
    .hot-goods-wrap .hot-image + .hot-image {
      margin-left: 30px; }
    .hot-goods-wrap .hot-image img {
      width: 100%; }

.new-production, .recommend-production {
  display: flex;
  overflow: hidden; }
  .new-production .new-item, .recommend-production .new-item {
    width: calc(50% - 40px);
    margin-right: 40px;
    flex-shrink: 0; }
    .new-production .new-item > a, .recommend-production .new-item > a {
      text-decoration: none; }
    .new-production .new-item img, .recommend-production .new-item img {
      width: 100%; }
  .new-production .recommend-item, .recommend-production .recommend-item {
    display: block;
    width: calc(25% - 20px);
    height: 500px;
    flex-shrink: 0;
    text-decoration: none; }
    .new-production .recommend-item + .recommend-item, .recommend-production .recommend-item + .recommend-item {
      margin-left: 20px; }
    .new-production .recommend-item .img-wrap, .recommend-production .recommend-item .img-wrap {
      padding: 24px;
      background-image: linear-gradient(180deg, #e4e4e8 0, #f2f2f2 50%, #e4e4e8 100%); }
      .new-production .recommend-item .img-wrap > img, .recommend-production .recommend-item .img-wrap > img {
        width: 100%; }
    .new-production .recommend-item .name, .recommend-production .recommend-item .name {
      font-size: 16px;
      line-height: 20.8px;
      font-family: Poppins, sans-serif;
      -webkit-font-smoothing: antialiased;
      padding: 12px 0 0; }
    .new-production .recommend-item .price, .recommend-production .recommend-item .price {
      font-size: 20px;
      font-family: Poppins, sans-serif;
      -webkit-font-smoothing: antialiased; }

/*# sourceMappingURL=idx.css.map */
