/* ============================================
   睿科仪表 - 公共样式
   ============================================ */

:root {
  /*--primary: #1890ff;*/
  --primary: #003a8c;
  --primary-dark: #096dd9;
  --primary-light: #e6f7ff;
  --accent: #fa8c16;
  --accent-hover: #d4780f;
  --text: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #001529;
  --border: #e8e8e8;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --header-height: 70px;
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary);
}

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

ul, ol {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header .en {
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  display: block;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

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

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .section-header p {
    font-size: 14px;
  }
}

/* ========== 页面头部 ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}
.page-header .en {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.9;
}
.page-header h1 {
    font-size: 32px;
    margin: 10px 0;
}
.page-header p {
    font-size: 16px;
    opacity: 0.85;
}

/* ========== 产品列表页 ========== */
.products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}
.product-categories {
    display: flex;
    
    justify-content: center;
    
    gap: 12px;
    padding: 20px 0 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}
.cat-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    background: var(--bg);
    color: var(--text);
    transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.product-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.product-item .product-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    
    align-items: center;
    justify-content: center;
    background: #fff;
}
.product-item .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-item h3 {
    font-size: 18px;
    margin: 12px 0;
    color: var(--text);
}
.product-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.product-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

/* ========== 新闻列表页 ========== */
.news-list {
    display: flex;
    
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}
.news-item {
    display: flex;
    
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.news-item:hover {
    box-shadow: var(--shadow-hover);
}
.news-item .news-thumb {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
    background: #fff;
}
.news-item .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.news-item .news-content h3 {
    font-size: 18px;
    margin: 8px 0;
}
.news-item .news-content h3 a {
    color: var(--text);
    text-decoration: none;
}
.news-item .news-content h3 a:hover {
    color: var(--primary);
}
.news-item .news-date {
    font-size: 13px;
    color: var(--text-secondary);
}
.news-item .news-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 8px 0;
}
.news-item .news-content a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

/* ========== 联系我们页 ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}
.contact-info h2,
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text);
}
.contact-item {
    display: flex;
    
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item .contact-icon {
    font-size: 24px;
    width: 48px;
    height: 90px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--text);
}
.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== 关于页 ========== */
.about-detail {
    padding: 40px 0;
}
.about-detail h2 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: var(--text);
}
.about-detail h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--text);
}
.about-detail p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== 时间线 ========== */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 30px;
}
.timeline-year {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}
.timeline-content h4 {
    font-size: 16px;
    margin: 0 0 6px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ========== 企业文化 ========== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.culture-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}
.culture-card h4 {
    color: var(--primary);
    margin: 0 0 10px;
}
.culture-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .contact-grid {
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-categories {
        gap: 8px;
    }
    .cat-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
        grid-template-columns: 1fr;
    }
    .culture-grid {
        grid-template-columns: 1fr;
    }
    .news-item {
        flex-direction: column;
    }
    .news-item .news-thumb {
        width: 100%;
        height: 160px;
    }
}

/* ========== 招贤纳士页 ========== */
.recruit-section {
    text-align: center !important;
}
.recruit-section .about-text {
    max-width: 800px;
    margin: 0 auto !important;
    text-align: center !important;
}
.recruit-section .about-text h2 {
    text-align: center !important;
}
.recruit-section .about-text p {
    text-align: center !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.recruit-section .culture-grid {
    max-width: 800px;
    margin: 30px auto 0 !important;
}

/* ========== 招贤纳士页覆盖 about-section ========== */
.recruit-section .about-section {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

/* ========== 产品详情页 ========== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.product-detail-image {
    min-width: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    padding: 6px;
}
.product-detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-detail-info h2 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 16px;
}
.product-detail-content {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 20px 0;
    font-size: 15px;
}
.product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}
.product-detail-info .btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

.product-detail-nav {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    display: flex;
    
    justify-content: space-between;
    
    gap: 16px;
}
.product-detail-nav p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}
.product-detail-nav a {
    color: var(--primary);
    text-decoration: none;
}
.product-detail-nav a:hover {
    text-decoration: underline;
}

/* ========== 面包屑 ========== */
.breadcrumb-bar {
    background: #f8f9fa;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.breadcrumb-bar a {
    color: var(--text-secondary);
}
.breadcrumb-bar a:hover {
    color: var(--primary);
}

/* ========== 产品详情（新版） ========== */
.product-detail-section {
    padding-bottom: 40px;
}
/* ========== 产品图库轮播 ========== */
.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: var(--radius);
}
.gallery-track {
    display: flex;
    
    transition: transform 0.4s ease;
    height: 100%;
}
.gallery-slide {
    min-width: 100%;
    display: flex;
    
    align-items: center;
    justify-content: center;
    padding: 24px;
    height: 100%;
}
.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gallery-btn {
    position: absolute;
    top: 0;
    
    width: 36px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border: 0;
    border-radius: 4px;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    line-height: 44px;
    text-align: center;
    z-index: 2;
}
.gallery-thumbs-wrap {
    position: relative;
    margin-top: 16px;
    width: 100%;
}
.gallery-btn {
    position: absolute;
    top: 0;
    width: 40px;
    height: 90px;
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-btn:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.9);
}
.gallery-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.gallery-btn.prev {
    left: 0;
}
.gallery-btn.next {
    right: 0;
}
.gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 0;
    justify-content: center;
    overflow: hidden;
    scroll-behavior: smooth;
}
.thumb-item {
    width: 120px;
    height: 90px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    background: #fafafa;
}
.thumb-item:hover {
    border-color: var(--primary-light);
}
.thumb-item.active {
    border-color: var(--primary);
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.product-detail-info h2 {
    font-size: 26px;
    margin-bottom: 8px;
}
.product-detail-subtitle {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.product-detail-brief {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.product-params-list {
    margin-bottom: 24px;
}
.param-item {
    display: flex;
    
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}
.param-item:last-child {
    border-bottom: none;
}
.param-label {
    width: 80px;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.param-value {
    color: var(--text);
    font-weight: 500;
}
.product-detail-actions {
    display: flex;
    
    gap: 12px;
    
}
.product-detail-actions .btn {
    padding: 12px 28px;
    border-radius: 4px;
}
.product-detail-actions .btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}
.product-detail-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}
.product-detail-actions .btn-accent {
    border: 2px solid var(--accent);
}

/* ========== 产品详情 body（选项卡+参数表） ========== */
.product-detail-body {
    margin-top: 50px;
}
.detail-tabs {
    display: flex;
    
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
}
.tab-item {
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    user-select: none;
}
.tab-item:hover {
    color: var(--primary);
}
.tab-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}
.tab-content {
    line-height: 2;
    font-size: 15px;
    color: var(--text-secondary);
}
.tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 16px 0;
}
.param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.param-table tr:nth-child(even) {
    background: var(--bg-light);
}
.param-table td {
    padding: 14px 20px;
    border: 0;
}
.param-table .param-name {
    width: 160px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
}
.param-table tr:nth-child(even) .param-name {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .detail-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
    .tab-item {
        padding: 12px 18px;
        font-size: 14px;
    }
    .param-table .param-name {
        width: 100px;
    }
    .product-detail-actions {
        flex-direction: column;
    }
    .product-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-detail-info h2 {
        font-size: 20px;
    }
}

