/* 基础样式 */
:root {
  --primary-color: #005aba;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --fz-title: clamp(1.6rem, 2vw + 1rem, 2.5rem);
  --fz-section-title: clamp(1.2rem, 1.5vw + 1rem, 2rem);
  --fz-normal: clamp(0.95rem, 1vw + 0.8rem, 1.15rem);
  --fz-small: clamp(0.8rem, 0.7vw + 0.7rem, 1rem);
}
li {
  list-style: none; /* 无标记 */
}
/* 懒加载图片样式 */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.loaded {
  opacity: 1;
}

img.error {
  opacity: 0.5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll; /* 预留滚动条以避免内容加载时的横向抖动 */
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family:'Helvetica Neue',Arial,sans-serif; */
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
  font-size: var(--fz-normal);
  font-family:
    "PingFang SC",
    "Microsoft YaHei" /*, sans-serif*/;
}

.en-text {
  font-family: Roboto, Arial, sans-serif;
}
.container,
.index-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left:20px;
	padding-right:20px; */
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .container,
  .index-container {
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 900px) {
  .container,
  .index-container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.index-fullpage-section,
.fullpage-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
.index-news-container,
.index-enterprise-grid,
.news-container,
.enterprise-grid {
  width: 100%;
  display: flex;
  /* justify-content:center; */
  align-items: stretch;
  box-sizing: border-box;
}
.footer-bottom {
  width: 100%;
  height: 3.6rem;
  background-color: #e0e0e0;
  margin-top: 2rem;
}
.footer-bottom p {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p a {
  padding-top: 1rem;
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
}

/* 导航栏样式 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.transparent {
  background-color: transparent;
  color: var(--text-light);
}
.navbar.scrolled {
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
  color: var(--text-dark);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 26px;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover {
  color: var(--primary-color);
}
/* 下拉菜单基础样式 */
.dropdown {
  position: relative;
}
.dropdown > a {
  position: relative;
  padding-right: 0;
}
.dropdown > a::after {
  display: none;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 115, 238, 0.08);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1001;
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown > a[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  border-bottom: none;
  list-style-type: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #333;
  font-size: 15px;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
  white-space: nowrap;
  border-radius: 0;
}
.dropdown-menu a:hover {
  background-color: #e6f0fa;
  color: #005aba;
  padding-left: 28px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-radius: 0;
    padding: 0;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu,
  .dropdown > a[aria-expanded="true"] + .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    padding: 10px 18px;
    font-size: 16px;
  }
}
/* 移动端菜单样式 */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition);
}
.navbar.scrolled .mobile-menu-toggle span {
  background-color: var(--text-dark);
}
/* 响应式设计 */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-light);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 0 0 15px 0;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
    margin-top: 10px;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
