@charset "utf-8";
/* 合并压缩的CSS文件 */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans TC',sans-serif;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 基本工具类 */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }


.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* 容器系统 */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* 响应式显示/隐藏工具 */
@media (max-width: 575.98px) {
  .d-sm-none { display: none !important; }
  .d-sm-block { display: block !important; }
}

@media (max-width: 767.98px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
}

@media (max-width: 991.98px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
}

@media (max-width: 1199.98px) {
  .d-xl-none { display: none !important; }
  .d-xl-block { display: block !important; }
}

/* 响应式列系统 */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class^="col-"],
[class*=" col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* 自定义样式 */
a{color:#333; text-decoration:none;}
ul,ol,li{ padding:0px; margin:0px;}
.bb{ border-bottom:1px dotted #eee;}
.met-logo img{max-height:70px;}

.notice p{ margin:0px;}
header .head_top_nav{ height:36px; line-height:36px; background:#333;}
header .head_top_nav ol,header .head_top_nav dl{ padding:0px; margin:0px;}
header .head_top_nav li>a,header .head_top_nav dt>a{ color:#fff;}
header .head_top_nav a:hover{ color:#fd9800;}
.language {
  position: relative;
  display: inline-block;
}

.language dl {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.language dt {
  margin: 0;
  padding: 0;
  position: relative;
}

.language dt a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 1px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.language dt a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fd9800;
}

.language dt i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language:hover dt i {
  transform: rotate(180deg);
}

.language dd {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.language:hover dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language dd a {
  display: block;
  font-size: 14px;
  padding: 5px 11px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
  height: auto;
  line-height: 1.4;
}
.language dd a img{ margin-right:5px; }

.language dd a:hover {
  color: #fd9800;
  background-color: #f8f9fa;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
  .language dt a {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .language dd {
    min-width: 100px;
  }
  
  .language dd a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* 优化头部导航栏样式 */
.head_top_nav {
  background-color: #333;
  height: auto;
}

.tem_top_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tem_top_nav .language {
  margin: 0;
}
.help-map ol li{ display:inline-block;}

.layer-search-pup {
    background-color: rgba(20,22,24,.9) !important;
}
@media (min-width: 1500px)
.layer-search-pup .search-info {
    width: 980px;
    left: 50%;
    margin-left: -490px;
}
.layer-search-pup .search-info {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 25%;
    width: 50%;
}
.layer-search-pup .search-info .input-wrap .form-control {
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    border-color: #fff;
    color: #fff;
    font-size: 20px;
    background: rgba(0,0,0,0);
}
.layer-search-pup .search-info .input-wrap a i {
    color: #fff;
    font-size: 1.4rem;
}
.search-info .layer-cancel{ position:absolute; top:-50px; left:50%;}
.search-info .searchgo{ position:absolute; right:20px; top:8px; width:40px; height:40px; border:none; background:url(../search.png) no-repeat; background-size:100%;}
.layer-search-pup .search-info .input-wrap {position: relative;}

.menu-wrapper {display: flex;justify-content: center;}
#menu .nav>li>a {padding: .5rem 1.5rem;display: block;color: #333;font-size: 14px;}
#menu .navbar-nav>li{ position:relative;}
#menu .navbar-nav>li i{ position:absolute; top:15px; right:-8px;}
#menu .navbar-nav>li .submenu{ width:400px; padding-left:10px; padding-right:10px;}
#menu .navbar-nav>li .submenu dd{float:left;}
#menu .navbar-nav>li .submenu dd a{ display:block; margin-bottom:10px; font-size:14px;}
#menu .navbar-nav>li .submenu dt{ float:right;}

/* 确保三个元素在同一行排列 */
.fl.met-logo {
  float: none !important;
  flex: 0 0 auto;
  margin: 0;
}

.menu-wrapper {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}

.cart-account {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin: 0;
}

/* 容器样式调整 - 确保三个元素并列一排 */
.tem_inner.tem_head .container {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

/* 确保三个核心元素在同一行 */
.tem_inner.tem_head .container > * {
  flex-shrink: 0;
}

.fl.met-logo {
  flex: 0 0 auto;
  float: none !important;
  margin: 0;
}

.menu-wrapper {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}

.cart-account {
  flex: 0 0 auto;
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* 确保在所有屏幕尺寸下都能正常显示 */
@media (max-width: 1199.98px) {
  .tem_inner.tem_head .container {
    flex-wrap: wrap;
  }
  
  .menu-wrapper {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
  
  .fl.met-logo {
    order: 1;
  }
  
  .cart-account {
    order: 2;
  }
}

@media (max-width: 767.98px) {
  .tem_inner.tem_head .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .fl.met-logo {
    align-self: center;
  }
  
  .cart-account {
    align-self: center;
  }
  
  .menu-wrapper {
    width: 100%;
    margin-top: 0;
  }
}

/* 导航样式调整 */
#menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#menu .navbar-nav {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* 菜单项样式 */
#menu .navbar-nav>li {
  position: relative;
  margin: 0;
}

#menu .navbar-nav>li>a {
  display: block;
  padding: 15px 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

#menu .navbar-nav>li>a:hover, 
#menu .navbar-nav>li.navdown>a {
  color: #8c414d;
}

#menu .navbar-nav>li>a:hover::after, 
#menu .navbar-nav>li.navdown>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #8c414d;
}

/* 下拉子菜单样式优化 */
#menu .navbar-nav>li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 400px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border: 1px solid #eee;
}

#menu .navbar-nav>li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu .navbar-nav>li .submenu dd {
  flex: 1 1 30%;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}

#menu .navbar-nav>li .submenu dd a {
  flex: 0 0 calc(50% - 5px);
  padding: 8px 12px;
  margin: 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}

#menu .navbar-nav>li .submenu dd a:hover {
  color: #8c414d;
  background-color: #f8f9fa;
}

#menu .navbar-nav>li .submenu dt {
  flex: 0 0 60%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu .navbar-nav>li .submenu dt img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式菜单调整 */
@media (max-width: 991.98px) {
  .tem_inner.tem_head .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-wrapper {
    width: 100%;
    margin-top: 10px;
  }
  
  #menu .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  #menu .navbar-nav>li {
    width: 100%;
  }
  
  #menu .navbar-nav>li>a {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
  }
  
  #menu .navbar-nav>li .submenu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 15px;
    display: none;
    border: none;
  }
  
  #menu .navbar-nav>li:hover .submenu {
    display: flex;
  }
  
  #menu .navbar-nav>li .submenu dd {
    flex: 1 1 100%;
  }
  
  #menu .navbar-nav>li .submenu dt {
    display: none;
  }
  
  .cart-account {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
}

/* 移动端菜单图标样式 */
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-toggler {
    display: block;
    background-color: #8c414d;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 0 auto;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
  
  .navbar-expand-lg .navbar-collapse.show {
    display: flex !important;
    flex-basis: 100%;
  }
}

/* 账户下拉菜单样式 */
.account-wrapper {
  position: relative;
  display: inline-block;
}

