﻿html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    -webkit-text-size-adjust: 100%;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif!important;
    font-weight: 400;
    background: #f4f6f8;
    font-size: 14px;
    color: #616161;
}
nav{display:flex;}
.site-wrapper-reveal{
    padding: 40px 0;
}
.pagination {margin:0 auto;display: none}
.border-bot{
    border-bottom: 1px solid #ddd;
}

.section-space--ptb_20{
    padding-top: 20px;
    padding-bottom:40px;
}

/* Header Styles */
.header-area {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #666;
    text-decoration: none;
    margin-left: 15px;
}

.top-bar a:hover {
    color: #dc3545fa;
}

/* Main Header */
.main-header {
    /*padding: 20px 0;*/
    background: #fff;
}

.header-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Area */
.logo-area {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    /*height: 50px;*/
    width: auto;
}

.logo-text {
    margin-left: 10px;
    color: #666;
    font-size: 14px;
}

/* Search Area */
.search-area {
    flex: 1;
    max-width: 600px;
}

.search-form {
    width: 100%;
}

.search-input {
    position: relative;
    display: flex;
}

.search-input input {
    width: 100%;
    padding: 10px 120px 10px 15px;
    border: 2px solid #dc3545fa;
    border-radius: 4px;
    font-size: 14px;
    height: 44px;
    box-sizing: border-box;
}

.search-input input:focus {
    outline: none;
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    padding: 0 25px;
    background: #dc3545fa;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    line-height: 44px;
}

.search-button:hover {
    background: #c5081a;
}

.search-tags {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

/* Cart Area */
.cart-area {
    flex: 0 0 auto;
}

.cart-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.cart-link i {
    font-size: 17px;
    margin-right: 8px;
    color: #dc3545fa;
}

.cart-count {
    background: #ff4d4f;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

/* Navigation Area */
.nav-area {
    font-size: 16px;
    background: #dc3545fa;
    padding: 0;
    overflow: visible;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    height: 45px; 
    min-height: 45px;
    overflow: visible;
}

/* Category Button */
.category-btn {
    padding: 0 25px;
    width: 140px;
    height: 100%;
    background: #c5081a;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.category-btn i {
    margin-right: 8px;
}

/* Main Navigation */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
}

.nav-list a:hover {
    background: #c5081a;
    color: #fff!important;
}

/* Submenu */
.has-children .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 100;
}

.has-children i{
    margin-left: 8px;
}

/* 添加图标旋转动画 */
.nav-list a i.fa-angle-down {
    transition: transform 0.3s ease;
}

.nav-list a:hover i.fa-angle-down {
    transform: rotate(180deg);
}
/* .has-children:hover .submenu {
    display: block;
} */

.submenu a {
    color: #333;
    height: 40px;
}

.submenu a:hover {
    background: #f5f5f5;
}

/* Admin Link */
.admin-link {
    margin-left: auto;
}

.admin-link a {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    height: 45px;
    display: flex;
    align-items: center;
}

.admin-link a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-main-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-area {
        width: 100%;
        max-width: none;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
        height: auto;
    }
    
    .category-btn {
        /*width: 100%;*/
        justify-content: center;
        padding: 12px;
    }
    
    .nav-list {
        flex-wrap: wrap;
    }
    
    .nav-list a {
        padding: 12px 15px;
    }
    
    .admin-link {
        /*width: 100%;*/
        text-align: center;
    }
    
    .admin-link a {
        justify-content: center;
    }
    
    .search-input input,
    .search-button {
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .search-tags {
        display: none;
    }
}

