html,
body {
  height: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  padding: 8px;
}

.home-banner {
  margin-bottom: 12px;
}

.home-policy,
.home-vip {
  margin-bottom: 12px;
}

.vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f2f2f2;
}

.vip-item:last-child {
  border-bottom: none;
}

.vip-title {
  font-weight: 600;
}

.vip-desc {
  color: #999;
  font-size: 12px;
}

.home-action {
  margin-top: 16px;
}

.tabbar {
  height: 56px;
  border-top: 1px solid #e6e6e6;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.tabbar-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  padding-top: 4px;
  color: #666;
}

.tabbar-item .layui-icon {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.tabbar-item.layui-this {
  color: #16baaa;
}

/* 登录页面背景 */
.login-page {
  position: relative;
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/etsy3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.login-page .page-content {
  position: relative;
  z-index: 1;
}

/* 注册页面也使用相同背景 */
.register-page {
  position: relative;
}

.register-page .main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/etsy3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.register-page .page-content {
  position: relative;
  z-index: 1;
}

/* 语言切换按钮背景 */
.langBTN {
  background-image: url('../images/yuyan.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5px;
}

/* 密码输入框眼睛图标 */
.eye-icon {
  cursor: pointer;
  user-select: none;
}


