/* ================== 布局容器 ================== */
.container{
  position: relative;           /* 给右侧悬浮资讯做定位上下文 */
  max-width: 1000px;            /* 版心宽度 */
  margin: 0 auto;
  padding: 0 16px;
}

body {
  margin: 0;
  padding: 0;
  font: 16px/1.7 system-ui, Segoe UI, Arial;
  color: #111;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%) !important;
  background: linear-gradient(135deg, #fdfbfb 0%, #e6f0ff 40%, #f3e9ff 70%, #ffe6f3 100%) !important;
}


/* ================== 中间 hero（整块居中） ================== */
.home-hero{
  display: block;               /* 不用网格，单块居中 */
  margin-top: 10px;
}
.home-hero__left{
  display: flex;
  flex-direction: column;
  align-items: center;          /* 内容水平居中 */
  text-align: center;           /* 文本居中 */
  max-width: 500px;             /* 主列视觉宽度 */
  margin: 0 auto;               /* 整块居中 */
}

/* 顶部 logo / 标题 */
.home-logo{
  width:110px; height:110px;
  display:block;
  margin:6px auto 10px;
}
.home-title h1{
  margin:0; font-size:36px; font-weight:500; color:#333;
}
.home-subtitle{
  margin:6px 0 16px; font-size:16px; color:#7b8794;
}

/* ================== 设备图片（强制透明 / 无阴影 / 无边框） ================== */
.device-mac,
.device-phones .phone{
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Mac 图（更小） */
.device-mac img{
  display:block;
  width:100%;
  max-width:400px;              /* 这里控制 Mac 图大小 */
  height:auto;
  margin:6px auto 8px;
  background: none !important; 
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 电脑版下载 */
.desktop-link{
  display:flex; justify-content:center; align-items:center; gap:8px;
  margin:6px 0 18px; color:#2f6cd6; font-size:14px;
}
.desktop-link .icon{ width:16px; height:16px; }

/* 双手机（等高、去底色/投影/边框） */
.device-phones{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 380px));
  gap:64px;
  justify-content:center;
  align-items:start;
  margin:24px 0 6px;
}
.device-phones .phone img{
  height:300px;                 /* 等高核心 */
  width:auto;
  display:block; margin:0 auto;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.device-phones .phone figcaption{
  display:flex; justify-content:center; align-items:center; gap:8px;
  margin-top:8px; font-size:14px; color:#2f6cd6;
}
.device-phones .phone figcaption .icon{ width:16px; height:16px; }

/* ================== 右侧近期资讯（与中间块分离） ================== */
.home-aside-floating{
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;                 /* 右栏宽度 */
}
.aside-box{ border-left:4px solid #2f6cd6; padding-left:12px; }
.aside-title{ font-size:14px; margin:0 0 6px; color:#2f6cd6; }
.aside-news{ list-style:none; margin:0; padding:0; }
.aside-news li{ margin:6px 0 10px; }
.aside-news .d{ font-size:11px; color:#7a8797; margin-bottom:2px; }
.aside-news .t{ font-size:12px; color:#1a3d7a; text-decoration:none; line-height:1.4; }
.aside-news .t:hover{ text-decoration:underline; }

/* ================== 响应式 ================== */
@media (max-width: 960px){
  .home-aside-floating{
    position: static;           /* 取消绝对定位，回到文档流 */
    width: auto;
    margin: 0 0 16px 0;         /* 放到中间块上方 */
  }
  .home-hero__left{ max-width: 92vw; }
  .device-phones{ grid-template-columns: 1fr; gap:22px; }
  .device-phones .phone img{ height:280px; }
  .home-title h1{ font-size:28px; }
  .home-logo{ width:96px; height:96px; }
}

.why-telegram{
  max-width: 1100px;
  margin: 36px auto 24px;
  padding: 0 16px;
}

.why-title{
  margin: 0 0 18px;
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  color: #1f3147;
}
.why-title span{ color:#1a73e8; }

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px; /* 行间距 / 列间距 */
}

.feature-card{
  text-align: center;
  padding: 6px 8px;
}

.feature-card img{
  width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  image-rendering: -webkit-optimize-contrast;
  will-change: transform, filter;
  transition: transform .2s ease, filter .2s ease;
}

/* 悬浮时做轻微上浮 + 阴影，类似你给的效果 */
.feature-card:hover img{
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 18px rgba(26,115,232,.18));
}

.feature-card h3{
  margin: 6px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1f3147;
}

.feature-card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7a90;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  gap: 20px;
}

.twitter-link img {
  width: 24px;
  height: 24px;
  display: block;
}

.twitter-link {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

:root {
  --accent: #1a73e8;
}

/* 统一卡片样式 */
.device-mac,
.phone {
  text-align: center;
  padding: 6px 0 18px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* 图片容器 */
.device-mac .art img,
.phone .art img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* 悬停效果 */
.device-mac:hover .art img,
.phone:hover .art img {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26, 115, 232, .22);
}

/* 图标和文字 */
.desktop-link,
.phone figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.desktop-link b,
.phone figcaption b {
  color: var(--accent);
  font-weight: 700;
}

.icon {
  width: 26px;
  height: 26px;
}

/* 蓝色强调线 */
.accent {
  height: 4px;
  width: 68%;
  margin: 14px auto 0;
  border-radius: 3px;
  background: var(--accent);
  opacity: .85;
  transition: width .25s ease, opacity .2s ease;
}

.device-mac:hover .accent,
.phone:hover .accent {
  width: 86%;
  opacity: 1;
}

/* ========= 下面是 normalize & 基础 reset ========= */
*,:before,
:after {
  box-sizing: border-box;
  background-repeat: no-repeat
}

:before,
:after {
  -webkit-text-decoration: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  vertical-align: inherit
}

:where(:root) {
  cursor: default;
  overflow-wrap: break-word;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5
}

:where(body) {
  margin: 0
}

:where(p) {
  margin: 0;
  padding: 0;
}

:where(h1,h2,h3,h4,h5) {
  margin: 0;
  padding: 0;
  font-size: 2em
}

:where(ul, li) {
  list-style: none;
  padding: 0;
  margin: 0;
}

:where(hr) {
  color: inherit;
  height: 0
}

:where(pre) {
  font-family: monospace;
  font-size: 1em;
  overflow: auto
}

:where(abbr[title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

:where(b, strong) {
  font-weight: bolder
}

:where(code, kbd, samp) {
  font-family: monospace;
  font-size: 1em
}

:where(small) {
  font-size: 80%
}

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle
}

:where(iframe) {
  border-style: none
}

:where(svg:not([fill])) {
  fill: currentColor
}

:where(table) {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0
}

:where(button, input, select) {
  margin: 0
}

:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button
}

:where(fieldset) {
  border: 1px solid #a0a0a0
}

:where(progress) {
  vertical-align: baseline
}

:where(textarea) {
  resize: vertical;
  margin: 0
}

:where([type=search i]) {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

::-webkit-inner-spin-button {
  height: auto
}

::-webkit-outer-spin-button {
  height: auto
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: .54
}

::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

:where(dialog) {
  color: #000;
  background-color: #fff;
  border: solid;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  padding: 1em;
  position: absolute;
  left: 0;
  right: 0
}

:where(dialog:not([open])) {
  display: none
}

:where(details>summary:first-of-type) {
  display: list-item
}

:where([aria-busy=true i]) {
  cursor: progress
}

:where([aria-controls]) {
  cursor: pointer
}

:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed
}

:where([aria-hidden=false i][hidden]) {
  display: initial
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute
}

:where(button, input, select, textarea) {
  border: 1px solid WindowFrame;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  background-color: #0000;
  padding: .25em .375em
}

:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") 100%/1em no-repeat;
  border-radius: 0;
  padding-right: 1em
}

:where(select[multiple]) {
  background-image: none
}

:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0
}

:where(iframe, img, input, video, select, textarea) {
  max-width: 100%;
  height: auto
}

@font-face {
  font-family: system-ui;
  src: local(\.AppleSystemUIFont), local(Segoe UI), local(Ubuntu), local(Roboto-Regular), local(HelveticaNeue)
}

@font-face {
  font-family: system-ui;
  font-style: italic;
  src: local(\.AppleSystemUIFont), local(Segoe UI Italic), local(Ubuntu-Italic), local(Roboto-Italic), local(HelveticaNeue-Italic)
}

@font-face {
  font-family: system-ui;
  font-weight: 700;
  src: local(\.AppleSystemUIFont), local(Segoe UI Bold), local(Ubuntu-Bold), local(Roboto-Bold), local(HelveticaNeue-Bold)
}

@font-face {
  font-family: system-ui;
  font-style: italic;
  font-weight: 700;
  src: local(\.AppleSystemUIFont), local(Segoe UI Bold Italic), local(Ubuntu-BoldItalic), local(Roboto-BoldItalic), local(HelveticaNeue-BoldItalic)
}

@font-face {
  font-family: ui-monospace;
  src: local(\.AppleSystemUIFontMonospaced-Regular), local(Segoe UI Mono), local(UbuntuMono), local(Roboto-Mono), local(Menlo)
}

@font-face {
  font-family: ui-monospace;
  font-style: italic;
  src: local(\.AppleSystemUIFontMonospaced-RegularItalic), local(Segoe UI Mono Italic), local(UbuntuMono-Italic), local(Roboto-Mono-Italic), local(Menlo-Italic)
}

@font-face {
  font-family: ui-monospace;
  font-weight: 700;
  src: local(\.AppleSystemUIFontMonospaced-Bold), local(Segoe UI Mono Bold), local(UbuntuMono-Bold), local(Roboto-Mono-Bold), local(Menlo-Bold)
}

@font-face {
  font-family: ui-monospace;
  font-style: italic;
  font-weight: 700;
  src: local(\.AppleSystemUIFontMonospaced-BoldItalic), local(Segoe UI Mono Bold Italic), local(UbuntuMono-BoldItalic), local(Roboto-Mono-BoldItalic), local(Menlo-BoldItalic)
}

html {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, Menlo, Consolas, Roboto Mono, Ubuntu Monospace, Noto Mono, Oxygen Mono, Liberation Mono, monospace, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
}

@media (prefers-reduced-motion:reduce) {

  *,
  :before,
  :after {
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: -1ms !important
  }
}

:root {
  --swiper-theme-color: #007aff
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative
}/*
Theme name: Line
Author: Me
Author URI: https://www.net.cn/
*/
.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;width:100%;justify-content:center;border-radius:.25rem;margin:30px auto}
.page-link,.page-num{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#08c;background-color:#fff;border:1px solid #dee2e6;text-decoration:none;}
.page-num:not(:disabled){cursor:pointer}
.page-num-current{z-index:1;color:#fff;background-color:#246789;border-color:#5b39c98}

.content h2,.content h3,.content h4,.content h5{margin:25px 0;padding:0;color:#555;font-weight:700;padding:10px 0 10px 10px}
.content h2,.content h3,.content h4,.content h5{border-left:5px solid #e5e60;font-weight:700;font-size:22px;line-height:20px}
.content h3{font-size:18px}
.content h4{font-size:15px}
.content h5{font-size:14px}
.content img{max-width:100%;margin:auto;display:block}
.content iframe{display:block;margin:auto;margin-top:.8rem;margin-bottom:.8rem;min-width:660px;max-width:660px;min-height:400px;max-height:400px}
.content ol,.content ul{margin:0 0 18px 15px}
.content ul{list-style:disc}
.content ol{list-style:decimal}
.content li{margin-bottom:6px}
.content p{padding:0 0 8px 0;word-wrap:break-word;font-size:18px;line-height:190%}
.content pre{word-wrap:break-word}
.content table{margin-bottom:18px;width:100%;border-top:solid 1px #ddd;border-left:solid 1px #ddd}
.content table th{background-color:#f9f9f9;text-align:center}
.content table td,.content table th{padding:5px 10px;border-right:solid 1px #ddd;border-bottom:solid 1px #ddd}

/* ====== 你原本的 LINE 头部 / 列表部分 ====== */

html{
  margin-top: 0 !important;
}
main {
  width: 1140px;
  margin: auto;
}

header {
  display: flex;
  justify-content: space-between;
  padding: .8rem 2rem;
  border-bottom: solid 1px #dddddd;
}

.webname,
.webname a {
  display: block;
  width: 72px;
  height: 45px;
  text-indent: -9999px;
}

.webname {
  background-image: url(../images/logo.png);
  background-size: 100%;
}

.Category ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: .5rem;
}

.Category a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.Category .selected,
.Category a:hover {
  color: #181818;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.wap-nav {
  display: none;
  cursor: pointer;
}

.language {
  position: relative;
  display: inline-block;
}

.language {
  display: flex;
  align-items: center;
  font-size: .9rem;
  gap: .5rem;
  position: relative;
  width: 24px;
}

/* 下载页特定头部样式 */
#down {
  background-color: #181818;
  border-bottom: none;
}

#down .webname {
  background-image: url(../images/logo-down.png);
  background-size: 100%;
}

#down .Category a {
  font-size: 1.2rem;
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
}

#down .Category .selected,
#down .Category a:hover {
  color: #FFF;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

/* 下载页特定头部样式 */

.slideshow-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 400px;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
}


.index-down-btn{
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 999;
  display: flex;
  gap: 1rem;
  transform: translateX(-50%);
}
.index-down-btn a{
  text-decoration: none;
  color: #FFF;
  font-size: 14px;
}
.slideshow-container .down-btn a{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 11px 26px;
  border-radius: 999px;
  background: #000000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(39, 39, 39, 0.35);
  border: none;
}

.slideshow-container .down-btn a:hover{
  background: #141414;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.5);
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  transition: transform 2s ease-in-out;
}

.slide.zoom-out::before {
  transform: scale(1.2);
}

.tit {
  text-align: center;
  margin: 2rem 0;
}

.tit h2 {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
}

.tit p {
  color: #666;
}

.block {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.block .text-l {
  width: 572px;
  font-size: 1.15rem;
  padding-right: 100px;
}

.block .text-r {
  width: 572px;
  font-size: 1.15rem;
  padding-left: 100px;
}

.block .banner-r {
  width: 568px;
}

.block .banner-l {
  width: 588px;
}

.block .icon {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: solid 1px #CCC;
  border-radius: 1.1rem;
}

.block .text p {
  color: #07b53b;
}

.block .text .info {
  color: #838383;
  margin-top: .5rem;
}

.block .text h3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.index-btn {
  width: 152px;
}

.index-btn a {
  margin-top: 3rem;
  text-decoration: none;
  color: #000;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  border-radius: .3rem;
  border: solid 1px #00000026;
  gap: .5rem;
}

.index-btn a:hover {
  background-color: #07b53b;
}

.line-box-1 {
  width: 1152px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.line-box-1 div {
  text-align: center;
}

.line-box-1 div b {
  display: block;
  margin-top: 1rem !important;
  color: #000;
  font-size: 1.5rem;
}

.line-box-1 div p {
  color: #666;
}

.line-footer {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.line-footer a {
  text-decoration: none;
  color: #000;
}

.line-footer-main {
  width: 1152px;
  margin: auto;
}

.line-footer-1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: solid 1px #CCC;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.foot-logo {
  width: 40px;
  height: 40px;
  border-radius: .5rem;
  overflow: hidden;
}

.line-footer-1 ul {
  display: flex;
  gap: 1rem;
}

.line-footer-1 ul li a {
  color: #000;
  display: flex;
  gap: .2rem;
  justify-items: center;
  align-items: center;
}

.line-footer-2 {
  font-size: 1rem;
  display: flex;
  gap: 1rem;
}

.line-footer-2 a {
  color: #000;
}

.index-show {
  background-color: #f7f8f9;
  padding: 3rem 0;
}

.down-main {
  overflow: hidden;
}

.down-pic {
  max-width: 800px;
  margin: auto;
}

.down {
  width: 1140px;
  margin: auto;
  text-align: center;
  padding-bottom: 2rem;
}

.down-info {
  line-height: 280%;
  color: #181818;
}
.down-info p{
  line-height: 150%;
  margin-bottom: 30px;
}
.down-btn a {
  width: 200px;
  height: 50px;
  margin: auto;
  display: flex block;
  background-color: #181818;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: #FFF;
  font-size: .8rem;
  border-radius: .5rem;
}

.down-btn a span {
  color: #0ee071;
  float: right;
}

.down-btn1 a {
  width: 100px;
  height: 40px;
  display: flex block;
  background-color: #181818;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: #FFF;
  font-size: .8rem;
  border-radius: .5rem;
}

.down-btn1 a span {
  color: #0ee071;
  float: right;
}

.pc_down {
  text-align: center;
  margin: 2rem 0;
}

.breadcrumbs {
  margin: 10px auto;
  font-size: 14px;
  max-width: 1140px;
}

.breadcrumbs a {
  color: #1b1b1b;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.news-list{
  width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
#wps-list-img{
  display: block;
  width: 100%;
  height: 10rem;
  overflow: hidden;
  background-size: 100%;
  background-repeat: no-repeat;
}
.news-list div{
  box-shadow: 0 12px 32px rgba(255, 0, 60, .16);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  margin-bottom:24px;
}
.news-list div:hover{
  transform: scale(1.1);
}
.atk-title{
  padding: 1rem;
  line-height: 1.8;
}
.atk-title strong{
  display: block;
  height: 1.5rem;
  line-height: 1.5rem;
  overflow: hidden;
  margin-bottom: .5rem;
}
.atk-title a{
  font-size: 1rem;
  color: #000;
  text-decoration: none;
}
.atk-title p{
  font-size: .8rem;
  color: #666;
}
.news{
  width: 750px;
  margin: auto;
  line-height: 200%;
}
.news h1{
  margin-bottom: 1rem;
}
.uptime{
  color: #666;
  font-size: .8rem;
}
.content{
  margin-top: 1rem;
  color: #333;
}
.saoma{
  width: 500px;
  padding: 50px 30px 50px 30px;
  box-shadow: 0 2px 10px rgba(38, 50, 56, 0.2);
  text-align: center;
  line-height: 200%;
  margin: 2rem auto 5rem auto;
  color: #666;
}
.qr{
  margin: 2rem 0;
}
.nextorprev{
  margin: .8rem;
}
.nextorprev a{
  text-decoration: none;
  color: #000;
}
#ez-toc-container{
  margin: 1rem 0 !important;
}
.content h2, .content h3, .content h4{
  margin-bottom: 1rem;
  font-size: 1rem;
}
.page{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin: 2rem 0;
}
.page a{
  display: block;
  border: solid 1px #0d0d0d7a;
  padding: .3rem .5rem;
  border-radius: .2rem;
  text-decoration: none;
  color: #000;
  font-size: .8rem;
}
.page a:hover{
  background-image: linear-gradient(270deg,#ff06a2 .69%,#ff6225 100.69%),linear-gradient(to right,#fff,#fff),linear-gradient(270deg,#ff06a2 .69%,#ff6225 100.69%);
  border: solid 1px #FFF;
  color: #FFF;
}
.other_down_main{
  width: 1140px;
  overflow: hidden;
  margin: auto;
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.other_down{
  background-color: #FCF5EB;
  border-radius: .5rem;
  padding:1rem 1.4rem;
}
.other_down h2{
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.other_down p{
  line-height: 180%;
  margin: .5rem 0;
}

@media screen and (max-width: 950px) {
  header {
    display: flex;
    justify-content: space-between;
    padding: .5rem;
    
  }
    .site-header .nav{
    display:none;
  }

  .webname,
  .webname a {
    display: block;
    width: 3rem;
    height: 1.8rem;
    text-indent: -9999px;
  }
  .index-down-btn{
    display: none;
  }
  .wap-nav {
    display: block;
    cursor: pointer;
    width: 1.8rem;
    height: 1.8rem;
    background: url(../images/menu-b.png) no-repeat;
    background-size: 1.8rem;
    margin-right: .5rem;
  }
  .Category{
    position: fixed;
    z-index: 9999;
  }
  .Category ul {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    top: 30px;
    left: 0;
    position: fixed;
    width: 100%;
    line-height: 3;
    border-bottom: solid 3px #0ee071;
  }

  .Category a {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }

  .Category .selected,
  .Category a:hover {
    color: #0ee071;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
  }
  main{
    width: 100%;
  }
  .line-box {
    width: 100%;
    display: block;
    padding: .8rem;
  }
  .box-left h2{
    font-size: 2rem;
  }
  .box-left span{
    font-size: 1rem;
  }
  .box-left{
    width: 100%;
  }
  .index-more{
    margin-bottom: 1rem;
  }
  .line-tit{
    padding: .8rem;
  }
  .line-tit h2{
    font-size: 2rem;
  }
  .line-tit div{
    width: 100%;
    margin-top: 1rem;
  }
  .line-box-1{
    width: 100%;
    padding: .8rem;
    grid-template-columns: 1fr;
  }
  .line-footer-main{
    width: 100%;
    padding: .8rem;
  }
  .line-footer-1{
    display: none;
  }
  .line-footer-2{
    display: block;
    line-height: 180%;
  }
  .line-footer-2 a{
    display: block;
  }
  .line-down-link{
    width: 100%;
  }
  .saoma{
    width: 95%;
    margin: .8rem auto;
  }
  .news-list{
    width: 100%;
    grid-template-columns: 1fr;
    padding: .8rem;
  }
  .news{
    width: 100%;
    margin: .8rem;
  }
  .breadcrumbs{
    width: 100%;
    margin:.8rem;
  }
  .down{
    width: 100%;
  }
  .down-info{
    line-height: 180%;
  }
  .down-info h1, .down-info p{
    margin-bottom: 1rem;
    padding: .8rem;
  }
  .pc_down{
    margin: .8rem;
  }
  #down .Category .selected, #down .Category a:hover, #down .Category a{
    color: #000;
  }
  #down .wap-nav{
    background: url(../images/menu-w.png) no-repeat;
  }
  .slideshow-container{
    width: 100%;
    height: 10rem;
    margin-top: 0;
  }
  .tit{
    margin: .8rem;
  }
  .tit h2{
    font-size: 2rem;
  }
  .block{
    flex-direction: column;
    margin: .8rem;
    padding: 0 0 1rem 0;
  }
  .block .text-l{
    width: 100%;
    padding-right: 0;
  }
  .block .banner-r, .block .banner-l{
    width: 100%;
  }
  .block .text-r{
    width: 100%;
    padding-left: 0;
  }
  .block .m{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
  }
  .block .m .icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .5rem;
  }
  .block .text-l{
    order: 2;
  }
  .block .banner-r{
    order: 1;
  }
  .other_down_main{
    width: 100%;
    padding: .8rem;
    flex-direction: column;
  }
}

/* ====== 站点框架（wrap / header / footer） ====== */
:root {
  --wrap: 1100px;
  --gap: 22px;
  --border: rgba(255, 255, 255, 0.2);
  --brand: #1a73e8;
}

html, body {
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== 固定磨砂导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}

.logo {
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 32px;
}

.nav a {
  margin-left: 14px;
  font-weight: 500;
  color: #111;
}

/* 内容区留出顶部间距 */
.site-main {
  padding: 88px 0 24px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  margin-top: 32px;
}

.site-footer .wrap {
  padding: 18px 0;
  color: #666;
}

h1 {
  margin: 0 0 16px;
}

/* 主區塊 */
.wa-strip{
  background:#e9fbe3;
  border-radius:28px;
  padding:28px 18px 38px;
  margin:32px auto;
  max-width:1280px;
}

/* 標題區 */
.wa-strip__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin:0 6px 14px;
}
.wa-strip__title{
  font-size:clamp(24px,4.5vw,40px);
  line-height:1.15;
  margin:0;
  color:#0f1f2e;
}
.wa-strip__desc{
  margin:0;
  color:#334155;
  font-size:14.5px;
  max-width:720px;
}

/* 視口（單行滑動 + 漸變遮罩） */
.wa-strip__viewport{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 40px; /* 預留左右箭頭位 */
}
.wa-strip__viewport::before,
.wa-strip__viewport::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:60px;
  pointer-events:none;
  transition:opacity .2s ease;
}
.wa-strip__viewport::before{
  left:0;
  background:linear-gradient(90deg,rgb(255, 255, 255) 45%, rgba(233,251,227,0));
  opacity:0;
}
.wa-strip__viewport::after{
  right:0;
  background:linear-gradient(-90deg,rgb(255, 255, 255) 45%, rgba(233,251,227,0));
  opacity:0;
}
.wa-strip__viewport.is-left::before{ opacity:1; }
.wa-strip__viewport.is-right::after{ opacity:1; }

/* 橫向卡片走馬燈 */
.wa-carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:6px 2px;
}
.wa-carousel::-webkit-scrollbar{ height:8px; }
.wa-carousel::-webkit-scrollbar-thumb{
  background:rgba(48, 36, 211, 0.35);
  border-radius:999px;
}

/* 一行顯示張數（等寬卡片） */
.wa-carousel{
  --visible: 4; /* 桌面顯示 4 張 */
}
@media (max-width: 1100px){ .wa-carousel{ --visible: 3; } }
@media (max-width: 820px){  .wa-carousel{ --visible: 2; } }
@media (max-width: 520px){  .wa-carousel{ --visible: 1; } }

/* 卡片：等寬、單行 */
.wa-item{
  flex: 0 0 calc((100% - (var(--visible) - 1) * 16px) / var(--visible));
  min-width: 240px;            /* 防止過小 */
  background:#fff;
  border:1px solid rgba(11, 172, 46, 0.08);
  border-radius:20px;
  padding:18px 16px;
  box-shadow:0 8px 20px rgba(24, 155, 35, 0.08);
  scroll-snap-align:start;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.wa-item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(16,24,40,.12);
  border-color: rgba(36, 48, 211, 0.55);
}
.wa-item__title{
  font-size:16.5px;
  margin:0 0 8px;
  color:#0f172a;
}
.wa-item__text{
  font-size:14.5px;
  line-height:1.72;
  color:#334155;
  margin:0;
}

/* 左右箭頭 */
.wa-arrow{
  position:absolute;
  z-index:2;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid rgba(38, 35, 201, 0.16);
  background:#fff;
  color:#24d366;
  font-size:24px;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.wa-arrow:hover{
  transform:translateY(calc(-50% - 1px));
  border-color:#24d366;
  box-shadow:0 8px 18px rgba(48, 36, 211, 0.22);
}
.wa-arrow--prev{ left:4px; }
.wa-arrow--next{ right:4px; }

/* ===== 浅色四列页脚（接近截图风格） ===== */
.wa-lite-footer{
  background:transparent;
  color:#0b1320;
}
.wa-lite__inner{
  max-width:1280px;
  margin:0 auto;
  padding:48px 20px 56px;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:48px 40px;
}

/* 左侧品牌块 */
.wa-lite__logo{
  display:flex; align-items:center; gap:10px;
  margin-bottom:14px;
}
.wa-lite__logo-img{
  height:24px; width:auto; display:block;
}
.wa-lite__logo-text{
  font-size:28px; font-weight:700; letter-spacing:.2px;
}
.wa-lite__headline{
  font-size:28px; font-weight:800; margin:8px 0 6px;
}
.wa-lite__sub{
  margin:0; font-size:16px; color:#6b7280;
}

/* 栏目 */
.wa-lite__title{
  margin:0 0 16px;
  font-size:22px; font-weight:800;
}
.wa-lite__list{ list-style:none; margin:0; padding:0; }
.wa-lite__link{
  display:block;
  padding:10px 0;
  font-size:20px;
  color:#0b1320;
  text-decoration:none;
  transition: color .15s ease, opacity .15s ease;
}
.wa-lite__link:hover{
  color:#2b71ff;
  opacity:.9;
}

:root {
  --wa-green: #2b71ff;
  --wa-dark: #111;
  --wa-gray: #555;
}

.wa-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.wa-section.reverse {
  flex-direction: row-reverse;
}
.wa-text {
  flex: 1;
}
.wa-text h2 {
  font-size: 32px;
  color: var(--wa-dark);
  margin-bottom: 16px;
}
.wa-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--wa-gray);
}
.wa-text ul {
  margin: 16px 0;
  padding-left: 20px;
}
.wa-text ul li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--wa-dark);
}
.wa-text strong {
  color: var(--wa-green);
}

