﻿@charset "utf-8";
/* ==================================================
   File Name: theme.css
   Description: 整合后的主样式文件
   Author: Dongguan Xiangxun Culture Communication Co., Ltd.
   Copyright: Copyright © 2026 Kynam.com.cn All Rights Reserved.
================================================== */

/* ==================== 产品详情页样式 (product.html) ==================== */
.pc-layout {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px auto 0 auto;
  max-width: 1200px;
}

.main-img-container {
  width: 100%;
  height: 600px;
  background: #f8f8f8;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.main-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: none;
}

.main-img.active {
  display: block;
  opacity: 1;
  z-index: 10;
}

.pc-subtitle {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

.product-title {
  font-size: 24px;
  color: #656565;
  font-family: FuturaLTHeavy;
  line-height: 1.2;
  margin-bottom: 15px;
}

.thumb-wrapper {
  margin-top: 30px;
}

.thumb-title {
  font-size: 20px;
  color: #043906;
  font-family: DINProMedium;
  margin-bottom: 15px;
  padding-left: 8px;
  border-left: 3px double #ff6700;
}

.thumb-title .label {
  font-weight: bold;
  color: #ff6600;
}

.thumb-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
}

.thumb-item {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  opacity: 0.7;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.thumb-item:hover {
  opacity: 1;
  border-color: #999;
  transform: translateY(-2px);
}

.thumb-item.active {
  opacity: 1;
  border: 2px solid #ff6700;
}

.mobile-layout {
  display: none;
}

.txt2 {
  font-size: 20px;
  color: #FF5722;
  margin: 25px 0 15px 0;
  position: relative;
  padding-left: 28px;
  line-height: 24px;
  font-weight: bold;
}

.txt2::before {
  content: "🏷️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.link {
  display: inline-block;
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, #71bf44 0%, #5da635 100%);
  color: #fff;
  text-align: center;
  line-height: 54px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(113, 191, 68, 0.25);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  margin: 20px 0 25px 0;
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
}

.link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(113, 191, 68, 0.4);
  background: linear-gradient(135deg, #5da635 0%, #71bf44 100%);
  color: #77ff29;
}

.link:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(113, 191, 68, 0.3);
}

.link::after {
  content: "→";
  margin-left: 8px;
  font-size: 22px;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 54px;
  vertical-align: top;
}

.link:hover::after {
  transform: translateX(8px);
}

.email-info {
  font-size: 18px;
  color: #71bf44;
  padding-left: 35px;
  margin-top: 0px;
  line-height: 28px;
  font-weight: 500;
  word-break: break-all;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.email-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 18px;
  background: #71bf44;
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(113, 191, 68, 0.3);
}

.email-info::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 12px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  opacity: 0.9;
}

.email-info:hover {
  color: #5da635;
  transform: translateX(3px);
}

.email-info:hover::before {
  background: #5da635;
  box-shadow: 0 5px 12px rgba(113, 191, 68, 0.4);
}

/* ==================== 上一篇下一篇样式 (prevnext.html) ==================== */
.prevnext-wrapper {
  width: 100%;
  margin: 20px 0;
  padding-top: 20px;
  margin-top: 25px;
}

.prevnext {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pn-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  color: #495057;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 0;
  width: auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  white-space: nowrap;
}

.pn-link:hover {
  background-color: #e9ecef;
  border-color: #ced4da;
  color: #212529;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pn-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0; 
}

.prev-link .pn-icon {
  margin-right: 4px;
}

.next-link .pn-icon {
  margin-left: 4px;
}

.prev-link:hover .pn-icon {
  transform: translateX(-2px);
}

.next-link:hover .pn-icon {
  transform: translateX(2px);
}

.pn-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.4;
  min-width: 0; 
  flex: 1 1 auto;
}

/* ==================== 图片详情页样式 (picture.html) ==================== */
.title2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: none;
}

.title2 .ti {
  width: 100%;
  margin-bottom: 10px;
}

.title2 .day {
  font-size: 18px;
  color: #a09f9f;
  font-family: DINProMedium;
  margin-right: 20px;
}

