.download-login-class {
  position: relative;
  width: 100%;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左上角logo样式 */
.logo-class {
  position: absolute;
  top: 32px;
  left: 94px;
  z-index: 10;
}

.logo-class img {
  width: 120px;
  height: auto;
}
.qrcode-login-component {
  transition: opacity 0.3s ease-out;
  border-radius: 8px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.qrcode-login-title {
  font-size: 24px;
  /* font-weight: bold; */
  color: #333;
  text-align: center;
  margin: 0 0 20px 0;
}

/* 主要内容包装器 - 修改为flex布局实现左右排列 */
.main-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* 左侧内容（标题+二维码） */
.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  flex-shrink: 0;
  padding: 0 20px;
}

/* 标题容器样式 */
.title-container {
  text-align: center;
  margin-bottom: 10px;
}

.qrcode-main-title {
  font-family: "OPPOSans-B";
  color: #09b716;
  font-size: 42px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.qrcode-main-title span:last-child {
  color: #333;
}

.qrcode-sub-title {
  font-size: 30px;
  color: #333333;
  margin-bottom: 0;
}

.qrcode-container {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  /* min-height: 200px; */
  align-items: center;
  flex-direction: column;
}

/* 二维码加载动画样式 */
.qrcode-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  background-color: #e8eaf0;
  height: 180px;
  width: 180px;
  border-radius: 10px;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.loading-spinner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrcode-invalid {
  display: none;
  text-align: center;
  padding: 20px;
}

.qrcode-refresh-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #09b716;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  transition: background-color 0.3s;
}

.qrcode-refresh-btn:hover {
  background: #08a614;
}

/* 右侧权益文案 */
.right-benefits {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(120px, 20px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  z-index: 10;
}

.qrcode-benefits {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  background-color: #e8eaf0;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.qrcode-benefits::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-right: 40px solid #e8eaf0;
  border-bottom: 40px solid transparent;
}

#qrcode-login-qrcode {
  width: 200px;
  height: 200px;
}

#qrcode-login-qrcode canvas,
#qrcode-login-qrcode img {
  width: 100% !important;
  height: 100% !important;
}

/* 下载按钮样式 */
.download-content-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.download-header {
  text-align: center;
  margin-bottom: 40px;
}

.download-title {
  font-size: 32px;
  /* font-weight: bold; */
  color: #333;
  margin-bottom: 10px;
}

.download-subtitle {
  font-size: 18px;
  color: #666;
}

.download-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
a.download-btn-large span {
  color: #fff;
}

.download-btn-large {
  display: inline-block;
  padding: 18px 40px;
  background: #23c55e;
  color: #fff;
  border-radius: 8px;
  font-size: 20px;
  /* font-weight: bold; */
  text-decoration: none;
  text-align: center;
  min-width: 180px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(9, 183, 22, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.download-btn-large .download-icon-class {
  width: 18px;
  height: 18px;
  background-image: url("/templets/eversheet/lato-download/images/xiazai.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.download-btn-large:hover {
  /* background: linear-gradient(135deg, #08a614, #079912); */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(9, 183, 22, 0.3);
}

.download-btn-large:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(9, 183, 22, 0.2);
}

.download-platforms {
  display: grid;
  /* 水平方向四列 */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.platform-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  width: 200px;
  height: 200px;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-name {
  font-size: 18px;
  /* font-weight: bold; */
  color: #333;
  margin-bottom: 10px;
}

.platform-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #09b716;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.platform-btn:hover {
  background: #08a614;
}

.user-welcome {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
}

.welcome-text {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.welcome-subtext {
  font-size: 16px;
  color: #666;
}
.input-text {
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  font-size: 13px;
  color: #606266;
  font-family: "OPPOSans-R";
}
.label-text {
  display: block;
  margin-bottom: 5px;
  color: #666;
  font-family: "OPPOSans-R";
  font-size: 16px;
}
.tip-text {
  margin-top: 5px;
  display: none;
  font-family: "OPPOSans-R";
  font-size: 13px;
  color: red;
}
.button-code {
  padding: 0px 20px;
  background-color: rgb(78, 166, 56);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "OPPOSans-R";
  font-size: 13px;
}