.wa-img {
  flex: 1;
  text-align: center;
}
.wa-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 响应式 */
@media (max-width: 768px) {
  .wa-section {
    flex-direction: column;
    text-align: center;
  }
  .wa-section.reverse {
    flex-direction: column;
  }
  .wa-img img {
    max-width: 80%;
  }
}

/* Hero Section */
.wa-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.wa-hero__content {
  flex: 1;
}

.wa-hero h1 {
  font-size: 36px;
  line-height: 1.4;
  color: #111;
  margin-bottom: 20px;
}

.wa-hero h1 strong {
  color: #2b71ff;
}

.wa-badge {
  display: inline-block;
  font-size: 14px;
  color: #2b71ff;
  border: 1px solid #2b71ff;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.wa-hero p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.wa-btn {
  display: inline-block;
  background: #2b71ff;
  color: #fff;
  font-weight: 580;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.wa-btn:hover {
  background: #2b71ff;
}

/* 图片 */
.wa-hero__image {
  flex: 1;
  text-align: right;
}

.wa-hero__image img {
  width: 500px;
  margin-top: -20px;
}
.whatsapp-section {
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}
.whatsapp-section .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111;
}
.whatsapp-section .desc {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

/* 响应式 */
@media (max-width: 768px) {
  .wa-hero {
    flex-direction: column;
    text-align: center;
  }
  .wa-hero__image {
    text-align: center;
  }
  .wa-hero__image img {
    width: 200px;
    margin-top: 20px;
    transform: rotate(5deg);
  }
}

.stats-section {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.stats-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #111;
  line-height: 1.4;
}

.stats-title span {
  color: #2b71ff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #2b71ff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #444;
}
.vpn-section {
  padding: 60px 20px;
  text-align: center;
}

.vpn-section .text-box {
  max-width: 800px;
  margin: 0 auto;
}

.vpn-section .title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 18px;
  line-height: 1.3;
}