/* 全屏Banner */
.fullpage-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.banner-slide.active {
  opacity: 1;
}
/* 全屏滚动部分 */
.fullpage-sections {
  position: relative;
  width: 100%;
}
.fullpage-section {
  width: 100%;
  min-height: 100vh;
  /* padding-top:100px;
	*/
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fullpage-section.active {
  opacity: 1;
  transform: translateY(0);
}
/* 二级页面样式 */
.secondary-page {
  padding-top: 80px;
  /* 为固定导航栏留出空间 */
}
.page-banner {
  width: 100%;
  min-height: 220px;
  height: 32vh;
  max-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.page-banner h1 {
  font-size: var(--fz-title);
}
.page-banner h2 {
  font-size: var(--fz-title);
}
.page-content {
  padding: 40px 0;
}
/* 页脚样式 (由后面的更完整定义覆盖) */
/* 页面指示器 */
.page-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4d4d4;
  margin: 15px 0;
  cursor: pointer;
  transition: var(--transition);
}
.indicator-dot.active {
  background-color: #005aba;
  transform: scale(1.2);
}
/* 响应式设计 */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    /* 移动端将显示汉堡菜单 */
  }
  .page-banner {
    height: 200px;
  }
  .page-banner h1 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
  .page-banner h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
}
@media (max-width: 900px) {
  .page-banner {
    min-height: 120px;
    height: 22vh;
    max-height: 180px;
  }
}
/* 无障碍样式 */
a:focus,
button:focus {
  /* outline:2px solid var(--primary-color);
	*/
  outline-offset: 2px;
}
.fullpage-section {
  height: 100dvh;
  min-height: 800px;
  scroll-snap-align: start;
  /* 可选：精准滚动定位 */
  position: relative;
  overflow: hidden;
}
/* 修复iOS Safari的vh问题 */
@supports (-webkit-touch-callout: none) {
  .fullpage-section {
    height: -webkit-fill-available;
  }
}
/* 新闻板块样式 */
.news-section-index {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: var(--fz-title);
  color: #333;
  position: relative;
}
.section-title::after {
  display: block;
  width: 60px;
  height: 3px;
  background: #005aba;
  margin: 15px auto 0;
}
.news-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
/* 左侧大图新闻 */
.featured-news {
  flex: 1;
}
.news-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 115, 238, 0.85) 0%,
    rgba(0, 115, 238, 0.6) 60%,
    rgba(0, 115, 238, 0) 100%
  );
  color: white;
}
.image-overlay .news-title {
  font-size: 1rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 4px 0;
}
.image-overlay .news-desc {
  font-size: 0.9rem;
  margin: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.image-overlay .news-date {
  font-size: 12px;
  opacity: 0.8;
}
/* 右侧新闻列表 */
.news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-item .news-title {
  font-size: var(--fz-normal);
  /* margin-bottom:10px;
	*/
}
.news-item .news-title a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item .news-title a:hover {
  color: #005aba;
}
.news-item .news-desc {
  font-size: var(--fz-small);
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item .news-date {
  font-size: 12px;
  color: #999;
}
/* 查看更多 */
.view-more {
  text-align: center;
}
.more-link {
  display: inline-block;
  padding: 8px 20px;
  color: #005aba;
  text-decoration: none;
  border: 1px solid #005aba;
  border-radius: 20px;
  transition: all 0.3s;
}
.more-link:hover {
  background: #005aba;
  color: white;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
  }
  .news-image {
    height: 300px;
  }
}
/* 企业板块样式 */
.enterprise-gallery {
  /* padding:60px 0;
	*/
  background: #f5f7fa;
  height: 500px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: var(--fz-section-title);
  color: #333;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #005aba;
  margin: 15px auto 0;
}
/* 网格布局 */
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.enterprise-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.enterprise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
/* 图片容器 */
.card-image {
  position: relative;
  aspect-ratio: 16/10;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 黑色蒙版文字层 */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
}
/* .image-overlay h3 {
  font-size: var(--fz-normal);
   margin-bottom:8px;
  font-weight: 600;
} */
.image-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.view-more {
  display: inline-block;
  font-size: var(--fz-small);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s;
}
.enterprise-card:hover .view-more {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
/* 响应式设计 */
@media (max-width: 1200px) {
  .enterprise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .enterprise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
}
/* 页脚基础样式（已在上方定义，后续位置为重复内容，已移除） */
/* 关于我们页面样式 */
.about-us-content {
  display: flex;
  gap: 30px;
}
.about-text {
  flex: 1;
  line-height: 1.8;
  /* border-radius:8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px 50px;
  height: 616px;
  overflow-y: auto;
}
.about-text h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 400;
}
.about-text p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 14px;
  line-height: 220%;
  /* text-indent:2em;
	*/
}
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* .about-image {
	position:relative;
	overflow:hidden;
	border-radius:8px;
	box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
.about-image img {
	width:100%;
	height:auto;
	display:block;
} */

.about-text::-webkit-scrollbar {
  width: 8px;
}
.about-text::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.about-text::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.about-text::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.data-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* border-radius:8px; */
}
.data-item {
  background-color: #fafafa;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.data-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.data-number {
  font-size: 20px;
  font-weight: bold;
  color: #f5862d;
  display: block;
}
.data-label {
  font-size: 16px;
  color: #555;
}
.organization-content img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.organization-content img {
  display: flex;
  max-width: 100%;
}
/* 新闻详情页样式 */
.news-detail-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}
.news-detail-title {
  font-size: 1.6rem;
  text-align: center;
  margin: 20px 140px;
}
.news-detail-meta-row {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}
.news-detail-date {
  padding: 30px;
}
.content-paragraph {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
}
.content-paragraph p {
  /* text-indent:2em; */
  margin-bottom: 1.2em;
  letter-spacing: 0.06em;
  line-height: 2;
  font-size: 1.05rem;
}
.news-detail-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.news-detail-images img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.page-banner-contact1 {
  height: 300px;
  background-color: #538dff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  padding-top: 80px;
}
.page-banner-contact1 h1 {
  padding: 6px 0;
}
.bus-img {
  width: 100%;
  height: 31.25rem;
  /* 可以根据需求调整高度 */
  background-size: cover;
  /* display:flex;
	*/
  align-items: center;
  padding: 0 10%;
  box-sizing: border-box;
}
.bus-text-content {
  max-width: 1400px;
  /* 限制最大宽度为1400px */
  margin: 0 auto;
  /* 水平居中 */
  padding-top: 60px;
}
.bus-img-text {
  width: 46rem;
  text-align: left;
  line-height: 180%;
  font-weight: 500;
  color: #666;
}
.bus-img-text h1 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 400;
}
.bus-img-text p {
  font-size: 1rem;
  /* text-indent:2em; */
  margin-bottom: 20px;
  letter-spacing: 0.04rem;
  text-align: justify;
}
/* 热电联产下的tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px 0;
}
.tab {
  padding: 10px 20px;
  margin: 0 10px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.tab.active {
  color: #005aba;
  font-weight: 600;
}
.tab-content {
  text-align: center;
  width: 1400px;
  margin: 0 auto;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.tab-pane img {
  width: 50%;
  height: 460px;
  margin: 10px;
  display: inline-block;
}

/* group1 图片文字覆盖样式 */
.tab-pane .image-with-overlay {
  position: relative;
  width: 50%;
  height: 460px;
  margin: 10px;
  display: inline-block;
  overflow: hidden;
}
.tab-pane .image-with-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0; /* 覆盖 .tab-pane img 的默认外边距，确保图片与容器完全贴合 */
}
.tab-pane .image-with-overlay .overlay-text {
  position: absolute;
  left: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
  pointer-events: none;
}
.overlay-line {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
  font-weight: 600;
  /* font-size: clamp(24px, 4vw, 18px); */
}
.overlay-line-2 {
  display: flex;
  align-items: center;
  padding-left: 24px;
  gap: 10px;
  line-height: 1.25;
  font-weight: 600;
  /* font-size: clamp(24px, 4vw, 18px); */
}
.tag-gray {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 10px;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.text-yellow {
  color: #ffe600;
  text-shadow: 0 2px 3px rgba(0.8, 0.8, 0.8, 0.8);
  font-size: 34px;
  /* padding-bottom: 6px; */
  line-height: 1.2;
  /* -webkit-text-stroke: 0.4px #b28b00; 2px 黑色描边 */
}
.text-yellow-2 {
  color: #ffe600;
  text-shadow: 0 2px 4px rgba(0.8, 0.8, 0.8, 0.8);
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1.18;
}
.text-white {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0.8, 0.8, 0.8, 0.8);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 2;
}
/* 热电联产下的tabs */
/* 建议添加到 /assets/css/main.css */
.business-nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.business-nav-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 24px 0;
}
.business-nav-breadcrumb {
  font-size: 0.94rem;
  color: #888;
  white-space: nowrap;
}
.business-nav-breadcrumb a {
  color: #999;
  text-decoration: none;
}
.business-nav-breadcrumb span {
  color: #005aba;
}
.business-nav-tabs {
  display: flex;
}
.business-tab {
  font-size: 0.94rem;
  color: #555;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.business-tab.active,
.business-tab:hover {
  color: #005aba;
  font-weight: 600;
}
@media (max-width: 800px) {
  .business-nav-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .business-nav-tabs {
    gap: 12px;
  }
}

.service-tender-list-wrapper {
  flex: 0 0 320px;
  max-width: 500px;
  min-width: 320px;
}

@media (max-width: 900px) {
  .service-tender-section {
    flex-direction: column;
    gap: 1.2rem;
  }
  .service-tender-list-wrapper,
  .service-tender-pdf,
  #faq-html-display {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
/* 荣誉榜轮播相关样式 */
.honor-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 24px;
}
.honor-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.year-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.year-tab {
  font-size: 17px;
  color: #555;
  padding: 7px 28px;
  border-radius: 4px;
  background: #f5f7fa;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.year-tab.active,
.year-tab:hover {
  color: #005aba;
  background: #e6f0fa;
}
.honor-block {
  margin-bottom: 56px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.honor-carousel,
.honor-carousel-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
  overflow: hidden;
}
.honor-carousel-track,
.honor-carousel-track-group {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
.honor-carousel .honor-item,
.honor-carousel-group .honor-item {
  min-width: calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
  /* height:280px;
	*/
  margin-right: 32px;
  flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.honor-carousel .honor-item:last-child,
.honor-carousel-group .honor-item:last-child {
  margin-right: 0;
}
.honor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.orporate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.honor-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 10px 0;
  width: 100%;
  pointer-events: none;
}
.honor-name {
  background: rgba(0, 115, 238, 0.8);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 6px 18px;
  border-radius: 0 0 16px 0;
  display: inline-block;
  margin: 0 0 8px 0;
  position: relative;
  left: 0;
  top: 0;
}
.honor-desc {
  color: #fff;
  font-size: 15px;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 12px;
  border-radius: 0 8px 8px 0;
  display: inline-block;
  margin-left: 0;
}
.honor-item:hover .honor-overlay {
  opacity: 1;
}
.honor-item.out-view {
  opacity: 0.3;
  transition: opacity 0.3s;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  color: #005aba;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
.carousel-btn:hover {
  background: #005aba;
  color: #fff;
}
@media (max-width: 1200px) {
  .honor-carousel .honor-item,
  .honor-carousel-group .honor-item {
    min-width: 48%;
    max-width: 48%;
    height: 220px;
  }
  .honor-carousel-track,
  .honor-carousel-track-group {
    width: 98%;
  }
}
@media (max-width: 800px) {
  .honor-carousel .honor-item,
  .honor-carousel-group .honor-item {
    min-width: 98vw;
    max-width: 98vw;
    height: 180px;
    margin-right: 0;
  }
  .honor-carousel-track,
  .honor-carousel-track-group {
    gap: 0;
    width: 100vw;
  }
}
@media (max-width: 600px) {
  .honor-section {
    padding: 0 6px;
  }
  .honor-title {
    font-size: 22px;
  }
  .year-tabs {
    gap: 8px;
  }
}
/* 评论按钮与回复样式 (moved from pages/TSalon-detail.html) */
.comments-section .comment-controls {
  gap: 12px;
}
.comments-section .comment-action-btn {
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  cursor: pointer;
}
.comments-section .comment-action-btn:hover {
  background: #f0f8ff;
}
.comments-section .reply-container textarea,
.comments-section .comment-form textarea {
  font-size: 14px;
  line-height: 1.5;
}
.comments-section .reply-container .btn {
  padding: 6px 10px;
  font-size: 13px;
}
.comments-section .comment-item {
  padding: 12px;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .comments-section .comment-action-btn {
    font-size: 13px;
    padding: 6px 8px;
  }
}

/* Styles moved from pages/TSalon-detail.html <style> block */
/* Small-scope overrides for TSalon detail page */

.article-detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 16px;
}

.article-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.news-detail-meta-row {
  color: #666;
  font-size: 14px;
  margin-bottom: 50px;
}
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
}
@media (max-width: 700px) {
  .news-detail-title {
    font-size: 20px;
  }
}
/* comments section styles */
.comments-section {
  max-width: 900px;
  margin: 24px auto;
  padding: 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.comments-section h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}
.comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}
.comment-item {
  border-top: 1px solid #eee;
  padding: 12px 0;
}
/* .comment-reply {
  margin-top: 8px;
} */
.comments-section .comment-level-0 {
  margin-left: 0;
  border-left: none;
  background-color: #fff;
}
.comments-section .comment-level-1 {
  margin-left: 16px;
  padding-left: 16px;
  /* border-left: 3px solid #e0ecff;
  background-color: #f9fbff; */
}
.comments-section .comment-level-2 {
  margin-left: 32px;
  padding-left: 16px;
}
.comments-section .comment-children {
  margin-top: 10px;
}
.comments-section .comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.comments-section .comment-time {
  color: #666;
  font-size: 13px;
}
.comment-meta {
  color: #005aba;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
/* 匿名用户使用灰色 */
.comment-meta.anonymous {
  color: #005aba;
}

/* 回复者使用绿色 */
.comment-meta.replier {
  color: #2e8b57;
}

.comments-section .comment-type {
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 13px;
  background: #eef2ff;
  color: #3354d6;
}
.comments-section .comment-type.is-reply {
  background: #e6f8ed;
  color: #1a7a45;
}

.comment-text {
  white-space: pre-wrap;
  font-size: 1rem;
}

/* 新闻资讯 */
.news-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 24px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 115, 238, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  position: relative;
}
.news-card:hover {
  box-shadow: 0 10px 32px rgba(0, 115, 238, 0.18);
  transform: translateY(-8px) scale(1.02);
  border-color: #b3d8ff;
}
.news-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  transition: transform 0.4s;
}
.news-card:hover .news-img {
  transform: scale(1.04);
}
.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #999;
  padding: 10px 18px 16px 18px;
  margin-top: auto;
  background: none;
}
.news-title {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  margin: 18px 18px 8px 18px;
  line-height: 1.4;
  transition: color 0.2s;
}
.news-card:hover .news-title {
  color: #005aba;
}
.news-desc {
  font-size: var(--fz-small);
  color: #555;
  margin: 0 18px 12px 18px;
  line-height: 1.7;
  opacity: 0.92;
  transition: color 0.2s;
}
.news-date {
  font-size: 13px;
  color: #999;
  margin-left: 8px;
}
.news-footer .views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-footer .views svg {
  width: 18px;
  height: 18px;
  fill: #888;
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-img {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-img {
    height: 120px;
  }
}
/* 首页特有样式 */
.index-fullpage-sections {
  position: relative;
  width: 100%;
}
.index-fullpage-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.index-news-inner,
.index-enterprise-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* padding-left: 20px;
  padding-right: 20px; */
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .index-news-inner,
  .index-enterprise-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.index-page-indicator {
  position: fixed;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.index-indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4d4d4;
  margin: 15px 0;
  cursor: pointer;
  transition: var(--transition);
}
.index-indicator-dot.active {
  background-color: #005aba;
  transform: scale(1.2);
}
.index-banner-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  background: #000;
}