/* 商品分类弹出菜单 */
.category-dropdown {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 140px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 200;
    border: 1px solid #e6e6e6;
    border-top: none;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-dropdown-hidden{
    display: none;
}
.category-title {
    background: #dc3545fa;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 0 0 0 0;
}
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    
}
.category-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
.category-item:last-child {
    border-bottom: none;
}
.category-item > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}
.category-item > a:hover {
    background: #f5f7fa;
    color: #dc3545fa;
}
.category-item i {
    font-size: 18px;
    margin-right: 10px;
    color: #dc3545fa;
    width: 20px;
    text-align: center;
}
.category-item .arrow {
    margin-left: auto;
    color: #bbb;
    font-size: 14px;
}
.category-item.has-children > a .arrow {
    display: inline-block;
}
.sub-category-list {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 0 8px 8px 0;
    border: 1px solid #e6e6e6;
    z-index: 210;
}
.category-item.has-children:hover > .sub-category-list {
    display: block;
}
.sub-category-list li a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}
.sub-category-list li a:hover {
    background: #f5f7fa;
    color: #dc3545fa;
}

/* 保证弹出层不被遮挡 */
.nav-area, .nav-wrapper, .container {
    position: relative;
}

/* 商品分类按钮悬浮时显示菜单 */
.category-btn:hover + .category-dropdown,
.category-dropdown:hover {
    display: block;
    transform: scaleY(1);
} 
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.main-wrapper-fixed{
    margin-top: 45px;
}


/*商品布局*/
/* 商品卡片布局优化 */

.section-title h2{
    font-size: 20px;
    margin-bottom: 15px;
}
.single-product-item {
  width: 24%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0 1% 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
  padding: 18px 12px 16px 12px;
  box-sizing: border-box;
}

.single-product-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
.product-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f7;
}
.product-image img {
  width: 100%;
  min-height: 256px;
  object-fit: cover;
  border-radius: 8px;
}
.product-content {
  width: 100%;
  /*text-align: center;*/
  margin-top: 12px;
}
.product-content .title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.4;
  max-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-content .price {
  color: #f00;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .single-product-item {
    width: 32%;
  }
}
@media (max-width: 900px) {
  .single-product-item {
    width: 48%;
  }

}
@media (max-width: 600px) {
  .single-product-item {
    width: 49%;
  }
}

/* 信息列表卡片横向样式 */
.single-article-item {
  width: 49%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px 12px;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}
