/* 产品列表 */
.header {
  background: #fff;
}

/* 产品容器 */
.news-container {
  padding: 40px 0 60px;
  background: #fff;
  position: relative;
  z-index: 1;
  min-height: 800px;
}

/* 产品布局 */
.news-container .news-layout {
  display: flex;
  gap: 30px;
}

/* 左侧分类 */
.news-container .new-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  height: fit-content;
  border-radius: 18px;
  background: #fff;
  padding: 0px;
}

.news-container .category-wrapper {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #d9e8ff;
  padding: 20px;
}
.news-container .category-wrappers {
  background: #fff;
  border-radius: 18px;
  border: 0;
  padding: 0;
}

.news-container .sidebar-title {
  padding: 25px 20px;
  background: linear-gradient(135deg, var(--blue), #0d66e8);
  border-radius: 18px;
  text-align: left;
}

.news-container .sidebar-title h1 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.news-container .sidebar-title p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.news-container .category-list {
  list-style: none;
  margin: 0;
}

.news-container .category-item {
  padding: 20px 40px 20px 18px;
  border-bottom: 1px solid #e4ebf5;
  position: relative;
  transition: all 0.3s ease;
}

.news-container .category-item::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a2adbd;
  font-size: 14px;
  transition: color 0.3s ease;
}

.news-container .category-item a {
  display: flex;
  align-items: center;
  color: #758298;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.news-container .category-item a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  font-size: 12px;
  border-radius: 50%;
  background: #f0f5fd;
  color: var(--blue);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.news-container .category-item:hover a i {
  background: var(--blue);
  color: #fff;
}

.news-container .category-item.active a i {
  background: var(--blue);
  color: #fff;
}

.news-container .category-item a span {
  display: block;
  color: #a2adbd;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-container .category-item:hover a {
  color: var(--blue);
}

.news-container .category-item:hover::after {
  color: var(--blue);
}

.news-container .category-item.active {
  color: var(--blue);
  font-weight: 600;
  background: linear-gradient(90deg, #e0ebfd 0%, #fff 100%);
  border-radius: 12px;
  border-bottom-color: transparent;
  box-shadow: 0 12px 28px rgba(18, 78, 150, 0.08);
}

.news-container .category-item.active a {
  color: var(--blue);
  font-weight: 600;
}

.news-container .category-item a i {
  width: 42px;
  height: 42px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  box-shadow: 0 12px 28px rgba(18, 78, 150, 0.08);
  color: var(--blue);
  transition: all 0.3s ease;
}

.news-container .category-item.active a i {
  background: linear-gradient(135deg, var(--blue) 0%, #0d67e8 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 98, 255, 0.35);
}

.news-container .category-item.active a span {
  color: var(--blue);
}

.news-container .category-item.active::after {
  color: var(--blue);
}

.sidebar-widget {
  background: #f0f6ff;
  border-radius: 12px;
  padding: 0;
  margin: 20px 0;
  overflow: hidden;
  
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 10px 20px 10px 20px;
  position: relative;
}

.widget-list {
  list-style: none;
  padding: 0 15px 15px;
  margin: 0;
  counter-reset: item;
}

.widget-item {
  padding: 0;
  margin-bottom: 0;
  background: #fff;
  border-bottom: 10px solid #f0f6ff;
  overflow: hidden;
}

.widget-item:last-child {
  border-bottom: none;
}

.widget-item a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
  padding: 12px 8px;
  border-radius: 8px;
}

.widget-item a:hover {
  background: #f7faff;
}

.widget-item a::before {
  content: counter(item);
  counter-increment: item;
  min-width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #e0ecff 0%, #c8dcff 100%);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s;
}

.widget-item:first-child a::before {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: #fff;
}

.widget-item:nth-child(2) a::before {
  background: linear-gradient(135deg, #ff8c00 0%, #e67700 100%);
  color: #fff;
}

.widget-item:nth-child(3) a::before {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #fff;
}

.widget-item a:hover::before {
  transform: scale(1.08);
}

.widget-item-title {
  overflow: hidden;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s;
}

.widget-item a:hover .widget-item-title {
  color: var(--blue);
}

.widget-item-date {
  font-size: 12px;
  color: #999;
}

.widget-item-date i {
  font-size: 14px;
  margin-right: 5px;
  color: #ccc;
}

.news-sidebar .widget-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* 右侧产品区 */
.news-container .new-main,
.news-container .news-main {
  flex: 1;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 0;
}

/* 新闻列表页样式 */
.news-list-page {
  padding:0;
  background: #fff;
  border-radius: 18px;
}

.news-list-page .news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--line);
}

.news-list-page .news-item:hover {
  transform: translateY(-3px);

}

.news-list-page .news-item img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-list-page .news-img-wrap {
  position: relative;
  width: 200px;
  height: 130px;
  flex-shrink: 0;
}

.news-list-page .news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.news-list-page .news-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #fabb6f 0%, #ff8c00 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  z-index: 1;
  letter-spacing: 1px;
}

