 /* Discuz环境隔离样式 */
    #liuyue-wrapper * {
      box-sizing: border-box !important;
      margin: 0 !important;
      padding: 0 !important;
      font-family: "Microsoft YaHei", sans-serif !important;
    }
    #liuyue-wrapper img {
      max-width: 100% !important;
      height: auto !important;
      border: none !important;
    }
    #liuyue-wrapper a {
      text-decoration: none !important;
    }
    #liuyue-wrapper ul {
      list-style: none !important;
    }


/* 基础变量定义 */
:root {
  --ly-primary: #e60012;
  --ly-primary-dark: #c40010;
  --ly-primary-light: #fde8e9;
  --ly-gold: #e6b89c;
  --ly-text-dark: #333;
  --ly-text-gray: #666;
  --ly-text-light: #999;
  --ly-white: #fff;
  --ly-bg-light: #f9f9f9;
  --ly-bg-dark: #2d2d2d;
}

/* 核心容器样式 */
#liuyue-wrapper {
  width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

.ly-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px 50px 0 !important;
}

/* 导航栏样式 */
.ly-header {
  background-color: var(--ly-white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  position: relative !important;
  z-index: 9999 !important;
  width: 100% !important;
}

.ly-header.ly-scrolled {
  background-color: rgba(255,255,255,0.95) !important;
}

.ly-navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 15px 0 !important;
}

.ly-logo {
  display: flex !important;
  align-items: center !important;
}

.ly-logo img {
  height: 40px !important;
  margin-right: 10px !important;
}

.ly-logo-text {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--ly-primary) !important;
}

.ly-logo-text span {
  color: var(--ly-gold) !important;
}

.ly-nav-links {
  display: flex !important;
  list-style: none !important;
}

.ly-nav-links li {
  margin-left: 30px !important;
}

.ly-nav-links a {
  color: var(--ly-text-dark) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
  position: relative !important;
}

.ly-nav-links a:hover,
.ly-nav-links a.ly-active {
  color: var(--ly-primary) !important;
}

.ly-nav-links a::after {
  content: '' !important;
  position: absolute !important;
  width: 0 !important;
  height: 2px !important;
  bottom: -5px !important;
  left: 0 !important;
  background-color: var(--ly-primary) !important;
  transition: width 0.3s ease !important;
}

.ly-nav-links a:hover::after,
.ly-nav-links a.ly-active::after {
  width: 100% !important;
}

/* 移动端菜单 */
.ly-menu-toggle {
  display: none !important;
  flex-direction: column !important;
  cursor: pointer !important;
}

.ly-menu-toggle span {
  width: 25px !important;
  height: 3px !important;
  background-color: var(--ly-primary) !important;
  margin: 3px 0 !important;
  transition: all 0.3s ease !important;
}

/* 英雄区域 */
.ly-hero {
  height: auto !important;
  min-height: 400px !important;
  padding: 80px 0 !important;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero-bg.jpg') center/cover no-repeat !important;
  color: var(--ly-white) !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
}

.ly-hero-content {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 20px !important;
}

.ly-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  margin-bottom: 20px !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

.ly-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  margin-bottom: 30px !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.ly-hero-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 15px !important;
}

/* 按钮样式 */
.ly-btn {
  display: inline-block !important;
  background-color: var(--ly-primary) !important;
  color: var(--ly-white) !important;
  padding: 12px 30px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
}