.single-article-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
.article-image {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #888;
  font-size: 14px;
  margin-bottom: 6px;
}
.article-meta .article-tag {
  background: #dc3545fa;
  color: #fff;
  padding: 2px 12px;
  font-size: 13px;
  border-radius: 10px;
  display: inline-block;
  line-height: 20px;
}
.article-meta .date,
.article-meta .views {
  color: #888;
}
.article-meta .views i{
    margin-right: 6px;
}
.article-meta .date i{
    margin-right: 6px;
}
.article-content .title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-content .desc {
    max-width: 320px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 900px) {
  .single-article-item {
    width: 48%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }
  .article-image {
    width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .article-content {
    width: 100%;
  }
  .article-meta{
      display: none;
      flex-direction: column;
  }
  .new-msg {
      width: 100%!important;
  }
    
}

/* 推荐资讯横向三列纯文字卡片样式 */
.new-msg{
    padding: 15px 15px;
    width: 32.3%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0;
  background: #f7f9fa;
  padding: 18px 0 0 0;
}
.single-article-item1 {
  /*width: 33.33%;*/
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 15px;
  color: #222;
  transition: background 0.2s;
}
.single-article-item1:hover {
  background: #f0f6ff;
}
/* 推荐资讯栏目名头部样式 */
.item-classname {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.single-article-item1 .item-index {
  min-width: 24px;
  height: 24px;
  background: #dc3545fa;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.single-article-item1 .item-title {
  flex: 1;
  color: #222;
  font-size: 15px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .single-article-item1 {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .single-article-item1 {
    width: 100%;
  }}
  
  
  
  
/* 轮播图内容居中叠加样式 */
.hero-item.bg-cover {
  position: relative;
}
.hero-content {
  position: absolute;
  top: 40%;
  left: 67%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 700px;
}
.hero-content h2 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .hero-content h2 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
}



/* 横向轮播信息卡片样式 */
.swiper-slide{
    width:600px;
}

.single-article-new {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s;
  padding: 18px 16px;
  box-sizing: border-box;
}

.single-article-new img{
    height: 240px;
}
.single-article-new h3{
    min-height: 40px;
    font-size: 14px;
    margin-top: 15px;
}
.single-article-new:last-child {
  margin-right: 0;
}
.single-article-new:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
@media (max-width: 900px) {
  .single-article-new {
    width: 220px;
    padding: 12px 8px;
    margin-right: 12px;
  }
}



/* 分类筛选区美化 */
.filter-bar {
  background: #fff;
  border-radius: 6px;
  padding: 24px 32px 8px 32px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-bar .filter {
  /*display: flex;*/
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
  width: 100%;
}
.filter-bar li {
  list-style: none;
  font-weight: 500;
  color: #888;
  margin-right: 18px;
  font-size: 16px;
  padding: 0;
  background: none;
}
.innercat1 {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 6px;
  background: #f4f7fa;
  color: #dc3545fa;
  font-size: 15px;
  margin-right: 8px;
  border: 1px solid #e3e8ee;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.a1.color .innercat1,
.innercat1:hover {
  background: #dc3545fa;
  color: #fff;
  border: 1px solid #dc3545fa;
}
.cat {
  border: none !important;
  background: none;
  margin: 0;
  padding: 0;
}
.cat div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.innercat {
  margin: 0 8px 0 0;
}
.innercat a {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 4px;
  background: #f4f7fa;
  color: #dc3545fa;
  font-size: 14px;
  border: 1px solid #e3e8ee;
  transition: all 0.2s;
  text-decoration: none;
}
.innercat a:hover,
.innercat a.active {
  background: #dc3545fa;
  color: #fff;
  border: 1px solid #dc3545fa;
}
@media (max-width: 900px) {
  .filter-bar {
    padding: 12px 8px 4px 8px;
  }
  .filter-bar li {
    font-size: 14px;
    margin-right: 8px;
  }
  .innercat1 {
    font-size: 13px;
    padding: 3px 10px;
  }
  .innercat a {
    font-size: 12px;
    padding: 2px 8px;
  }
}








/* 产品筛选区样式 */
.product-filter-bar {
  background: #fff;
  border-radius: 6px;
  padding: 24px 32px 8px 32px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-filter {
  width: 100%;
}
.filter-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.filter-label {
  font-weight: 500;
  color: #888;
  margin-right: 12px;
  min-width: 80px;
}
.filter-btn {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 6px;
  background: #f4f7fa;
  color: #333;
  font-size: 15px;
  margin-right: 8px;
  border: 1px solid #e3e8ee;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.filter-btn.active, .filter-btn:hover {
  background: #dc3545fa;
  color: #fff;
  border: 1px solid #dc3545fa;
}
.filter-multi {
  margin-left: auto;
  font-size: 15px;
  color: #888;
}
.filter-multi input[type="checkbox"] {
  margin-right: 6px;
}
@media (max-width: 900px) {
  .product-filter-bar {
    padding: 12px 8px 4px 8px;
  }
  .filter-label {
    min-width: 36px;
    font-size: 13px;
  }
  .filter-btn {
    font-size: 13px;
    padding: 3px 10px;
  }
}







/* 商品详情页左右排版与美化 */
.clean-product .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
.clean-product .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 18px;
  box-sizing: border-box;
}
.gallery {
  position: relative;
}
.gallery-top {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9fa;
}

.gallery-top .swiper-slide{
}
.gallery-top .swiper-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-thumbs {
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  padding-top: 4px;
}
.gallery-thumbs .swiper-slide {
  width: 80px !important;
  height: 60px;
  opacity: 0.6;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  margin-right: 8px;
  transition: border 0.2s, opacity 0.2s;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #dc3545fa;
  background: #eaf4ff;
}
.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.sp-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sp-wrap a {
  display: block;
  margin-bottom: 8px;
}
.sp-wrap img {
  width: 100%;
  max-width: 420px;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  background: #f7f9fa;
}
/* 小图预览 */
.sp-wrap a:not(:first-child) img {
  width: 80px;
  height: 60px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1.5px solid #eee;
  object-fit: cover;
}
.info {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 18px 18px 18px 18px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.info h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #222;
}
.info .price {
  display: flex;
  align-items: center;
  gap: 16px;
}
.now-price {
  color: #ff4d4f;
  font-size: 28px;
  font-weight: bold;
}
.origin-price {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 8px;
}

.now-price-list {
  color: #ff4d4f;
  font-size: 16px;
  font-weight: bold;
}
.origin-price-list {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 8px;
}

.info .price del {
  color: #999;
  font-size: 16px;
  margin-left: 8px;
  text-decoration: line-through;
}
.info .price .nsbar {
  font-size: 16px;
  color: #999;
  font-weight: normal;
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info .badge {
  background: #dc3545fa;
  color: #fff;
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 13px;
  margin-right: 8px;
}
.info .feature {
  margin: 8px 0 6px 0;
}
.info .table {
  width: auto;
  background: #f7f9fa;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 0;
}
.info .table th,
.info .table td {
  border: none;
  padding: 6px 14px;
}
.info .buy-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
#stock {
  font-size: 15px;
  color: #888;
  min-width: 80px;
  margin-bottom: 10px;
}
.number-input {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
}
.number-input input[type="number"] {
  width: 60px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  margin: 0 4px;
  outline: none;
  color: #222;
  background: #fff;
  transition: border 0.2s;
}
.number-input input[type="number"]:focus {
  border: 1.5px solid #dc3545fa;
}
.info .btn_num {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e5e5e5;
  font-size: 20px;
  color: #dc3545fa;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
}
.info .btn_num:hover {
  background: #eaf4ff;
}

.btn_info{
    
    max-width: 130px;
    height: 38px;
    font-size: 16px;
    padding: 0 20px;
    border: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.buy {
  margin-right: 0;
  background: #dc3545fa;
  color: #fff;
  margin-left: 0;
}
.cart {
  /*margin-left: 6px;*/
  background: #fff;
  color: #dc3545fa;
  border: 1.5px solid #dc3545fa;
}
.buy:hover {
  background: #c5081a;
  color: #fff;
}
.cart:hover {
  background: #eaf4ff;
  color: #dc3545fa;
  border: 1.5px solid #dc3545fa;
}
.info .summary {
  margin-top: 18px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .clean-product .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }
  .gallery, .info {
    min-height: auto;
    padding: 8px 4px;
    box-shadow: none;
  }
  .sp-wrap img {
    max-width: 100%;
    height: 180px;
  }
  .info .price {
    font-size: 20px;
    padding: 6px 8px;
  }
  .info .buy {
    min-width: 90px;
    height: 32px;
    font-size: 13px;
    padding: 0 10px;
  }
  .info .buy:last-child {
    min-width: 90px;
    margin-left: 8px;
  }
  .info #stock {
    min-width: 60px;
  }
  .info .number-input {
    margin: 0 8px 0 0;
  }
  .info .buy-bar {
    gap: 8px;
    margin-top: 8px;
  }
  .gallery-top {
    height: 180px;
  }
  .gallery-top .swiper-slide img {
    height: 180px;
  }
  .gallery-thumbs {
    height: 48px;
  }
  .gallery-thumbs .swiper-slide {
    width: 48px !important;
    height: 36px;
  }
  .gallery-thumbs .swiper-slide img {
    height: 36px;
  }
  .info-label {
    width: 38px;
    font-size: 13px;
    margin-right: 8px;
  }
  .info-attr-btn {
    min-width: 48px;
    height: 28px;
    font-size: 13px;
  }
  .now-price {
    font-size: 20px;
  }
  .origin-price {
    font-size: 13px;
  }
  #stock-bar {
    gap: 12px;
    margin: 8px 0 0 0;
  }
  .buy-bar {
    gap: 8px;
  }
}



/* blog-details-post-content整体布局 */
.blog-details-post-content {
  display: flex;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: 18px;
  min-height: 500px;
}
.blog-details-post-content .col-md-3 {
  width: 260px;
  min-width: 220px;
  background: #fafbfc;
  border-right: 1px solid #f0f0f0;
  padding: 18px 8px 18px 18px;
  display: flex;
  flex-direction: column;
}
.related-up {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
  border-bottom: 1px solid #ddd;
}

.related-up h3{
    font-size: 18px;
    margin-bottom: 10px;
}
.related-dowm {
  flex: 1;
  overflow-y: auto;
}
.single-most-populer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 8px 8px 8px 0;
  transition: box-shadow 0.2s;
}
.single-most-populer-item:hover {
  box-shadow: 0 4px 16px rgba(51,153,255,0.08);
}
.most-populer-thum img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.most-populer-content {
  flex: 1;
  min-width: 0;
}
.most-populer-content .title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px 0;
  line-height: 1.3;
  color: #222;
  overflow: hidden;
}
.most-populer-content .product-price {
  color: #ff4d4f;
  font-size: 15px;
  font-weight: bold;
}
.most-populer-content .dec {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* 右侧内容区 */
.blog-details-post-content .col-md-9 {
  flex: 1;
  padding: 18px 24px;
  min-width: 0;
}
.post-details-head {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #dc3545fa;
  margin-bottom: 18px;
  background: #fafbfc;
}
.post-details-head span {
  font-size: 16px;
  color: #222;
  padding: 10px 28px;
  cursor: pointer;
  margin-right: 2px;
}
.post-details-head span.active {
  color: #fff;
  border-bottom: 2px solid #dc3545fa;
  background: #dc3545fa;
}
.post-details-details,
.post-details-comment,
.post-details-other {
  display: none;
  padding: 18px 0 0 0;
}
.post-details-details.active,
.post-details-comment.active,
.post-details-other.active {
  display: block;
}
@media (max-width: 900px) {
  .blog-details-post-content {
    flex-direction: column;
  }
  .blog-details-post-content .col-md-3 {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 8px;
  }
  .blog-details-post-content .col-md-9 {
    padding: 12px 4px;
  }
  .post-details-head span {
    font-size: 14px;
    padding: 8px 10px;
  }
}




/* footer底部整体深色风格 */
.footer-area {
  background: #393939;
  color: #fff;
  padding-top: 0;
  font-size: 15px;
}
.footer-top-area {
  padding: 36px 0 0 0;
}
.footer-menu-widget {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-menu-widget .single-footer-menu {
}
.footer-menu-widget .single-footer-menu:first-child {
  margin-left: 0;
}
.footer-menu-widget .single-footer-menu:last-child {
  margin-right: 0;
}
.footer-widget-title .title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.footer-widget-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget-menu-list li {
  margin-bottom: 10px;
}
.footer-widget-menu-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-widget-menu-list a:hover {
  color: #dc3545fa;
}
/* 联系我们专栏 */
.footer-menu-widget .single-footer-menu:last-child {
  min-width: 220px;
  text-align: left;
  color: #e0e0e0;
}
.footer-menu-widget .single-footer-menu:last-child .footer-widget-title .title {
  margin-bottom: 12px;
  color: #fff;
}
.footer-menu-widget .single-footer-menu:last-child ul {
  padding-left: 0;
}
.footer-menu-widget .single-footer-menu:last-child li {
  margin-bottom: 8px;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}
.footer-menu-widget .single-footer-menu:last-child li strong {
  color: #fff;
}
/* 备案和版权 */
.footer-bottom-area {
  background: #333;
  color: #ccc;
  padding: 18px 0 0 0;
  font-size: 14px;
  border-top: 1px solid #444;
}
.copy-right-center {
  text-align: center;
  margin-bottom: 6px;
}
.copy-right-center a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 4px;
  display: inline-block;
}
.copy-right-center a:hover {
  color: #dc3545fa;
}
@media (max-width: 900px) {
  .footer-menu-widget {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .single-footer-menu {
    min-width: 0;
    margin-bottom: 24px;
  }
}

    /* following-post-content 四个子元素的竖向间距设置为15px */
    
    .following-post-thum img{
        height: 256px;
    }
    .following-post-content > * {
        margin: 15px 5px;
    }
    .following-post-content > *:last-child {
        margin-bottom: 0;
    }
    .following-blog-post-title{
        max-height: 35px;
        overflow: hidden;
    }
    
    /* trending-blog-post-category 下的三个子元素并排显示，左右分别贴两边，中间居中 */
    .product-price {
        margin: 15px 0;
    }
    .trending-blog-post-category {
        display: flex;
        gap: 10px;
        /*justify-content: space-between;*/
        align-items: center;
        width: 100%;
    }
    
    .trending-blog-post-category span {
        background-color: #e1f3ff;
        border-radius: 15px;
        padding: 5px 15px;
    }
    
    .trending-blog-post-category .business {
    background-color: #dc3545fa;
    border-radius: 15px;
    padding: 5px 15px;
    color:#fff;
}
    
    .trending-blog-post-category .category-link {
        flex: 0 0 auto;
    }
    
    .trending-blog-post-category .hits-info {
        /*margin-left: 15px;*/
    }
    
    .trending-blog-post-category .post-meta-right-side {
        flex: 0 0 auto;
        display: flex;
        gap: 5px;
        margin-left: auto;
    }

/* 信息详情页头部信息样式（参照商品卡片风格） */
.article-details-meta-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 32px 24px 32px;
  margin-bottom: 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.article-body-box {
    font-size: 16px;
    color: #222;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 32px 24px 32px;
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}


.article-details-meta-box .post-meta-left-side {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #888;
}

.trending-article-post-category a {
  color: #dc3545fa;
  font-weight: bold;
  font-size: 15px;
}

.following-article-post-author {
  color: #888;
  font-size: 14px;
}

.post-mid-side {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  margin: 16px 0 0 0;
}

.post-date {
  color: #888;
  margin-right: 8px;
}

#read-num {
  color: #ff4d4f;
  font-weight: bold;
}

.post-meta-right-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*.post-meta-right-side a img {*/
/*  width: 22px;*/
/*  height: 22px;*/
/*}*/

.following-article-post-title {
  /*font-size: 16px;*/
  font-weight: bold;
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  color: #222;
}

.post-details-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  padding-bottom: 12px;
}

#show-full-btn {
  margin-left: 12px;
  
}