/* ========== 案例展示页 ========== */
.cases-list {
    padding: 60px 0;
}
.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.case-item:hover {
    box-shadow: var(--shadow-hover);
}
.case-item:nth-child(even) {
    direction: rtl;
}
.case-item:nth-child(even) > * {
    direction: ltr;
}
.case-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    
    align-items: center;
    justify-content: center;
}
.case-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.case-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.case-info h3 a {
    color: var(--text);
    text-decoration: none;
}
.case-info h3 a:hover {
    color: var(--primary);
}
.case-info .case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 16px;
}
.case-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.case-details {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}
.case-details li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
}
.case-details li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .cases-list {
        padding: 30px 0;
    }
    .case-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px;
    }
    .case-item:nth-child(even) {
        direction: ltr;
    }
    .case-info h3 {
        font-size: 18px;
    }
}

/* ========== 首页产品中心 ========== */
.product-category {
    margin-bottom: 40px;
}
.product-category:last-child {
    margin-bottom: 0;
}
.category-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}
.category-title a {
    color: var(--text);
    text-decoration: none;
}
.category-title a:hover {
    color: var(--primary);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.product-image {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}
.product-card h4 a {
    color: var(--text);
    text-decoration: none;
}
.product-card h4 a:hover {
    color: var(--primary);
}
.product-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-card {
        padding: 12px;
    }
    .product-card h4 {
        font-size: 14px;
    }
}

/* ========== 企业荣誉 ========== */
.honor-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}
.honor-section h2 {
    font-size: 30px;
    color: var(--text);
    margin-bottom: 40px;
    position: relative;
}
.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.honor-card {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    border: 1px solid #f0f0f0;
}
.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--primary-light);
}
.honor-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fafafa;
    position: relative;
}
.honor-card-img::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    pointer-events: none;
    transition: border-color 0.35s ease;
}
.honor-card:hover .honor-card-img::after {
    border-color: var(--primary);
}
.honor-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.honor-card:hover .honor-card-img img {
    transform: scale(1.05);
}
.honor-card-body {
    padding: 16px 18px 18px;
    text-align: center;
}
.honor-card-body h4 {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}
.honor-card:hover .honor-card-body h4 {
    color: var(--primary);
}

/* ========== 荣誉详情 ========== */
.honor-detail {
    padding: 60px 0;
}
.honor-detail-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.honor-detail-image {
    text-align: center;
    margin-bottom: 40px;
}
.honor-detail-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.honor-detail-info h2 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
}
.honor-detail-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
    padding: 20px 0;
}
.honor-detail-nav {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.honor-detail-nav p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 2;
}
.honor-detail-nav a {
    color: var(--primary);
}
.honor-detail-back {
    text-align: center;
}

@media (max-width: 768px) {
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .honor-card-img {
        padding: 16px;
    }
    .honor-card-body {
        padding: 12px 12px 16px;
    }
    .honor-detail {
        padding: 40px 0;
    }
    .honor-detail-image img {
        max-height: 300px;
    }
}
}