.account-toggle {
  display: inline-block;
  color: #333;
  font-size: 1.5rem;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

/* 鼠标悬停时图标变色 */
.account-toggle:hover,
.account-toggle:hover i {
  color: #8c414d !important;
  transform: translateY(-2px);
}

/* 确保图标颜色变化平滑过渡 */
.account-toggle i {
  transition: all 0.3s ease;
  color: #333;
}

/* 下拉菜单样式优化 */
.account-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: -50%;
  padding: 10px 0;
  background-color: #fff;
  /* 下边角圆角 */
  border-radius: 0 0 8px 8px;
  /* 浅灰色边框 */
  border: 1px solid #e5e7eb;
  /* 带有阴影 */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 190px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  /* 优化动画效果 */
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  /* 平滑过渡动画 */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  /* 增强视觉层次感 - 兼容Firefox */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

/* 鼠标悬停时显示下拉菜单 - 优化动画 */
.account-wrapper:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.account-dropdown li {
  margin: 0;
  padding: 0;
  position: relative;
}

/* 菜单项样式优化 */
.account-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 12px 20px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

/* 图标样式优化 - 与文字颜色字体大小相近 */
.account-dropdown li a i {
  font-size: 14px;
  color: #6b7280;
  width: 16px;
  text-align: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* 菜单项悬停时图标样式 */
.account-dropdown li a:hover i {
  color: #8c414d;
  transform: scale(1.1);
}

/* 菜单项悬停效果优化 */
.account-dropdown li a:hover {
  color: #8c414d;
  background-color: #f9fafb;
  /* 添加左侧高亮线 */
  padding-left: 24px;
}

/* 菜单项悬停时左侧高亮线动画 */
.account-dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: #8c414d;
  transition: width 0.2s ease;
}

.account-dropdown li a:hover::before {
  width: 4px;
}

/* 菜单项分隔线 */
.account-dropdown li:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

/* 优化响应式设计 */
@media (max-width: 767.98px) {
  .account-dropdown {
    min-width: 170px;
    right: -10px;
    /* 移动端圆角优化 */
    border-radius: 0 0 6px 6px;
    /* 移动端阴影优化 */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
  
  .account-dropdown li a {
    font-size: 13px;
    padding: 10px 16px;
  }
  
  .account-dropdown li a:hover {
    padding-left: 20px;
  }
}

/* 触摸设备优化 */
@media (hover: none) {
  .account-dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  
  .account-wrapper.touch-open .account-dropdown {
    display: block;
  }
}

/* ========================================
   购物车悬浮显示样式（统一版本）
   ======================================== */

/* 购物车图标容器 */
#cart {
  position: relative;
  display: inline-block;
}

.cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cart-wrapper:hover {
  background: linear-gradient(135deg, #8c414d, #a65560);
  transform: scale(1.05);
}

.cart-wrapper:hover i {
  color: #fff;
}

.cart-wrapper i {
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

/* 购物车数量徽章 */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(238, 90, 90, 0.4);
  transition: all 0.3s ease;
}

.cart-count.bounce {
  animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.15); }
}

/* 购物车下拉框 */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  max-height: 480px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: none;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 鼠标悬停时显示购物车下拉框 */
#cart:hover .cart-dropdown,
#cart.show-cart .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 购物车头部 */
.cart-dropdown-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-dropdown-header .item-count {
  font-size: 13px;
  opacity: 0.9;
}

/* 购物车内容 */
.cart-content {
  max-height: 320px;
  overflow-y: auto;
  /* 美化滚动条 */
  scrollbar-width: thin;
  scrollbar-color: #8c414d #f5f5f5;
}

/* WebKit浏览器滚动条美化 */
.cart-content::-webkit-scrollbar {
  width: 8px;
}

.cart-content::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

.cart-content::-webkit-scrollbar-thumb {
  background: #8c414d;
  border-radius: 4px;
}

.cart-content::-webkit-scrollbar-thumb:hover {
  background: #a65560;
}

/* 空购物车 */
.cart-empty {
  text-align: center;
  padding: 40px 20px;
}

.cart-empty .empty-icon {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 15px;
}

.cart-empty p {
  color: #999;
  margin-bottom: 15px;
  font-size: 14px;
}

