/* 字体导入 */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&amp;family=Noto+Sans+SC:wght@400;500&amp;display=swap');

/* 自定义变量 */
:root {
  --brand-blue: rgb(105, 175, 249);
  --brand-blue-dark: rgb(48, 106, 255);
  --dark-bg: #0A0A0A;
  --dark-card: #1A1A1A;
}


/* 基础样式 */
* {
  font-family: 'Noto Sans SC', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--dark-bg);
  line-height: unset !important;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  color: #fff;
}

h1, h2, h3, .heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

/* 容器样式 */
.container {
  max-width: 80vw;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* 通用标题样式 */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* 渐变背景 */
.bg-gradient-dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f2c 100%);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

/* Hero Section */
.hero-section {
  overflow: hidden;
  padding-top: 50px;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-image {
  height: 4rem;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  margin-left: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-description {
  color: #9ca3af;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  max-width: 700px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
}

.hero-video {
  border-radius: 0.75rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 900px;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3.75rem;
  }
}

/* How It Works Section */
.howto-section {
  overflow: hidden;
  padding: 4rem 0;
  padding-top: 0;
  position: relative;
}

.howto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item:hover {
  background: rgba(105, 175, 249, 0.1);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(105, 175, 249, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(105, 175, 249, 0.3);
  aspect-ratio: 1/1;
  text-align: center;
}

.step-item:hover .step-number {
  transform: scale(1.1);
}

.step-content {
  background: rgba(26, 26, 26, 0.3);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s;
  width: 100%;
}

.step-item:hover .step-content {
  background: rgba(26, 26, 26, 0.5);
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.step-item:hover .step-title {
  color: var(--brand-blue);
}

.step-description {
  color: #9ca3af;
}

.howto-image {
  position: relative;
}

.howto-img {
  border-radius: 0.75rem;
  width: 100%;
  height: auto;
}

/* 为每个步骤创建不同的样式 */
.step-1 .step-number {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.step-2 .step-number {
  background: linear-gradient(135deg, #4ECDC4 0%, #6EE7E0 100%);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.step-3 .step-number {
  background: linear-gradient(135deg, #FFD166 0%, #FFE0A0 100%);
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
}

.step-4 .step-number {
  background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

/* 悬停效果 */
.step-1:hover .step-number {
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.step-2:hover .step-number {
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.step-3:hover .step-number {
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}

.step-4:hover .step-number {
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

@media (min-width: 768px) {
  .howto-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Features Section */
.features-section {
  overflow: hidden;
  padding: 4rem 0;
  background: rgba(26, 26, 26, 0.5);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Feature Cards */
.feature-card {
  background: var(--dark-card);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2.2rem;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(105, 175, 249, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(105, 175, 249, 0.2);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: var(--brand-blue);
  background: rgba(105, 175, 249, 0.2);
  border-color: var(--brand-blue);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  text-align: center;
}

.feature-card:hover .feature-title {
  color: var(--brand-blue);
}

.feature-description {
  color: #9ca3af;
  line-height: 1.6;
}

.icon-overlay {
  position: absolute;
  font-size: 1.2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ef4444;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reviews Section */
.reviews-section {
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  background: rgba(26, 26, 26, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 30px rgba(105, 175, 249, 0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: scale(1.05);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid var(--brand-blue);
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.reviewer-title {
  color: var(--brand-blue);
  font-size: 0.875rem;
  font-weight: 500;
}

.rating {
  display: flex;
  margin-top: 0.25rem;
}

.rating i {
  color: #facc15;
}

.review-content {
  color: #d1d5db;
  font-style: italic;
  float: unset !important;
  width: unset !important;
  padding-bottom: unset !important;
  overflow: unset !important;
  border-bottom: unset !important;
  position: unset !important;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ Section */
.faq-section {
  overflow: hidden;
  padding: 4rem 0;
  background: rgba(26, 26, 26, 0.5);
  position: relative;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1.5rem;
  background: var(--dark-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #9ca3af;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--dark-card);
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-text {
  color: #9ca3af;
}

/* CTA Section */
.cta-section {
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.center-content {
  text-align: center;
}

.cta-logo {
  width: 6rem;
  margin: 0 auto 1rem;
}

.cta-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-description {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* 按钮样式 */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.justify-start {
  justify-content: start !important;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(105, 175, 249, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(105, 175, 249, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(105, 175, 249, 0.3);
}

.btn-secondary:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* 按钮动画 */
.btn-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.btn-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-slide:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
}

/* 下载应用容器 */
.download-app-container {
  position: relative;
  display: inline-block;
}

.download-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download-app-btn i {
  font-size: 1.1em;
}

/* 下载弹窗 */
.download-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(105, 175, 249, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.download-app-container:hover .download-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 下载选项 */
.download-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
}

.download-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  position: relative;
  width: 30%;
  text-align: center;
}

.download-option:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.download-option i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  width: auto;
  text-align: center;
}

.windows-option i {
  color: #00a4ef;
}

.mobile-option i.fa-android {
  color: #a5c63b;
}

.mobile-option i.fa-apple {
  color: #a2aaad;
}

.download-option span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* 二维码 */
.qr-code {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 101;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-option:hover .qr-code {
  opacity: 1;
  visibility: visible;
}

.qr-code img {
  width: 120px;
  height: 120px;
  display: block;
  object-fit: contain;
}

/* 添加小箭头指示 */
.download-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #1a1a1a;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .hero-image {
    max-width: 100%;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-section .cta-buttons .btn {
    width: 100%;
  }
}

/* 背景气泡 */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  opacity: 0.15;
  animation: float 20s infinite;
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

.bubble-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -250px;
  animation-delay: -2s;
}

.bubble-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -150px;
  animation-delay: -5s;
}

.bubble-3 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: -150px;
  animation-delay: -8s;
}

.bubble-4 {
  width: 450px;
  height: 450px;
  top: 35%;
  left: -200px;
  animation-delay: -3s;
}

.bubble-5 {
  width: 250px;
  height: 250px;
  top: 55%;
  left: -100px;
  animation-delay: -6s;
}

.bubble-6 {
  width: 550px;
  height: 550px;
  bottom: -250px;
  right: -250px;
  animation-delay: -4s;
}

.bubble-7 {
  width: 180px;
  height: 180px;
  top: 60%;
  left: 15%;
  animation-delay: -7s;
}

.bubble-8 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 25%;
  animation-delay: -9s;
}

.bubble-9 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 5%;
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-10px) scale(1.02) rotate(2deg);
    opacity: 0.2;
  }
}

/* 点状背景 */
.dots-pattern {
  position: absolute;
  background-image: radial-gradient(rgba(105, 175, 249, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.dots-pattern-1 {
  top: 0;
  left: 0;
  transform: rotate(15deg);
}

.dots-pattern-2 {
  bottom: 0;
  right: 0;
  transform: rotate(-15deg);
}

/* 线条背景 */
.lines-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-image: linear-gradient(90deg, rgba(105, 175, 249, 0.1) 1px, transparent 1px), linear-gradient(0deg, rgba(105, 175, 249, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.lines-pattern-1 {
  top: 0;
  left: 0;
  transform: rotate(5deg);
}

.lines-pattern-2 {
  bottom: 0;
  right: 0;
  transform: rotate(-5deg);
}

/* 发光阴影 */
.glow-shadow {
  box-shadow: 0 0 30px rgba(105, 175, 249, 0.1);
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .bubble {
    filter: blur(15px);
  }

  .bubble-1, .bubble-2, .bubble-3, .bubble-4, .bubble-5, .bubble-6, .bubble-7, .bubble-8, .bubble-9 {
    width: 70%;
    height: 70%;
  }

  .dots-pattern, .lines-pattern {
    opacity: 0.3;
  }
}

/* 浮动领取免费投屏图标 */
.floating-free-trial {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 100;
}

.free-trial-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.5), 0 0 20px rgba(245, 158, 11, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.free-trial-icon i {
  font-size: 28px;
  margin-bottom: 2px;
}

.free-trial-text {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 86px;
  transform: translateY(-50%);
  color: #FFD700;
  padding: 4px 8px;
  border-radius: 4px;
  width: auto;
  min-width: 110px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: block;
}

.free-trial-icon:hover .free-trial-text {
  color: #FFF;
  transform: translateY(-50%) translateX(5px);
  background: linear-gradient(45deg, #FFA500, #FF4500);
  border-color: rgba(255, 165, 0, 0.5);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  opacity: 1;
  display: block;
}

@keyframes pulse-gift {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4), 0 0 0 0 rgba(245, 158, 11, 0.4), 0 0 0 0 rgba(236, 72, 153, 0.4);
  }
  50% {
    box-shadow: 0 0 25px 0 rgba(124, 58, 237, 0.6), 0 0 25px 0 rgba(245, 158, 11, 0.6), 0 0 30px 0 rgba(236, 72, 153, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4), 0 0 0 0 rgba(245, 158, 11, 0.4), 0 0 0 0 rgba(236, 72, 153, 0.4);
  }
}

.free-trial-icon {
  animation: pulse-gift 2s infinite;
}

@media (max-width: 768px) {
  .floating-free-trial {
    left: 15px;
    bottom: 80px;
  }

  .free-trial-icon {
    width: 50px;
    height: 50px;
  }

  .free-trial-icon i {
    font-size: 20px;
  }
}

a:hover {
  text-decoration: none;
}
.header .logo {
  top: -12px !important;
}

.notice-dialog-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.notice-dialog-container.active {
  display: block;
}

.mask {
  width: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.4);
}

.main {
  position: absolute;
  left: 50%;
  top: 50%;
  padding-bottom: 50px;
  transform: translate(-50%, -50%);
  width: 368px;
  height: auto;
  background: url("../png/mirror-dialog-bg.png");
  overflow: hidden;
  border-radius: 24px;
  line-height: 19px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dialog-close {
  width: max-content;
  align-self: flex-end;
  padding-top: 16px;
  padding-right: 16px;
  cursor: pointer;
}

.content-success-img {
  width: 130px;
  height: 86px;
  margin: 22px auto 0;
}

.content-title {
  margin: 16px 0 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  color: #2A2960;
}

.content-desc {
  margin: 4px 20px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}

.btn-free-trial {
  margin: 48px auto 0;
  height: 64px;
  line-height: 32px;
  min-width: 300px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  border: unset;
  cursor: pointer;
}