@media (max-width: 900px) {
  .article-details-meta-box {
    padding: 16px 8px;
    min-height: unset;
  }
  .following-article-post-title {
    font-size: 14px;
  }
}

/* 信息详情页 上一篇/下一篇 按钮并排卡片风格 */
.article-details-prev-next-row {
  display: flex;
  gap: 18px;
  margin: 18px 0 24px 0;
}
.prevpage, .nextpage {
    width: 49%;
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 12px 28px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.2s, color 0.2s;
  border: none;
}
.prevpage:hover, .nextpage:hover {
  color: #fff;
  background: #dc3545fa;
  box-shadow: 0 4px 16px rgba(43,133,228,0.12);
}
@media (max-width: 900px) {
  .article-details-prev-next-row {
    flex-direction: column;
    gap: 10px;
  }
  .prevpage, .nextpage {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

/* 评论输入框样式 */
.single-input textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  resize: vertical;
  font-size: 15px;
  padding: 16px;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  background: #fafbfc;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.single-input textarea:focus {
  border-color: #dc3545fa;
  outline: none;
  background: #fff;
}



/* 评论区动态元素样式 */
.comment-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.comment-author-info > * {
  margin-right: 10px;
}
.comment-author-info > *:last-child {
  margin-right: 0;
}

.comment .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
}
.comment .meta > * {
  margin-right: 8px;
}
.comment .meta > *:last-child {
  margin-right: 0;
}