.index-banner-section .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.index-banner-section .banner-slide.active {
  opacity: 1;
}

/* Banner加载效果 */
.index-banner-section .banner-slide.loaded {
  opacity: 1;
}

.index-banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.index-banner-container.active {
  opacity: 1;
}

.index-news-section {
  padding: 60px 0;
  /* background-color:#f9f9f9;
	*/
}

.index-news-container {
  display: flex;
  /* gap:30px; */
  /* margin-bottom:30px; */
}
/* 左侧大图新闻 */
.index-featured-news {
  flex: 0 0 54%;
  max-width: 54%;
  padding-right: 2%;
}
.index-news-image {
  position: relative;
  /* border-radius:8px; */
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.index-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.index-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 80, 200, 0.65) 0%, rgba(0, 80, 200, 0.85) 100%);
  color: white;
}
.index-image-overlay .news-title {
  font-size: 20px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-image-overlay .news-desc {
  font-size: var(--fz-small);
  margin-bottom: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-image-overlay .news-date {
  font-size: 12px;
  opacity: 0.8;
}
/* 右侧新闻列表 */
.index-news-list {
  flex: 0 0 46%;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.index-news-item {
  background: white;
  padding: 30px;
  /* border-radius:8px; */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.index-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(95, 156, 255, 0.518);
}
.index-news-item .news-title {
  font-size: var(--fz-normal);
  /* margin-bottom:10px;*/
}
.index-news-item .index-news-title a {
  font-size: 1.1rem;
  color: #005aba;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news-item .index-news-title a:hover {
  color: #005aba;
  /* font-weight: 600; */
}
.index-news-item:hover .index-news-title a,
.index-news-item-list:hover .index-news-title a {
  font-weight: 600;
}
.index-news-item .index-news-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news-item .index-news-date {
  font-size: 0.8rem;
  color: #adadad;
}
/* 查看更多 */
.index-view-more {
  text-align: center;
}
.index-more-link {
  display: inline-block;
  padding: 8px 20px;
  color: #005aba;
  text-decoration: none;
  border: 1px solid #005aba;
  border-radius: 20px;
  transition: all 0.3s;
}
.index-more-link:hover {
  background: #005aba;
  color: white;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .index-news-container {
    flex-direction: column;
  }
  .index-news-image {
    height: 300px;
  }
}
/* 企业板块样式 */
.index-enterprise-gallery {
  /* padding:60px 0;
	*/
  background: #f5f7fa;
  height: 500px;
}
.index-section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #005aba;
  position: relative;
}
.index-section-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #005aba;
  margin: 10px auto 0;
}
/* 网格布局 */
.index-enterprise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.index-enterprise-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.index-enterprise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* 黑色蒙版文字层 */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(31, 47, 56, 0.9));
  color: #fff;
}
.image-overlay h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}
.image-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.view-more {
  display: inline-block;
  font-size: var(--fz-small);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s;
}
.index-enterprise-card:hover .view-more {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
/* 响应式设计 */
@media (max-width: 1200px) {
  .index-enterprise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .index-enterprise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .index-enterprise-grid {
    grid-template-columns: 1fr;
  }
}
/* 页脚基础样式 */
.site-footer {
  background: #f9f9f9;
  color: #333;
  padding: 50px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 左侧内容样式 */
.footer-left {
  flex: 0 0 35%;
  padding-right: 180px;
}
.footer-logo img {
  max-width: 160px;
  margin-bottom: 10px;
}
.footer-social {
  margin: 20px 0;
}
.qr-code-hover {
  display: flex;
  gap: 20px;
}
.social-icon {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.social-icon1 {
  background-image: url(../images/icon/wetalk.webp);
}
.social-icon2 {
  background-image: url(../images/icon/X\ Logo.webp);
}
.social-icon:hover {
  background: #005aba;
}
.social-icon i {
  font-size: 20px;
  color: white;
}
.qr-code {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  width: 150px;
  text-align: center;
  margin-bottom: 15px;
}
.qr-code img {
  width: 130px;
  height: 130px;
  display: block;
  margin: 0 auto;
}
.qr-code p {
  color: #333;
  font-size: 12px;
  margin-top: 5px;
}
.social-icon:hover .qr-code {
  opacity: 1;
  visibility: visible;
}
.footer-buttons {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}
.footer-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #ffffff;
  color: #666;
  border: solid 1px #999;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
  font-size: var(--fz-small);
  font-weight: 500;
}
.footer-btn:hover {
  background: #005aba;
  color: #fff;
}
.footer-address p {
  margin: 5px 0;
  color: #666;
}
/* 右侧导航样式 */
.footer-right {
  flex: 1;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.nav-column {
  flex: 1;
  min-width: 100px;
}
.nav-column h3 {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
}
.nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-column li {
  margin-bottom: 6px;
}
.nav-column a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-column a:hover {
  color: #005aba;
  padding-left: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-left {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .footer-nav {
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .footer-buttons {
    flex-direction: column;
  }
  .nav-column {
    min-width: 100%;
  }
  .nav-column h3 {
    margin-top: 20px;
  }
}
/* 客服电话页面样式 */
.service-phone-section {
  min-height: 34vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  margin: 2em 2em;
}
.service-phone-box {
  padding: 3em 2em;
  text-align: center;
  width: 30%;
}
.service-phone-qrcode {
  padding: 3em 2em;
  text-align: center;
  width: 30%;
}
.service-phone-qrcode img {
  width: 36%;
  height: auto;
}
.service-phone-qrcode-tip {
  color: #999;
  font-size: 1rem;
}
.service-phone-box h2 {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.service-phone-box .service-phone-link {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #005aba;
  text-decoration: none;
  transition: color 0.2s;
}
.service-phone-box .service-phone-link:hover {
  color: #003366;
  text-decoration: underline;
}
.service-phone-box .service-phone-tip {
  margin-top: 1em;
  color: #888;
  font-size: 1rem;
}
/* 招标公告页面专用样式 */
.tender-section {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  flex-direction: row;
}
.tender-list-wrapper {
  flex: 0 0 33.33%;
  min-width: 320px;
  background: #f5f9ff;
  padding: 32px 28px 32px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.tender-list {
  flex: 1;
  max-height: 900px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d7d7d7 #eaf4fb;
  padding-right: 12px;
}
.tender-list::-webkit-scrollbar {
  width: 6px;
  background: #eaf4fb;
}
.tender-list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 8px;
  min-height: 60px;
}
.tender-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  color: #333;
}
.tender-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 115, 238, 0.08);
  padding: 24px 22px 18px 22px;
  margin-bottom: 28px;
  /* display:flex;
	*/
  flex-direction: column;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.tender-item.selected {
  border: 2px solid #005aba;
  box-shadow: 0 4px 16px rgba(0, 115, 238, 0.13);
}
.tender-item.selected .tender-item-title {
  color: #005aba;
}
.tender-item-title {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  max-height: 2.8em;
}
.tender-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tender-meta-unit {
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
}
.tender-meta-date {
  font-size: 0.9rem;
  color: #999;
}
.tender-meta {
  display: inline-block;
  background: #f0f1f5;
  border-radius: 6px;
  padding: 2px 10px;
  margin: 8px 0 8px 0;
  font-size: 0.96rem;
  color: #333;
  line-height: 1.8;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 招标公告页面样式结束 */
/* 人才招聘页面专用样式 */
.job-meta-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.job-meta-tab {
  background: #f2f2f2;
  color: #333;
  border-radius: 6px;
  padding: 2px 12px;
  font-size: 0.86rem;
  font-weight: 500;
}
/* 人才招聘页面样式结束 */
/* 服务支持-常见问题页面专用样式 */
.service-tender-section {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  flex-direction: row;
}
.service-tender-list-wrapper {
  flex: 0 0 33.33%;
  min-width: 320px;
  background: #f5f9ff;
  padding: 32px 28px 32px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-tender-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d7d7d7 #eaf4fb;
  background-color: #fff;
  margin-bottom: 20px;
}
.service-tender-list::-webkit-scrollbar {
  width: 6px;
  background: #eaf4fb;
}
.service-tender-list::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 8px;
  min-height: 60px;
}

.service-tender-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  color: #333;
}
.service-tender-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 115, 238, 0.08);
  /* padding:24px 22px 18px 22px;
	*/
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.service-tender-item.selected {
  border: 2px solid #005aba;
  box-shadow: 0 4px 16px rgba(0, 115, 238, 0.13);
}
.service-tender-item.selected .service-tender-item-title {
  color: #005aba;
}
.service-tender-title-text {
  font-size: var(--fz-normal);
  font-weight: bold;
  text-align: center;
  background-color: #6ea9ff;
  color: #fff;
  padding: 3%;
}
.service-tender-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.service-tender-meta-unit {
  font-size: var(--fz-small);
  color: #999;
  font-weight: 500;
}
.service-tender-meta {
  display: inline-block;
  padding: 20px 60px 0px 20px;
  margin: 0 30px;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
/* 服务支持-常见问题页面样式结束 */
.service-tender-meta.selected {
  color: #005aba;
  font-weight: bold;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  margin-left: 30px;
}
.index-banner-section .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #005aba;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.index-banner-section .carousel-btn.prev {
  left: 18px;
}
.index-banner-section .carousel-btn.next {
  right: 18px;
}
.index-banner-section .carousel-btn:hover {
  background: #005bb5;
}
/* 企业内刊专用样式，避免与其他页面名称冲突 */
.orporate-journal-section {
  padding: 3vw 0 4vw 0;
  background: #f8f9fb;
}
.orporate-journal-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.orporate-journal-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.orporate-journal-tab {
  font-size: 17px;
  color: #555;
  padding: 7px 28px;
  border-radius: 4px;
  background: #f5f7fa;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.orporate-journal-tab.active,
.orporate-journal-tab:hover {
  color: #005aba;
  background: #e6f0fa;
}
.orporate-journal-block {
  max-width: 1200px;
  margin: 0 auto;
}
.orporate-journal-carousel {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.orporate-journal-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2vw;
  width: 100%;
}
.orporate-journal-item {
  min-width: 320px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1vw;
  text-align: center;
  transition: box-shadow 0.2s;
}
.orporate-journal-item img.orporate-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.orporate-journal-img-title {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
}
.orporate-journal-carousel-btn.prev {
  left: 10px;
}
.orporate-journal-carousel-btn.next {
  right: 10px;
}
.orporate-journal-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  color: #005aba;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.orporate-journal-carousel-btn:hover {
  background: #0056b3;
  border-color: #0056b3;
  color: #fff;
}
@media (max-width: 900px) {
  .orporate-journal-item {
    min-width: 220px;
    max-width: 260px;
    padding: 2vw 1vw;
  }
  .orporate-journal-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .orporate-journal-block {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .orporate-journal-item {
    min-width: 160px;
    max-width: 180px;
    font-size: 0.95rem;
  }
  .orporate-journal-tab {
    padding: 0.4em 1em;
    font-size: 0.95rem;
  }
}
.orporate-journal-detail-section {
  max-width: 700px;
  margin: 40px auto 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.orporate-journal-detail-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.orporate-journal-detail-img-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.orporate-journal-detail-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.orporate-journal-detail-desc {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
}

/* 内容展示区/PDF容器基础样式（共用） */

.content-display {
  flex: 1;
  padding: 80px 0 0 40px;
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  min-height: 500px;
  overflow-y: auto;
}

/* 通用展示标题与内容区域 */
.content-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e6eefb;
  font-weight: bold;
}
.content-body {
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
  overflow-y: auto;
  max-height: 62vh; /* 视口自适应高度，避免整页过长 */
  padding-right: 6px; /* 为滚动条预留一点内边距，避免遮挡文字 */
  scrollbar-width: thin;
  scrollbar-color: #e8e8e8 #f5f5f5;
}
.content-body p {
  margin-bottom: 1.2em;
  letter-spacing: 0.04em;
  line-height: 2;
  font-size: 1rem;
  color: #333;
}

/* HTML展示区样式 - 用于人才招聘页面 */
#job-html-viewer {
  line-height: 1.6;
}

/* 岗位详情容器采用纵向布局，便于标题区固定、内容区独立滚动 */
.job-detail-container {
  display: flex;
  flex-direction: column;
}

.job-title {
  font-size: 1.2rem;
  color: #333;
  margin: 0; /* 由外层 .job-detail-header 统一控制间距与分隔线 */
  padding-bottom: 1rem;
}

/* 岗位详情 - 标题区样式 */
.job-detail-header {
  border-bottom: 1px solid #e6eefb; /* 浅色分隔线 */
  padding-bottom: 0.1rem; /* 标题区内边距，留白更舒适 */
}

/* 岗位详情正文区可滚动（保持标题区固定） */
.job-detail-body {
  overflow-y: auto;
  max-height: 74vh; /* 视口自适应高度，避免整页过长 */
  padding-right: 6px; /* 为滚动条预留一点内边距，避免遮挡文字 */
  scrollbar-width: thin;
  scrollbar-color: #e8e8e8 #f5f5f5;
}
.job-detail-body::-webkit-scrollbar {
  width: 8px;
  background: #f5f5f5;
}
.job-detail-body::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}
.job-detail-body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

.job-section {
  margin-bottom: 3rem;
}

.job-section h3 {
  font-size: 1.1rem;
  color: #0073ee;
  margin: 1rem 0 0.5rem;
}

.job-content {
  line-height: 2;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.04rem;
}

.job-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.job-content li {
  margin-bottom: 0.3rem;
}

.job-meta-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  gap: 1rem;
  margin-top: 1rem;
}

