html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

.website {
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.website::-webkit-scrollbar {
  display: none; /* Chrome、Safari */
}

.container {
  margin: 0 auto;
  max-width: 960px;
  min-height: 100vh;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
}

.container .is-text {
  width: 100%;
  display: inline-block;
}

.my-btn-mC_lJgwp {
  user-select: none;
  cursor: pointer;
}

.my-btn-mC_lJgwp p {
  display: inline;
}

.swal2-confirm p {
  display: inline !important;
}

.input-box input {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border: solid 2px;
  border-radius: 10px;
  outline: none;
  background: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-box input:focus {
  outline: none;
  border-color: #7e57c2 !important;
}

/* carousel */
.carousel {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

.carousel-inner {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 100%;
}

.carousel-controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  user-select: none;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

.carousel-dots {
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
}

.carousel-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.15);
}

.carousel-dots .active {
  background: #409eff;
}

/* notice-board */
.footer .notice-board {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 960px;
  height: auto;
  background-color: #f5f5f5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  z-index: 198;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer .notice-board .notice-board-content {
  flex: 8;
  padding: 0 10px;
  box-sizing: border-box;
}

.footer .notice-board .notice-board-btn {
  flex: 2;
  padding: 8px 10px;
  margin: 0 5px;
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(21, 135, 217, 0.69);
  border-radius: 30px;
  box-shadow: rgb(0, 72, 254) 0px 0px 10px;
  user-select: none;
  cursor: pointer;
}

.footer .notice-board .notice-board-btn p {
  display: inline;
}

.footer .footer-main {
  width: 100%;
  height: 70px;
  font-size: 12px;
  color: #666666;
  text-align: center;
  border-top: solid 1px rgb(0 0 0 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .footer-main .f-content {
  width: 100%;
  user-select: none;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}

.footer .footer-main .f-content a {
  padding: 0 10px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.footer .footer-main .overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
}

.footer .footer-main .policy-modal {
  width: auto;
  max-width: calc(960px - 40px - 5%);
  height: 80vh;
  text-align: left;
  background: #fff;
  padding: 30px 20px 10px 20px;
  position: fixed;
  top: 5%;
  z-index: 200;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  border-radius: 8px;
  display: none;
}

.footer .footer-main .policy-modal .policy-close {
  width: 25px;
  height: 25px;
  font-size: 20px;
  color: #999;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer .footer-main .policy-modal .policy-content {
  max-height: calc(80vh - 40px);
  overflow-y: auto;
  display: none;
}

/* back-top-btn */
.footer .back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 199;
}

.footer .back-top-btn:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* back-top-btn before */
.footer .back-top-btn::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #409eff;
}

@media (max-width: 768px) {
  .footer .back-top-btn {
    display: none !important;
  }
}