.ly-btn:hover {
  background-color: var(--ly-primary-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.ly-btn-secondary {
  background-color: transparent !important;
  border: 2px solid var(--ly-white) !important;
}

.ly-btn-secondary:hover {
  background-color: var(--ly-white) !important;
  color: var(--ly-primary) !important;
}

/* 通用区块样式 */
section {


.ly-section-title {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.ly-section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  color: var(--ly-text-dark) !important;
  margin-bottom: 15px !important;
  position: relative !important;
  display: inline-block !important;
}

.ly-section-title h2::after {
  content: '' !important;
  position: absolute !important;
  bottom: -10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 3px !important;
  background-color: var(--ly-primary) !important;
}

.ly-section-title p {
  color: var(--ly-text-gray) !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

/* 产品特点区域 */
.ly-features {
  background-color: var(--ly-white) !important;
}

.ly-features-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 30px !important;
}

.ly-feature-card {
  background-color: var(--ly-bg-light) !important;
  padding: 30px !important;
  border-radius: 10px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.ly-feature-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.ly-feature-icon {
  width: 80px !important;
  height: 80px !important;
  background-color: var(--ly-primary-light) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
}

.ly-feature-icon img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
}

/* 响应式核心设置 */
@media (max-width: 768px) {
  .ly-nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    flex-direction: column !important;
    background-color: var(--ly-white) !important;
    width: 80% !important;
    height: 100vh !important;
    padding: 80px 30px !important;
    transition: right 0.3s ease !important;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
    z-index: 9999 !important;
  }
  
  .ly-nav-links.active {
    right: 0 !important;
  }
  
  .ly-nav-links li {
    margin: 15px 0 !important;
  }
  
  .ly-menu-toggle {
    display: flex !important;
    z-index: 10000 !important;
  }
  
  .ly-story-wrapper {
    flex-direction: column !important;
  }
  
  .ly-footer-content {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0 !important;
  }
  
  .ly-features-grid,
  .ly-products-grid,
  .ly-news-grid {
    grid-template-columns: 1fr !important;
  }
  
  .ly-footer-content {
    grid-template-columns: 1fr !important;
  }
  
  .ly-testimonial-slide {
    padding: 20px !important;
  }
}

/* 其他区域样式省略，保持与之前结构一致但统一使用ly-前缀 */
.ly-products {
  background-color: var(--ly-bg-light) !important;
}

.ly-products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
}

.ly-product-card {
  background-color: var(--ly-white) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.ly-product-img {
  height: 250px !important;
  overflow: hidden !important;
}

.ly-product-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.ly-product-card:hover .ly-product-img img {
  transform: scale(1.05) !important;
}

.ly-product-info {
  padding: 20px !important;
}

.ly-product-price {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--ly-primary) !important;
  margin: 15px 0 !important;
}

.ly-brand-story {
  background-color: var(--ly-white) !important;
}

.ly-story-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

.ly-story-content {
  flex: 1 !important;
  min-width: 300px !important;
  padding-right: 30px !important;
  margin-bottom: 30px !important;
}

.ly-story-image {
  flex: 1 !important;
  min-width: 300px !important;
}

.ly-testimonials {
  background-color: var(--ly-bg-light) !important;
}

.ly-testimonials-slider {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.ly-testimonial-slide {
  background-color: var(--ly-white) !important;
  padding: 30px !important;
  border-radius: 10px !important;
  text-align: center !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
  display: none !important;
}

.ly-testimonial-slide.ly-active {
  display: block !important;
}

.ly-slider-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 20px !important;
}

.ly-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #ddd !important;
  cursor: pointer !important;
}

.ly-dot.ly-active {
  background-color: var(--ly-primary) !important;
}

.ly-news {
  background-color: var(--ly-white) !important;
}

.ly-news-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
}

.ly-news-card {
  background-color: var(--ly-bg-light) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.ly-news-img {
  height: 200px !important;
  overflow: hidden !important;
}

.ly-news-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.ly-news-info {
  padding: 20px !important;
}

.ly-news-date {
  color: var(--ly-text-light) !important;
  font-size: 0.875rem !important;
  margin-bottom: 10px !important;
}

.ly-read-more {
  color: var(--ly-primary) !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin-top: 10px !important;
}

.ly-contact {
  background-color: var(--ly-primary) !important;
  color: var(--ly-white) !important;
}

.ly-contact-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
}

.ly-contact-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 20px !important;
}

.ly-contact-icon {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 15px !important;
}

.ly-contact-icon img {
  width: 20px !important;
  height: 20px !important;
  filter: brightness(0) invert(1) !important;
}

.ly-subscribe-form {
  padding: 20px !important;
}

.ly-form-group {
  margin-bottom: 15px !important;
}

.ly-form-group input {
  width: 100% !important;
  padding: 12px !important;
  border-radius: 5px !important;
  border: none !important;
  font-size: 1rem !important;
}

.ly-subscribe-btn {
  background-color: var(--ly-white) !important;
  color: var(--ly-primary) !important;
  padding: 12px 30px !important;
  border: none !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.ly-footer {
  background-color: var(--ly-bg-dark) !important;
  color: var(--ly-white) !important;
  padding: 40px 0 20px !important;
}

.ly-footer-content {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 30px !important;
  margin-bottom: 30px !important;
}

.ly-footer-links h4 {
  font-size: 1.1rem !important;
  margin-bottom: 15px !important;
  color: var(--ly-white) !important;
}

.ly-footer-links a {
  color: var(--ly-text-light) !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.ly-footer-links a:hover {
  color: var(--ly-white) !important;
}

.ly-social-links {
  display: flex !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.ly-social-links a {
  width: 36px !important;
  height: 36px !important;
  background-color: #3d3d3d !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ly-footer-bottom {
  text-align: center !important;
  padding-top: 20px !important;
  border-top: 1px solid #3d3d3d !important;
  color: var(--ly-text-light) !important;
  font-size: 0.875rem !important;
}





/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 产品版块容器 */
.product-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* 总宽度控制 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 标题区域 */
.section-title-wrap {
    margin-bottom: 50px;
    text-align: center;
}

.section-title-inner h2 {
    font-size: 2.4rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title-inner h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e67300;
    border-radius: 3px;
}

.section-title-inner p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 产品列表布局（4列2行） */
.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* 列间距30px，行间距也保持一致 */
    list-style: none;
    max-height: calc( (260px + 80px) * 2 ); /* 图片高度+信息区高度 * 2行 */
    overflow: hidden;
}

/* 产品项容器 */
.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* 纵向排列图片和信息区 */
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

/* 图片容器（确保方图完整显示） */
.product-img-wrap {
    width: 100%;
    padding-top: 100%; /* 正方形比例（宽高相等） */
    position: relative; /* 用于图片绝对定位 */
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 关键：完整显示方图，不裁剪 */
    object-position: center; /* 图片居中 */
    background-color: #f5f5f5; /* 方图周围留白背景色 */
    transition: transform 0.5s ease;
}

.product-item:hover .product-thumbnail {
    transform: scale(1.05); /* 悬停轻微放大，不影响完整性 */
}

/* 产品信息区（完全位于图片下方，不重叠） */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border-top: 1px solid #f0f0f0; /* 分隔线，区分图片和信息区 */
    margin-top: auto; /* 确保信息区在底部 */
}

/* 产品名称（左侧） */
.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65%; /* 预留按钮空间 */
}