.vpn-section .desc {
  font-size: 16px;
  color: #5f6b85;
  line-height: 1.8;
  margin: 0;
  white-space: pre-line;
}

/* 下载按钮统一 */
.wa-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-hero__actions.left {
  justify-content: flex-start;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  transition: background 0.3s ease;
  min-width: 180px;
}

.download-btn:hover {
  background: #222;
}

.download-btn .btn-icon {
  width: 28px;
  height: 28px;
}

.download-btn span {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.download-btn span small {
  font-size: 11px;
  font-weight: normal;
  color: #ccc;
  text-transform: uppercase;
}

/* ================== WPS 官网风格 Hero（仅作用于 .wps-hero） ================== */

/* 容器：沿用 wa-hero 结构，做定制化排版 */
.wa-hero.wps-hero{
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 1280px;
  margin: 28px auto 40px;
  padding-top: 12px;
  padding-bottom: 0;
}

/* 顶部 LOGO */
.wps-hero__brand{
  margin-top: 6px;
}
.wps-hero__logo{
  width: 72px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 标题/副标题 */
.wps-hero__title{
  margin: 10px 0 2px;
  font-size: clamp(28px, 4.8vw, 44px);
  font-weight: 700;
  letter-spacing: .2px;
  color: #111;
}
.wps-hero__subtitle{
  margin: 6px 0 14px;
  font-size: clamp(14px, 2.2vw, 16px);
  color: #6b7280;
  letter-spacing: .6em;
}

/* 立即下载按钮（居中单颗） */
.wa-hero.wps-hero .wa-hero__actions{
  justify-content: center;
}
.download-btn--primary.download-btn--lg{
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg,#ff6a6a 0%, #ff2db2 55%, #ff7b7b 100%);
  color: #fff;
  border: none;
  box-shadow: 0 14px 36px rgba(255, 68, 140, .25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.download-btn--primary.download-btn--lg:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(255, 68, 140, .34);
  filter: saturate(1.04);
}

/* 底部大预览图 */
.wps-hero__screen img{
  display: block;
  width: min(800px, 95vw);
  height: auto;
  margin: 40px auto 0;
  border-radius: 18px;
  box-shadow: 0 28px 72px rgba(17, 24, 39, .12);
}

.download-btn--primary.download-btn--lg .icon-caret{
  display:inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 6px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.wps-hero__logo{
  display: block;
  margin: 0 auto 6px;
  height: auto;
  width: auto;
  max-width: 100%;
}

.download-btn--primary.download-btn--lg{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  text-align: center;
  min-width: 200px;
  height: 50px;
  line-height: 56px;
  padding: 0 28px;
  margin-top: 24px;
  border-radius: 999px;
}
.download-btn--primary.download-btn--lg .icon-caret{
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media (max-width: 860px){
  .wps-hero__logo{ width: 76px; }
}
@media (max-width: 520px){
  .wps-hero__logo{ width: 64px; }
  .download-btn--primary.download-btn--lg{
    font-size: 18px;
    min-width: 240px;
  }
}
