/* ============================================
   Cigarette1 主题 - 内页样式
   ============================================ */
:root {
  --primary-color: #0A2E5B;
  --primary-dark: #082347;
  --primary-light: #1E63B0;
  --secondary-color: #1A1A2E;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-light: #F4F7FA;
  --bg-white: #FFFFFF;
  --border-color: rgba(10, 46, 91, 0.15);
  --shadow-light: rgba(10, 46, 91, 0.08);
  --shadow-medium: rgba(10, 46, 91, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #0A2E5B 0%, #1E63B0 50%, #0A2E5B 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 46, 91, 0.9) 0%, rgba(30, 99, 176, 0.8) 100%);
  
  --font-primary: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
  --container-padding: 0 20px;
  --container-max-width: 1200px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-weight: 400;
  overflow-x: hidden;
}

.container-c724c3 {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-53ab21 {
  padding: var(--section-padding);
}

.section-alt-78aaed {
  background-color: var(--bg-light);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}




/* 主内容区域 */
.main-content-2f24c9 {
    min-height: 60vh;
    padding: 40px 0;
    background: #f8f9fa;
}

/* 面包屑导航 */
.breadcrumb-3e1eb7 {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-3e1eb7 a {
    color: #0A2E5B;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-3e1eb7 a:hover {
    color: #1E63B0;
}

.breadcrumb-item-a1b051 + .breadcrumb-item-a1b051::before {
    content: "›";
    padding: 0 8px;
    color: #999;
}

.breadcrumb-item-a1b051.active {
    color: #666;
}

/* 页面标题 */
.page-title-81d173 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0A2E5B;
}

/* 卡片样式 */
.card-f00e80 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-f00e80:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-header-774644 {
    background: linear-gradient(135deg, #0A2E5B 0%, #1E63B0 100%);
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 18px;
}

.card-body-72448e {
    padding: 20px;
}

.card-footer-747bc6 {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

/* 按钮样式 */
.btn-fdea2e {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-c20ef7 {
    background: linear-gradient(135deg, #0A2E5B 0%, #1E63B0 100%);
    color: #fff;
}

.btn-primary-c20ef7:hover {
    background: linear-gradient(135deg, #1E63B0 0%, #0A2E5B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 46, 91, 0.3);
}

.btn-outline-d1d8e7 {
    background: transparent;
    border: 2px solid #0A2E5B;
    color: #0A2E5B;
}

.btn-outline-d1d8e7:hover {
    background: #0A2E5B;
    color: #fff;
}

.btn-secondary-cd77b8 {
    background: #6c757d;
    color: #fff;
}

.btn-secondary-cd77b8:hover {
    background: #5a6268;
}

/* 网格布局 */
.grid-bec3a8 {
    display: grid;
    gap: 20px;
}

.grid-2-8a9d9e {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-d0ef03 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-ae5d57 {
    grid-template-columns: repeat(4, 1fr);
}

/* 列表样式 */
.list-group-9f0788 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-group-item-4a2d6b {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.list-group-item-4a2d6b:last-child {
    border-bottom: none;
}

.list-group-item-4a2d6b:hover {
    background: #f8f9fa;
}

/* 分页样式 */
.pagination-2dfc76 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.pagination-2dfc76 a,
.pagination-2dfc76 span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.pagination-2dfc76 a:hover {
    background: #0A2E5B;
    color: #fff;
    border-color: #0A2E5B;
}

.pagination-2dfc76 .active {
    background: #0A2E5B;
    color: #fff;
    border-color: #0A2E5B;
}

.pagination-2dfc76 .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 表格样式 */
.table-3deb96 {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.table-3deb96 th,
.table-3deb96 td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.table-3deb96 th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table-3deb96 tr:hover {
    background: #f8f9fa;
}

/* 图片样式 */
.img-fluid-825e0c {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-rounded-480f9b {
    border-radius: 12px;
}

/* 文本样式 */
.text-center-146bc1 {
    text-align: center;
}

.text-muted-a90262 {
    color: #6c757d;
}

.text-primary-8246e5 {
    color: #0A2E5B;
}

/* 间距工具类 */
.mt-1-554754 { margin-top: 10px; }
.mt-2-2aa299 { margin-top: 20px; }
.mt-3-d51db7 { margin-top: 30px; }
.mt-4-79b13e { margin-top: 40px; }

.mb-1-a28466 { margin-bottom: 10px; }
.mb-2-3143be { margin-bottom: 20px; }
.mb-3-c70b55 { margin-bottom: 30px; }
.mb-4-27c7e8 { margin-bottom: 40px; }

.pt-1-d8c5fd { padding-top: 10px; }
.pt-2-c8ff86 { padding-top: 20px; }
.pt-3-eb982c { padding-top: 30px; }
.pt-4-e201e7 { padding-top: 40px; }

.pb-1-724e18 { padding-bottom: 10px; }
.pb-2-70ddd5 { padding-bottom: 20px; }
.pb-3-728b07 { padding-bottom: 30px; }
.pb-4-7f86a6 { padding-bottom: 40px; }

/* ===== Header & Navigation ===== */
.header-ff54ee {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-ff54ee.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.nav-wrapper-7d0358 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-1b5aa8 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-1b5aa8 i {
  font-size: 28px;
}

.nav-menu-8af25a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-10f576 {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition);
}

.nav-link-10f576:hover,
.nav-link-10f576.active {
  color: var(--primary-color);
}

.nav-link-10f576::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link-10f576:hover::after,
.nav-link-10f576.active::after {
  width: 20px;
}

.mobile-toggle-15e13f {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
}

/* ===== Footer ===== */
.footer-3c2548 {
  background: var(--secondary-color);
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top-9589c4 {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-7f38bd {
  max-width: 400px;
}

.footer-logo-55cd06 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.footer-logo-55cd06 i {
  font-size: 28px;
}

.footer-desc-102a35 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social-25494f {
  display: flex;
  gap: 15px;
}

.social-link-6156aa {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 18px;
  transition: var(--transition);
}

.social-link-6156aa:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-links-830fc2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-33f6ff h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-column-33f6ff ul {
  list-style: none;
  padding: 0;
}

.footer-column-33f6ff li {
  margin-bottom: 12px;
}

.footer-column-33f6ff a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-column-33f6ff a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-column-33f6ff i {
  margin-right: 8px;
  color: var(--primary-light);
}

.footer-bottom-6f652e {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-6f652e p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.footer-bottom-6f652e a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-bottom-6f652e a:hover {
  color: var(--primary-light);
}

/* ===== Back to Top Button ===== */
.back-to-top-c02d47 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: var(--bg-white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10, 46, 91, 0.25);
  z-index: 999;
}

.back-to-top-c02d47.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-c02d47:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(10, 46, 91, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .nav-menu-8af25a {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-menu-8af25a.active {
    right: 0;
  }
  
  .nav-link-10f576 {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-link-10f576::after {
    display: none;
  }
  
  .mobile-toggle-15e13f {
    display: block;
    z-index: 1001;
  }
  
  .footer-top-9589c4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-830fc2 {
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .container-c724c3 {
    padding: 0 15px;
  }
  
  .logo-1b5aa8 {
    font-size: 20px;
  }
  
  .logo-1b5aa8 i {
    font-size: 24px;
  }
  
  
  .back-to-top-c02d47 {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}


/* 响应式 */
@media (max-width: 992px) {
    .grid-4-ae5d57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2-8a9d9e,
    .grid-3-d0ef03,
    .grid-4-ae5d57 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title-81d173 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .grid-2-8a9d9e,
    .grid-3-d0ef03,
    .grid-4-ae5d57 {
        grid-template-columns: 1fr;
    }
    
    .container-c724c3 {
        padding: 0 10px;
    }
}


/* 标签页样式 */
.tab-btn-6cbdda {
    transition: all 0.3s;
}

.tab-btn-6cbdda:hover {
    color: #0A2E5B !important;
}

.tab-content-panel-fa5280 {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 香烟详情页响应式 */
@media (max-width: 768px) {
    .card-body-72448e > div[style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .card-body-72448e > div > div > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================
   评分显示样式 (Rating Display)
   ============================================ */

.rating-display-34f9a5 {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

.rating-display-34f9a5 i {
    font-size: 14px;
}

/* 小尺寸评分显示 */
.rating-display-sm-a820ad {
    font-size: 12px;
}

.rating-display-sm-a820ad i {
    font-size: 12px;
}

/* 大尺寸评分显示 */
.rating-display-lg-9d836b {
    font-size: 18px;
}

.rating-display-lg-9d836b i {
    font-size: 18px;
}