.job-meta-item h4 {
  font-size: 1rem;
  color: #666;
  margin: 0 0 0.2rem 0;
  font-weight: 500;
}

.job-meta-item p {
  margin: 0;
  color: #333;
  font-size: 1rem;
}

.no-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #888;
  font-size: 1.1rem;
  margin-top: 12px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .tender-section {
    flex-direction: column;
  }

  .tender-list-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .tender-pdf,
  .content-display {
    width: 100%;
  }

  .job-title {
    font-size: 1.3rem;
  }
  .job-detail-body {
    max-height: 54vh; /* 移动端适当降低高度，减少内嵌滚动对体验影响 */
  }

  .job-meta-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (max-width: 800px) {
  .orporate-journal-detail-section {
    padding: 16px 6px;
    margin: 20px auto 30px auto;
  }
  .orporate-journal-detail-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.index-news-title a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04rem;
}
/* 首页新闻图片蓝色渐变遮罩 */
.index-news-image .image-overlay,
.index-news-image-featured .image-overlay,
.index-image-overlay {
  /* background:linear-gradient(180deg,#005ab300 0%,#005ab3 100%); */
  background-color: rgba(0, 123, 255, 0.6);
  /* 适配不同class，保证蓝色渐变 */
}

/* 新闻分页器自定义样式（原style标签内容迁移） */
.news-section {
  position: relative;
}
.news-pagination-custom {
  position: static;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  border-radius: 8px;
  padding: 0.5vw 1vw;
  font-size: clamp(12px, 1.5vw, 16px);
  margin-top: 2vw;
}
.page-btn {
  min-width: 32px;
  font-size: clamp(12px, 1.5vw, 16px);
  padding: clamp(2px, 0.5vw, 6px) clamp(8px, 1vw, 16px);
  margin: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.page-btn.active,
.page-btn:hover {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
}
.page-btn:disabled {
  background: #f5f5f5;
  color: #aaa;
  border-color: #e0e0e0;
  cursor: not-allowed;
}
.page-jump-input {
  width: 40px;
  font-size: inherit;
  padding: 2px 4px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
}
.page-total-span {
  margin-left: 4px;
  color: #888;
  font-size: inherit;
}
.logo-placeholder {
  display: inline-block;
  width: 120px;
  height: 48px;
  background: transparent;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
}
/* 党的建设 */
.party-nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.party-nav-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 24px 0;
}
.party-nav-breadcrumb {
  font-size: 15px;
  color: #888;
  white-space: nowrap;
}
.party-nav-breadcrumb a {
  color: #999;
  text-decoration: none;
}
.party-nav-breadcrumb span {
  color: #eb2222;
}
.party-nav-tabs {
  display: flex;
}
.party-tab {
  font-size: 15px;
  color: #555;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.party-tab.active,
.party-tab:hover {
  color: #eb2222;
}
@media (max-width: 800px) {
  .party-nav-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .party-nav-tabs {
    gap: 12px;
  }
}
.party-img {
  width: 100%;
  height: 31.25rem;
  /* 可以根据需求调整高度 */
  background-size: cover;
  /* display:flex;
	*/
  align-items: center;
  padding: 0 10%;
  box-sizing: border-box;
}
.party-text-content {
  max-width: 1400px;
  /* 限制最大宽度为1400px */
  margin: 0 auto;
  /* 水平居中 */
  padding-top: 60px;
}
.party-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #eb2222;
}
.party-title-three {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 60px;
  color: #eb2222;
}

