.background {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, #f5f9f0, #e8f5e9);
  overflow: hidden;
}
.background ul {
  opacity: 0.6;
  width: 30%;
  height: 100%;
}
.background ul li {
  width: 100%;
  height: 35vh;
  margin-bottom: 5vh;
  border-radius: 20px;
}
.background ul li img {
  border-radius: 20px;
}
.background .line-one {
  animation: moveup 60s linear infinite;
}
.background .line-two {
  animation: movedown 60s linear infinite;
}
@keyframes moveup {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200vh);
  }
}
@keyframes movedown {
  0% {
    transform: translateY(-200vh);
  }
  100% {
    transform: translateY(0);
  }
}
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.top-nav .nav-container {
  max-width: 1380px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.top-nav .logo {
  display: block;
  height: 50px;
  width: 130px;
}
.top-nav .nav-links {
  height: 60%;
  padding-top: 10px;
  list-style: none;
  display: flex;
  align-items: center;
}
.top-nav .nav-links li {
  margin: 0 15px;
  height: 100%;
  border-bottom: #ffffff solid 2px;
}
.top-nav .nav-links li a {
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.top-nav .nav-links li a .nav-icon {
  margin-right: 8px;
}
.top-nav .nav-links li a.active {
  font-weight: bold;
  color: #72b626;
}
.top-nav .nav-links li a:hover {
  color: #72b626;
}
.top-nav .nav-links li.active {
  border-bottom: #d4af37 solid 3px;
}
.top-nav .search-container {
  display: none;
}
.top-nav .search-container input {
  width: 300px;
  height: 35px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  padding: 0 15px;
  font-size: 16px;
}
.top-nav .user-actions {
  display: flex;
  align-items: center;
}
.top-nav .user-actions .action-item {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
}
.top-nav .user-actions .action-item .iconfont {
  font-size: 26px;
  color: #333333;
}
.top-nav .user-actions .action-item .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff4d4f;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.top-nav .user-actions .action-item .user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(45, 80, 22, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}
.welcome-contain {
  position: relative;
  width: 99vw;
  height: 100vh;
}
.welcome-contain .welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 500px;
  padding: 100px 40px 40px;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 20px;
  z-index: 2;
}
.welcome-contain .welcome h1 {
  font-size: 3rem;
  color: #2d5016;
  margin: 20px 0 40px;
}
.welcome-contain .welcome p {
  display: block;
  width: 900px;
  margin: 20px auto;
  font-size: 1.25rem;
  color: #666666;
}
.welcome-contain .welcome .welcome-act {
  display: flex;
  justify-content: space-between;
  width: 400px;
  margin: 0 auto;
}
.welcome-contain .welcome .welcome-act .btn {
  width: 140px;
  height: 60px;
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
  border-radius: 30px;
  border: 2px #000 solid;
  transition: all 0.3s ease;
}
.welcome-contain .welcome .welcome-act .btn-primary {
  background-color: #2d5016;
  color: #ffffff;
  border-color: #2d5016;
}
.welcome-contain .welcome .welcome-act .btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}
.welcome-contain .welcome .welcome-act .btn-secondary {
  background-color: #ffffff;
  color: #2d5016;
  border-color: #2d5016;
}
.welcome-contain .welcome .welcome-act .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.memory-units {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1400px;
  margin: 80px auto 60px;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  /* 情景记忆网格布局 */
  /* 情景记忆卡片 */
  /* 查看更多按钮 */
}
.memory-units .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.memory-units .section-header h2 {
  font-size: 40px;
  color: #2c5530;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.memory-units .section-header .section-subtitle {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.memory-units .memory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.memory-units .memory-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.memory-units .memory-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.memory-units .memory-card .memory-img {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.memory-units .memory-card .memory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.memory-units .memory-card:hover .memory-img img {
  transform: scale(1.05);
}
.memory-units .memory-card .memory-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(44, 85, 48, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.memory-units .memory-card .memory-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.memory-units .memory-card .memory-content h3 {
  font-size: 18px;
  color: #2c5530;
  margin-bottom: 10px;
  font-weight: 600;
}
.memory-units .memory-card .memory-content .memory-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}
.memory-units .memory-card .memory-content .memory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.memory-units .memory-card .memory-content .memory-tags .tag {
  background-color: #f0f5f0;
  color: #2c5530;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.memory-units .memory-card .memory-content .memory-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.memory-units .memory-card .memory-content .memory-footer .memory-price {
  min-width: 80px;
  color: #d4af37;
  font-weight: bold;
  font-size: 20px;
}
.memory-units .memory-card .memory-content .memory-footer .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d5016;
  color: white;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.memory-units .memory-card .memory-content .memory-footer .btn-outline:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}