.news-list-page .news-item .news-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-list-page .news-item h3 {
  font-size: 18px;
  font-weight: 500;
  color: #102856;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-list-page .news-item:hover h3 {
  color: var(--blue);
}

.news-list-page .news-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-page .news-item time {
  font-size: 13px;
  color: #999;
  margin-top: auto;
}

.news-list-page .news-item time i {
  margin-right: 6px;
  color: var(--blue);
}

.news-container .new-main {
  flex: 1;
  position: relative;
  z-index: 2;
  background: #f5f9fe;
  border-radius: 18px;
}

.news-container .new-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding: 15px 0px;
  border-bottom: 0;
  position: relative;
}

.news-container .new-title {
  font-size: 24px;
  font-weight: 500;
  color: #102856;
  margin: 0;
  position: relative;
  line-height: 1.25;
  z-index: 2;
}

.news-container .new-title .en-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 45px;
  font-weight: 900;
  color: rgba(16, 88, 213, 0.06);
  letter-spacing: 3px;
  white-space: nowrap;
  z-index: -1;
  text-transform: uppercase;
  pointer-events: none;
}

.news-container .new-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 50px;
  background: linear-gradient(135deg, var(--blue), #0d66e8);
  height: 4px;
  border-radius: 2px;
}

.news-container .new-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-container .new-sort label {
  font-size: 14px;
  color: #666;
}

.news-container .sort-select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  cursor: pointer;
  outline: none;
}

.news-container .sort-select:hover {
  border-color: var(--blue);
}

/* 联系卡片 */
.news-container .contact-card {
  background: url('../images/wx-lx.png') top right no-repeat #f0f6ff;
  background-size: 50% auto;
  border-radius: 18px;
  margin-top: 20px;
  margin-top: 20px;

}


.news-container .contact-card-header {
  padding: 16px 18px;
  font-size: 16px;
}

.news-container .contact-card-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #102856;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-container .contact-card-header h3::before {
  content: '';
  width: 3px;
  height: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #0d67e8 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.news-container .contact-card-header h3 i {
  padding-right: 10px;
}

.news-container .contact-card-body {
  padding: 20px 15px;
}

.news-container .contact-info {
  margin-bottom: 20px;
}

.news-container .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  background: #fff;
  padding: 5px 5px;
  border-radius: 4px;
}

.news-container .contact-item:last-child {
  margin-bottom: 0;
}

.news-container .contact-label {
  color: #666;
  font-weight: 500;
  min-width: 60px;
}

.news-container .contact-label i {
  width: 30px;
  height: 30px;
  background: var(--blue-light);
  border-radius: 30px;
  color: var(--blue);
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
}

.news-container .contact-value {
  color: #102856;
  font-weight: 500;
}

.news-container .contact-link {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s;
}

.news-container .contact-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.news-container .qrcode-section {
  text-align: center;
  padding-top: 15px;
  border-top: 0;
  position: relative;
  height: 180px;
}

.news-container .qrcode-img {
  width: 140px;
  height: 140px;
  background: #fff;
  padding: 8px;
  border: 1px solid #d9e8ff;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: block;
  z-index: 9;
  position: absolute;
  top: 10px;
  left: 50px;

}

.news-container .qrcode-text {
  position: absolute;
  margin: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  width: 140px;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #0d67e8);
  left: 50px;
  bottom: 5px;
  z-index: 0;
  padding-top: 5px;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 30px 20px;
}