.party-content {
  background-image: url(../images/party/party-img-2.webp);
  width: 100%;
  height: 37.5rem;
  background-size: cover;
  background-position: center;
}

.party-content img {
  display: flex;
  max-width: 100%;
  height: auto;
}
.party-img-text {
  width: 46rem;
  text-align: left;
  line-height: 180%;
  font-weight: 500;
  color: #666;
}
.party-img-text h1 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #eb2222;
}
.party-img-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.04rem;
  text-align: justify;
}

/* 党的建设荣誉证书轮播区样式 */
.party-honor-carousel-section {
  margin: 2rem 0;
  text-align: center;
}
.party-honor-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.party-honor-carousel {
  max-width: 1400px;
  gap: 20px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7f7f7;
}
.party-honor-carousel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.5s;
  border-radius: 8px;
}
.party-honor-carousel-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.party-honor-carousel-btn:hover {
  background: #eee;
}
/* 党建新闻+图片轮播板块样式 */
.party-news-carousel-section {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.party-news-carousel-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  margin: 3rem 0;
}
.party-news-carousel-left {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 33rem;
  width: 46.3rem;
  padding-top: 5%;
}
.party-news-carousel-imgbox {
  height: 100%;
  width: 100%;
}
.party-news-carousel-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  /* 预留比例，减少图片未加载时的布局抖动（基于 810x546） */
  aspect-ratio: 810 / 546;
}
.party-news-carousel-img-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0) 100%);
  /* display:flex;
	*/
  align-items: flex-end;
  padding: 18px 8px 0 8px;
  pointer-events: none;
  text-align: center;
}
.party-news-carousel-img-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.party-news-carousel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content:center; */
}
.party-news-list-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  color: #eb2222;
}
.party-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.party-news-list a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.party-news-list a:hover {
  color: #eb2222;
  text-decoration: underline;
}
/* 当前轮播激活项高亮 */
.party-news-list li.active a {
  color: #eb2222;
  text-decoration: underline;
}
.party-news-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.party-news-carousel-arrow-left {
  left: 8px;
}
.party-news-carousel-arrow-right {
  right: 8px;
}
.party-news-carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
/* 党建新闻列表分隔线 */
.party-news-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.2rem 0;
}