.memory-units .section-footer {
  text-align: center;
}
.memory-units .section-footer .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d5016;
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.memory-units .section-footer .btn-more:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}
/* 热门商品与服务模块 */
.hot-products {
  max-width: 1400px;
  margin: 60px auto 80px;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  border-radius: 20px;
  z-index: 2;
  /* 商品网格布局 */
  /* 商品卡片 */
  /* 商品卡片中的查看更多按钮 */
}
.hot-products .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.hot-products .section-header h2 {
  font-size: 40px;
  color: #2c5530;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-products .section-header .section-subtitle {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.hot-products .products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.hot-products .product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.hot-products .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.hot-products .product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #d4af37;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.hot-products .product-card .product-img {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.hot-products .product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hot-products .product-card:hover .product-img img {
  transform: scale(1.05);
}
.hot-products .product-card .product-content {
  padding: 20px;
}
.hot-products .product-card .product-content h3 {
  font-size: 18px;
  color: #2c5530;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}
.hot-products .product-card .product-content .product-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  height: 40px;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.hot-products .product-card .product-content .product-price {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hot-products .product-card .product-content .product-price .current-price {
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
}
.hot-products .product-card .product-content .product-price .original-price {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}
.hot-products .product-card .product-content .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.hot-products .product-card .product-content .product-tags .product-tag {
  background-color: #f0f5f0;
  color: #739e6f;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
}
.hot-products .product-card .product-content .product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hot-products .product-card .product-content .product-actions .btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d5016;
  color: white;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hot-products .product-card .product-content .product-actions .btn-add-cart:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}
.hot-products .product-card .product-content .product-actions .btn-wishlist {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hot-products .product-card .product-content .product-actions .btn-wishlist:hover {
  background-color: #ffe6e6;
}
.hot-products .product-card .product-content .product-actions .btn-wishlist i {
  color: #999;
  font-size: 18px;
  transition: all 0.3s ease;
}
.hot-products .product-card .product-content .product-actions .btn-wishlist i:hover {
  color: #ff4757;
  transform: scale(1.1);
}
.hot-products .section-footer {
  text-align: center;
}
.hot-products .section-footer .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2d5016;
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hot-products .section-footer .btn-more:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}
footer {
  width: 100%;
  height: 334px;
  background-color: rgba(45, 80, 22, 0.9);
  padding-top: 40px;
  color: #fff;
  z-index: 3;
}
footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
footer .footer-content .footer-section {
  padding: 0 10px;
}
footer .footer-content .footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
footer .footer-content .footer-links {
  list-style: none;
}
footer .footer-content .footer-links li {
  margin-bottom: 10px;
}
footer .footer-content .footer-links a {
  color: #d0f0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-content .footer-links a:hover {
  color: white;
}
footer .copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #d0f0d0;
}
@media (max-width: 1024px) {
  .background ul {
    width: 40%;
  }
  .top-nav .nav-container {
    padding: 0 15px;
  }
  .top-nav .nav-links li {
    margin: 0 10px;
  }
  .top-nav .nav-links li a {
    font-size: 16px;
  }
  .memory-units,
  .hot-products {
    max-width: 95%;
    padding: 30px 20px;
    margin: 60px auto;
  }
  .memory-units .section-header h2,
  .hot-products .section-header h2 {
    font-size: 32px;
  }
  .memory-units .section-header .section-subtitle,
  .hot-products .section-header .section-subtitle {
    font-size: 15px;
    max-width: 500px;
  }
  .memory-units .memory-grid,
  .hot-products .memory-grid,
  .memory-units .products-grid,
  .hot-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  footer {
    height: auto;
    min-height: 334px;
    padding: 40px 20px 40px;
  }
  .welcome-contain .welcome {
    width: 90%;
    max-width: 1200px;
    padding: 80px 30px 30px;
  }
  .welcome-contain .welcome h1 {
    font-size: 2.5rem;
    margin: 15px 0 30px;
  }
  .welcome-contain .welcome p {
    width: 100%;
    max-width: 700px;
    font-size: 1.1rem;
  }
  .welcome-contain .welcome .welcome-act {
    width: 350px;
  }
  .welcome-contain .welcome .welcome-act .btn {
    width: 120px;
    height: 50px;
    font-size: 1.1rem;
    line-height: 46px;
  }
}
@media (max-width: 768px) {
  .background ul {
    width: 50%;
    opacity: 0.4;
  }
  .background ul li {
    height: 25vh;
    margin-bottom: 3vh;
  }
  .top-nav {
    height: 60px;
  }
  .top-nav .nav-container {
    padding: 0 10px;
  }
  .top-nav .logo {
    height: 40px;
    width: 56px;
  }
  .memory-units,
  .hot-products {
    max-width: 95%;
    padding: 20px 15px;
    margin: 40px auto;
  }
  .memory-units .section-header,
  .hot-products .section-header {
    margin-bottom: 30px;
  }
  .memory-units .section-header h2,
  .hot-products .section-header h2 {
    font-size: 24px;
    flex-direction: column;
    gap: 10px;
  }
  .memory-units .section-header .section-subtitle,
  .hot-products .section-header .section-subtitle {
    font-size: 14px;
    max-width: 100%;
  }
  .memory-units .memory-grid,
  .hot-products .memory-grid,
  .memory-units .products-grid,
  .hot-products .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .memory-units .memory-card .memory-content,
  .hot-products .memory-card .memory-content,
  .memory-units .product-card .memory-content,
  .hot-products .product-card .memory-content,
  .memory-units .memory-card .product-content,
  .hot-products .memory-card .product-content,
  .memory-units .product-card .product-content,
  .hot-products .product-card .product-content {
    padding: 15px;
  }
  .memory-units .memory-card .memory-content h3,
  .hot-products .memory-card .memory-content h3,
  .memory-units .product-card .memory-content h3,
  .hot-products .product-card .memory-content h3,
  .memory-units .memory-card .product-content h3,
  .hot-products .memory-card .product-content h3,
  .memory-units .product-card .product-content h3,
  .hot-products .product-card .product-content h3 {
    font-size: 16px;
  }
  .memory-units .memory-card .memory-content .product-desc,
  .hot-products .memory-card .memory-content .product-desc,
  .memory-units .product-card .memory-content .product-desc,
  .hot-products .product-card .memory-content .product-desc,
  .memory-units .memory-card .product-content .product-desc,
  .hot-products .memory-card .product-content .product-desc,
  .memory-units .product-card .product-content .product-desc,
  .hot-products .product-card .product-content .product-desc {
    font-size: 12px;
    height: auto;
  }
  .memory-units .memory-card .product-actions,
  .hot-products .memory-card .product-actions,
  .memory-units .product-card .product-actions,
  .hot-products .product-card .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  .memory-units .memory-card .product-actions .btn-add-cart,
  .hot-products .memory-card .product-actions .btn-add-cart,
  .memory-units .product-card .product-actions .btn-add-cart,
  .hot-products .product-card .product-actions .btn-add-cart {
    width: 100%;
  }
  .memory-units .memory-card .product-actions .btn-wishlist,
  .hot-products .memory-card .product-actions .btn-wishlist,
  .memory-units .product-card .product-actions .btn-wishlist,
  .hot-products .product-card .product-actions .btn-wishlist {
    width: 100%;
    height: 44px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  footer {
    height: auto;
    min-height: 400px;
    padding: 30px 15px 30px;
  }
  .welcome-contain .welcome {
    width: 95%;
    max-width: 100%;
    padding: 60px 20px 20px;
    height: auto;
  }
  .welcome-contain .welcome h1 {
    font-size: 2rem;
    margin: 10px 0 20px;
  }
  .welcome-contain .welcome p {
    width: 100%;
    font-size: 1rem;
    margin: 15px auto;
  }
  .welcome-contain .welcome .welcome-act {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .welcome-contain .welcome .welcome-act .btn {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    line-height: 46px;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .background ul {
    width: 60%;
    opacity: 0.3;
  }
  .background ul li {
    height: 20vh;
    margin-bottom: 2vh;
  }
  .memory-units,
  .hot-products {
    padding: 15px 10px;
    margin: 30px auto;
  }
  .memory-units .section-header h2,
  .hot-products .section-header h2 {
    font-size: 20px;
  }
  .memory-units .memory-card .memory-img,
  .hot-products .memory-card .memory-img,
  .memory-units .product-card .memory-img,
  .hot-products .product-card .memory-img,
  .memory-units .memory-card .product-img,
  .hot-products .memory-card .product-img,
  .memory-units .product-card .product-img,
  .hot-products .product-card .product-img {
    height: 150px;
  }
  .memory-units .memory-card .memory-content,
  .hot-products .memory-card .memory-content,
  .memory-units .product-card .memory-content,
  .hot-products .product-card .memory-content,
  .memory-units .memory-card .product-content,
  .hot-products .memory-card .product-content,
  .memory-units .product-card .product-content,
  .hot-products .product-card .product-content {
    padding: 12px;
  }
  .memory-units .memory-card .memory-content .product-price .current-price,
  .hot-products .memory-card .memory-content .product-price .current-price,
  .memory-units .product-card .memory-content .product-price .current-price,
  .hot-products .product-card .memory-content .product-price .current-price,
  .memory-units .memory-card .product-content .product-price .current-price,
  .hot-products .memory-card .product-content .product-price .current-price,
  .memory-units .product-card .product-content .product-price .current-price,
  .hot-products .product-card .product-content .product-price .current-price {
    font-size: 18px;
  }
  .memory-units .memory-card .memory-content .product-price .original-price,
  .hot-products .memory-card .memory-content .product-price .original-price,
  .memory-units .product-card .memory-content .product-price .original-price,
  .hot-products .product-card .memory-content .product-price .original-price,
  .memory-units .memory-card .product-content .product-price .original-price,
  .hot-products .memory-card .product-content .product-price .original-price,
  .memory-units .product-card .product-content .product-price .original-price,
  .hot-products .product-card .product-content .product-price .original-price {
    font-size: 12px;
  }
  footer {
    height: auto;
    min-height: 450px;
    padding: 20px 10px 30px;
  }
  footer .footer-content {
    gap: 20px;
  }
  footer .copyright {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.8rem;
  }
  .welcome-contain .welcome {
    width: 98%;
    padding: 40px 15px 15px;
  }
  .welcome-contain .welcome h1 {
    font-size: 1.5rem;
    margin: 8px 0 15px;
  }
  .welcome-contain .welcome p {
    font-size: 0.9rem;
    margin: 10px auto;
  }
  .welcome-contain .welcome .welcome-act .btn {
    height: 45px;
    font-size: 0.9rem;
    line-height: 41px;
    margin-top: 10px;
  }
}
@media (max-width: 320px) {
  .background ul {
    width: 70%;
    opacity: 0.2;
  }
  .background ul li {
    height: 18vh;
    margin-bottom: 1.5vh;
    border-radius: 10px;
  }
  .background ul li img {
    border-radius: 10px;
  }
  .welcome-contain .welcome {
    width: 99%;
    padding: 30px 10px 10px;
  }
  .welcome-contain .welcome h1 {
    font-size: 1.3rem;
    margin: 5px 0 10px;
  }
  .welcome-contain .welcome p {
    font-size: 0.8rem;
    margin: 8px auto;
  }
  .welcome-contain .welcome .welcome-act .btn {
    height: 40px;
    font-size: 0.8rem;
    line-height: 36px;
    margin-top: 8px;
  }
}
