/* 登录弹窗 */
.login-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.login-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.login-modal {
  position: relative;
  width: 600px;
  max-width: 90%;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  z-index: 1;
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.login-modal-header h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.login-close {
  font-size: 48px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.login-btn-wechat {
  width: 100%;
  height: 88px;
  background: #07c160;
  color: #fff;
  border: none;
  border-radius: 44px;
  font-size: 32px;
  margin-bottom: 24px;
  cursor: pointer;
}

.login-btn-wechat:active {
  background: #06ad56;
}

.login-btn-phone {
  width: 100%;
  height: 88px;
  background: #f5f5f5;
  color: #333;
  border: none;
  border-radius: 44px;
  font-size: 32px;
  cursor: pointer;
}

.login-btn-phone:active {
  background: #e5e5e5;
}

/* 手机号登录 */
.login-modal-body input[type="tel"],
.login-modal-body input[type="text"] {
  width: 100%;
  height: 80px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 28px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.sms-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.sms-row input {
  flex: 1;
  margin-bottom: 0;
}

.sms-row button {
  width: 200px;
  height: 80px;
  background: #8b5cf6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}

.sms-row button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.sms-row button:active:not(:disabled) {
  background: #7c3aed;
}

.login-btn-submit {
  width: 100%;
  height: 88px;
  background: #07c160;
  color: #fff;
  border: none;
  border-radius: 44px;
  font-size: 32px;
  cursor: pointer;
}

.login-btn-submit:active {
  background: #06ad56;
}