.continue-shopping {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.continue-shopping:hover {
  background: linear-gradient(135deg, #7a3642, #954a54);
  color: #fff;
  transform: translateY(-2px);
}

/* 购物车商品项 */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.cart-item:hover {
  background: #fafafa;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: 5px;
}

.cart-item-name:hover {
  color: #8c414d;
}

.cart-item-spec {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.cart-item-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-qty .qty-text {
  font-size: 13px;
  color: #666;
  padding: 4px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 600;
  color: #8c414d;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* 购物车底部 */
.cart-footer {
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-total-label {
  font-size: 14px;
  color: #666;
}

.cart-total-value {
  font-size: 22px;
  font-weight: 700;
  color: #8c414d;
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.btn-view-cart {
  flex: 1;
  display: block;
  box-sizing: border-box;
  padding: 12px;
  border: 2px solid #8c414d;
  background: #fff;
  color: #8c414d;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  line-height: normal;
  transition: all 0.3s ease;
}

.btn-view-cart:hover {
  background: #8c414d;
  color: #fff;
}

.btn-checkout {
  flex: 1;
  display: block;
  box-sizing: border-box;
  padding: 12px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  line-height: normal;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 65, 77, 0.3);
  color: #fff;
}

/* 响应式设计 */
@media (max-width: 767.98px) {
  .cart-dropdown {
    width: 320px;
    right: -50px;
  }
  
  .cart-item {
    padding: 12px 15px;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 575.98px) {
  .cart-dropdown {
    width: 280px;
    right: -60px;
  }
  
  .cart-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .cart-count {
    font-size: 11px;
    min-width: 18px;
    height: 18px;
  }
}

/* 触摸设备优化 */
@media (hover: none) {
  .cart-dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  #cart.touch-open .cart-dropdown {
    display: block;
  }
}

/* 搜索框样式 */
.search-pup {
  position: relative;
  display: inline-block;
}

.search-toggle {
  display: inline-block;
  color: #333;
  font-size: 1.5rem;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  /* 确保按钮可点击区域足够大 */
  min-width: 40px;
  text-align: center;
  /* 确保z-index正确，避免被其他元素遮挡 */
  z-index: 1001;
  position: relative;
}

.search-toggle:hover {
  color: #8c414d;
  transform: translateY(-2px);
}

/* 搜索表单容器 */
.search {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 320px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 12px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
}

/* 鼠标悬停或点击时显示搜索框 */
.search-pup:hover .search,
.search-pup.show-search .search {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 搜索表单样式 */
.search form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* 搜索输入框样式 */
.search .input-text {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  outline: none;
  transition: all 0.2s ease;
  background-color: #f9fafb;
}

.search .input-text:focus {
  border-color: #8c414d;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(140, 65, 77, 0.1);
}

.search .input-text::placeholder {
  color: #9ca3af;
}

/* 搜索提交按钮样式 */
.search .searchgo {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #8c414d;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
}

.search .searchgo:hover {
  background-color: #6c313d;
  transform: scale(1.05);
}

/* 搜索图标样式 */
.search .searchgo::before {
  content: "\f52a";
  font-family: "bootstrap-icons" !important;
  font-size: 18px;
}

/* 点击外部关闭搜索框 */
body.clicked-outside .search-pup.show-search .search {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

/* 其他cart-account相关样式 */
header .cart-account>div {
  position: relative;
}

header .cart-account>div>a, header .cart-account>div>i {
  color: #333;
  display: inline-block;
  font-size: 1.5rem;
  padding: .4rem .6rem;
  transition: all 0.3s ease;
}

header .cart-account>div>a:hover, header .cart-account>div>i:hover {
  color: #8c414d;
  transform: translateY(-2px);
}

#search, .account-wrapper, #cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 响应式设计 */
@media (max-width: 767.98px) {
  .search {
    width: 280px;
    right: -40px;
    padding: 8px;
  }
  
  .search .input-text {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .search .searchgo {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .search {
    width: 240px;
    right: -60px;
  }
  
  .search-toggle {
    font-size: 1.3rem;
    padding: 0.3rem 0.5rem;
  }
}

/* 响应式设计 */
@media (max-width: 767.98px) {
  .account-dropdown {
    min-width: 160px;
    right: -20px;
  }
  
  .account-dropdown li a {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* 确保下拉菜单在各种设备上都能正常显示 */
@media (max-width: 575.98px) {
  .account-wrapper {
    margin: 0 5px;
  }
  
  .account-toggle {
    font-size: 1.3rem;
    padding: 0.3rem 0.5rem;
  }
}

/* 触摸设备优化 */
@media (hover: none) {
  .account-dropdown {
    display: none;
  }
  
  .account-wrapper.touch-open .account-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.tem_banner{ overflow:hidden;max-height: 533px;}
.tem_banner ul li{/*background-size: 100% !important;*/}
.tem_banner .flex-control-nav{top:-40px;}
.tem_banner .flex-control-paging li a{ width:20px; height:20px;}

.tem_index_about,.tem_index_case_box{ background:#8c414d;}
.tem_index_about .about-content{ color:#fff;}
.tem_index_about .about-content strong,.tem_index_case .FlmBox strong,.tem_index_case .case_sex strong,.tem_index_product .product_content_box strong,.tem_index_change .media_desc strong,.tem_index_media_flm .index_media_flm strong,.tem_index_media_rz .index_media_rz strong{ display:inline-block; padding-bottom: 15px !important;}

.tem_index_case_box .case_sex{ color:#fff;}

.tem_index_product{}
.product_content{ margin-right:50%;}
.product_content,.product_content p a{ color:#fff;}
.product_content_box{ background:#000;}

.tem_index_change{ background:#8c414d;}
.tem_index_change .media_desc{ color:#fff;}

.tem_index_change_media h3 a{ color:#fff;}
.tem_index_media_flm,.tem_index_media_rz{ background:#8c414d;}
.tem_index_media_flm .index_media_flm,.index_media_flm a{ color:#fff;}


.index_media_rz img{ max-width:80%;}
.index_media_rz .media_TPS,.index_media_rz .media_scent{ color:#fff;}
.index_media_rz hr{ color:#fff; background:#fff;height:2px;}

.tem_index_news{ overflow:hidden; }
.tem_index_news dl dt{ border-bottom:1px solid #8c414d;}
.tem_index_news .news-txt{ font-size:16px;}

/* 新闻模块响应式网格布局 */
.tem_index_news .index-news-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0 15px;
}

.tem_index_news .index-news-grid .index-news-item {
  display: flex;
  height: auto;
}

.tem_index_news .index-news-grid .index-news-item dl {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.tem_index_news .index-news-grid .index-news-item dl dd {
  flex: 1;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.tem_index_news .index-news-grid .index-news-item dl dd img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tem_index_news .index-news-grid .index-news-item .news-txt {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tem_index_news .index-news-grid .index-news-item dl dt {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #8c414d;
  font-size: 18px;
  font-weight: bold;
}

/* 新闻模块响应式布局 */
@media (max-width: 1400px) {
  .tem_index_news .index-news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .tem_index_news .index-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tem_index_news .index-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .tem_index_news .index-news-grid .index-news-item dl dt {
    font-size: 16px;
  }
  
  .tem_index_news .index-news-grid .index-news-item .news-txt {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tem_index_news .index-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tem_index_news .index-news-grid .index-news-item {
    max-width: 100%;
  }
}

/* 固定顶部样式 */
.fixed-top{ position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* 确保容器在固定头部内正常显示 */
.fixed-top .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* 占位符样式 */
.header-placeholder {
  display: none;
  transition: all 0.3s ease;
}

.tem_footer{ background:#8c414d;}
.tem_footer,.tem_footer a{ color:#fff;}
.tem_footer_nav a{ padding-right:10px; }
.tem_footer_nav a i.bi{padding-right: 4px;
    vertical-align: middle;}

/*news module*/
.news-module-list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.news-module-list ul.row{
  margin: 0 -15px;
  width: calc(100% + 30px);
}

.news-module-list li{
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.news-cols-box{
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-cols-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #8c414d;
}

.news-list-img{
  display: block;
  overflow: hidden;
}

.news-list-img img{
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.news-cols-box:hover .news-list-img img{
  transform: scale(1.05);
}

.news-module-list-des{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-module-list-des a{
  color: #8c414d;
  text-decoration: none;
  font-weight: 500;
}

.news-module-list-des a:hover{
  text-decoration: underline;
}

.news-list-info{
  margin-bottom: 0px;
  height: auto;
  line-height: 25px;
  border-top: 1px solid #f3f4f6;
  padding: 10px 5px 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
}

.news-list-info i{
  margin-right: 5px;
  font-size: 12px;
}

/* 确保4个一排的响应式布局 */
@media (min-width: 992px) {
  .news-module-list ul.row-cols-4 > li{
    width: 25%;
  }
}

@media (max-width: 991.98px) {
  .news-module-list ul.row-cols-4 > li{
    width: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .news-module-list ul.row-cols-4 > li{
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .news-module-list ul.row-cols-4 > li{
    width: 100%;
  }
}

/* 文章标题样式优化 */
.news-module-list h4{
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.met_section h1.met_title{ text-align:center;  font-size: 24px}

.news-module-list h4 a{
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ShowTag{ display:inline-block;  margin-bottom: 5px;}
.ShowTag a{ padding:3px 7px; border:1px solid #eee; margin-right: 4px;border-radius:5px;}
.ShowTag a:hover{ border-color:#ddd; color:#8c414d; }

.met_tools{ margin-top:10px; }
.met_tools .met_page{ display:flex; }
.met_tools .met_page li{ width:50%; }

.news-module-list h4 a:hover{
  color: #8c414d;
}
.news-list-info em{ font-style:normal;}

/*page*/
.met_pager{ text-align:center; margin-bottom:30px; margin-top:20px;width: 100%;}
.met_pager #metPageT{ width:40px;    height: 28px;
    line-height: 28px; padding-left: 2px; border:1px solid #ddd; }
.met_pager a,.met_pager #metPageB{ border:1px solid #ddd; display:inline-block; width:30px; height:30px; line-height:30px;margin-right:10px;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}
.met_pager .PreSpan,.met_pager .NextSpan{border:1px solid #ddd;display:inline-block;height:30px; line-height:30px; margin-right:10px;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;padding:0 10px;}
.met_pager .PreSpan,.met_pager .NextA,.met_pager .PreA{ background:#eee; width:auto; padding:0 10px;}
.met_pager .Ahover{ background:#eee;}

.met_module3_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.met_module3_list ul.row {
  margin: 0 -10px;
  width: calc(100% + 20px);
}

.met_module3_list li.goods-list-item {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
  overflow: hidden;
}

/* 商品卡片悬停动画效果 */
.met_module3_list li.goods-list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* 商品图片悬停效果 */
.met_module3_list li.goods-list-item img {
  transition: transform 0.3s ease;
}

.met_module3_list li.goods-list-item:hover img {
  transform: scale(1.05);
}

/* 商品标题样式 */
.met_module3_list li.goods-list-item h6 {
  color: #333;
  font-weight: 500;
  margin: 10px 0;
  transition: color 0.3s ease;
  text-align: center;
}

/* 商品标题悬停颜色变化 */
.met_module3_list li.goods-list-item:hover h6 {
  color: #8c414d;
}

/* 价格样式 */
.met_module3_list li.goods-list-item .original {
  color: #aaa;
  font-size: 12px;
}

.met_module3_list li.goods-list-item .price {
  padding-left: 10px;
  color: #8c414d;
  font-weight: 600;
}

/* 查看详情按钮样式 */
.met_module3_list li.goods-list-item .view {
  background: #f3f4f6;
  color: #666;
  height: 35px;
  line-height: 35px;
  margin: 10px 0 0;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

/* 查看详情按钮悬停背景颜色变化 */
.met_module3_list li.goods-list-item:hover .view {
  background: #8c414d;
  color: #fff;
  border-color: #8c414d;
  transform: scale(1.02);
}

/* 特价标签样式 */
.met_module3_list li.goods-list-item .shipping {
  position: absolute;
  top: 15px;
  background: #fee2e2;
  color: #dc2626;
  left: 15px;
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* 特价标签悬停效果 */
.met_module3_list li.goods-list-item:hover .shipping {
  background: #dc2626;
  color: #fff;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
  .met_module3_list li.goods-list-item {
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .met_module3_list {
    gap: 15px;
  }
  
  .met_module3_list li.goods-list-item {
    padding: 8px;
  }
}

.breadcrumb-box .breadcrumb{ margin-bottom:0px; border-bottom:1px solid #eee;}
.met-column-nav-ul dl{ position:relative;display:inline-block;    border-left: 1px solid #eee;
    padding: 0 10px;
    font-size: 14px;
    line-height: 22px;
    margin: 6px 0;}
.breadcrumb-box dl dd.sub {
    position: absolute;
    width: 330px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    padding-bottom: 5px; padding:8px 5px;
    border-radius: 0 3px 3px 3px;
	top:22px;
	display:none;
}
.breadcrumb-box dl dd.sub h4{ display:inline-block; padding:0 5px; border-right: 1px solid #ddd;}
.breadcrumb-box dl dd.sub h4 a{ font-size:14px; color:#aaa;}
.breadcrumb-box dl dd.sub h4 a:hover{ color:#333;}
.met_infos{ text-align:center; }
.met_infos span,.met_infos a{ color:#aaa;}
.met_section_head .bi-house-fill{ padding-right:5px;}
.art-c{ margin-bottom:0px;}

.aside_pro{ margin-top:15px; margin-bottom:5px; height: auto; min-height:35px; line-height:35px; background:#f7f7f7;border-radius: 5px; padding: 10px;}
.aside_pro h3{ display:none;}
.aside_pro .am-offcanvas{ clear:both !important;width: 100%;margin-top: 0px;}
.aside_pro .procategory_list dl,.aside_pro .all,.aside_pro .procategory_list{  font-size:14px;}

/* 商品分类列表主样式 */
.procategory_list {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 10px;
  background: transparent;
}

/* 商品分类项样式 */
.procategory_list > div.pro_class {
  flex: 0 0 auto;
  width: auto;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

/* 商品分类链接样式 - 简洁版 */
.procategory_list a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 12px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 移除卡片样式，改为简洁文字链接 */
.procategory_list a.imgcard {
  text-align: left;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* 移除图片样式 */
.procategory_list img {
  display: none;
}

/* 商品分类名称样式 - 简洁版 */
.procategory_list span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  position: relative;
  transition: all 0.3s ease;
}

/* 鼠标经过显示下划线效果 */
.procategory_list a:hover span,
.procategory_list a:hover {
  color: #8c414d;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* 下划线动画效果 - 简洁版 */
.procategory_list a span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8c414d;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procategory_list a:hover span::after {
  width: 100%;
}

/* 移除多余的链接下划线效果 */
.procategory_list a::after {
  display: none;
}

/* 确保侧边栏容器样式简洁 */
.aside_pro .am-offcanvas,
.aside_pro .am-offcanvas-bar,
.aside_pro .am-offcanvas-bar-overlay,
.aside_pro .am-offcanvas-bar-active {
  all: unset;
  display: block;
  width: 100%;
  position: static;
  transform: none;
}

/* 隐藏侧边栏的默认样式 */
.am-offcanvas-bar {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* 侧边栏商品分类样式 */
.aside_pro .procategory_list dl {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.aside_pro .procategory_list dl dt a {
  border-left: 1px solid #ddd;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* 侧边栏分类悬停效果 */
.aside_pro .procategory_list dl dt a:hover {
  color: #8c414d;
}

/* 侧边栏分类下拉菜单样式 */
.aside_pro .procategory_list dl dd.sub {
  position: absolute;
  width: 180px;
  background: #fff;
  border: 1px solid #eee;
  z-index: 1000;
  padding: 8px 5px;
  border-radius: 0 3px 3px 3px;
  top: 22px;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 显示下拉菜单 */
.aside_pro .procategory_list dl:hover dd.sub {
  display: block;
}

/* 下拉菜单标题样式 */
.aside_pro .procategory_list dl dd.sub h4 {
  display: inline-block;
  padding: 0 5px;
  border-right: 1px solid #ddd;
  margin: 5px 0;
}

/* 下拉菜单标题链接样式 */
.aside_pro .procategory_list dl dd.sub h4 a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 下拉菜单标题悬停效果 */
.aside_pro .procategory_list dl dd.sub h4 a:hover {
  color: #8c414d;
}

/* 侧边栏分类链接样式 */
.aside_pro .procategory_list dl a {
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* 侧边栏分类链接悬停效果 */
.aside_pro .procategory_list dl a:hover {
  color: #8c414d;
}

/* 响应式设计 */
@media (max-width: 767.98px) {
  .procategory_list {
    justify-content: center;
  }
  
  .procategory_list > div.pro_class {
    min-width: 100px;
  }
  
  .procategory_list a.imgcard {
    padding: 10px;
  }
  
  .procategory_list span {
    font-size: 13px;
  }
}


#sitemaplist dl{margin-top:30px;padding:20px;border:1px solid #ddd}
#sitemaplist dt h2{font-size:16px;font-weight:normal;padding:10px 0;border-bottom:1px solid #ddd}
#sitemaplist dt h2 i{font-size:22px;margin-left:10px;font-weight:normal;color:#888;position:relative;top:2px}
#sitemaplist dd ul{float:left;width:25%;list-style:none;margin-top:20px}
#sitemaplist dd li{margin-top:5px}
#sitemaplist dd li h3 a,#sitemaplist dd li h4 a{font-weight:normal;color:#666; font-size:14px;}
#searchlist ul li{ margin-bottom:15px; border-bottom:1px solid #eee;}

.search_title a{ color:#999;}
.search_content{ color:#aaa;}
.search_content em{ color:#f00; font-weight:bold;}
.search_updatetime{ color:#aaa;}

/* 响应式调整 */
@media (max-width: 991.98px) {
  #menu .navbar-nav>li .submenu {
    width: 100%;
    position: static;
    float: none;
  }
  
  #menu .navbar-nav>li .submenu dd,
  #menu .navbar-nav>li .submenu dt {
    float: none;
    width: 100%;
  }
  
  header .cart-account {
    justify-content: center;
    margin-top: 10px;
  }
  
  .menu-wrapper {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .tem_banner {
    max-height: 400px;
  }
  
  .tem_banner ul li {
    background-size: cover !important;
    height: 300px !important;
  }
  
  .product_content {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .tem_banner {
    max-height: 300px;
  }
  
  .tem_banner ul li {
    height: 200px !important;
  }
  
  header .head_top_nav {
    height: auto;
    padding: 5px 0;
  }
  
  .help-map ol {
    text-align: center;
  }
  
  .help-map ol li {
    margin: 2px 5px;
  }
}

/* 表单验证样式 */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error {
  display: block;
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  animation: fadeIn 0.3s ease;
}

.field-error::before {
  content: '⚠ ';
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 按钮点击反馈 */
.btn:active,
.btn-primary:active,
.btn-view-all:active,
.btn-add-cart:active,
.btn-checkout:active,
.btn-view-cart:active,
.btn-brand-more:active,
.btn-quick-buy:active,
.btn-add-to-cart:active,
.btn-quick-add:active,
.btn-apply-filter:active,
.cart-item-remove:active,
.searchgo:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(140, 65, 77, 0.3);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* 按钮悬停效果增强 */
.btn:hover,
.btn-primary:hover,
.btn-view-all:hover,
.btn-checkout:hover,
.btn-view-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(140, 65, 77, 0.25);
}

/* 链接点击反馈 */
a:active {
  opacity: 0.85;
}

/* 导航链接点击反馈 */
.navbar-nav > li > a:active,
.nav-link:active {
  color: #8c414d;
  transform: scale(0.98);
}

/* 图标按钮点击反馈 */
.cart-wrapper:active,
.account-toggle:active,
.search-toggle:active {
  transform: scale(0.95);
  background-color: #f0f0f0;
}

/* 产品卡片按钮点击反馈 */
.product-card .btn-quick-add:active {
  transform: scale(0.95);
  background: #8c414d;
  color: #fff;
}

/* 移动端点击区域优化 */
@media (max-width: 767.98px) {
  /* 最小点击区域44x44px */
  .navbar-nav > li > a,
  .nav-link,
  .btn,
  .btn-view-all,
  .btn-checkout,
  .btn-view-cart,
  .btn-quick-buy,
  .btn-add-to-cart,
  .btn-quick-add,
  .btn-apply-filter,
  button {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }
  
  /* 购物车图标点击区域 */
  .cart-wrapper {
    width: 48px;
    height: 48px;
  }
  
  /* 搜索按钮点击区域 */
  .search-toggle {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }
  
  /* 账户按钮点击区域 */
  .account-toggle {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }
  
  /* 下拉菜单项点击区域 */
  .account-dropdown li a,
  .submenu dd a {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* 产品卡片按钮 */
  .product-card .btn-quick-add {
    min-height: 44px;
    padding: 10px 16px;
  }
  
  /* 删除按钮点击区域 */
  .cart-item-remove {
    width: 36px;
    height: 36px;
  }
  
  /* 筛选按钮 */
  .filter-btn {
    min-height: 44px;
    padding: 10px 16px;
  }
  
  /* 表单提交按钮 */
  input[type="submit"],
  button[type="submit"] {
    min-height: 48px;
    padding: 14px 24px;
  }
}

/* 触摸设备优化 - 防止hover状态卡住 */
@media (hover: none) {
  .btn:hover,
  .btn-primary:hover,
  .btn-view-all:hover,
  .btn-checkout:hover {
    transform: none;
    box-shadow: none;
  }
  
  /* 触摸设备使用:active状态 */
  .btn:active,
  .btn-primary:active {
    transform: scale(0.98);
    background-color: #7a3642;
  }
}

/* ========================================
   移动端点击区域扩展优化
   ======================================== */

/* 产品卡片移动端优化 */
@media (max-width: 767.98px) {
  /* 产品卡片整体点击区域 */
  .product-card {
    margin-bottom: 20px;
  }
  
  .product-card .product-image-wrapper {
    min-height: 150px;
  }
  
  /* 产品卡片链接点击区域 */
  .product-card a {
    display: block;
    padding: 8px;
    min-height: 44px;
  }
  
  /* 产品标题点击区域 */
  .product-card .product-title a {
    padding: 10px 0;
    display: block;
  }
  
  /* 分页按钮点击区域 */
  .pagination li a,
  .pagination li span {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 新闻列表项点击区域 */
  .index-news-item dl dd a {
    display: block;
    padding: 10px;
    min-height: 44px;
  }
  
  /* 语言切换点击区域 */
  .language dt a {
    min-height: 44px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
  }
  
  .language dd a {
    min-height: 44px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
  }
  
  /* 帮助链接点击区域 */
  .help-map ol li a {
    min-height: 44px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
  }
  
  /* 社交媒体图标点击区域 */
  .social-icons a,
  .social-links a {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 表单输入框高度 */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="search"],
  textarea,
  select {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px; /* 防止iOS自动缩放 */
  }
  
  /* 复选框和单选框点击区域 */
  input[type="checkbox"],
  input[type="radio"] {
    width: 24px;
    height: 24px;
    margin: 10px;
  }
  
  /* 标签点击区域 */
  .tag,
  .badge {
    padding: 8px 12px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
  
  /* 关闭按钮点击区域 */
  .close,
  .btn-close {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
  
  /* 数量调整按钮 */
  .qty-btn,
  .quantity-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
  
  /* 搜索结果项点击区域 */
  .search-result-item a {
    padding: 12px 15px;
    min-height: 44px;
    display: block;
  }
}

/* 大屏手机优化 (414px - 767px) */
@media (min-width: 414px) and (max-width: 767.98px) {
  .product-card .btn-quick-add {
    min-height: 46px;
    padding: 12px 18px;
  }
}

/* 小屏手机优化 (< 375px) */
@media (max-width: 374.98px) {
  .btn,
  .btn-view-all,
  .btn-checkout {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .navbar-nav > li > a {
    padding: 10px 12px;
  }
  
  .cart-wrapper,
  .search-toggle,
  .account-toggle {
    width: 44px;
    height: 44px;
  }
}

/* 输入框焦点样式 */
input:focus,
textarea:focus,
select:focus {
  border-color: #8c414d;
  box-shadow: 0 0 0 0.2rem rgba(140, 65, 77, 0.25);
  outline: none;
}

/* ========================================
   加载状态样式
   ======================================== */

/* 按钮加载状态 */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.btn-loading-text {
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 全屏加载遮罩 */
#page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f5f5f5;
  border-top-color: #8c414d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

.loading-text {
  color: #666;
  font-size: 16px;
}

/* 骨架屏样式 */
.skeleton-loading .skeleton-item {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-product,
.skeleton-news,
.skeleton-cart {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.skeleton-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  height: 180px;
  margin-bottom: 12px;
}

.skeleton-title {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  height: 20px;
  margin: 0 12px 8px;
  border-radius: 4px;
}

.skeleton-text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  height: 14px;
  margin: 0 12px 6px;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-content {
  padding: 12px;
}

@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 购物车加载状态 */
.cart-loading {
  position: relative;
  min-height: 100px;
}

.cart-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 3px solid #f5f5f5;
  border-top-color: #8c414d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* 产品列表加载状态 */
.products-loading {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.products-loading .skeleton-product {
  flex: 0 0 calc(25% - 15px);
}

@media (max-width: 991.98px) {
  .products-loading .skeleton-product {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 767.98px) {
  .products-loading .skeleton-product {
    flex: 0 0 calc(50% - 10px);
  }
  
  .skeleton-image {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .products-loading .skeleton-product {
    flex: 0 0 100%;
  }
}

/* 内联加载指示器 */
.inline-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.inline-loading .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #f5f5f5;
  border-top-color: #8c414d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* 禁用状态增强 */
.btn:disabled,
button:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* 动画效果 */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* ========================================
   Firefox兼容性修复
   ======================================== */

/* 全局滚动条样式 - Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #8c414d #f5f5f5;
}

/* 全局滚动条样式 - WebKit */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #8c414d;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #a65560;
}

/* Firefox焦点样式修复 */
::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Firefox按钮焦点样式 */
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Firefox输入框占位符样式 */
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* Firefox数字输入框移除箭头 */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox文件上传按钮美化 */
input[type="file"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Firefox选择框样式 */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

/* Firefox range滑块样式 */
input[type="range"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #8c414d;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #8c414d;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Firefox禁用状态样式 */
input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Firefox只读状态样式 */
input:read-only,
textarea:read-only {
  background-color: #f5f5f5;
}

/* 悬停效果 */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 图片优化 */
img {
  max-width: 100%;
  height: auto;
}

/* 加载动画 */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #8c414d;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 图片懒加载样式 */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img.lazy.loaded {
  opacity: 1;
}

/* 懒加载占位符背景 */
img.lazy:not(.loaded) {
  background-color: #f3f4f6;
  background-image: linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb),
    linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  min-height: 150px;
}

/* 懒加载图片加载失败时的样式 */
img.lazy.error {
  opacity: 1;
  background-color: #fee2e2;
  background-image: none;
}

/* ========================================
   热销产品/新品推荐模块样式
   ======================================== */

/* 区块头部样式 */
.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-divider span {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8c414d, #c06c72);
  border-radius: 2px;
}

/* 产品标签页样式 */
.product-tabs .nav-pills {
  gap: 15px;
}

.product-tabs .nav-link {
  border: 2px solid #e5e7eb;
  border-radius: 30px;
  padding: 10px 25px;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
}

.product-tabs .nav-link i {
  margin-right: 8px;
}

.product-tabs .nav-link:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.product-tabs .nav-link.active {
  background: linear-gradient(135deg, #8c414d, #a65560);
  border-color: transparent;
  color: #fff;
}

/* 产品卡片样式 */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  background: #f8f9fa;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

/* 产品徽章 */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
}

.product-badge.hot {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
}

.product-badge.new {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #fff;
}

/* 产品操作按钮 */
.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  transition: bottom 0.3s ease;
}

.product-card:hover .product-actions {
  bottom: 0;
}

.product-actions a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.product-actions a:hover {
  background: #8c414d;
  color: #fff;
  transform: scale(1.1);
}

/* 产品信息 */
.product-info {
  padding: 20px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-title a {
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a:hover {
  color: #8c414d;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price .price {
  font-size: 20px;
  font-weight: 600;
  color: #8c414d;
}

.product-price .original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* 查看全部按钮 */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid #8c414d;
  border-radius: 30px;
  color: #8c414d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: #8c414d;
  color: #fff;
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* ========================================
   品牌故事模块样式
   ======================================== */

.tem_index_brandstory {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.brand-image-wrapper {
  position: relative;
}

.brand-image-wrapper img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.brand-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(140, 65, 77, 0.3);
}

.brand-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.brand-badge .text {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.brand-text-content {
  padding: 20px 0;
}

.brand-slogan {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.brand-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.btn-brand-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-brand-more:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(140, 65, 77, 0.3);
}

.btn-brand-more i {
  transition: transform 0.3s ease;
}

.btn-brand-more:hover i {
  transform: translateX(5px);
}

/* ========================================
   特色功能模块样式
   ======================================== */

.tem_index_features {
  background: #fff;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(140, 65, 77, 0.1), rgba(140, 65, 77, 0.05));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 36px;
  color: #8c414d;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #8c414d, #a65560);
  transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   Banner轮播优化样式
   ======================================== */

.tem_banner {
  position: relative;
}

.tem_banner .flexslider {
  margin: 0;
  border: none;
  overflow: hidden;
}

.tem_banner .flexslider .slides {
  position: relative;
  z-index: 1;
}

.tem_banner .flexslider .slides li {
  position: relative;
}

.tem_banner .flexslider .slides li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
  z-index: 1;
}

.tem_banner .flex-control-nav {
  bottom: 30px;
  z-index: 10;
}

.tem_banner .flex-control-paging li a {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tem_banner .flex-control-paging li a:hover,
.tem_banner .flex-control-paging li a.flex-active {
  background: #fff;
  border-color: #8c414d;
  transform: scale(1.2);
}

.tem_banner .flex-direction-nav a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tem_banner .flex-direction-nav a::before {
  font-size: 20px;
  color: #333;
}

.tem_banner .flex-direction-nav a:hover {
  background: #8c414d;
}

.tem_banner .flex-direction-nav a:hover::before {
  color: #fff;
}

/* Banner动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content {
  animation: fadeInUp 0.8s ease-out;
}

/* 响应式适配 */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 26px;
  }
  
  .brand-slogan {
    font-size: 24px;
  }
  
  .product-tabs .nav-link {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .product-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-tabs .nav-link {
    padding: 6px 15px;
    font-size: 13px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-price .price {
    font-size: 18px;
  }
  
  .brand-badge {
    padding: 10px 15px;
  }
  
  .brand-badge .years {
    font-size: 28px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 28px;
  }
}

/* ========================================
   快速购买按钮样式
   ======================================== */

/* 产品详情页快速购买 */
.btn-quick-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 90, 90, 0.3);
}

.btn-quick-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 90, 90, 0.4);
}

.btn-quick-buy i {
  font-size: 18px;
}

/* 加入购物车按钮 */
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(140, 65, 77, 0.3);
}

.btn-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(140, 65, 77, 0.4);
}

.btn-add-to-cart i {
  font-size: 18px;
}

/* 产品列表快速购买按钮 */
.product-quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-quick-add {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-quick-add:hover {
  background: #fff;
  color: #8c414d;
}

.btn-quick-add.primary {
  background: #8c414d;
  color: #fff;
}

.btn-quick-add.primary:hover {
  background: #a65560;
}

/* ========================================
   产品筛选功能样式
   ======================================== */

.product-filter-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.filter-clear {
  font-size: 14px;
  color: #8c414d;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-clear:hover {
  text-decoration: underline;
}

.filter-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.filter-row:last-child {
  margin-bottom: 0;
}

.filter-label {
  width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  padding-top: 8px;
  flex-shrink: 0;
}

.filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-option {
  padding: 8px 18px;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-option:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.filter-option.active {
  background: linear-gradient(135deg, #8c414d, #a65560);
  border-color: transparent;
  color: #fff;
}

/* 价格范围筛选 */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  width: 100px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

.price-input:focus {
  outline: none;
  border-color: #8c414d;
}

.price-separator {
  color: #999;
}

.btn-apply-filter {
  padding: 8px 20px;
  background: #8c414d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-apply-filter:hover {
  background: #a65560;
}

/* 排序栏 */
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sort-options {
  display: flex;
  gap: 15px;
}

.sort-option {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.sort-option:hover {
  color: #8c414d;
  background: #f5f5f5;
}

.sort-option.active {
  color: #8c414d;
  font-weight: 500;
}

.sort-option i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.sort-option.desc i {
  transform: rotate(180deg);
}

.view-options {
  display: flex;
  gap: 10px;
}

.view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-btn:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.view-btn.active {
  background: #8c414d;
  border-color: #8c414d;
  color: #fff;
}

/* 响应式适配 */
@media (max-width: 767.98px) {
  .cart-dropdown {
    width: 320px;
    right: -50px;
  }
  
  .filter-row {
    flex-direction: column;
  }
  
  .filter-label {
    width: 100%;
    padding-bottom: 10px;
  }
  
  .sort-bar {
    flex-direction: column;
    gap: 15px;
  }
  
  .sort-options {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========================================
   结算流程优化样式
   ======================================== */

/* 购物车页面优化 */
.shop-cart .panel {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
}

.shop-cart .cart-body {
  width:100%;
  background: #fff;
}

.shop-cart .cart-list {
  padding: 0;
}
.page-content .moregoods{ width:100%; }

/* 购物车商品项 */
.cart-list .cart-item-wrapper {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.cart-list .cart-item-wrapper:hover {
  background: #fafafa;
}

.cart-list .cart-item-wrapper:last-child {
  border-bottom: none;
}

/* 购物车商品图片 */
.cart-list .media-object {
  border-radius: 8px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* 购物车商品名称 */
.cart-list .media-heading a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.cart-list .media-heading a:hover {
  color: #8c414d;
}

/* 数量输入框优化 */
.cart-list .input-group {
  width: 120px;
}

.cart-list .input-group-btn .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.cart-list .form-control {
  border-radius: 0;
  text-align: center;
  font-weight: 500;
}

/* 购物车底部结算栏 */
.cart-total {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  border-radius: 0 0 12px 12px;
}

.cart-total .total-val {
  font-size: 24px;
  font-weight: 700;
}

.cart-total .btn-danger {
  background: linear-gradient(135deg, #8c414d, #a65560);
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cart-total .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 65, 77, 0.3);
}

.cart-total .btn-danger.disabled {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* 空购物车 */
.cart-not {
  background: #fff;
  border-radius: 12px;
}

.cart-not .iconbox i {
  font-size: 80px;
}

.cart-not-title {
  font-size: 20px;
}

.cart-not .btn-outline-danger {
  border-color: #8c414d;
  color: #8c414d;
  border-radius: 8px;
  padding: 12px 30px;
}

.cart-not .btn-outline-danger:hover {
  background: #8c414d;
  color: #fff;
}

/* ========================================
   结算页面优化
   ======================================== */

.pay-body {
  padding: 30px;
}

.pay-body .example-wrap {
  margin-bottom: 25px;
}

.pay-body .example-title {
  font-weight: 600;
  color: #333;
}

/* 收货地址卡片 */
.addr-body .addr-item {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.addr-body .addr-item:hover {
  border-color: #8c414d;
  box-shadow: 0 4px 12px rgba(140, 65, 77, 0.1);
}

.addr-body .addr-item.active {
  border-color: #8c414d;
  background: linear-gradient(135deg, rgba(140, 65, 77, 0.05), rgba(140, 65, 77, 0.02));
}

.addr-body .addr-item .addr-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 5px;
}

.addr-body .addr-item .addr-phone {
  color: #666;
  margin-bottom: 5px;
}

.addr-body .addr-item .addr-detail {
  color: #999;
  font-size: 13px;
}

.addr-body .addr-item .addr-default {
  display: inline-block;
  padding: 2px 8px;
  background: #8c414d;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-left: 10px;
}

/* 支付方式选择 */
.pay-set-body {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.pay-set-body label {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pay-set-body label:hover {
  border-color: #8c414d;
}

.pay-set-body input:checked + label,
.pay-set-body label.active {
  border-color: #8c414d;
  background: linear-gradient(135deg, rgba(140, 65, 77, 0.05), rgba(140, 65, 77, 0.02));
}

/* 商品列表优化 */
.pay-goods-body {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.pay-goods-body:last-child {
  border-bottom: none;
}

.pay-goods-body .media-object {
  border-radius: 8px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.pay-goods-body .media-heading a {
  font-weight: 500;
  color: #333;
}

.pay-goods-body .media-heading a:hover {
  color: #8c414d;
}

/* 优惠券选择 */
.pay-discount-body {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.pay-discount-body li {
  list-style: none;
}

.pay-discount-body label {
  display: block;
  padding: 15px 20px;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.pay-discount-body label:hover {
  border-color: #8c414d;
  border-style: solid;
}

.pay-discount-body input:checked + label {
  border-color: #8c414d;
  border-style: solid;
  background: linear-gradient(135deg, rgba(140, 65, 77, 0.05), rgba(140, 65, 77, 0.02));
}

/* 提交区域 */
.pay-submit {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  padding: 25px 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.pay-submit #pay-total {
  font-size: 24px;
  font-weight: 700;
}

.pay-submit .btn-danger {
  background: linear-gradient(135deg, #8c414d, #a65560);
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pay-submit .btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 65, 77, 0.3);
}

.pay-submit .btn-default {
  border-radius: 8px;
  padding: 12px 30px;
}

/* ========================================
   产品列表页筛选栏
   ======================================== */

.product-list-header {
  margin-bottom: 25px;
}

.product-list-header .product-filter-section {
  margin-bottom: 0;
}

/* 产品列表视图 */
.product-list.grid-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-list.list-view {
  display: block;
}

.product-list.list-view .product-card {
  display: flex;
  flex-direction: row;
}

.product-list.list-view .product-image-wrapper {
  width: 200px;
  padding-top: 0;
  height: 200px;
}

.product-list.list-view .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .product-list.grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .product-list.grid-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-list.list-view .product-image-wrapper {
    width: 120px;
    height: 120px;
  }
}

/* ========================================
   商品详情页购买按钮样式
   ======================================== */

.product-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  flex: 1;
  min-width: 140px;
}

.btn-product-action i {
  font-size: 18px;
}

.btn-product-action:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

/* 立即购买按钮 */
.btn-buy-now {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(238, 90, 90, 0.3);
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #ff5252, #e04848);
  color: #fff;
  box-shadow: 0 6px 20px rgba(238, 90, 90, 0.4);
}

/* 加入购物车按钮 */
.btn-add-cart {
  background: linear-gradient(135deg, #8c414d, #a65560);
  color: #fff;
  box-shadow: 0 4px 15px rgba(140, 65, 77, 0.3);
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #7a3642, #954a54);
  color: #fff;
  box-shadow: 0 6px 20px rgba(140, 65, 77, 0.4);
}

/* 收藏按钮 */
.btn-favorite {
  background: #fff;
  border: 2px solid #e5e7eb;
  color: #666;
  flex: 0 0 auto;
  min-width: 120px;
}

.btn-favorite:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.btn-favorite.btn-favorite-success {
  border-color: #10b981;
  color: #10b981;
}

.btn-favorite.btn-favorite-success:hover {
  background: #10b981;
  color: #fff;
}

/* 购物车下拉框数量文本 */
.qty-text {
  font-size: 13px;
  color: #666;
  padding: 4px 8px;
}

/* ========================================
   产品筛选模块样式增强
   ======================================== */

.product-filter-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  display: block;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  padding: 8px 18px;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.filter-tag:hover {
  border-color: #8c414d;
  color: #8c414d;
  text-decoration: none;
}

.filter-tag.active {
  background: linear-gradient(135deg, #8c414d, #a65560);
  border-color: transparent;
  color: #fff;
}

/* 价格筛选输入框 */
.price-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-filter-input {
  width: 100px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

.price-filter-input:focus {
  outline: none;
  border-color: #8c414d;
}

.price-filter-separator {
  color: #999;
}

.price-filter-btn {
  padding: 8px 20px;
  background: #8c414d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-filter-btn:hover {
  background: #a65560;
}

/* 排序和视图工具栏 */
.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sort-dropdown {
  position: relative;
}

.sort-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-dropdown-toggle:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.sort-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  padding: 10px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 100;
  display: none;
}

.sort-dropdown-menu.show {
  display: block;
}

.sort-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-dropdown-item:hover {
  background: #f5f5f5;
  color: #8c414d;
}

.sort-dropdown-item.active {
  color: #8c414d;
  font-weight: 500;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-toggle-btn:hover {
  border-color: #8c414d;
  color: #8c414d;
}

.view-toggle-btn.active {
  background: #8c414d;
  border-color: #8c414d;
  color: #fff;
}

/* 响应式适配 */
@media (max-width: 767.98px) {
  .product-action-buttons {
    flex-direction: column;
  }
  
  .btn-product-action {
    width: 100%;
    min-width: auto;
  }
  
  .product-toolbar {
    flex-direction: column;
    gap: 15px;
  }
  
  .filter-tags {
    gap: 8px;
  }
  
  .filter-tag {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ========================================
   会员系统优化样式
   ======================================== */

/* 账户下拉菜单优化 */
.account-wrapper {
  position: relative;
  display: inline-block;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.account-toggle:hover {
  background: rgba(140, 65, 77, 0.08);
  color: #8c414d;
}

.account-toggle i {
  font-size: 24px;
}

.account-text {
  font-size: 14px;
  font-weight: 500;
}

.account-dropdown {
  position: absolute;
  top: 30px;
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.account-wrapper:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.account-dropdown .dropdown-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, #8c414d 0%, #a65560 100%);
  color: #fff;
  border-radius: 8px 8px 0 0;
  margin-bottom: 8px;
}

.account-dropdown .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-dropdown .user-info i {
  font-size: 32px;
}

.account-dropdown .user-info span {
  font-size: 14px;
  font-weight: 500;
}

.account-dropdown li {
  list-style: none;
}

.account-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.account-dropdown li a:hover {
  background: rgba(140, 65, 77, 0.08);
  color: #8c414d;
  padding-left: 25px;
}

.account-dropdown li a i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #8c414d;
}

.account-dropdown .dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 8px 0;
}

/* 会员中心侧边栏优化 */
.member-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.member-sidebar .sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #8c414d 0%, #a65560 100%);
  color: #fff;
  border-radius: 12px 12px 0 0;
  margin: -20px -20px 20px;
}

.member-sidebar .sidebar-header i {
  font-size: 32px;
}

.member-sidebar .sidebar-header h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.met-sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.met-sidebar-nav li {
  margin-bottom: 2px;
}

.met-sidebar-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.met-sidebar-nav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #8c414d;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.met-sidebar-nav li a i {
  margin-right: 10px;
  font-size: 16px;
  color: #8c414d;
}

.met-sidebar-nav li a:hover {
  background: rgba(140, 65, 77, 0.08);
  color: #8c414d;
  padding-left: 25px;
}

.met-sidebar-nav li a:hover::before {
  transform: scaleY(1);
}

.met-sidebar-nav li.active a {
  background: linear-gradient(90deg, rgba(140, 65, 77, 0.12) 0%, rgba(140, 65, 77, 0.02) 100%);
  color: #8c414d;
  font-weight: 500;
  padding-left: 25px;
}

.met-sidebar-nav li.active a::before {
  transform: scaleY(1);
}

/* 订单追踪优化 */
.shop-order-check .order-state {
  padding: 20px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  margin-bottom: 20px;
}

/* 订单进度条样式 */
.pearls {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 30px 0;
  margin: 0;
  position: relative;
}

.pearls::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
  transform: translateY(-50%);
}

.pearl {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  list-style: none;
}

.pearl-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  font-size: 24px;
  color: #999;
}

.pearl.current .pearl-icon {
  background: #8c414d;
  border-color: #8c414d;
  color: #fff;
  box-shadow: 0 4px 15px rgba(140, 65, 77, 0.3);
}

.pearl.disabled .pearl-icon {
  background: #f5f5f5;
  border-color: #e0e0e0;
  color: #ccc;
}

.pearl-title {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.pearl.current .pearl-title {
  color: #8c414d;
  font-weight: 600;
}

.pearl-title p {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  font-weight: 400;
}

/* 订单商品列表优化 */
.order-goods {
  padding: 20px;
}

.order-goods .table {
  margin-bottom: 0;
}

.order-goods .table thead th {
  background: #fafafa;
  border-bottom: 2px solid #8c414d;
  font-weight: 600;
  color: #333;
  padding: 15px 10px;
}

.order-goods .table tbody td {
  padding: 15px 10px;
  vertical-align: middle;
}

.order-goods .table tbody tr:hover {
  background: rgba(140, 65, 77, 0.03);
}

/* 订单追踪时间线 */
.order-tracking-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
}

.order-tracking-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.tracking-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.tracking-step .step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

.tracking-step.completed .step-icon {
  background: #8c414d;
  border-color: #8c414d;
  color: #fff;
}

.tracking-step.active .step-icon {
  border-color: #8c414d;
  color: #8c414d;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(140, 65, 77, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(140, 65, 77, 0);
  }
}

.tracking-step .step-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.tracking-step.completed .step-label,
.tracking-step.active .step-label {
  color: #8c414d;
}

.tracking-step .step-time {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

/* 响应式优化 */
@media (max-width: 991.98px) {
  .account-text {
    display: none;
  }
  
  .account-dropdown {
    right: -50px;
  }
  
  .account-dropdown::before {
    right: 60px;
  }
}

@media (max-width: 767.98px) {
  .order-tracking-timeline {
    flex-direction: column;
    gap: 20px;
  }
  
  .order-tracking-timeline::before {
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    height: auto;
  }
  
  .tracking-step {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
  }
  
  .tracking-step .step-icon {
    margin: 0;
  }
}