.party-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* padding-left:20px;
	padding-right:20px; */
  box-sizing: border-box;
}
.party-honor-carousel-section {
  margin: 60px 0;
}
.party-honor-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.party-honor-carousel-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 200px;
  /* 根据图片高度调整 */
}
.party-honor-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: party-honor-marquee 40s linear infinite;
  will-change: transform;
}
.party-honor-carousel-track.paused {
  animation-play-state: paused;
}
.party-honor-carousel-img {
  height: 200px;
  margin: 0 24px;
  border-radius: 2px;
  border: #5a130b solid 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  object-fit: cover;
  /* 改为A4横板：297/210，结合固定高度，按比例计算宽度 */
  aspect-ratio: 297 / 210;
  /* 边框计入高度，避免超出容器导致裁切 */
  box-sizing: border-box;
}
@keyframes party-honor-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.party-news-detail-section {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}
.party-news-detail-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
  margin: 20px 140px;
  line-height: 1.3;
  text-align: center;
}
.party-news-detail-meta-row {
  display: flex;
  justify-content: center;
  /* margin:30px auto;*/
  gap: 32px;
  font-size: 1rem;
  color: #999;
  margin-bottom: 30px;
  text-align: center;
}
.party-detail-views {
  color: #888;
  font-size: 1rem;
}
.party-news-detail-content {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 24px;
}
.party-news-detail-content p {
  margin: 0 0 16px 0;
}

