/* 覆盖 index 页面的 overflow: hidden，允许滚动 */
html,
body {
  overflow: auto;
  height: auto;
}

body {
  background-color: #f5f5f5;
}

/* list 页面专用样式 */
.list-page {
  min-height: calc(100vh - 70px);
  padding-bottom: 60px;
}

/* 标题区域 */
.list-header {
  background: #f5f5f5;
  padding: 50px 0 30px;
  position: relative;
  overflow: hidden;
}

.list-header-bg-text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: rgba(200, 200, 200, 0.25);
  font-weight: 300;
  letter-spacing: 10px;
  z-index: 0;
  font-family: Arial, sans-serif;
}

.list-header-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
}

.list-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.list-header-title-text {
  font-size: 36px;
  color: #31475e;
  margin: 0 16px;
  font-weight: 400;
}

.list-header-deco {
  display: flex;
  align-items: center;
  gap: 6px;
}

.deco-line {
  width: 28px;
  height: 4px;
  background: #1faf88;
  border-radius: 2px;
}

.deco-line-short {
  width: 12px;
  height: 4px;
  background: #1faf88;
  border-radius: 2px;
}

.deco-dot {
  width: 40px;
  height: 40px;
  background: #ffd93d;
  border-radius: 50%;
  margin: 0 12px;
}

.list-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.list-search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.list-search-box input {
  width: 240px;
  height: 34px;
  border: none;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.list-search-box button {
  width: 40px;
  height: 34px;
  background: #fff;
  border: none;
  border-left: 1px solid #eee;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.list-search-box button:hover {
  color: #1faf88;
}

/* 列表区域 */
.list-container {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 0 40px;
}

.list-item {
  display: flex;
  padding: 35px 0;
  border-bottom: 1px solid #eee;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item-img {
  width: 300px;
  height: 210px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  margin-right: 35px;
  background: #fafafa;
}

.list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}

.list-item-title {
  font-size: 20px;
  color: #31475e;
  font-weight: 600;
  position: relative;
  padding-left: 12px;
  margin-bottom: 30px;
  line-height: 1.4;

}

.list-item-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #1faf88;
  border-radius: 2px;
}

.list-item-subtitle {
  font-size: 14px;
  color: #31475e;
  margin-bottom: 16px;
  font-weight: 500;
}

.list-item-summary {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
  text-indent: 2em;
}

.list-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-item-date {
  font-size: 14px;
  color: #1faf88;
}

.list-item-btn {
  padding: 7px 22px;
  border: 1px solid #1faf88;
  background: transparent;
  color: #1faf88;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.list-item-btn:hover {
  background: #1faf88;
  color: #fff;
}

/* 悬浮下载+回顶部组件 */
.float-widget {
  position: fixed;
  right: 40px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.float-widget.show {
  opacity: 1;
  visibility: visible;
}

.float-widget-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 14px 10px;
}

.float-widget-qr-label {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

.float-widget-qr-label strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.float-widget-qr img {
  width: 109px;
  height: 109px;
  display: block;
  margin-top: 6px;
}

.float-widget-top {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  line-height: 0;
  transition: transform 0.2s ease;
}

.float-widget-top:hover {
  transform: scale(1.05);
}

.float-widget-top img {
  width: 119px;
  height: 119px;
  display: block;
}

/* 联系我们 + 浮动 home-navs */
.contact-section-wrapper {
  position: relative;
  padding-top: 80px;
}

.contact-floating-navs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* 联系我们标题（在绿色区域内，z-index高于卡片不被遮挡） */
.contact-header-list {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  z-index: 20;
}

.contact-header-list img {
  height: 80px;
  object-fit: contain;
}

.contact-us-page-list {
  background: linear-gradient(135deg, #0d8a6b 0%, #065f46 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 100px 30px;
}

.contact-info-container-list {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

.contact-us-page-list .contact-section-title {
  font-size: 24px;
  color: #fff;
  margin: 0 0 25px 0;
  font-weight: 600;
}

.contact-us-page-list .contact-details p {
  font-size: 16px;
  color: #fff;
  line-height: 2.2;
  margin: 0 0 8px 0;
}

.contact-us-page-list .contact-details .label {
  display: inline-block;
  min-width: 100px;
  font-weight: 500;
  opacity: 0.9;
}

.contact-footer-list {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.contact-footer-list p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  margin: 0;
}

.contact-footer-list a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-footer-list a:hover {
  color: #fff;
}