/* ============================================================
   MAYI54 列表页/详情页 Printmax 风格覆盖样式
   适配蚂蚁 CMS 动态内容
   ============================================================ */

/* === Breadcrumb 面包屑 === */
.breadcumb-area.style_two {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
  min-height: auto;
}

.breadcumb-area .breadcumb-content h4 {
  color: #3dc595;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.breadcumb-area .breadcumb-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcumb-area .breadcumb-content ul li {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

.breadcumb-area .breadcumb-content ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcumb-area .breadcumb-content ul li a:hover {
  color: #3dc595;
}

.breadcumb-area .breadcumb-content ul li:last-child {
  color: #fff;
}

/* === Section Title 区域标题 === */
.blog_area .section_title {
  margin-bottom: 40px;
}

.blog_area .section_title h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #3dc595;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.blog_area .section_title h1 {
  font-size: 36px;
  line-height: 46px;
  color: #1a1a1a;
  font-weight: 700;
}

/* === 筛选栏 === */
.list-filter-bar .list-filter-inner {
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  font-size: 14px;
  color: #666;
}

.list-filter-bar .list-filter-inner a {
  color: #555;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.3s;
  display: inline-block;
  margin: 2px;
}

.list-filter-bar .list-filter-inner a:hover,
.list-filter-bar .list-filter-inner a.active {
  background: #3dc595;
  color: #fff;
}

/* === 列表卡片 (single-blog-box 覆盖) === */
.mayi-list-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

.mayi-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  border-color: #3dc595;
}

.mayi-list-card .single-blog-thumb {
  position: relative;
  overflow: hidden;
}

.mayi-list-card .single-blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mayi-list-card:hover .single-blog-thumb img {
  transform: scale(1.05);
}

.mayi-list-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.mayi-list-badges .badge-img {
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.mayi-list-badges .badge-tuijian {
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
}

.mayi-list-badges .badge-certify {
  background: #3dc595;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
}

.mayi-list-card .blog-content {
  padding: 20px;
}

.mayi-list-card .blog-title h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mayi-list-card .blog-title h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.mayi-list-card .blog-title h3 a:hover {
  color: #3dc595;
}

.mayi-list-extra {
  margin-bottom: 12px;
}

.mayi-list-extra .mayi-extra-item {
  display: inline-block;
  font-size: 12px;
  color: #888;
  margin-right: 12px;
  margin-bottom: 4px;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

.mayi-list-extra .mayi-extra-item i {
  color: #3dc595;
  margin-right: 3px;
}

.mayi-list-card .meta-blog p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.mayi-list-card .meta-blog p i {
  color: #3dc595;
  margin-right: 4px;
}

/* === 分页 === */
.pagination2 {
  display: inline-block;
}

.pagination2 a, .pagination2 span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  background: #fff;
}

.pagination2 a:hover,
.pagination2 .current {
  background: #3dc595;
  color: #fff;
  border-color: #3dc595;
}

/* === 侧边栏搜索 (list_select) === */
.sidbar .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.sidbar .search-container input {
  width: 100%;
  padding: 10px 45px 10px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.3s;
  background: #fff;
}

.sidbar .search-container input:focus {
  outline: none;
  border-color: #3dc595;
}

.sidbar .search-container button {
  position: absolute;
  right: 8px;
  background: #3dc595;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.sidbar .search-container button:hover {
  background: #2ea87e;
}

.sidbar .mb-48 .curr {
  border: 1px solid #3dc595 !important;
  background: #edf5f6;
}

/* === 详情页 Blog Details === */
.blog-detials-area {
  padding: 80px 0 60px;
}

/* Meta 信息 */
.blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-details-meta span {
  font-size: 14px;
  color: #000;
}

.blog-details-meta span i {
  color: #3dc595;
  margin-right: 5px;
}

.blog-details-meta span img {
  vertical-align: middle;
}

/* 标题 */
.blog-details-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 38px;
  margin-bottom: 16px;
}

