@charset "utf-8";
/* Aff 推荐官统一入口样式
 * 复用 Web 前台基础样式，并扩展推荐官登录/注册等页面样式
 */

@import url("/web/css/frontend.css");

.aff-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; }
.aff-header h1 { margin: 0; font-size: 18px; }
.aff-header a { color: #fff; text-decoration: none; font-size: 14px; }
.aff-header-actions { display: flex; align-items: center; gap: 16px; }
.aff-header-actions a:hover { text-decoration: underline; opacity: 0.95; }
.aff-body { display: flex; min-height: calc(100vh - 50px); }
.aff-side { width: 200px; background: #fff; border-right: 1px solid #e8e8e8; padding: 16px 0; }
.aff-side a { display: block; padding: 10px 20px; color: #333; text-decoration: none; }
.aff-side a:hover { background: #f5f5f5; }
.aff-side a.active { background: #e8e4f3; color: #667eea; font-weight: 500; }
.aff-main { flex: 1; padding: 24px; overflow: auto; }
.aff-card { background: #fff; border-radius: 8px; padding: 20px; margin-bottom: 20px; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.aff-card h2 { margin: 0 0 16px; font-size: 16px; }

/* 推荐官注册页 */
.aff-register {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 2;
}

.aff-register h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.aff-register .sub {
  color: #718096;
  font-size: 14px;
  margin-bottom: 24px;
}

.aff-register .layui-form-item {
  margin-bottom: 18px;
}

.aff-register .layui-input {
  height: 42px;
}

.aff-register .footer-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

.aff-register .footer-link a {
  color: #667eea;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.aff-register .footer-link a:hover {
  text-decoration: underline;
}

.aff-register .footer-link-sep {
  color: #a0aec0;
  margin: 0 4px;
  pointer-events: none;
}

/* 推荐官登录页 */
.aff-login {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 2;
}

.aff-login h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.aff-login .sub {
  color: #718096;
  font-size: 14px;
  margin-bottom: 24px;
}

.aff-login .layui-form-item {
  margin-bottom: 18px;
}

.aff-login .layui-input {
  height: 42px;
}

.aff-login .footer-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

.aff-login .footer-link a {
  color: #667eea;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.aff-login .footer-link a:hover {
  text-decoration: underline;
}

.aff-login .footer-link-sep {
  color: #a0aec0;
  margin: 0 4px;
  pointer-events: none;
}

