/* 媒体查询 移动设备 */
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }

  .business-description-box {
    width: 100%;
  }
  .agreement-dialog {
    width: 430px;
  }


   .login-box {
    width: 100%;
  }



}

/* 媒体查询 电脑 */
@media screen and (min-width: 769px) {
  .container {
    width: 430px;
    margin: 0 auto;
  }

  .business-description-box {
    width: 430px;
  }

  .agreement-dialog {
    width: 430px;
  }

  .login-box {
    width: 430px;
  }

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  position: relative;
  min-height: 100vh;
  background: url("../images/bottom_bg.png") no-repeat;
  background-size: 100% 100%;
  padding-bottom: 49px;
  /* background-image: url('../images/top_bg.png'), url('../images/bottom_bg.png'); */
  /* background-position: center, center; */
  /* background-repeat: no-repeat, no-repeat; */
}

.top-box {
  width: 100%;
  height: 356px;
  background: url("../images/top_bg.png") no-repeat;
  background-size: 100% 100%;
}

.content-box {
  width: 100%;
  height: 100%;
  margin-top: -200px;
}

.equity-box {
  width: calc(100% - 36px);
  height: 307px;
  border-radius: 16px;
  margin: 0 auto;
  /* 渐变背景 */
  background: linear-gradient(
    180deg,
    rgba(254, 209, 127, 0.4) 0%,
    rgba(254, 226, 167, 1) 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.login-box {
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  z-index: 3;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}



.login-container {
  width: calc(100% - 48px);
  /* height: 283px; */
  background: #ffffff;
  border-radius: 13px;
  position: relative;
  padding: 22px 0px 40px 0px;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  margin-top: 14px;
}

.login-close {
  width: 22px;
  height: 22px;
  background: url("/themes/simpleboot3/mobile/mgtqsource/images2/login_close.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 7px;
  right: 10px;
  cursor: pointer;
}

.login-title {
  font-weight: 500;
  font-size: 18px;
  color: #1c1c1c;
  text-align: center;
}

.login-input {
  width: calc(100% - 40px);
  height: 46px;
  background: #f6f6f6;
  border-radius: 8px;
  /* margin: 0px auto; */
  display: flex;
  align-items: center;
}


.login-btn {
  width: calc(100% - 40px);
  height: 46px;
  background: linear-gradient(134deg, #495387 0%, #23294f 100%);
  border-radius: 8px;
  margin: 24px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}



.equity-content {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 17px 0px;
  /* background: linear-gradient(180deg, rgba(37, 43, 81, 0.65) 0%, #252b51 100%); */
  background: linear-gradient( 180deg, rgba(37,43,81,0.65) 0%, #252B51 100%);
  backdrop-filter: blur(8px);
  border-radius: 16px;
}

.equity-list {
  display: flex;
  gap: 17px 0px;
  flex-wrap: wrap;
}

.equity-item {
  width: calc(100% / 4);
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}

.equity-icon {
  width: 42px;
  height: 42px;
}

.equity-icon img {
  width: 100%;
  height: 100%;
}

.equity-name {
  font-weight: 400;
  font-size: 11px;
  color: #eddfb4;
}

.equity-tip {
  font-weight: 400;
  font-size: 11px;
  color: #e4c58e;
}

.form-box {
  width: calc(100% - 72px);
  margin: 23px auto 0 auto;
}

.input-box {
  width: 100%;
  height: 46px;
  border: 2px solid #fee0a4;
  background: #ffffff;
  border-radius: 25px;
  margin: 0px auto;
  display: flex;
  align-items: center;
}

.transparent-input {
  width: calc(100% - 40px);
  height: 90%;
  font-size: 16px;
  border: none;
  outline: none;
  margin-left: 18px;
  text-align: center;
  margin: 0 auto;
}

.transparent-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #919193;
}

.btn-box {
  width: 100%;
  height: 46px;
  line-height: 46px;
  background: linear-gradient(81deg, #feebc0 0%, #ffca6a 100%);
  border-radius: 27px;
  font-size: 18px;
  color: #521d00;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}

.agreement-box {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 0 10px;
  align-items: center;
  justify-content: center;
}

.round-checkbox {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Create the circular appearance */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  outline: none;
  background: url("../images/checked_not.png") no-repeat;
  background-size: 100% 100%;
}

/* Checked state styles */
.round-checkbox:checked {
  background: url("../images/checked.png") no-repeat;
  background-size: 100% 100%;
}

/* Focus state (optional) */
.round-checkbox:focus {
  box-shadow: 0 0 0 2px rgba(238, 170, 69, 0.3);
}

.agreement-text {
  font-weight: 400;
  font-size: 14px;
  color: #dddfe8;
  line-height: 17px;
  cursor: pointer;
}

.business-box {
  width: calc(100% - 36px);
  margin: 26px auto 0 auto;
  /* 渐变背景 */
  background: linear-gradient(
    180deg,
    rgba(254, 209, 127, 0.4) 0%,
    rgba(254, 226, 167, 1) 100%
  );
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 1px 0px;
}

.business-content {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #252B51;
  border-radius: 16px;
  position: relative;
  padding: 49px 16px 21px 18px;
}

.business-title {
  width: 202px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/business_title.png") no-repeat;
  background-size: 100% 100%;
}

.business-text {
  font-weight: 400;
  font-size: 12px;
  color: #dddfe8;
  line-height: 22px;
  letter-spacing: 2px;
}

.yellow {
  color: #e4c58e;
}

.blue {
  color: #8edce4;
}

.red {
  color: #EB0000;
}

.music-box {
  width: calc(100% - 36px);
  margin: 28px auto 0 auto;
  /* 渐变背景 */
  background: linear-gradient(
    180deg,
    rgba(254, 209, 127, 0.4) 0%,
    rgba(254, 226, 167, 1) 100%
  );
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 1px 0px;
}

.music-content {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #252B51;
  border-radius: 16px;
  position: relative;
  padding: 63px 16px 21px 18px;
}
.music-title {
  width: 202px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/music_title.png") no-repeat;
  background-size: 100% 100%;
}

.music-list {
  display: flex;
  gap: 22px 0px;
  flex-direction: column;
}

.music-item {
  display: flex;
  gap: 0 10px;
  align-items: center;
}

.music-index {
  width: 25px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.music-singer {
  width: calc(100% - 20px - 23px);
  font-weight: 400;
  font-size: 16px;
  color: #683f24;
  display: flex;
  gap: 3px 0px;
  flex-direction: column;
}

.music-singer span:nth-child(1) {
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}
.music-singer span:nth-child(2) {
  font-weight: 400;
  font-size: 12px;
  color: #777b93;
}

.music-btn {
  width: 25px;
  height: 23px;
  margin-left: auto;
}

.music-btn img {
  width: 100%;
  height: 100%;
}