.comment-author.vcard img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.comment-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-top: 4px;
  margin-bottom: 8px;
}

.comment {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 18px 22px;
  margin-bottom: 18px;
}



/* 相关信息 swiper 卡片式布局 */
.related-post-slider-active .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.related-post-slider-active .swiper-slide {
  flex: 0 0 24%;
  max-width: 23%;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-right: 1.33%;
  padding: 18px 12px 16px 12px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.related-post-slider-active .swiper-slide:last-child {
  margin-right: 0;
}
.related-post-thum img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* following-article-post-meta 横向排版 */
.following-article-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
.following-article-post-meta .post-meta-left-side {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 13px;
}
.following-article-post-meta .post-meta-right-side {
  display: flex;
  align-items: center;
  gap: 8px;
}
/*.following-article-post-meta .post-meta-right-side a img {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*}*/

@media (max-width: 1200px) {
  .related-post-slider-active .swiper-slide {
    flex: 0 0 48%;
    max-width: 48%;
    min-width: 160px;
  }
}
@media (max-width: 700px) {
  .related-post-slider-active .swiper-slide {
    flex: 0 0 98%;
    max-width: 98%;
    min-width: 120px;
  }
}


/* 店铺卡片整体布局 */
.user-follow-top {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43,133,228,0.08);
  margin: 32px auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  border: 1px solid #e6f0fa;
}

