@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background-color: #222222;
  color: white;
  padding: 0 50px;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 100%;
}
.header .container .left .logo {
  display: block;
  width: 162px;
  height: 32px;
}
.header .container .right {
  display: flex;
  justify-content: end;
}
.header .container .right .nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.header .container .right .nav ul li a {
  color: white;
  text-decoration: none;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.header .container .right .nav ul li a:hover {
  text-decoration: underline;
}
.header .container .right .btn-admin-login {
  margin-left: 4.25rem;
  border: none;
  border-radius: 4px;
  background-color: #2cd424;
  color: #333;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  font-size: 0.875rem;
}
.header .container .right .btn-admin-login:hover {
  color: #000;
}

.main {
  margin-top: 68px;
}
.main .carousel-container {
  width: 100%;
  aspect-ratio: 1920/600;
  max-height: 600px;
  background-color: #222222;
  background-image: url("../images/carousel_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
.main .carousel-container .carousel-box {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.main .carousel-container .carousel-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  font-style: italic;
}
.main .promotion-container {
  max-width: 1300px;
  margin: -4rem auto 0;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 0.1px;
  background-image: url("../images/download.png");
  background-repeat: no-repeat;
  background-position: right center;
}
.main .promotion-container h3 {
  font-size: 2rem;
  margin: 2.5rem 2.5rem 0;
}
.main .promotion-container .promotion-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 2.5rem;
}
.main .promotion-container .promotion-main .step-box {
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  background-color: #fff;
}
.main .promotion-container .promotion-main .step-box .number {
  color: #ddd;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Arial Black", "Helvetica Neue Condensed Black", "Impact", sans-serif;
  float: left;
  height: 3.125rem;
  line-height: 3.125rem;
  margin-right: 1rem;
}
.main .promotion-container .promotion-main .step-box .title {
  color: #000;
  font-size: 1.25rem;
  font-weight: bold;
}
.main .promotion-container .promotion-main .step-box .subtitle {
  color: #999;
  font-size: 0.875rem;
}
.main .promotion-container .promotion-main .step-1 .step-box {
  background-color: #222222;
}
.main .promotion-container .promotion-main .step-1 .step-box .number {
  color: #ddd;
}
.main .promotion-container .promotion-main .step-1 .step-box .title {
  color: #fff;
}
.main .promotion-container .promotion-main .step-1 .step-box .subtitle {
  color: #999;
}
.main .promotion-container .promotion-main .step-form {
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background-color: #222222;
  display: flex;
  justify-content: space-between;
  padding: 0.625rem;
}
.main .promotion-container .promotion-main .step-form input[type=email] {
  flex: 1;
  outline: none;
  background: none;
  border: none;
  padding: 5px;
  margin-right: 1rem;
  color: #fff;
  font-size: 1rem;
}
.main .promotion-container .promotion-main .step-form input[type=email]:focus {
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}
.main .promotion-container .promotion-main .step-form input[type=submit] {
  border: none;
  border-radius: 4px;
  background-color: #2cd424;
  color: #333;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 0.875rem;
  padding: 10px 20px;
  cursor: pointer;
}
.main .promotion-container .promotion-main .step-form input[type=submit]:hover {
  color: #000;
}
.main .promotion-container .promotion-main .step-box + form {
  margin-top: 1.25rem;
}
.main .product-container {
  max-width: 1300px;
  margin: 0 auto;
}
.main .product-container h3 {
  font-size: 2rem;
  text-align: center;
}
.main .product-container .product-main {
  margin: 6rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.main .product-container .product-main .pro-item {
  display: flex;
  align-items: flex-end;
}
.main .product-container .product-main .pro-item .pro-img {
  width: 200px;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.main .product-container .product-main .pro-item .pro-img .bezel {
  background-image: url("../images/bezel.webp");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main .product-container .product-main .pro-item .pro-img img {
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: calc(100% - 11px);
  border-radius: 1.25rem;
  overflow: hidden;
}
.main .product-container .product-main .pro-item .pro-detail {
  flex: 1;
  border-radius: 0 1rem 1rem 0;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  background-image: url("../images/product_item_bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 80px 90px;
}
.main .product-container .product-main .pro-item .pro-detail .pro-info {
  display: flex;
  margin: 2rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-side {
  margin-right: 1rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-side img {
  width: 50px;
  height: 50px;
  display: block;
}
.main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-main .pro-name {
  font-size: 1rem;
  font-weight: bold;
}
.main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-main .pro-desc {
  color: #999;
  font-size: 0.875rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-data {
  display: flex;
  gap: 2rem;
  margin: 2rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters {
  margin-left: 4.125rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-title {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 0.5rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-info .count {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial Black", "Helvetica Neue Condensed Black", "Impact", sans-serif;
  float: left;
  height: 2rem;
  line-height: 2rem;
  margin-right: 0.25rem;
}
.main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-info .unit {
  font-size: 0.875rem;
}
.main .product-container .product-footer {
  text-align: center;
}
.main .product-container .product-footer .product-more {
  border: none;
  border-radius: 99px;
  background-color: #2cd424;
  color: #333;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.main .product-container .product-footer .product-more:hover {
  color: #000;
}
.main .payment-container {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 7.5rem 0;
}
.main .payment-container h3 {
  font-size: 2rem;
  text-align: center;
}
.main .payment-container h4 {
  font-size: 0.875rem;
  text-align: center;
  color: #999;
  font-weight: 400;
}
.main .payment-container .payment-main {
  max-width: 1300px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  gap: 6rem;
}
.main .payment-container .payment-main .payment-item img {
  width: 60px;
  height: 60px;
}
.main .faq-container {
  max-width: 1300px;
  margin: 0 auto 9rem;
}
.main .faq-container h3 {
  font-size: 2rem;
  text-align: center;
}
.main .faq-container .faq-main {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-top: 4rem;
  padding: 3rem 4rem;
}
.main .faq-container .faq-main .faq-item .faq-question {
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.main .faq-container .faq-main .faq-item .faq-question i {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  margin-right: 0.25rem;
}
.main .faq-container .faq-main .faq-item .faq-answer {
  font-size: 0.875rem;
  color: #999;
  margin-left: 1.25rem;
  margin-top: 0.25rem;
}
.main .faq-container .faq-main .faq-item + .faq-item {
  margin-top: 2rem;
}
.main .promotion-container + .product-container,
.main .product-container + .payment-container,
.main .payment-container + .faq-container {
  margin-top: 9rem;
}

.footer {
  background-color: #222222;
  color: white;
  padding: 68px 100px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer .container .left {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.8;
}
.footer .container .left .logo {
  display: block;
  width: 135px;
  height: auto;
  margin-bottom: 0.5rem;
}
.footer .container .left .site-info {
  margin-top: 1rem;
}
.footer .container .right .contact-box + .contact-box {
  margin-top: 1rem;
}
.footer .container .right .contact-box h4 {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #999;
}
.footer .container .right .contact-box .btn-email {
  color: #333;
  text-decoration: none;
  display: inline-block;
  background-color: #fafafa;
  border-radius: 99px;
  padding: 0.25rem 1rem;
  display: inline-block;
}
.footer .container .right .contact-box .btn-email:hover {
  text-decoration: underline;
}
.footer .container .right .contact-box .qrcode-container {
  display: flex;
  gap: 2rem;
}
.footer .container .right .contact-box .qrcode-container .qrcode-item .qrcode-box {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .container .right .contact-box .qrcode-container .qrcode-item .qrcode-title {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5rem;
}

.suspend-container {
  position: fixed;
  right: 20px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  background-color: #222222;
  border-radius: 0.25rem;
  box-shadow: 0 0 20px rgba(0, 255, 13, 0.1);
}
.suspend-container .suspend-header {
  display: flex;
  justify-content: space-around;
  margin: 10px 6px;
}
.suspend-container .suspend-header .h-i {
  width: 7px;
  height: 7px;
  border-radius: 7px;
}
.suspend-container .suspend-header .h-i-1 {
  background-color: #f30;
}
.suspend-container .suspend-header .h-i-2 {
  background-color: #f90;
}
.suspend-container .suspend-header .h-i-3 {
  background-color: #00ff66;
}
.suspend-container .suspend-main {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.suspend-container .suspend-main .floating-btn {
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.suspend-container .suspend-main .floating-btn:hover {
  background-color: #000;
}

/* 遮罩层 */
#form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 弹窗容器 */
#form-modal {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 360px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
#form-modal h4 {
  font-size: 21px;
  line-height: 21px;
}
#form-modal .email-tip {
  font-size: 14px;
  color: #999;
}
#form-modal .email-tip b {
  color: #333;
}
#form-modal .code-container {
  display: flex;
  gap: 20px;
}
#form-modal .code-container input[type=text] {
  flex: 1;
  height: 40px;
  border: none;
  background-color: #efefef;
}
#form-modal .code-container .captchaContainer {
  width: 85px;
  height: 38px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  background-color: #efefef;
  color: #999;
  line-height: 38px;
}
#form-modal .code-container .captchaContainer .captchaImg {
  display: none;
  width: 100%;
}
#form-modal .message {
  font-size: 12px;
}
#form-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
#form-modal .close-btn::before,
#form-modal .close-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}
#form-modal .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#form-modal .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#form-modal .close-btn:hover::before,
#form-modal .close-btn:hover::after {
  background-color: #f00;
}

/* 表单样式 */
#form-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#form-modal input[type=text],
#form-modal input[type=email] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#form-modal button.submit-btn {
  background-color: #2cd424;
  height: 40px;
  color: #222;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#form-modal button.submit-btn:hover {
  background-color: #00b50f;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: #222222;
    color: white;
    padding: 0 15px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 100%;
  }
  .header .container .left .logo {
    display: block;
    width: 162px;
    height: 32px;
  }
  .header .container .right {
    display: flex;
    justify-content: end;
  }
  .header .container .right .nav {
    display: none;
  }
  .header .container .right .nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .header .container .right .nav ul li a {
    color: white;
    text-decoration: none;
    display: inline-block;
    height: 40px;
    line-height: 40px;
  }
  .header .container .right .nav ul li a:hover {
    text-decoration: underline;
  }
  .header .container .right .btn-admin-login {
    margin-left: 4.25rem;
    border: none;
    border-radius: 4px;
    background-color: #2cd424;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 0.875rem;
  }
  .header .container .right .btn-admin-login:hover {
    color: #000;
  }
  .main {
    margin-top: 68px;
  }
  .main .carousel-container {
    width: 100%;
    aspect-ratio: 1200/600;
    max-height: 600px;
    background-color: #222222;
    background-image: url("../images/carousel_bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
  }
  .main .carousel-container .carousel-box {
    max-width: 1300px;
    height: 100%;
    margin: 0 1rem;
    display: flex;
    align-items: center;
  }
  .main .carousel-container .carousel-box h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    font-style: italic;
  }
  .main .promotion-container {
    max-width: 1300px;
    margin: -1rem auto 0;
    background-color: #fff;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 0.1px;
    background-image: url("../images/download.png");
    background-repeat: no-repeat;
    background-position: right center;
  }
  .main .promotion-container h3 {
    font-size: 1rem;
    margin: 1rem 1rem 0;
  }
  .main .promotion-container .promotion-main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 1rem 1rem 2rem;
  }
  .main .promotion-container .promotion-main .step-box {
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    background-color: #fff;
  }
  .main .promotion-container .promotion-main .step-box .number {
    color: #ddd;
    font-size: 3rem;
    font-weight: bold;
    font-family: "Arial Black", "Helvetica Neue Condensed Black", "Impact", sans-serif;
    float: left;
    height: 3.125rem;
    line-height: 3.125rem;
    margin-right: 1rem;
  }
  .main .promotion-container .promotion-main .step-box .title {
    color: #000;
    font-size: 1.25rem;
    font-weight: bold;
  }
  .main .promotion-container .promotion-main .step-box .subtitle {
    color: #999;
    font-size: 0.875rem;
  }
  .main .promotion-container .promotion-main .step-1 .step-box {
    background-color: #222222;
  }
  .main .promotion-container .promotion-main .step-1 .step-box .number {
    color: #ddd;
  }
  .main .promotion-container .promotion-main .step-1 .step-box .title {
    color: #fff;
  }
  .main .promotion-container .promotion-main .step-1 .step-box .subtitle {
    color: #999;
  }
  .main .promotion-container .promotion-main .step-form {
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    background-color: #222222;
    display: flex;
    justify-content: space-between;
    padding: 0.625rem;
  }
  .main .promotion-container .promotion-main .step-form input[type=email] {
    flex: 1;
    outline: none;
    background: none;
    border: none;
    padding: 5px;
    margin-right: 1rem;
    color: #fff;
    font-size: 1rem;
  }
  .main .promotion-container .promotion-main .step-form input[type=email]:focus {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
  }
  .main .promotion-container .promotion-main .step-form input[type=submit] {
    border: none;
    border-radius: 0.5rem;
    background-color: #2cd424;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 0.875rem;
    padding: 10px 20px;
    cursor: pointer;
  }
  .main .promotion-container .promotion-main .step-form input[type=submit]:hover {
    color: #000;
  }
  .main .promotion-container .promotion-main .step-box + form {
    margin-top: 1rem;
  }
  .main .product-container {
    max-width: 1300px;
    margin: 0 auto;
  }
  .main .product-container h3 {
    font-size: 1rem;
    text-align: center;
  }
  .main .product-container .product-main {
    margin: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .main .product-container .product-main .pro-item {
    display: flex;
    align-items: flex-end;
  }
  .main .product-container .product-main .pro-item .pro-img {
    width: 115px;
    height: 242px;
    position: relative;
    overflow: hidden;
  }
  .main .product-container .product-main .pro-item .pro-img .bezel {
    background-image: url("../images/bezel.webp");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .main .product-container .product-main .pro-item .pro-img img {
    display: block;
    position: absolute;
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    max-height: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
  }
  .main .product-container .product-main .pro-item .pro-detail {
    flex: 1;
    border-radius: 0 1rem 1rem 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 0.5rem 0;
    background-image: url("../images/product_item_bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 80px 90px;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-info {
    display: flex;
    margin: 1rem 1rem 0.5rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-side {
    margin-right: 0.5rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-side img {
    width: 24px;
    height: 24px;
    display: block;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-main .pro-name {
    font-size: 0.75rem;
    font-weight: bold;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-info .pro-info-main .pro-desc {
    color: #999;
    font-size: 0.7rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 1rem 1rem 1rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters {
    margin-left: 2rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-title {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.25rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-info {
    display: flex;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-info .count {
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    font-family: "Arial Black", "Helvetica Neue Condensed Black", "Impact", sans-serif;
    float: left;
    height: 1rem;
    line-height: 1rem;
    margin-right: 0.25rem;
  }
  .main .product-container .product-main .pro-item .pro-detail .pro-data .pro-promoters .pro-promoter-info .unit {
    font-size: 0.75rem;
    height: 1rem;
    line-height: 1rem;
    vertical-align: bottom;
  }
  .main .product-container .product-footer {
    text-align: center;
  }
  .main .product-container .product-footer .product-more {
    border: none;
    border-radius: 99px;
    background-color: #2cd424;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .main .product-container .product-footer .product-more:hover {
    color: #000;
  }
  .main .payment-container {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 5rem 0;
  }
  .main .payment-container h3 {
    font-size: 1rem;
    text-align: center;
  }
  .main .payment-container h4 {
    font-size: 0.875rem;
    text-align: center;
    color: #999;
    font-weight: 400;
  }
  .main .payment-container .payment-main {
    max-width: 1300px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
  .main .payment-container .payment-main .payment-item img {
    width: 40px;
    height: 40px;
  }
  .main .faq-container {
    max-width: 1300px;
    margin: 0 1rem 3rem;
  }
  .main .faq-container h3 {
    font-size: 1rem;
    text-align: center;
  }
  .main .faq-container .faq-main {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
    padding: 2rem 1rem;
  }
  .main .faq-container .faq-main .faq-item .faq-question {
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  .main .faq-container .faq-main .faq-item .faq-question i {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
  }
  .main .faq-container .faq-main .faq-item .faq-answer {
    font-size: 0.875rem;
    color: #999;
    margin-left: 1.25rem;
    margin-top: 0.25rem;
  }
  .main .faq-container .faq-main .faq-item + .faq-item {
    margin-top: 2rem;
  }
  .main .promotion-container + .product-container,
  .main .product-container + .payment-container,
  .main .payment-container + .faq-container {
    margin-top: 3rem;
  }
  .footer {
    background-color: #222222;
    color: white;
    padding: 3rem 1.5rem;
  }
  .footer .container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 4rem;
  }
  .footer .container .left {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.8;
  }
  .footer .container .left .logo {
    display: block;
    width: 135px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  .footer .container .left .site-info {
    margin-top: 1rem;
  }
  .footer .container .right .contact-box + .contact-box {
    margin-top: 1rem;
  }
  .footer .container .right .contact-box h4 {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #999;
  }
  .footer .container .right .contact-box .btn-email {
    color: #333;
    text-decoration: none;
    display: inline-block;
    background-color: #fafafa;
    border-radius: 99px;
    padding: 0.25rem 1rem;
    display: inline-block;
  }
  .footer .container .right .contact-box .btn-email:hover {
    text-decoration: underline;
  }
  .footer .container .right .contact-box .qrcode-container {
    display: flex;
    gap: 2rem;
  }
  .footer .container .right .contact-box .qrcode-container .qrcode-item .qrcode-box {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer .container .right .contact-box .qrcode-container .qrcode-item .qrcode-title {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  .suspend-container {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    background-color: #222222;
    border-radius: 0.25rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  .suspend-container .suspend-header {
    display: flex;
    justify-content: space-around;
    margin: 10px 6px;
  }
  .suspend-container .suspend-header .h-i {
    width: 7px;
    height: 7px;
    border-radius: 7px;
  }
  .suspend-container .suspend-header .h-i-1 {
    background-color: #f30;
  }
  .suspend-container .suspend-header .h-i-2 {
    background-color: #f90;
  }
  .suspend-container .suspend-header .h-i-3 {
    background-color: #00ff66;
  }
  .suspend-container .suspend-main {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .suspend-container .suspend-main .floating-btn {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222222;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .suspend-container .suspend-main .floating-btn:hover {
    background-color: #000;
  }
}

/*# sourceMappingURL=styles.css.map */
