/* Reset & 基础设置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #f5f5f5;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
.z080e9container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 顶部导航栏 */
.z080e9navbar {
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.z080e9nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.z080e9site-title {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #00ffe7;
  text-shadow: 0 2px 8px #0ff;
}
.z080e9nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
}
.z080e9nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.z080e9nav-links a:hover {
  color: #00ffe7;
}
.z080e9nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #00ffe7;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.z080e9nav-container {
  position: relative;
}
@media (max-width: 900px) {
  .z080e9nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 4px 24px #0008;
    padding: 1rem 1.5rem 1.2rem;
    z-index: 999;
    gap: 0;
  }
  .z080e9nav-links.open {
    display: flex;
  }
  .z080e9nav-links a {
    margin: 0.7rem 0 0 0;
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  .z080e9nav-toggle {
    display: block;
    margin-left: auto;
  }
}

/* 主横幅 */
.z080e9hero {
  background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
  padding: 4rem 0 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.z080e9hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #00ffe7;
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px #0ff;
}
.z080e9hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.z080e9cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ffe7 0%, #007991 100%);
  color: #232526;
  font-weight: bold;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px #00ffe7a0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.z080e9cta-btn:hover {
  background: linear-gradient(90deg, #007991 0%, #00ffe7 100%);
  color: #fff;
}
.z080e9hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 1.2rem 0;
}
.z080e9hero-img {
  max-width: 320px;
  width: 80%;
  border-radius: 18px;
  box-shadow: 0 4px 32px #00ffe740, 0 2px 8px #0005;
  background: #232526;
  object-fit: contain;
  transition: transform 0.2s;
}
.z080e9hero-img:hover {
  transform: scale(1.04) rotate(-1deg);
}

/* 内容区块 */
.z080e9main-content {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.z080e9section {
  margin-bottom: 2.5rem;
  background: rgba(34, 40, 49, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px #0002;
  padding: 2.5rem 2rem 2rem 2rem;
}
.z080e9section h2 {
  color: #00ffe7;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
}
.z080e9services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.z080e9service-card {
  background: rgba(0, 255, 231, 0.08);
  border: 1.5px solid #00ffe7a0;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px #00ffe720;
  transition: transform 0.2s, box-shadow 0.2s;
}
.z080e9service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #00ffe740;
}
.z080e9service-card h3 {
  color: #00ffe7;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.z080e9service-card p {
  color: #e0e0e0;
  font-size: 1rem;
}

/* 信任保障/优势区块 */
.z080e9trust-section {
  margin-bottom: 2.5rem;
}
.z080e9trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.z080e9trust-card {
  background: rgba(0,255,231,0.10);
  border: 1.5px solid #00ffe7a0;
  border-radius: 14px;
  padding: 1.2rem 0.7rem;
  text-align: center;
  box-shadow: 0 2px 12px #00ffe720;
  transition: transform 0.2s, box-shadow 0.2s;
}
.z080e9trust-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #00ffe740;
}
.z080e9trust-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffe7;
  text-shadow: 0 2px 8px #0ff;
}

/* 优势与保障框架式布局 */
.z080e9trust-title {
  text-align: center;
  font-size: 2rem;
  color: #00ffe7;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.z080e9trust-framework {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.z080e9trust-row {
  display: flex;
  gap: 1.2rem;
}
.z080e9trust-card-fw {
  flex: 1 1 0;
  background: rgba(0,255,231,0.10);
  border: 2px solid #00ffe7a0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 12px #00ffe720;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.z080e9trust-card-fw:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #00ffe740;
}

/* FAQ区块 */
.z080e9faq-section {
  margin-bottom: 2.5rem;
}
.z080e9faq-list {
  margin-top: 1.2rem;
}
.z080e9faq-item {
  background: rgba(0,255,231,0.07);
  border-left: 4px solid #00ffe7;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px #00ffe710;
}
.z080e9faq-item h3 {
  color: #00ffe7;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.z080e9faq-item p {
  color: #e0e0e0;
  font-size: 1rem;
}

/* 团队介绍/服务流程 */
.z080e9team-intro, .z080e9service-flow {
  margin-top: 1.2rem;
  background: rgba(0,255,231,0.07);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px #00ffe710;
}
.z080e9team-intro h3, .z080e9service-flow h3 {
  color: #00ffe7;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.z080e9team-intro ul {
  list-style: disc inside;
  color: #e0e0e0;
  margin-left: 1rem;
}
.z080e9service-flow ol {
  color: #e0e0e0;
  margin-left: 1rem;
  list-style: decimal inside;
}

/* 联系区块额外内容 */
.z080e9contact-extra {
  margin-top: 1.5rem;
  background: rgba(0,255,231,0.07);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px #00ffe710;
}
.z080e9contact-extra h3 {
  color: #00ffe7;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.z080e9contact-extra ul {
  list-style: disc inside;
  color: #e0e0e0;
  margin-bottom: 0.7rem;
  margin-left: 1rem;
}
.z080e9contact-extra p {
  color: #e0e0e0;
  font-size: 1rem;
}