.party-news-detail-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.party-news-detail-images img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* .party-news-detail-images {
	display:flex;
	flex-wrap:wrap;
	gap:18px;
	margin-top:18px;
} */
/* .party-news-detail-cover {
	width:100%;
	max-width:600px;
	border-radius:8px;
	margin-bottom:18px;
	box-shadow:0 2px 12px rgba(0,0,0,0.07);
	object-fit:cover;
}
.party-news-detail-figure {
	margin:0;
	width:220px;
	border-radius:8px;
	overflow:hidden;
	background:#f7f7f7;
	box-shadow:0 2px 8px rgba(0,0,0,0.04);
	display:flex;
	align-items:center;
	justify-content:center;
} */
/* .party-news-detail-figure img {
	width:100%;
	height:auto;
	display:block;
	border-radius:8px;
} */
/* @media (max-width:600px) {
	.party-news-detail-section {
	padding:18px 6px 18px 6px;
}
.party-news-detail-title {
	font-size:1.3rem;
}
.party-news-detail-meta-row {
	flex-direction:column;
	gap:8px;
	font-size:0.95rem;
}
.party-news-detail-cover {
	max-width:100%;
}
.party-news-detail-figure {
	width:100px;
}
} */
/* .party-news-detail-figure-adaptive {
	flex:1 1 0;
	min-width:0;
	max-width:33%;
} */
@media (max-width: 600px) {
  .party-news-detail-figure-adaptive {
    max-width: 100%;
  }
}
/* PDF.js 预览区美化（招标公告/通用） */
.tender-pdf {
  margin: 0 auto;
  padding-top: 5rem;
  max-height: 800px;
}
#tender-pdf-viewer {
  width: 100%;
  min-height: 30vh;
  max-height: 70vh;
  background: #fff;
  /* border-radius:8px;*/
  /* box-shadow:0 2px 12px rgba(0,0,0,0.06);*/
  overflow-y: auto !important;
  overflow-x: auto !important;
  padding: 16px 0 8px 0;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
  scrollbar-width: thin;
  scrollbar-color: #bbb #f5f5f5;
}

#tender-pdf-viewer::-webkit-scrollbar {
  width: 8px;
  background: #f5f5f5;
  opacity: 0;
  transition: opacity 0.2s;
}
#tender-pdf-viewer:hover::-webkit-scrollbar {
  opacity: 1;
}
#tender-pdf-viewer::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}
#tender-pdf-viewer::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}
@media (max-width: 600px) {
  #tender-pdf-viewer {
    min-height: 220px;
    max-height: 60vh;
    padding: 8px 0 4px 0;
  }
}
/* PDF 预览通用样式 */
#faq-pdf-viewer {
  height: 100%;
  /* overflow-y: auto; */
  margin: 0 auto;
}
#tender-pdf-viewer,
#job-pdf-viewer {
  height: 100%;
  overflow-y: auto;
  margin: 0 auto;
}

/* PDF canvas 居中显示 */
#faq-pdf-viewer canvas,
#tender-pdf-viewer canvas,
#job-pdf-viewer canvas {
  display: block;
  margin: 0 auto 16px auto;
  background: #fff;
}

