/* 91网 - 主样式文件 */
:root {
  --primary: #1a4fa8;
  --primary-dark: #0e3278;
  --accent: #f47c20;
  --accent-light: #ff9a45;
  --bg: #f5f7fa;
  --bg-dark: #0d1b3e;
  --text: #1a1a2e;
  --text-muted: #5a6474;
  --white: #ffffff;
  --border: #e0e6ef;
  --card-shadow: 0 4px 20px rgba(26,79,168,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

/* ===== 顶部公告栏 ===== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.82rem;
  padding: 7px 20px;
  letter-spacing: 0.02em;
}
.top-bar a { color: var(--accent-light); }

/* ===== 导航 ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,79,168,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.logo-wrap img { height: 40px; width: auto; }
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary);
  color: var(--white);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 搜索框 ===== */
.search-bar-wrap {
  background: linear-gradient(90deg, #1a4fa8 0%, #0e3278 100%);
  padding: 14px 20px;
}
.search-bar-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.search-bar-inner input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 22px;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
}
.search-bar-inner input::placeholder { color: #aab; }
.search-bar-inner button {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.search-bar-inner button:hover { background: var(--accent-light); }

/* ===== 面包屑 ===== */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== Banner ===== */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-banner img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content h1 em { color: var(--accent-light); font-style: normal; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-light); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 28px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ===== 通用区块 ===== */
.section { padding: 70px 20px; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.section-title h2 em { color: var(--primary); font-style: normal; }
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.title-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ===== 统计数字 ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 28px 20px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--accent-light); }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }

/* ===== 功能卡片 ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,79,168,0.15); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--white);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ===== 场景图片区 ===== */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scene-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  aspect-ratio: 4/3;
}
.scene-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.scene-card:hover img { transform: scale(1.06); }
.scene-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 20px 16px 16px;
  color: var(--white);
}
.scene-overlay h3 { font-size: 1rem; font-weight: 700; }
.scene-overlay p { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; }

/* ===== 视频卡片 ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(26,79,168,0.15); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.08); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  transition: opacity var(--transition);
}
.video-card:hover .play-btn { opacity: 1; }
.play-btn svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,0.72);
  color: var(--white);
  font-size: 0.78rem;
  padding: 2px 7px;
  border-radius: 4px;
}
.video-info { padding: 14px 16px; }
.video-info h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; color: var(--text); line-height: 1.4; }
.video-meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.video-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== 教程步骤 ===== */
.tutorial-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  position: relative;
  border-top: 4px solid var(--primary);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== 更新日志 ===== */
.changelog-list { max-width: 800px; margin: 0 auto; }
.changelog-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.changelog-item:last-child { border-bottom: none; }
.changelog-version {
  flex-shrink: 0;
  text-align: center;
  min-width: 90px;
}
.version-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}
.changelog-date { font-size: 0.8rem; color: var(--text-muted); }
.changelog-changes ul { list-style: none; }
.changelog-changes li {
  padding: 4px 0;
  font-size: 0.93rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.changelog-changes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(26,79,168,0.07);
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: #f0f4ff; }
.faq-question.open { background: var(--primary); color: var(--white); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 14px 22px 18px; }

/* ===== 用户评价 ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-user-name { font-weight: 700; font-size: 0.97rem; }
.review-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 2px; margin-top: 2px; }
.review-content { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.review-content::before { content: '"'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -8px; margin-right: 4px; }

/* ===== 联系我们 ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--card-shadow); }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
  background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { height: 100px; resize: vertical; }

/* ===== 页脚 ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-wrap { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ===== 内页 Hero ===== */
.inner-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 50px 20px;
  text-align: center;
  color: var(--white);
}
.inner-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.inner-hero p { font-size: 1.05rem; opacity: 0.88; }

/* ===== 通用列表 ===== */
.article-list { max-width: 860px; margin: 0 auto; }
.article-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.article-item:hover { transform: translateX(4px); }
.article-item img { width: 140px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.article-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.article-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }
.article-meta span { margin-right: 14px; }

/* ===== 下载卡片 ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.download-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.download-card:hover { transform: translateY(-5px); }
.download-card .dl-icon { font-size: 2.5rem; margin-bottom: 14px; }
.download-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.download-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.btn-download {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: background var(--transition);
}
.btn-download:hover { background: var(--primary-dark); color: var(--white); }

/* ===== 帮助中心 ===== */
.help-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.help-cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.help-cat-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.help-cat-icon { font-size: 2rem; margin-bottom: 10px; }
.help-cat-card h3 { font-size: 0.95rem; font-weight: 700; }

/* ===== 技巧文章 ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition);
}
.tip-card:hover { transform: translateY(-5px); }
.tip-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.tip-body { padding: 18px; }
.tip-tag {
  display: inline-block;
  background: #e8f0ff;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.tip-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tip-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ===== 分页 ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.pagination a:hover, .pagination a.active {
  background: var(--primary);
  color: var(--white);
}

/* ===== 返回顶部 ===== */
#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,79,168,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--primary-dark); }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .changelog-item { flex-direction: column; gap: 10px; }
  .article-item { flex-direction: column; }
  .article-item img { width: 100%; height: 180px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .section { padding: 48px 16px; }
  .stats-inner { flex-direction: column; align-items: center; }
}