.product-name a {
    color: #222;
    text-decoration: none;
    font-family: "SimHei", "Microsoft YaHei", sans-serif;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #e67300;
}

/* 查看详情按钮（右侧） */
.product-btn {
    display: inline-block;
    color: #fff;
    background-color: #e67300;
    padding: 5px 9px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 115, 0, 0.3);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-inner h2 {
        font-size: 2rem;
    }
}





/* 新闻版块容器 */
.modules-news {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 标题样式 */
.modules-news .sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.modules-news .section-title h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
}

.modules-news .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 新闻列表布局 */
.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* 抵消子元素的左右内边距 */
    padding: 0;
    list-style: none;
}

/* 新闻项样式 - 4列布局计算 */
.news-item {
    flex: 0 0 calc(25% - 20px); /* 1200px总宽下4列，每列间距20px */
    margin: 0 10px 30px;
}

/* 新闻卡片容器 */
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 新闻图片样式 */
.news-img-wrap {
    display: block;
    width: 100%;
    height: 180px; /* 固定图片高度 */
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例并覆盖容器 */
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05); /* hover时图片轻微放大 */
}

/* 新闻内容区域 */
.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 日期样式 */
.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    display: inline-block;
}

/* 标题样式 */
.news-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.news-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #e87300; /* 主色调 */
}

/* 摘要样式 */
.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 阅读全文按钮 */
.news-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #e67300;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start; /* 左对齐 */
}

.news-more:hover {
    color: #ba5d00;
    padding-left: 8px;
}

.news-more::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.news-more:hover::after {
    margin-left: 8px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .news-item {
        flex: 0 0 calc(50% - 20px); /* 平板显示2列 */
    }
}

@media (max-width: 768px) {
    .modules-news .section-title h2 {
        font-size: 26px;
    }
    
    .news-img-wrap {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .news-item {
        flex: 0 0 calc(100% - 20px); /* 手机显示1列 */
    }
    
    .modules-news {
        padding: 30px 15px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
    }
}




/* 商城版块容器 */
.mall-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 标题样式 */
.mall-title {
    text-align: center;
    margin-bottom: 30px;
}

.mall-title h2 {
    font-size: 28px;
    color: #333;
    margin: 0 0 10px;
    font-weight: 600;
}

.mall-title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 按钮容器 */
.mall-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* 基础按钮样式 */
.mall-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 280px;
    height: 120px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* 按钮光效动画 */
.mall-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.mall-btn:hover::before {
    left: 100%;
}

/* 按钮悬停效果 */
.mall-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 天猫按钮样式 */
.mall-btn.tmall {
    background: #ff4400; /* 天猫橙色 */
}

/* 京东按钮样式 */
.mall-btn.jd {
    background: #e1251b; /* 京东红色 */
}

/* 图标容器（替换图片用） */
.mall-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 天猫图标（替换为你的图片路径） */
.tmall-icon {
    background-image: url('你的天猫图标路径.png');
}

/* 京东图标（替换为你的图片路径） */
.jd-icon {
    background-image: url('你的京东图标路径.png');
}

/* 平板适配 */
@media (max-width: 768px) {
    .mall-title h2 {
        font-size: 24px;
    }
    
    .mall-btn {
        width: 100%;
        max-width: 280px;
        height: 100px;
        font-size: 18px;
    }
    
    .mall-links {
        gap: 20px;
    }
    
    .mall-icon {
        width: 36px;
        height: 36px;
    }
}

/* 手机适配 */
@media (max-width: 480px) {
    .mall-section {
        margin: 30px auto;
    }
    
    .mall-btn {
        height: 90px;
        font-size: 16px;
        gap: 10px;
    }
    
    .mall-icon {
        width: 32px;
        height: 32px;
    }
}