.pagination a {
  padding: 5px 12px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination a[title^="Total"] {
 background:linear-gradient(135deg, #e0ecff 0%, #c8dcff 100%); 
 color: var(--blue);
 display: none;
}
.pagination a[title^="Total"] b{
    background:none; 
    border: 1px solid var(--blue);
    color: var(--blue);
}
.pagination b{
   padding: 5px 12px;
   border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background:var(--blue); 
  color: #fff;
  border: 1px solid var(--blue);
}
.pagination a:hover b{
    color: #fff;
}
.pagination a:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 88, 213, 0.3);
}
.pagination .page-btn {
  padding: 10px 24px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination .page-btn:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 88, 213, 0.3);
}

.pagination .page-btn:disabled {
  background: #f5f5f5;
  color: #ccc;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.pagination a:disabled {
  background: #f5f5f5;
  color: #ccc;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.pagination .page-info {
  font-size: 14px;
  color: #666;
}

.pagination .page-info .current-page {
  color: var(--blue);
  font-weight: 600;
}

.article-main {
  flex: 1;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 0px;
  box-shadow:var(--shadow);
  border:1px solid #f5f9fe;
}

.article-content {
  padding: 40px 50px;
}

/* ==================== 文章头部 ==================== */
.article-header {
  padding-bottom: 30px;

}

.article-title {
  font-size: 32px;
  font-weight: 500;
  color: #102856;
  line-height: 1.4;
  margin: 0 0 20px 0;
  text-align: center;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #f5f9fe;
  padding: 5px 20px;
  border-radius: 12px;
}

.article-meta span {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
}

.article-category {
  padding: 4px 12px;
  color: #f59e0b !important;
  background: #fff3e6;
  border-radius: 4px;
  font-weight: 500;
}

.article-views i {
  margin-right: 10px;
}

.meta-divider {
  color: #d9d9d9;
  font-weight: 300;
}

/* ==================== 文章正文 ==================== */
.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  padding: 0px;
  border-radius: 12px;
}

.article-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid var(--blue);
  margin: 0 0 30px 0;
  font-weight: 500;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 35px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px 0;
}

.article-body p {
  margin: 0 0 20px 0;
  text-align: justify;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 0;
  padding-left: 30px;
}

.article-body li {
  margin: 10px 0;
  line-height: 1.8;
}

.article-body ul li {
  list-style-type: disc;
}

.article-body ol li {
  list-style-type: decimal;
}

.article-body strong {
  font-weight: 600;
  color: var(--blue);
}

.article-body a {
  color: var(--blue);
  text-decoration: none;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* ==================== 文章标签 ==================== */
.article-tags {
  padding: 20px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #f5f9fe;
  border-radius: 12px;
  color: var(--blue);
}
.article-tags span{
    color: #333;
}
.article-tags font {
  color: var(--blue) !important;
  background: #f0f6ff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  padding: 5px 10px;
  margin-right: 10px;
}

.article-tag:hover {
  background: var(--blue);
  color: #fff;
}

/* ==================== 上一篇/下一篇导航 ==================== */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 35px;
}

.article-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 15px;
  background: #fff;
  border: 1px solid #d9e8ff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.article-nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 88, 213, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.article-nav-item:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(16, 88, 213, 0.1);
  transform: translateY(-2px);
}

.article-nav-item:hover::before {
  opacity: 1;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e0ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.nav-arrow i {
  font-size: 14px;
  color: var(--blue);
  transition: transform 0.3s;
}

.article-nav-item:hover .nav-arrow {
  background: linear-gradient(135deg, var(--blue) 0%, #0d67e8 100%);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 88, 213, 0.3);
}

.article-nav-item:hover .nav-arrow i {
  color: #fff;
}

.article-nav-item.prev:hover .nav-arrow i {
  transform: translateX(-2px);
}

.article-nav-item.next:hover .nav-arrow i {
  transform: translateX(2px);
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.article-nav-item.next .nav-content {
  text-align: right;
  align-items: flex-end;
}

.nav-label {
  font-size: 12px;
  color: #8994a7;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.nav-title {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s;
}

.article-nav-item:hover .nav-title {
  color: var(--blue);
}

/* 问答列表 */
.qalist-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
}

/* 问答项 */
.qalist-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(20, 75, 150, 0.08);
  transition: all 0.25s ease;
}

.qalist-item:hover {
  box-shadow: 0 10px 22px rgba(20, 75, 150, 0.2);
  transform: translateY(-3px);
}

.qalist-item-link {
  display: block;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
}

/* 问题行 */
.qalist-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

/* 问答图标 */
.qalist-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 30px;
}

