
:root {
  --primary-color: #4361ee;
  --secondary-color: #7209b7;
  --text-color: #333;
  --light-text: #fff;
  --white: #fff;
  --light-bg: #f8f9fa;
  --gradient-bg: linear-gradient(to right, #3150ed, #9257f9, #eb4eb1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
    position: relative;
    padding: 1.38486rem 1.12721rem .80515rem;
    overflow: hidden;
}


.logo {
  display: flex;
  align-items: center;
}



.nav-item {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.nav-item.active,
.nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.btn-register {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-register:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 英雄区域样式 */


.hero-bg {
  position: relative;
  padding: 120px 0 200px;
}



.hero-title {
  flex: 1;
  padding-right: 40px;
  max-width: 700px;
}

.hero-title h1 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #fff;
}

.hero-title p {
  display: flex;
  align-items: center;
  font-size: 25px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title p img {
  height: 40px;
  margin-right: 10px;
}

.hero-stats {
  display: flex;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 50px;
}
 

/* .stat-item {
  text-align: center;
  background: transparent;
  border: 6px solid #fff;
  border-radius: 50%;
  width: 500px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.stat-number {
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
}

.stat-number sub {
  font-size: 30px;
  bottom: 0;
}

.stat-text {
  font-size: 22px;
  margin-top: 5px;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.btn-download2, .btn-other {
  background: #fff;
  color: #3150ed;
  padding: 35px 35px;
  font-size: 30px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  min-width: 300px;
  justify-content: center;
}

.btn-download2 img, .btn-other img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.cert-badge {
  position: absolute;
  top: -16px;
  border-radius: 20px;
  padding: 5px 15px;
  z-index: 2;
}

.cert-badge img {
  height: 28px;
  width: auto;
  margin: 0;
}

.hero-img {
  flex: 1;
  text-align: right;
  position: relative;
  max-width: 50%;
}

.hero-img img {
  width: 100%;
  max-width: 100%;
}

/* 波浪形状 */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-size: 100% 100%;
  z-index: 1;
}

/* 一键快连模块样式 */

#quick-connect:target .quick-connect-text,
#quick-connect:target .quick-connect-image {
  visibility: visible;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.quick-connect-section {
  padding: 80px 0;
  background: #f9faff;
  overflow: hidden;
}

.quick-connect-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.quick-connect-text {
  flex: 1;
  padding-right: 50px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.quick-connect-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.quick-connect-image {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.quick-connect-image.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 移除这些动画，因为我们现在使用 visible 类来触发动画 */
.quick-connect-text.animate-left {
  /* 移除 animation 属性 */
}

.quick-connect-image.animate-right {
  /* 移除 animation 属性 */
}

/* 移除这些动画延迟，因为我们现在使用 visible 类来触发动画 */
.quick-connect-text {
  /* 移除 animation-delay 和 animation 属性 */
}

.quick-connect-image {
  /* 移除 animation-delay 和 animation 属性 */
}

.module-section h2{
    font-weight: 400;
    font-size: 45px;
    color: #333;
    margin-bottom: 20px;
}
.module-section p {
    font-size: 24px;
    color: #777;
    line-height: 1.8;
}

.quick-connect-text.animate-left {
  animation: slideInLeft 1s forwards;
}

.quick-connect-image {
  animation: slideInRight 1s forwards;
}




.quick-connect-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-title {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-img {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .quick-connect-container{
    flex-direction: column;
  }
  
  .module-section {
    padding: 40px 20px;
  }

  .module-section h2 {
    font-size: 24px !important;
    text-align: center;
  }

  .visible {
    padding-right: 0;
    text-align: center;
  }
  .visible p{
    font-size: 16px !important;
  }
  .module-section{
    padding: 20px 0 !important;
  } 
  .module-section p {
    font-size: 16px;
    text-align: center;
  }

  .feature-module-container {
    flex-direction: column;
    gap: 30px;
  }

  .feature-module-text {
    padding: 0;
    text-align: center;
  }

  .feature-badge {
    margin: 0 auto 15px;
  }
}

.module-section h2{
    font-weight: 400;
    font-size: 45px;
    color: #333;
    margin-bottom: 20px;
}
.module-section p {
    font-size: 24px;
    color: #777;
    line-height: 1.8;
}

.quick-connect-text.animate-left {
  animation: slideInLeft 1s forwards;
}

.quick-connect-image {
  animation: slideInRight 1s forwards;
}




.quick-connect-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    padding-left: 0 !important;
    padding-right: 0!important
  }
  
  .hero-title {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
   
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0px 20px 40px;
  }

  .hero-title h1 {
    font-size: 32px;
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .stat-item {
    width: calc(50% - 15px);
    min-width: auto;
    height: 140px !important;
  }
  .stat-number{
    font-size: 30px !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-download2, .btn-other {
    width: 100%;
    padding: 20px 20px !important;
  }
  .hero-bg{
    padding: 120px 0 20px !important;
  }
}

/* 应用图标区域 */
.apps-section {
  padding: 60px 0;
  text-align: center;
  margin-top: 50px;
}

.apps-section h2 {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: 400;
}

.apps-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background: #f9faff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.apps-container {
  position: relative;
  display: inline-block;
  /* overflow: hidden; */
}

.hot-apps-img {
  transform-origin: 50% 50%;
  animation: breathing 3s infinite ease-in-out;
  max-width: 100%;
}

.app-logo {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 120px; /* 调整大小 */
  height: auto;
  z-index: 2;
  animation: floating 3s infinite ease-in-out;
}

@keyframes breathing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes floating {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -60%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

/* 在移动端禁用动画效果 */
@media (max-width: 768px) {
  .apps-section {
    padding: 40px 20px;
  }

  .apps-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .apps-icons {
    padding: 30px 15px;
  }

  .app-logo {
    width: 40px;
    animation: none;
    transform: translate(-55%, -55%);
  }

  /* 移动端禁用动画效果 */
  .hot-apps-img {
    animation: none;
    transform: none;
  }
 
}

/* .app-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* 功能区块样式 */

.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.feature-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-row.left-in .feature-img {
  order: 1;
}

.feature-row.left-in .feature-text {
  order: 2;
  padding-left: 50px;
}

.feature-row.right-in .feature-img {
  order: 2;
}

.feature-row.right-in .feature-text {
  order: 1;
  padding-right: 50px;
}

.feature-img {
  flex: 1;
  height: 300px;
  background: #f0f0f0;
  border-radius: 10px;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-text p {
  color: var(--text-color);
  font-size: 16px;
}

/* 用户评价区块 - 轮播样式 */
.reviews-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.reviews-section h2 {
  font-size: 50px;
  margin-bottom: 50px;
  color: #333;
  font-weight: 400;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-arrow img {
  width: 24px;
  height: 24px;
}

.reviews-container {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.review-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.review-item { 
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  text-align: center;
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-text {
  font-style: italic;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 120px; 
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  text-align: left;
}

.review-name {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.review-source {
  font-size: 14px;
  color: #999;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3150ed;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 20px;
  }

  .reviews-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .review-item {
    padding: 20px;
  }

  .review-content {
    font-size: 14px;
  }



  .carousel-dots {
    margin-top: 20px;
  }
}

.review-content {
  text-align: left;
}

.review-name {
  font-weight: bold;
  margin-bottom: 5px;
}


/* 立即免费试用区块 */
.download-section {
  padding: 80px 0;
  text-align: center;
  background: #f8f9fa;
}

.download-section h2 {
  font-size: 50px;
  margin-bottom: 60px;
  color: #333;
  font-weight: 400;
}

.download-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.download-item {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-img {
  width: 100%; 
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.download-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-download-purple {
  background: linear-gradient(315deg, #eb4eb1, #9257f9 50.46%, #3150ed);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 20px 35px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-download-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(126, 60, 249, 0.3);
}

.btn-download-purple img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media (max-width: 992px) {
  .download-list {
    gap: 20px;
  }
  
  .download-item {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 40px 20px;
  }

  .download-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .download-list {
    flex-direction: column;
    gap: 30px;
  }

  .download-item {
    width: 100%;
    max-width: none;
  }

  .btn-download-purple {
    width: 100%;
  }
}

/* 页脚 */
.footer {
  background: var(--light-bg);
  padding: 20px 0;
  text-align: center;
}



/* 响应式设计 */
@media (max-width: 992px) {
  .blog-item {
    flex: 0 0 calc(50% - 15px);
  }
  
  /* 移动端禁用动画效果 */
  .hot-apps-img {
    animation: none;
    transform: none;
  }
  .hero-content {
    flex-direction: column;
  }
  
  .hero-title {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .feature-row, 
  .feature-row.left-in,
  .feature-row.right-in {
    flex-direction: column;
  }
  
  .feature-row.left-in .feature-text,
  .feature-row.right-in .feature-text {
    padding: 30px 0 0 0;
    text-align: center;
  }
  
  .feature-img, .feature-text {
    order: unset !important;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    padding: 10px;
  }
  
  .logo {
    margin-bottom: 10px;
  }
  
  .nav {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .nav-item {
    font-size: 18px;
    padding: 8px 0;
  }
  
  .auth-buttons {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}
.feature-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(315deg, #eb4eb1, #9257f9 50%, #3150ed);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.feature-badge img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* 功能模块通用样式 */
.feature-module-section {
  padding: 80px 0; 
  overflow: hidden;
}
 
.feature-module-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.feature-module-text {
  flex: 1;
  padding: 0 50px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.feature-module-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-module-image {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.feature-module-image.visible {
  opacity: 1;
  transform: translateX(0);
}



.feature-module-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 最新博客区域样式 */
.blog-section {
  padding: 60px 0;
  background-color: #f9faff;
  text-align: center;
}

.blog-section h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 400;
  color: var(--text-color);
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.blog-item {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  max-width: 380px;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.blog-section .blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  height: 50px;
}
.blog-section .blog-title a{
  font-size: 18px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--light-text);
}

.blog-date {
  display: flex;
  align-items: center;
}

.blog-date:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  /* background: url('/images/calendar-icon.svg') no-repeat center; */
  background-size: contain;
  margin-right: 5px;
}

.blog-category {
  display: flex;
  align-items: center;
}

.blog-category:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  /* background: url('/images/tag-icon.svg') no-repeat center; */
  background-size: contain;
  margin-right: 5px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.btn-read-more {
  align-self: flex-start;
  padding: 8px 20px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-read-more:hover {
  background: var(--primary-color);
  color: white;
}

.btn-more {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-bg);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(126, 63, 242, 0.3);
}

.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 63, 242, 0.4);
}

/* 响应式设计 */
@media (max-width: 992px) {
  .blog-item {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .blog-list {
    gap: 20px;
  }
  
  .blog-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .blog-img {
    height: 180px;
  }
  
  .blog-title {
    font-size: 16px;
    height: auto;
    -webkit-line-clamp: 2;
  }
  
  .blog-excerpt {
    -webkit-line-clamp: 2;
  }
}

/* 响应式设计 */
@media (max-width: 992px) {
  .feature-module-container {
    flex-direction: column;
  }
  
  .feature-module-text {
    padding: 30px 0;
    text-align: center;
    order: 2;
  }
  
  .feature-module-image {
    order: 1;
    margin-bottom: 30px;
  }
}

/* 常见问题样式 */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.faq-section h2 {
  font-size: 50px;
  margin-bottom: 60px;
  color: #333;
  font-weight: 400;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(126, 63, 242, 0.05);
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #7e3ff2;
  transition: all 0.3s ease;
}

.faq-icon.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 20px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

.fade-enter-active, .fade-leave-active {
  transition: all 0.3s ease;
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
}

.fade-enter-from, .fade-leave-to {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
}