/* 操作按钮 */
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #555;
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-top { color: #f39c12; border-color: #f39c12; }
.action-top:hover { background: #f39c12; color: #fff; }
.action-fav { color: #e74c3c; border-color: #e74c3c; }
.action-fav:hover { background: #e74c3c; color: #fff; }
.action-del { color: #888; border-color: #ddd; }
.action-del:hover { background: #333; color: #fff; border-color: #333; }
.action-edit { color: #3498db; border-color: #3498db; }
.action-edit:hover { background: #3498db; color: #fff; }
.action-report { color: #95a5a6; border-color: #bdc3c7; }
.action-report:hover { background: #95a5a6; color: #fff; }

/* 属性行 */
.info-attr-row {
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
  font-size: 14px;
  line-height: 28px;
}

.info-attr-label {
  color: #888;
  font-size: 13px;
  display: inline-block;
  min-width: 70px;
}

.info-attr-value {
  color: #333;
  font-weight: 500;
}

.info-attr-value i {
  color: #3dc595;
  margin-right: 3px;
}

/* 联系方式 */
.info-contact-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #edf2f7;
}

.contact-coin-locked {
  text-align: center;
  padding: 20px;
}

.contact-coin-locked i {
  font-size: 36px;
  color: #f39c12;
  margin-bottom: 10px;
}

.contact-coin-locked p {
  color: #666;
  margin-bottom: 16px;
}

.printmax_btn_header {
  display: inline-block;
  padding: 10px 24px;
  background: #3dc595;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.printmax_btn_header:hover {
  background: #2ea87e;
  color: #fff;
  transform: translateY(-2px);
}

.contact-partial {
  padding: 10px 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-item-label {
  color: #888;
  font-size: 14px;
  min-width: 80px;
}

.contact-item-label i {
  color: #3dc595;
  margin-right: 4px;
}

.contact-item-value {
  color: #333;
  font-size: 14px;
}

.btn-contact-detail {
  display: inline-block;
  padding: 6px 16px;
  background: #3dc595;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  margin-left: 10px;
}

.btn-contact-detail:hover {
  background: #2ea87e;
  color: #fff !important;
}

.btn-contact-qq {
  display: inline-block;
  padding: 6px 16px;
  background: #12b7f5;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  margin-left: 10px;
}

.btn-contact-qq:hover {
  background: #0e9bd6;
  color: #fff !important;
}

.contact-item-tel .contact-item-value {
  font-size: 20px;
  color: #e74c3c;
  font-weight: 700;
}

.contact-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff8e1;
  border-radius: 8px;
  border-left: 4px solid #f39c12;
  font-size: 13px;
  color: #856404;
  line-height: 22px;
}

.contact-notice i {
  color: #f39c12;
  margin-right: 5px;
}

.contact-notice strong {
  color: #e65100;
}

.contact-expired {
  text-align: center;
  padding: 30px;
  color: #999;
  font-size: 15px;
}

.contact-expired i {
  font-size: 32px;
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}

/* 正文 */
.info-content-body {
  font-size: 15px;
  line-height: 28px;
  color: #444;
}

.info-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.info-content-body p {
  margin-bottom: 16px;
}

/* 图片画廊 */
.info-gallery-item img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.info-gallery-item img:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* 底部分享 */
.blog-details-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}

.blog-details-social a:hover {
  background: #3dc595;
  color: #fff;
  transform: translateY(-3px);
}

.info-bottom-reminder i {
  color: #3dc595;
  margin-right: 5px;
}

/* === 详情页侧边栏 widget === */
.widget-categories-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.categories-title h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #3dc595;
  display: inline-block;
}

.categories-title h4 i {
  color: #3dc595;
  margin-right: 6px;
}

.widget-categories-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-categories-menu ul li {
  margin-bottom: 4px;
}

.widget-categories-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.widget-categories-menu ul li a:hover {
  background: #edf5f6;
  color: #3dc595;
  padding-left: 20px;
}

.widget-categories-menu ul li a span i {
  font-size: 12px;
  transition: transform 0.3s;
}

.widget-categories-menu ul li a:hover span i {
  transform: translateX(4px);
}

/* 侧边栏"可能感兴趣" */
.sidber-widget-recent-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.sidber-widget-recent-item:last-child {
  border-bottom: none;
}

.sidber-widget-recent-item .recent-widget-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.sidber-widget-recent-item .recent-widget-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidber-widget-recent-item .recent-widget-content span {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.sidber-widget-recent-item .recent-widget-content span i {
  color: #3dc595;
  margin-right: 3px;
}

.sidber-widget-recent-item .recent-widget-content a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.sidber-widget-recent-item .recent-widget-content a:hover {
  color: #3dc595;
}

/* === 广告位 === */
.infoaddiv {
  text-align: center;
}

.infoaddiv .infoad {
  margin-bottom: 10px;
}

/* === 响应式 === */
@media (max-width: 991px) {
  .blog-detials-area {
    padding: 40px 0;
  }

  .blog_area.style_three {
    padding: 40px 0 30px;
  }

  .blog-details-content h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .info-main-block {
    flex-direction: column !important;
  }

  .info-main-img {
    flex: 0 0 auto !important;
    max-width: 100% !important;
  }

  .blog-details-meta {
    gap: 10px;
  }

  .blog-details-meta span {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .breadcumb-area.style_two {
    padding: 40px 0;
  }

  .blog_area .section_title h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .mayi-list-card .single-blog-thumb img {
    height: 180px;
  }

  .blog-details-actions {
    justify-content: center;
  }

  .btn-action {
    padding: 7px 12px;
    font-size: 12px;
  }

  .info-contact-box {
    padding: 16px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item-tel .contact-item-value {
    font-size: 16px;
  }
}