.qalist-icon-q {
  background: var(--blue, #0f62ce);
  color: #fff;
}

.qalist-icon-a {
  background: rgba(82, 196, 26, 0.15);
  color: #52c41a;
}

/* 问题标题 */
.qalist-question {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
  padding-top: 2px;
  transition: color 0.2s ease;
}

.qalist-item:hover .qalist-question {
  color: var(--blue, #0f62ce);
}

/* 答案行 */
.qalist-a {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-left: 0;
}

/* 答案内容 */
.qalist-answer {
  flex: 1;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 元信息 */
.qalist-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 42px;
  padding-top: 16px;
  border-top: 1px solid #e4ebf5;
}

.qalist-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #999;
}

.qalist-meta-item .iconfont {
  font-size: 14px;
  color: #bbb;
}

@media (max-width: 768px) {
  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-item {
    padding: 14px 16px;
  }

  .nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .pagination a[title^="Total"] {
 display: none;
}

/* 响应式 */
@media (max-width: 1200px) {
  .news-container .new-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .news-container {
    padding: 20px 0 40px;
  }

  .news-container .container {
    padding: 0 15px;
  }

  .news-container .news-layout {
    flex-direction: column;
    gap: 20px;
  }

  .news-container .new-sidebar {
    width: 100% !important;
    position: static !important;
    margin-bottom: 0;
    background: none;
    padding: 0;
    box-shadow: none;
    border: 0;
  }

  .sidebar-title {
    display: none;
  }

  .news-container .contact-card {
    display: none !important;
  }

  .sidebar-widget {
    display: none !important;
  }

  /* news_show详情页：手机模式下左侧栏全部隐藏 */
  .news-detail .new-sidebar {
    display: none !important;
  }

  .news-container .category-wrapper {
    margin-bottom: 0;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .news-container .category-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    background: none;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .news-container .category-list::-webkit-scrollbar {
    display: none;
  }

  .news-container .category-item {
    flex-shrink: 0;
    padding: 12px 20px;
    border-bottom: none;
    border: 1px solid #e4ebf5;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    white-space: normal;
    text-align: center;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .news-container .category-item::after {
    display: none;
  }

  .news-container .category-item a {
    padding: 0;
    font-size: 14px !important;
    color: #758298;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .news-container .category-item a span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #a2adbd;
  }

  .news-container .category-item:hover a {
    color: var(--blue);
  }

  .news-container .category-item:hover a span {
    color: var(--blue);
  }

  .news-container .category-item.active {
    background: linear-gradient(90deg, #e0ebfd 0%, #fff 100%);
    border: 1px solid var(--blue);
    box-shadow: none;
  }

  .news-container .category-item.active a {
    color: var(--blue);
    font-weight: 600;
    text-align: center;
  }

  .news-container .category-item.active a span {
    color: var(--blue);
  }

  .news-container .new-main {
    width: 100%;
  }

  .news-container .new-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .news-container .new-grid .new-item {
    min-height: auto;
    padding: 12px 8px;
  }

  .news-container .new-grid .new-item .new-img {
    height: 160px;
  }

  .news-container .new-grid .new-item .new-img img {
    max-height: 160px;
  }

  /* news_show详情页手机端样式 */
  .article-main {
    padding: 0;
    background: #fff;
    border-radius: 0;
  }

  .article-content {
    padding: 0;
  }

  .article-header {
    padding-bottom: 20px;
  }

  .article-title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .article-meta {
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .article-meta span {
    font-size: 12px;
  }

  .article-meta font {
    display: none;
  }

  .meta-divider {
    display: none;
  }

  .article-category {
    padding: 3px 8px;
    font-size: 11px !important;
  }

  .article-body {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-body p {
    margin-bottom: 16px;
  }

  .article-body img {
    margin: 15px auto;
  }

  .article-tags {
    padding: 15px;
    margin: 20px 0;
    gap: 8px;
    border: 1px solid #d9e8ff;
    
  }

  .article-tags font {
    font-size: 12px;
    padding: 4px 8px;
    margin-right: 6px;
  }
}

/* 产品网格 */
.news-container .new-main .new-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.news-container .new-grid .new-item {
  border-radius: 8px;
  min-height: 310px;
}

.news-container .new-grid .new-item .new-img {
  height: 220px;
}

.news-container .new-grid .new-item .new-img img {
  max-height: 220px;
}

.news-container .new-grid .new-item .new-name {
  margin-top: 12px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .breadcrumb-nav .container {
    padding: 0 12px;
  }

  .news-container .container {
    padding: 0;
  }

  .news-container .new-main .new-grid {
    gap: 10px !important;
  }

  .news-container .new-grid .new-item {
    padding: 12px 8px;
    min-height: auto;
  }

  .news-container .new-grid .new-item .new-img {
    height: 140px;
  }

  .news-container .new-grid .new-item .new-img img {
    max-height: 140px;
  }

  .news-container .new-grid .new-item .new-name {
    font-size: 12px;
    margin-top: 8px;
  }

  .pagination .page-btn {
    font-size: 12px;
  }
}




/* 产品详情页响应式 */
@media (max-width: 992px) {
  .new-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .new-image-section {
    position: static;
  }

  .features-grid,
  .applications-list {
    grid-template-columns: 1fr;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .new-detail-container {
    padding: 20px 0 40px;
  }

  .new-detail-container .container {
    padding: 0 15px;
  }

  .new-overview {
    margin-bottom: 40px;
  }

  .main-image {
    height: 350px;
  }

  .image-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .thumbnail {
    height: 70px;
  }

  .new-detail-title {
    font-size: 24px;
  }

  .new-brief p {
    font-size: 14px;
  }

  .new-highlights li {
    font-size: 14px;
  }

  .new-actions {
    flex-direction: column;
    position: initial;
  }

  .btn-contact-primary,
  .btn-view-specs {
    width: 100%;
    text-align: center;
  }

  .tab-headers {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .tab-header {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .tab-content h2 {
    font-size: 20px;
  }

  .brochure-image {
    padding: 15px;
  }

  .btn-download-brochure {
    width: 100%;
    justify-content: center;
    padding: 12px 30px;
    font-size: 15px;
  }

  .spec-label {
    width: 120px;
    font-size: 13px;
  }

  .spec-value {
    font-size: 13px;
  }

  .specs-table td {
    padding: 12px 15px;
  }

  .feature-item,
  .application-item {
    padding: 20px;
  }

  .feature-item h3,
  .application-item h3 {
    font-size: 16px;
  }

  .feature-item p,
  .application-item p {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .related-news {
    padding: 20px;
  }

  .related-new-img {
    height: 180px;
  }

  .related-new-name {
    font-size: 13px;
    padding: 10px 8px;
    min-height: 55px;
  }

  .related-new-item {
    border: 1px solid #edf4ff;
    box-shadow: 0 18px 32px rgba(20, 88, 174, 0.07);
  }

}

@media (max-width: 480px) {
  .new-detail-container .container {
    padding: 0 12px;
  }

  .main-image {
    height: 280px;
  }

  .new-detail-title {
    font-size: 20px;
  }

  .tab-header {
    padding: 10px 15px;
    font-size: 13px;
  }

  .related-news-grid {
    gap: 10px;
  }
}

/* 新闻列表页移动端样式 */
@media (max-width: 768px) {
  .news-container .news-main {
    padding: 0 2px;
  }

  .news-list-page {
    padding: 0 5px 20px;
  }

  .news-list-page .news-item {
    padding: 16px 0;
    gap: 14px;
  }

  .news-list-page .news-item img {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
  }

  .news-list-page .news-img-wrap {
    width: 120px;
    height: 90px;
  }

  .news-list-page .news-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .news-list-page .news-item .news-content {
    flex: 1;
    min-width: 0;
  }

  .news-list-page .news-item h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .news-list-page .news-item p {
    font-size: 12px;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
    display: none;
  }

  .news-list-page .news-item time {
    font-size: 11px;
  }

  .news-container .category-item a i {
    display: none;
  }
}