/* 免责声明 */
.z080e9disclaimer {
  margin-top: 0.7rem;
  color: #ffb300;
  font-size: 0.95rem;
  letter-spacing: 1px;
  background: rgba(255,255,0,0.07);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  display: inline-block;
}

/* 联系我们表单 */
.z080e9contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.z080e9contact-form {
  flex: 1 1 320px;
  background: rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px #00ffe720;
}
.z080e9form-group {
  margin-bottom: 1.2rem;
}
.z080e9form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffe7;
  font-weight: 500;
}
.z080e9form-group input,
.z080e9form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #00ffe7a0;
  background: #232526;
  color: #fff;
  font-size: 1rem;
  resize: none;
}
.z080e9form-group input:focus,
.z080e9form-group textarea:focus {
  outline: 2px solid #00ffe7;
}
.z080e9contact-info {
  flex: 1 1 220px;
  padding: 1.5rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(0,255,231,0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px #00ffe720;
  margin-top: 0.5rem;
}

/* 页脚 */
.z080e9footer {
  background: rgba(20, 20, 20, 0.95);
  text-align: center;
  padding: 1.2rem 0;
  color: #aaa;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 -2px 8px #0002;
}

/* 背景美化元素 */
.z080e9bg-decor {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-radial-gradient(circle at 60% 40%, #00ffe720 0, #00ffe700 40px, #23252600 100px);
  opacity: 0.25;
  animation: decorMove 12s linear infinite alternate;
}
@keyframes decorMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 60px; }
}

/* 响应式设计 */
@media (max-width: 900px) {
  .z080e9nav-container {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .z080e9site-title {
    flex: 1;
    min-width: 0;
    font-size: 1.3rem;
  }
  .z080e9main-content, .z080e9container {
    width: 98%;
    padding: 0 0.5rem;
  }
  .z080e9section {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
  .z080e9trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .z080e9trust-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .z080e9trust-framework {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .z080e9hero-content h1 {
    font-size: 2rem;
  }
  .z080e9section h2 {
    font-size: 1.3rem;
  }
  .z080e9services-grid {
    grid-template-columns: 1fr;
  }
  .z080e9contact-section {
    flex-direction: column;
    gap: 1rem;
  }
  .z080e9footer {
    font-size: 0.9rem;
  }
  .z080e9trust-grid {
    grid-template-columns: 1fr;
  }
  .z080e9trust-title {
    font-size: 1.3rem;
  }
  .z080e9trust-card-fw {
    padding: 1rem 0.5rem;
  }
  .z080e9hero-img {
    max-width: 95vw;
    border-radius: 12px;
  }
} 

.z080e9contact-flex {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .z080e9contact-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  .z080e9contact-side {
    max-width: 100%;
    min-width: 0;
  }
} 

.z080e9site-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 1.2rem 0 0.5rem 0;
}
.z080e9tag {
  display: inline-block;
  background: rgba(0,255,231,0.13);
  color: #00ffe7;
  border: 1px solid #00ffe7a0;
  border-radius: 16px;
  padding: 0.3rem 1.1rem;
  font-size: 1rem;
  margin: 0.1rem 0.2rem;
  box-shadow: 0 2px 8px #00ffe710;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.z080e9tag:hover {
  background: #00ffe7;
  color: #232526;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .z080e9site-tags {
    gap: 0.4rem;
  }
  .z080e9tag {
    font-size: 0.95rem;
    padding: 0.25rem 0.7rem;
  }
}

/* 导航当前栏目 */
.z080e9nav-links a.z080e9this,
.z080e9nav-links a.thisclass {
  color: #00ffe7;
  border-bottom: 2px solid #00ffe7;
}
.z080e9site-title a {
  color: #00ffe7;
  text-decoration: none;
}

/* 内页横幅 */
.z080e9page-banner {
  margin: 1.5rem auto 0;
  padding: 1.5rem 0;
  text-align: center;
}
.z080e9page-banner h1 {
  color: #00ffe7;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.z080e9breadcrumb {
  color: #aaa;
  font-size: 0.95rem;
}
.z080e9breadcrumb a {
  color: #00ffe7;
  text-decoration: none;
}

/* 主栏 + 侧栏布局 */
.z080e9layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem auto 2.5rem;
}
.z080e9main-col {
  flex: 1 1 0;
  min-width: 0;
}
.z080e9sidebar {
  flex: 0 0 300px;
  max-width: 300px;
}
.z080e9sidebar-block {
  background: rgba(34, 40, 49, 0.9);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px #0003;
}
.z080e9sidebar-list {
  list-style: none;
  max-height: 520px;
  overflow-y: auto;
}
.z080e9sidebar-item {
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0,255,231,0.08);
  padding-bottom: 0.5rem;
}
.z080e9sidebar-item:last-child {
  border-bottom: none;
}
.z080e9sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.2s;
}
.z080e9sidebar-link:hover {
  color: #00ffe7;
}
.z080e9sidebar-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border-radius: 6px;
  background: #232526;
}
.z080e9sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.z080e9sidebar-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 列表页图文 */
.z080e9list-articles {
  list-style: none;
}
.z080e9list-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,255,231,0.12);
}
.z080e9list-item:last-child {
  border-bottom: none;
}
.z080e9list-thumb {
  flex: 0 0 200px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #232526;
}
.z080e9list-thumb img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.z080e9list-thumb:hover img {
  transform: scale(1.05);
}
.z080e9list-body {
  flex: 1;
  min-width: 0;
}
.z080e9list-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.z080e9list-title a {
  color: #00ffe7;
  text-decoration: none;
}
.z080e9list-title a:hover {
  text-decoration: underline;
}
.z080e9list-meta {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.z080e9list-meta span {
  margin-right: 1rem;
}
.z080e9list-meta a {
  color: #00ffe7;
}
.z080e9list-intro {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.z080e9list-more {
  color: #00ffe7;
  font-size: 0.9rem;
  text-decoration: none;
}

/* 分页：上一页左、下一页/末页右 */
.z080e9pagebar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,255,231,0.15);
}
.z080e9pagelist-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.8rem;
  list-style: none;
  width: 100%;
}
.z080e9pagelist-bar li {
  list-style: none;
}
.z080e9pages .pagelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
}
.z080e9pages .pagelist a,
.z080e9pages .pagelist span {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: rgba(0,255,231,0.1);
  color: #00ffe7;
  text-decoration: none;
  border: 1px solid #00ffe750;
  font-size: 0.9rem;
}
.z080e9pages .pagelist a:hover {
  background: #00ffe7;
  color: #232526;
}