.title2 .read {
  font-size: 18px;
  color: #a09f9f;
  font-family: DINProMedium;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==================== 新闻列表页样式 (newslist.html) ==================== */
.article-thumb {
  width: 100%;
  max-width: 100%; 
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-thumb:hover img {
  transform: scale(1.05);
}

/* ==================== 新闻详情页样式 (news.html) ==================== */
.main.news .detail .title2 {
  width: 100%;
  height: auto;
  border-bottom: 2px dashed #bfbfbf;
  padding-bottom: 0;
}

.meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #a09f9f;
  font-size: 16px;
  font-family: DINProMedium;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cont {
  margin-top: 0;
}

/* ==================== 留言板样式 (message.html) ==================== */
.message .online {
  max-width: 900px;
  margin: 0 auto;
}

.message .online .ti {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  background: none;
  padding: 0;
  border: none;
}

.message .online .form {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 25px;
  border: 1px solid #F44336;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.message .online .input-group {
  margin-bottom: 18px;
  width: 100%;
}

.message .online .input-group input,
.message .online .input-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #cddc3942;
  transition: 0.2s;
  font-size: 1rem;
  box-sizing: border-box;
}

.message .online .input-group textarea {
  min-height: 100px;
  resize: vertical;
}

.message .online .input-group input:focus,
.message .online .input-group textarea:focus {
  border-color: #71bf44;
  box-shadow: 0 0 0 2px rgba(113, 191, 68, 0.1);
  outline: none;
}

.message .online .submit input {
  width: 100%;
  background: #71bf44;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(113, 191, 68, 0.2);
  transition: all 0.2s;
}

.message .online .submit input:hover {
  background: #5fa337;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(113, 191, 68, 0.3);
}

.message .online .message-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.message .online .message-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 25px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border: 1px solid #4CAF50;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.message .online .message-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: #e0e0e0;
}

.message .online .card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.message .online .contact-name {
  font-weight: 600;
  font-size: 1.2rem;
  color: #4CAF50;
  align-items: center;
  gap: 0.5rem;
}

.message .online .contact-name::before {
  content: "✍️";
  background: #f5f5f5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 8px;
  color: #666;
}

.message .online .ask-date {
  background: #f8f8f8;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.message .online .ask-date::before {
  content: "📅";
  font-size: 0.9rem;
}

.message .online .visitor-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  background: #fafafa;
  padding: 10px 18px;
  border-radius: 30px;
  margin-bottom: 15px;
  border-right: 4px solid #71bf44;
  border-left: 4px solid #71bf44;
  font-size: 0.9rem;
  color: #666;
}

.message .online .visitor-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.message .online .visitor-info span i {
  font-style: normal;
  font-weight: 500;
  color: #71bf44;
  margin-right: 4px;
}

.message .online .message-content {
  font-size: 1.05rem;
  padding: 10px 0 10px 15px;
  margin: 5px 0 15px 0;
  border-left: 4px solid #71bf44;
  border-right: 4px solid #71bf44;
  background: #fafafa;
  border-radius: 8px; 
  color: #8bc34a;
  line-height: 1.6;
}

.message .online .reply-box {
  background: #fafafa;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 10px;
  border-left: 4px solid #FFC107;
  border-right: 4px solid #FFC107;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.message .online .reply-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #FF9800;
  font-size: 1rem;
}