/* 店铺信息横向布局 */
.user-top-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
  background: #f8fbff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(43,133,228,0.06);
  padding: 18px 24px 18px 18px;
}

.img-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e6f0fa;
}

.username-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.username-info .title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.btn-area {
  margin-top: 0;
}
.follow {
  background: #dc3545fa;
  color: #fff;
  border-radius: 20px;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(33,201,122,0.08);
  transition: background 0.2s;
}

.followed {
    background: #dc3545fa;
  color: #fff;
  border-radius: 20px;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(33,201,122,0.08);
  transition: background 0.2s;
}
/*.btn_info.cart {*/
/*  display: none;*/
/*}*/
.left-up{
    display: flex;
}
.left-down {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-top: 8px;
  gap: 24px;
}
.autograph-info {
  color: #222;
  font-size: 15px;
  margin-top: 0;
  font-weight: 500;
}
.user-comment {
  background: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  color: #222;
  margin-top: 0;
}
.user-comment h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #888;
}
.user-comment p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 16px 0 0;
  font-size: 15px;
  color: #888;
}
.user-comment span {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #ffb400;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
}
.user-comment .star {
  color: #ffb400;
  font-size: 20px;
  margin-right: 2px;
  font-style: normal;
}

.more {
  text-align: right;
  margin-top: 10px;
}
.more a {
  background: #dc3545fa;
  color: #fff;
  font-size: 15px;
  border-radius: 20px;
  padding: 4px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.more a:hover {
  background: #c5081a;
}

/* 商品卡片区域 */
.user-products {
margin-top: 18px;
}
.user-products ul {
display: flex;
flex-wrap: wrap;
gap: 14px;
padding: 0;
margin: 0;
}
.user-products ul li#prolists {
list-style: none;
background: #f4f8fd;
border-radius: 10px;
box-shadow: 0 1px 4px rgba(43,133,228,0.06);
width: calc(25% - 14px);
min-width: 180px;
max-width: 270px;
padding: 12px 8px 16px 8px;
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
transition: box-shadow 0.2s;
}
.user-products ul li#prolists:hover {
box-shadow: 0 4px 16px rgba(43,133,228,0.15);
border-color: #dc3545fa;
}
.user-products ul li#prolists img {
width: 100%;
min-height: 253px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 8px;
}
.user-products ul li#prolists .name {
min-height: 45px;
font-size: 15px;
color: #222;
margin-top: 4px;
display: block;
font-weight: 500;
text-decoration: none;
transition: color 0.2s;
}
.user-products ul li#prolists .name:hover {
color: #c5081a;
}