/* 内容页 */
.z080e9article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,255,231,0.12);
}
.z080e9article-meta-bar a {
  color: #00ffe7;
}
.z080e9article-cover {
  text-align: center;
  margin-bottom: 1.5rem;
}
.z080e9article-cover img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px #0004;
}
.z080e9article-body {
  color: #e8e8e8;
  font-size: 1.05rem;
  line-height: 1.8;
}
.z080e9article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.z080e9multi-img {
  margin: 1rem 0;
  text-align: center;
}
.z080e9multi-img img {
  max-width: 100%;
  border-radius: 8px;
}
.z080e9multi-img figcaption {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}
.z080e9meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.z080e9tagitem a {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(0,255,231,0.1);
  color: #00ffe7;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid #00ffe750;
}
.z080e9prenext {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,255,231,0.12);
}
.z080e9prenext-item {
  flex: 1;
  color: #ccc;
  font-size: 0.95rem;
}
.z080e9prenext-item a {
  color: #00ffe7;
}
.z080e9related-list {
  list-style: none;
}
.z080e9related-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,255,231,0.1);
}
.z080e9related-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.z080e9related-body h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.z080e9related-body h3 a {
  color: #00ffe7;
  text-decoration: none;
}
.z080e9related-body p {
  color: #bbb;
  font-size: 0.9rem;
}

/* 首页文章板块：5列 x 2行 */
.z080e9home-articles h2 {
  margin-bottom: 1.5rem;
}
.z080e9home-article-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.z080e9home-article-card {
  background: rgba(0,255,231,0.06);
  border: 1px solid #00ffe740;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.z080e9home-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #00ffe730;
}
.z080e9home-article-thumb {
  display: block;
  overflow: hidden;
  background: #232526;
}
.z080e9home-article-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.z080e9home-article-card:hover .z080e9home-article-thumb img {
  transform: scale(1.05);
}
.z080e9home-article-title {
  padding: 0.6rem 0.7rem 0.2rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.z080e9home-article-title a {
  color: #00ffe7;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.z080e9home-article-card .z080e9list-intro,
.z080e9home-article-card p {
  display: none;
}

/* 友情链接 */
.z080e9flink {
  margin: 1rem 0;
}
.flink_title {
  color: #00ffe7;
  margin-bottom: 0.5rem;
}
.flink_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}
.flink_list a {
  color: #aaa;
  text-decoration: none;
}
.flink_list a:hover {
  color: #00ffe7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  margin: 0.8rem 0;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
}
.footer-links a:hover {
  color: #00ffe7;
}

/* 内页与文章板块响应式 */
@media (max-width: 1100px) {
  .z080e9home-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .z080e9layout {
    flex-direction: column;
  }
  .z080e9sidebar {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .z080e9list-item {
    flex-direction: column;
  }
  .z080e9list-thumb {
    flex: none;
    width: 100%;
  }
  .z080e9list-thumb img {
    height: 180px;
  }
  .z080e9prenext {
    flex-direction: column;
  }
  .z080e9pagelist-bar {
    justify-content: center;
  }
  .z080e9home-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .z080e9page-banner h1 {
    font-size: 1.4rem;
  }
  .z080e9home-article-grid {
    grid-template-columns: 1fr;
  }
  .z080e9related-item {
    flex-direction: column;
  }
  .z080e9related-thumb img {
    width: 100%;
    height: auto;
    max-height: 160px;
  }
  .z080e9article-meta-bar {
    flex-direction: column;
    gap: 0.4rem;
  }
}