.message .online .reply-header span {
  background: #cddc395e;
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.message .online .reply-text {
  font-size: 1rem;
  padding-left: 0.5rem;
  color: #444;
  border-bottom: 1px dotted #FF9800;
  padding-bottom: 0.5rem;
}

.message .online .reply-time {
  align-self: flex-end;
  font-size: 0.85rem;
  background: #f0f0f0;
  padding: 4px 16px;
  border-radius: 30px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.message .online .reply-time::before {
  content: "⏱️";
}

.message .online .no-reply-placeholder {
  margin-top: 10px;
  padding: 8px 0 0 15px;
  color: #999;
  font-style: italic;
  border-top: 1px dashed #eee;
  background: transparent;
}

/* ==================== 分页样式 (message.html) ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  gap: 5px;
  flex-wrap: wrap;
}

.pagination .page-item {
  display: inline-block;
  margin: 0 2px;
}

.pagination .page-link {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #666;
  background: #fff;
  transition: all 0.2s;
  font-size: 0.95rem;
  min-width: 40px;
  text-align: center;
}

.pagination .page-link:hover {
  background-color: #71bf44;
  color: white;
  border-color: #71bf44;
}

.pagination .active .page-link {
  background-color: #71bf44;
  color: white;
  border-color: #71bf44;
  font-weight: 600;
}

.pagination .disabled .page-link {
  color: #ccc;
  background: #f5f5f5;
  border-color: #eee;
  cursor: not-allowed;
}

.page-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 20px 0 10px 0;
}

.page-info span {
  color: #71bf44;
  font-weight: 600;
}

/* ==================== 首页样式 (index.html) ==================== */
@media screen and (max-width: 768px) {
  .product_main ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .product_main ul li {
    width: 48%;
    margin-bottom: 20px;
    list-style: none;
    float: none;
  }
  
  .product_main ul li a {
    display: block;
    width: 100%;
  }
  
  .product_main ul li a .tu {
    width: 100%;
    height: 0 !important;
    padding-bottom: 72%;
    position: relative;
    overflow: hidden;
  }
  
  .product_main ul li a .tu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .product_main ul li a .tu .cont {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px;
    box-sizing: border-box;
  }
}

/* ==================== 底部样式 (foot.html) ==================== */
.footer {
  background: #1c4504;
  color: #ecf0f1;
  padding: 25px 0 15px;
  border-top: 3px solid #71bf44;
}

.foot_cen {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-links {
  text-align: center;
  padding: 0 0 15px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #4a5f73;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-block;
  line-height: 2;
}

.footer-links a:hover {
  color: #71bf44;
}

.footer-copyright {
  text-align: center;
  color: #95a5a6;
  font-size: 13px;
}

.footer-copyright p {
  margin: 6px 0;
}

.footer-copyright a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 5px;
}

.footer-copyright a:hover {
  color: #71bf44;
}

/* ==================== 关于我们样式 (about.html) ==================== */
.company {
  padding: 60px 0;
  background: #fff;
}

.company_box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.company_box .tu {
  flex: 0 0 45%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.company_box .tu img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.company_box .tu:hover img {
  transform: scale(1.05);
}

.company_box .txt_w {
  flex: 0 0 50%;

}

.company_box .txt_w .co {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.company_box .txt_w .co p {
  margin-bottom: 20px;
}

.company_box .txt_w .co h1,
.company_box .txt_w .co h2,
.company_box .txt_w .co h3 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
}

.company_box .txt_w .co h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #c9a86c;
}

.stats {
  background: #71bf442b;
  padding: 50px 0;
  text-align: center;
}

.stats_box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat_item {
  flex: 1;
  min-width: 200px;
}

.stat_number {
  font-size: 48px;
  color: #c9a86c;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stat_number:after {
  content: '+';
  font-size: 30px;
  color: #c9a86c;
  margin-left: 5px;
}

.stat_text {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.features {
  padding: 60px 0;
  background: #fff;
}

.features h3 {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.features h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #c9a86c;
}

.features .subtitle {
  text-align: center;
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
}

.features_list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-content: center;
}

.feature_item {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: #71bf442b;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #71bf44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #c9a86c;
}

.feature_item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.feature_item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==================== 响应式媒体查询 ==================== */
@media screen and (max-width: 1024px) {
  .main.products .pro_detail .detail_cen .dl {
    display: block !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  /* 产品详情页响应式 */
  .pc-layout {
    display: none;
  }
  
  .mobile-layout {
    display: block;
    padding: 0 10px;
  }
  
  .mobile-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .mobile-img {
    height: 300px;
    margin-bottom: 15px;
  }
  
  .mobile-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .mobile-thumb {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  
  .mobile-thumb-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px 0 10px 0;
  }
  
  .mobile-thumb-container .thumb-item {
    width: 70px;
    height: 70px;
    min-width: 70px;
    flex: 0 0 70px;
    padding-bottom: 0;
  }
  
  .mobile-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .mobile-info {
    margin-bottom: 20px;
  }
  
  .mobile-info .line {
    width: 300px;
    height: 0px;
    border-top: 2px dashed #e70000;
    margin: 10px 0;
  }
  
  .mobile-info .txt {
    font-size: 16px;
    color: #FF5722;
    margin: 15px 0;
    padding-left: 0;
  }
  
  .mobile-info .txt::before {
    display: none;
  }
  
  .mobile-info .mobile-link {
    display: inline-block;
    width: 100%;
    height: 50px;
    background: #71bf44;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(113, 191, 68, 0.3);
    transition: all 0.3s ease;
    margin: 15px 0 20px 0;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-info .mobile-link:hover {
    background: #5da635;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(113, 191, 68, 0.4);
    color: #fff;
  }
  
  .mobile-info .mobile-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .mobile-info .mobile-link:hover::after {
    transform: translateX(5px);
  }
  
  .mobile-info .email-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 16px;
    background: #71bf44;
    border-radius: 3px;
  }
  
  .mobile-info .email-info::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 12px;
    height: 7px;
    background: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  
  /* 文本和链接响应式 */
  .txt2 {
    font-size: 16px;
    margin: 15px 0 10px 0;
    padding-left: 24px;
  }
  
  .txt2::before {
    font-size: 16px;
  }
  
  .link {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    margin: 15px 0 20px 0;
  }
  
  .link::after {
    font-size: 20px;
    line-height: 48px;
  }
  
  .email-info {
    font-size: 16px;
    padding-left: 30px;
  }
  
  .email-info::before {
    width: 20px;
    height: 16px;
    top: 3px;
  }
  
  .email-info::after {
    left: 4px;
    top: 6px;
    width: 12px;
    height: 7px;
  }
  
  /* 图片详情页响应式 */
  .main-img-container {
    height: 400px !important;
  }
  
  .thumb-container {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 5px 0 10px 0 !important;
    grid-template-columns: none !important;
  }
  
  .thumb-item {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    flex: 0 0 70px !important;
    padding-bottom: 0 !important;
  }
  
  .thumb-title {
    font-size: 18px !important;
  }
  
  /* 标题响应式 */
  .title2 .day,
  .title2 .read {
    font-size: 14px;
  }
  
  .title2 .day {
    margin-right: 15px;
  }
  
  /* 新闻详情页响应式 */
  .meta-info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .meta-left {
    gap: 10px;
    flex-wrap: wrap;
    flex: 1 1 auto;
  }
  
  .meta-left span,
  .meta-right span {
    font-size: 12px;
  }
  
  .title2 {
    padding-bottom: 3px;
    margin-bottom: 10px;
  }
  
  .title2 .ti {
    margin-bottom: 5px;
  }
  
  /* 分页响应式 */
  .pagination {
    gap: 3px;
  }
  
  .pagination .page-link {
    padding: 5px 10px;
    min-width: 32px;
    font-size: 0.85rem;
  }
  
  /* 底部响应式 */
  .footer {
    padding: 20px 0 10px;
  }
  
  .footer-links a {
    margin: 0 8px;
    font-size: 13px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
  
  .footer-copyright p {
    margin: 4px 0;
  }
  
  /* 关于我们响应式 */
  .company {
    padding: 40px 0;
  }
  
  .company_box {
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  
  .company_box .tu {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .company_box .txt_w {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .company_box .txt_w .co {
    font-size: 15px;
  }
  
  .stats_box {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat_number {
    font-size: 42px;
  }
  
  .features h3 {
    font-size: 26px;
  }
  
  .features_list {
    flex-direction: column;
  }
  
  .feature_item {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  /* 上一篇下一篇响应式 */
  .prevnext-wrapper {
    margin: 5px 0 10px;
    padding-top: 10px;   
    margin-top: -10px;
  }
  
  .prevnext {
    gap: 8px;
  }
  
  .pn-link {
    padding: 5px 8px;
    font-size: 12px;
  }
  
  .pn-icon {
    font-size: 12px;
  }
  
  .prev-link .pn-icon {
    margin-right: 3px;
  }
  
  .next-link .pn-icon {
    margin-left: 3px;
  }
}

@media screen and (max-width: 480px) {
  /* 底部响应式 */
  .footer-links a {
    display: inline-block;
    margin: 3px 6px;
  }
  
  /* 分页响应式 */
  .pagination .page-link {
    padding: 4px 8px;
    min-width: 28px;
    font-size: 0.8rem;
  }
  
  .pagination .page-item:nth-child(n+5):nth-child(-n+8) {
    display: none;
  }
  
  /* 关于我们响应式 */
  .company_box .txt_w .co {
    font-size: 14px;
  }
  
  .stat_number {
    font-size: 36px;
  }
}

@media screen and (max-width: 375px) {
  /* 上一篇下一篇响应式 */
  .prevnext-wrapper {
    margin: 3px 0 8px; 
    padding-top: 8px;
    margin-top: 8px;
  }
  
  .pn-link {
    padding: 4px 6px;
    font-size: 11px;
  }
  
  .pn-icon {
    font-size: 11px;
  }
}