/* 登录页面现代化样式 */
.no-login-page.page {
  min-height: 75vh;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-login-page .container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(43,133,228,0.10);
  padding: 40px 32px 32px 32px;
}
.user-content h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #dc3545fa;
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.user-form .form-control1 {
    padding: 0 10px 0 10px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}
.user-form .form-control1 label {
  flex: 0 0 70px;
  color: #888;
  /*font-size: 15px;*/
  font-weight: 500;
}
.user-form .form-control1 select {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid #e6f0fa;
  border-radius: 8px;
  font-size: 15px;
  background: #f8fbff;
  transition: border 0.2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.user-form .form-control1 select:focus {
  border-color: #dc3545fa;
  background: #fff;
}
.user-form .form-control1 input[type="text"],
.user-form .form-control1 input[type="password"],
.user-form .form-control1 input[type="email"] {
  /*max-width: 380px;*/
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e6f0fa;
  border-radius: 8px;
  font-size: 15px;
  background: #f8fbff;
  transition: border 0.2s;
}
.user-form .form-control1 input[type="text"]:focus,
.user-form .form-control1 input[type="password"]:focus,
.user-form .form-control1 input[type="email"]:focus {
  border-color: #dc3545fa;
  background: #fff;
}
.user-form .form-control1 input[type="checkbox"] {
    border: 1px solid #ddd;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.user-form .form-control1 input[type="submit"],
.user-form .form-control1 input[type="button"] {
  width: 100%;
  background: #dc3545fa;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(43,133,228,0.08);
  transition: background 0.2s;
}
.user-form .form-control1 input[type="submit"]:hover,
.user-form .form-control1 input[type="button"]:hover {
  background: #c5081a;
}
.user-form .form-control1 a {
  color: #dc3545fa;
  font-size: 14px;
  margin-left: 8px;
  text-decoration: none;
}
.user-form .form-control1 a:hover {
  color: #c5081a;
}
.user-form .form-control1 img {
  height: 38px;
  border-radius: 6px;
  margin-left: 8px;
  border: 1px solid #e6f0fa;
}
.user-form .form-control1:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .no-login-page .container {
    padding: 24px 8px 16px 8px;
    max-width: 98vw;
  }
  .user-content h2 {
    font-size: 20px;
  }
}


/*信息栏目左侧样式*/
/* 侧边菜单展开/收起样式 */
.side-menu {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(43,133,228,0.06);
}
.side-menu > li {
  cursor: pointer;
  position: relative;
  padding: 10px 0 10px 16px;
  background: none;
  border-radius: 0;
  margin-bottom: 0;
  color: #222;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #e3e8ee;
  transition: background 0.2s, color 0.2s;
}
.side-menu > li:last-child {
  border-bottom: none;
}
.side-menu > li:hover {
  background: #f7fafd;
  color: #2176d2;
}
.side-menu ul {
  /*display: none;*/
  list-style: none;
  /*padding-left: 18px;*/
  margin: 6px 0 0 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.side-menu > li.active > ul {
  display: block;
}
.side-menu ul li {
  background: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 6px 0 6px 8px;
  color: #444;
  font-weight: 400;
  font-size: 16px;
}
.side-menu ul li a {
  color: #444;
  text-decoration: none;
}
.side-menu ul li a:hover {
  color: #2176d2;
  text-decoration: underline;
}


/* 圆形头像 */
.avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e3e8ee;
  box-shadow: 0 2px 8px rgba(43,133,228,0.08);
}

.following-blog-post-bottom a{
    line-height: 40px;
    width: 100%;
    text-align: center;
}

.blog-details-uname {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 800;
}

/* 优化评分区样式 */
.blog-details-grades {
    width: 100%;
  background: #f7fafd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(43,133,228,0.04);
  padding: 16px 10px 10px 10px;
  margin-top: 18px;
  font-size: 15px;
  color: #444;
}
.blog-details-grades p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 15px;
}
.blog-details-grades span {
  color: #FFD600;
  font-size: 18px;
  margin-right: 2px;
}



/*面包屑样式*/
.breadcrumb-area {
	background-color: #fafafa;
	padding: 80px 0
}

.breadcrumb-list {
	padding: 10px 20px;
	background-color: #ffebdf;
	display: inline-block;
	border-radius: 15px
}

.breadcrumb-list li {
	display: inline-block
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 1.5rem;
	position: relative
}

.breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: .1rem;
	color: #222;
	content: '';
	height: 6px;
	width: 6px;
	background: #222;
	border-radius: 5000px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	left: 8px
}


.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #dc3545fa;
    border-color: #dc3545fa;
}

.page-link {
    position: relative;
    display: block;
    color: #dc3545fa;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

