body {
  overflow: hidden;
}
/* 容器占满屏幕 */
.swiper-container {
  width: 100%;
  height: 100vh;
  /* 视口高度，一屏占满屏幕 */
  overflow: hidden;
}
/* 每个 slide 占满容器（一屏一个） */
.swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 200px;
  width: 100%;
  height: 60px;
  z-index: 222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(0, 0, 0, 0);
}
.header .logo-box {
  width: 400px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header .logo-box .logo {
  width: 78px;
  height: 26px;
  background-image: url(../images/logo.png);
}
.header .logo-box .name {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
}
.header .nav-bar {
  position: relative;
  height: 37px;
}
.header .nav-bar ul.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
.header .nav-bar ul.tab li {
  height: 28px;
  line-height: 21px;
  font-size: 16px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header .nav-bar ul.tab li a {
  color: #fff;
}
.header .nav-bar ul.tab li:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  background: #b99142;
  border-radius: 4px;
  position: relative;
  top: 10px;
  display: none;
}
.header .nav-bar ul.tab li.active a {
  color: #b99142;
}
.header .nav-bar ul.tab li.active:after {
  display: block;
}
.header.header-bj {
  background: rgba(31, 27, 25, 0.9);
}
.page {
  position: relative;
  width: 100%;
  z-index: 4;
}
.page .title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page .title h3 {
  font-weight: bold;
  font-size: 30px;
  color: #333333;
}
.page .title p {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  margin-top: 18px;
}
.page .title .lent {
  width: 67px;
  height: 2px;
  margin-top: 40px;
  background: #999999;
}
.page1 {
  color: #fff;
  z-index: 2;
  position: relative;
}
.page1.bg1 {
  background-image: url(../images/page1-bg.png);
  padding: 0;
}
.page1 .mouse-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page1 .mouse-box .mouse-bg {
  margin: 0 auto;
  width: 22px;
  height: 30px;
  background-image: url(../images/e0.png);
  -webkit-animation: mouse-animate 4s ease-in-out infinite;
          animation: mouse-animate 4s ease-in-out infinite;
}
.page1 .mouse-box .mouse-tips {
  margin-top: 16px;
  height: 21px;
  line-height: 21px;
  font-size: 16px;
  color: #ffffff;
}
.page1 .page1-box {
  width: 1200px;
}
.page1 .page1-box .t-01 {
  width: 524px;
  height: 150px;
  background: url(../images/img1.png) no-repeat top center;
}
.page1 .page1-box .t-02 {
  font-size: 14px;
  color: #cccccc;
  line-height: 22px;
  width: 600px;
  margin-top: 18px;
}
.page1 .page1-box .t-03 {
  width: 160px;
  height: 50px;
  background: -webkit-linear-gradient(354deg, #fee398 0%, #b99142 100%);
  background: -o-linear-gradient(354deg, #fee398 0%, #b99142 100%);
  background: linear-gradient(96deg, #fee398 0%, #b99142 100%);
  border-radius: 45px;
  cursor: pointer;
  font-size: 18px;
  color: #2f221b;
  text-align: center;
  line-height: 50px;
  margin-top: 65px;
}
.page1 .page1-box .t-03:hover {
  background: -webkit-linear-gradient(354deg, #b99142 0%, #fee398 100%);
  background: -o-linear-gradient(354deg, #b99142 0%, #fee398 100%);
  background: linear-gradient(96deg, #b99142 0%, #fee398 100%);
}
.page2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page2 .box {
  width: 1200px;
  margin-top: 60px;
}
.page2 .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page2 .box ul li {
  width: 285px;
  height: 238px;
  background: #f7f8fa;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.page2 .box ul li .t-01 {
  width: 60px;
  height: 60px;
}
.page2 .box ul li .t-02 {
  font-size: 16px;
  margin-top: 18px;
}
.page2 .box ul li .t-03 {
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  padding: 0 35px;
}
.page3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/page2-bg.png);
}
.page3 .box {
  width: 1200px;
  margin-top: 80px;
}
.page3 .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page3 .box ul li {
  width: 326px;
  height: 410px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
          box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.page3 .box ul li .t-01 {
  width: 326px;
  height: 234px;
}
.page3 .box ul li .t-01 img {
  width: 326px;
  height: 234px;
}
.page3 .box ul li .t-02 {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  margin-top: 20px;
}
.page3 .box ul li .t-03 {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-top: 20px;
}
.page4 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/page3-bg.png);
}
.page4 .title h3 {
  color: #fff;
}
.page4 .title p {
  color: #ccc;
}
.page4 .title .lent {
  background: #999;
}
.page4 .box {
  margin-top: 80px;
  width: 1200px;
}
.page4 .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page4 .box ul li {
  width: 302px;
  height: 5 02px;
  border: 1px solid #fff;
  border-radius: 20px;
}
.page4 .box ul li .default-box {
  position: relative;
  overflow: hidden;
  width: 302px;
  height: 502px;
  border-radius: 20px;
}
.page4 .box ul li .default-box .default-text {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 30px;
}
.page4 .box ul li .default-box .default-text .t-01 {
  font-size: 20px;
  color: #ffffff;
}
.page4 .box ul li .default-box .default-text .t-02 {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #efefef;
}
.page4 .box ul li .default-box .default-text .t-03 {
  margin-top: 13px;
  font-size: 14px;
  color: #f8dd91;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.page4 .box ul li .default-box .default-text .t-03 span {
  font-size: 16px;
  font-weight: bold;
}
.page4 .box ul li .default-box .default-bg {
  width: 302px;
  height: 502px;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(307deg, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
  background: -o-linear-gradient(307deg, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
  background: linear-gradient(143deg, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
}
.page4 .box ul li .default-box .default-arrow {
  width: 38px;
  height: 38px;
  background: url(../images/ico09.png) no-repeat center center;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}
.page4 .box ul li .show-box {
  display: none;
}
.page4 .box ul li.on {
  width: 556px;
  height: 502px;
  border: none;
}
.page4 .box ul li.on .default-box {
  display: none;
}
.page4 .box ul li.on .show-box {
  display: block;
  width: 496px;
  height: 442px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
}
.page4 .box ul li.on .show-box .show-top {
  width: 496px;
  height: 234px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.page4 .box ul li.on .show-box .show-top img {
  width: 100%;
}
.page4 .box ul li.on .show-box .show-top .t-01 {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 3;
}
.page4 .box ul li.on .show-box .show-top:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 496px;
  height: 83px;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#1f1b19), to(rgba(31, 27, 25, 0)));
  background: -webkit-linear-gradient(top, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
  background: -o-linear-gradient(top, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
  background: linear-gradient(180deg, #1f1b19 0%, rgba(31, 27, 25, 0) 100%);
  border-radius: 20px 20px 0px 0px;
  opacity: 0.4;
  z-index: 2;
}
.page4 .box ul li.on .show-box .show-center {
  margin-top: 20px;
}
.page4 .box ul li.on .show-box .show-center .t-04 {
  font-size: 14px;
  color: #b99142;
  position: absolute;
  bottom: 30px;
}
.page4 .box ul li.on .show-box .show-center .t-01 {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.page4 .box ul li.on .show-box .show-center .t-02 {
  font-size: 16px;
  margin-top: 16px;
}
.page4 .box ul li.on .show-box .show-center .t-02 span {
  font-size: 20px;
  color: #b99142;
}
.page4 .box ul li.on .show-box .show-center .t-03 {
  color: #666666;
  line-height: 24px;
  font-size: 14px;
  margin-top: 12px;
}
.page5 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page5 .box {
  width: 1200px;
  margin-top: 80px;
}
.page5 .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page5 .box ul li {
  width: 386px;
}
.page5 .box ul li .item-01 {
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
          box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}
.page5 .box ul li .item-01:hover {
  background: -webkit-linear-gradient(305deg, #ffffff 0%, #fffbf0 100%);
  background: -o-linear-gradient(305deg, #ffffff 0%, #fffbf0 100%);
  background: linear-gradient(145deg, #ffffff 0%, #fffbf0 100%);
  -webkit-box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
          box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
}
.page5 .box ul li .item-01 .t-01 h3 {
  font-size: 20px;
  color: #2f221b;
  font-weight: 600;
}
.page5 .box ul li .item-01 .t-01 p {
  margin-top: 18px;
  font-size: 16px;
  color: #b99142;
}
.page5 .box ul li .item-01 .t-02 {
  margin-top: 20px;
  height: 254px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}
.page5 .box ul li .item-01 .t-02 .tt-01 {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 17px;
}
.page5 .box ul li .item-01 .t-02 .tt-02 {
  height: 140px;
}
.page5 .box ul li .item-01:nth-child(2) {
  margin-top: 20px;
}
.page5 .box ul li .item-01.on .t-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page6 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-image: url(../images/page4-bg.png);
}
.page6 .box {
  width: 700px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
          box-shadow: 0px 0px 20px 1px rgba(31, 27, 25, 0.1);
  border-radius: 20px;
  margin-top: 50px;
  padding: 20px;
}
.page6 .box .form-container .form-group {
  margin-bottom: 20px;
  position: relative;
}
.page6 .box .form-container .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.page6 .box .form-container .form-row .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}
.page6 .box .form-container .label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
.page6 .box .form-container .label span {
  color: #f00;
  margin-right: 4px;
}
.page6 .box .form-container .form-input,
.page6 .box .form-container .form-select {
  width: calc(100% - 24px);
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
}
.page6 .box .form-container .form-input input,
.page6 .box .form-container .form-select input {
  outline: none;
  width: 100%;
  border: none;
  background: none;
  line-height: 40px;
}
.page6 .box .form-container .form-input select,
.page6 .box .form-container .form-select select {
  outline: none;
  width: 100%;
  border: none;
  background: none;
  height: 40px;
}
.page6 .box .form-container .form-tip {
  color: #f00;
  font-size: 12px;
  position: absolute;
  bottom: -18px;
  left: 12px;
}
.page6 .box .form-container .verify-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.page6 .box .form-container .verify-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
}
.page6 .box .form-container .get-code {
  background: none;
  border: none;
  color: #e6b85c;
  font-size: 14px;
  cursor: pointer;
}
.page6 .box .form-container .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}
.page6 .box .form-container .submit-btn button {
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(#fee398), to(#b99142));
  background: -webkit-linear-gradient(left, #fee398 0%, #b99142 100%);
  background: -o-linear-gradient(left, #fee398 0%, #b99142 100%);
  background: linear-gradient(90deg, #fee398 0%, #b99142 100%);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.h-160 {
  height: 160px;
}
.footer {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #1f1b19;
  color: #b9b9b9;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 6px solid transparent;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(#fee398), to(#b99142)) 1 stretch;
  -webkit-border-image: -webkit-linear-gradient(left, #fee398 0%, #b99142 100%) 1 stretch;
       -o-border-image: -o-linear-gradient(left, #fee398 0%, #b99142 100%) 1 stretch;
          border-image: -webkit-gradient(linear, left top, right top, from(#fee398), to(#b99142)) 1 stretch;
          border-image: linear-gradient(90deg, #fee398 0%, #b99142 100%) 1 stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-box {
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer-box .footer-left p {
  color: #999;
  margin-top: 12px;
  font-size: 14px;
}
.footer .footer-box .footer-left p:first-child {
  margin-top: 0;
}
.footer .footer-box .footer-left p span {
  color: #fff;
}
.footer .footer-right {
  background: url(../images/phone.png) no-repeat left center;
  padding-left: 60px;
  height: 50px;
  font-size: 16px;
}
.footer .footer-right .phone-number {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  margin-top: 5px;
}
.footer .foot-bottom {
  margin-top: 30px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(247, 248, 248, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}
.footer .foot-bottom a {
  color: #b9b9b9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .foot-bottom img {
  width: 21px;
  height: 23px;
  margin-right: 5px;
}
.footer .foot-bottom span {
  margin: 0 5px;
}
/* 解决浏览器自动填充输入框的背景色问题 */
/* 通用伪类 - 覆盖Webkit内核浏览器（Chrome/Safari） */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* 1. 禁用默认背景色 */
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  /* 2. 重置文字颜色（避免自动填充后文字颜色变浅） */
  -webkit-text-fill-color: #333333 !important;
  /* 3. 取消过渡效果（防止样式闪烁） */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
/* 兼容Firefox浏览器 */
input:-moz-autofill {
  background-color: transparent !important;
  color: #333333 !important;
}
/* 兼容Edge/IE浏览器 */
input:-ms-autofill {
  background-color: transparent !important;
  color: #333333 !important;
}
/* 遮罩层样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 默认隐藏弹窗 */
  z-index: 999;
}
/* 弹窗显示状态 */
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* 弹窗主体样式 */
.success-modal {
  width: 90%;
  max-width: 400px;
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  -webkit-transform: translateY(-20px) scale(0.95);
      -ms-transform: translateY(-20px) scale(0.95);
          transform: translateY(-20px) scale(0.95);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal-overlay.show .success-modal {
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
/* 成功图标样式 */
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.success-icon img {
  width: 100%;
  height: 100%;
}
.success-icon i {
  font-size: 48px;
  color: #67c23a;
}
/* 弹窗文字样式 */
.success-title {
  font-size: 20px;
  color: #303133;
  margin-bottom: 10px;
  font-weight: 600;
}
/* 确认按钮样式 */
.confirm-btn {
  width: 100%;
  padding: 12px 0;
  background: -webkit-gradient(linear, left top, right top, from(#fee398), to(#b99142));
  background: -webkit-linear-gradient(left, #fee398 0%, #b99142 100%);
  background: -o-linear-gradient(left, #fee398 0%, #b99142 100%);
  background: linear-gradient(90deg, #fee398 0%, #b99142 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-top: 20px;
  font-weight: bold;
}
.confirm-btn:hover {
  background-color: #85ce61;
}