/* 4K超大屏适配：放大首页主要内容和字体 */
@media (min-width: 2560px) {
  html {
    font-size: 22px;
  }
  .container {
    max-width: 2200px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .index-section-title {
    font-size: 2rem;
  }
  .index-news-title,
  .index-news-title a {
    font-size: 1.2rem;
  }
  .index-news-desc {
    font-size: 1.25rem;
  }
  .index-banner-section {
    min-height: 600px;
  }
  .index-banner-container,
  .banner-slide {
    min-height: 600px;
  }
  .index-enterprise-card h3 {
    font-size: 1.5rem;
  }
  .index-enterprise-grid {
    gap: 40px;
  }
}
.banner-text-overlay {
  position: absolute;
  left: 58%;
  top: 38%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 2;
  text-align: left;
  pointer-events: auto;
  width: 90%;
  /* max-width: 420px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.banner-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.banner-text-small {
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 0.12em;
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.banner-text-large {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}
.banner-switch-group {
  display: flex;
  gap: 12px;
  pointer-events: auto;
}
.banner-switch-dot {
  width: 30px;
  height: 6px;
  background-color: #fff;
  border: none;
}
.banner-switch-dot.active {
  background-color: rgba(0, 90, 186, 0.7);
}
@media (max-width: 900px) {
  .banner-text-small {
    font-size: 0.7rem;
  }
}
@media (max-width: 600px) {
  .banner-text-small {
    font-size: 0.6rem;
  }
}
.banner-num {
  font-size: 2rem;
  font-weight: 400;
}
.banner-num-suffix {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 0.1em;
}
@media (max-width: 900px) {
  .banner-num {
    font-size: 0.95rem;
  }
  .banner-num-suffix {
    font-size: 0.6rem;
  }
}
@media (max-width: 600px) {
  .banner-num {
    font-size: 0.8rem;
  }
  .banner-num-suffix {
    font-size: 0.48rem;
  }
}

/* .service-tender-pdf,
#faq-html-display {
  margin-left: 20px;
  padding-top: 5rem;
  height: 60vh;
  overflow: hidden;
} */

/* 服务支持-常见问题页面：右侧内容区基础排版 */
#faq-html-display {
  line-height: 1.7;
  flex: 1;
  padding: 80px 0 0 40px;
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  min-height: 500px;
  overflow-y: auto;
}

/* FAQ 标题间距（由 JS 生成的 h3） */
#faq-html-display h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e6eefb;
  font-weight: bold;
}
.faq-answer {
  margin-bottom: 20px;
  letter-spacing: 0.04rem;
  text-align: justify;
  font-style: normal;
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
  overflow-y: auto;
  max-height: 62vh;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 #f5f5f5;
}
.faq-answer p {
  /* margin-bottom: 1.2em; */
  letter-spacing: 0.04em;
  line-height: 2;
  font-size: 1rem;
  color: #333;
}

/* 左侧列表滚动与高度限制 */
#faq-list-heating,
#faq-list-transport {
  max-height: 300px;
}

#faq-content-heating,
#faq-content-transport {
  overflow-y: auto;
}

/* 左侧分组标题吸顶 */
.service-tender-title-text {
  position: sticky;
  top: 0;
}

/* 本页 Banner 背景 */
.page-banner-faq {
  background-image: url("/images/background/banner.webp");
}

/* TSalon-detail 页面内联样式提取（从 pages/TSalon-detail.html） */
/* 将页面中行内 style 转为可复用类，保留路径引用以便缓存 */
.page-banner-detail {
  background-image: url("/images/background/banner.webp");
  background-size: cover;
  background-position: center;
}
.comment-form-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.comments-list {
  margin-top: 16px;
}
.comments-count {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}
.comment-status {
  color: #666;
  font-size: 0.95rem;
  margin-left: 8px;
}
.back-link {
  display: inline-block;
  margin-top: 18px;
}
.detail-author {
  margin-left: 12px;
}

/* Back icon used in TSalon-detail: small left arrow */
.icon-back {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
  fill: currentColor; /* when using inline SVG */
}
.back-link .sr-only {
  /* 屏幕阅读器可见但视觉隐藏 */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* TSalon 页面专用样式（从 pages/TSalon.html 提取） */
/* 辅助类：对屏幕阅读器可见但视觉隐藏 */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
.page-banner-small {
  padding: 56px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.page-banner-small .page-title {
  font-size: 34px;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}
.page-banner-small .page-subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.page-content {
  padding: 36px 0;
}
.article-list.compact {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0f0f0;
}
.two-column .columns {
  display: flex;
  gap: 200px;
  margin-top: 12px;
  height: 360px;
}
.two-column .col {
  flex: 1;
}
.two-column .col ul {
  border-top: none;
}
.article-item-compact {
  display: flex;
  justify-content: space-between;
  padding: 14px 8px;
  border-bottom: 1px solid #fafafa;
  align-items: center;
  transition: background 0.12s ease;
}
/* .article-item-compact.is-top {
  background: #f7fbff;
  border-left: 3px solid #005aba;
}
.article-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #005aba;
  color: #fff;
  font-size: 12px;
  line-height: 1;
} */
.article-item-compact .title {
  font-weight: 500;
  color: #222;
}
.article-item-compact .date {
  font-size: 13px;
  color: #888;
  margin-left: 12px;
  white-space: nowrap;
}
.article-item-compact:hover {
  background: #fbfbfb;
}
.article-item-compact.is-top:hover {
  background: #f1f7ff;
}
.more {
  text-align: center;
  margin: 20px 0;
}
li a {
  text-decoration: none;
  letter-spacing: 0.04em;
}
.back-link_btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  gap: 10px;
}
.back-link_btn:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  background-color: #005aba;
  color: #fff;
}
.submit_btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #62a3e8;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.submit_btn:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  background-color: #005aba;
  color: #fff;
}

.articles {
  margin: 10px 100px;
}
.articles h2 {
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
@media (max-width: 960px) {
  .two-column .columns {
    flex-direction: column;
    gap: 12px;
  }
  .article-item-compact {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-item-compact .date {
    margin-top: 6px;
  }
  .page-banner-small {
    padding: 36px 0;
  }
  .page-banner-small .page-title {
    font-size: 22px;
  }
}
.counsel-article {
  letter-spacing: 1px;
}
.counsel-article p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  letter-spacing: 1.4px;
}

.counsel-article h4 {
  margin-bottom: 10px;
}

.counsel-article li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.counsel-article ul {
  margin-bottom: 20px;
}
.counsel-article ol {
  margin-top: 20px;
}
.banner-text-jyxc {
  margin-top: 90px;
  letter-spacing: 4px;
}
.banner-text-jyxc p {
  margin-top: 6px;
}
