:root{
  --qqd-bg:#f4f8ff;
  --qqd-sidebar:#ffffff;
  --qqd-card:#ffffff;
  --qqd-text:#0f172a;
  --qqd-muted:#64748b;
  --qqd-line:#dbe7f5;
  --qqd-blue:#2563eb;
  --qqd-blue-soft:#eaf2ff;
  --qqd-blue-weak:#f6f9ff;
  --qqd-shadow:0 18px 45px rgba(15,23,42,.07);
  --qqd-radius:22px;
}

*{box-sizing:border-box}

html,body{
  min-height:100%;
}

body.qqd-page{
  margin:0;
  font-family:Arial,"Microsoft YaHei",sans-serif;
  background:var(--qqd-bg);
  color:var(--qqd-text);
}

.qqd-shell{
  min-height:100vh;
  display:flex;
}

.qqd-sidebar{
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  width:264px;
  background:var(--qqd-sidebar);
  border-right:1px solid var(--qqd-line);
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  gap:22px;
  z-index:20;
}

.qqd-brand{
  height:58px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--qqd-text);
  padding:0 8px;
}

.qqd-logo{
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:15px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:950;
  line-height:1;
  box-shadow:0 10px 22px rgba(37,99,235,.22);
}

.qqd-brand-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:3px;
}

.qqd-brand-title{
  font-size:17px;
  font-weight:950;
  letter-spacing:-.2px;
  white-space:nowrap;
}

.qqd-brand-sub{
  font-size:12px;
  font-weight:800;
  color:#7a8aa0;
  white-space:nowrap;
}

.qqd-menu{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.qqd-menu-item{
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 12px;
  text-decoration:none;
  color:#475569;
  font-size:14px;
  font-weight:900;
  transition:background .15s ease,color .15s ease,transform .15s ease;
}

.qqd-menu-item:hover{
  background:#f3f7ff;
  color:var(--qqd-blue);
}

.qqd-menu-item.qqd-active{
  background:var(--qqd-blue-soft);
  color:var(--qqd-blue);
}

.qqd-ico{
  width:26px;
  height:26px;
  flex:0 0 26px;
  border-radius:9px;
  background:#f1f5f9;
  color:#64748b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:950;
}

.qqd-active .qqd-ico{
  background:#dbeafe;
  color:var(--qqd-blue);
}

.qqd-side-foot{
  margin-top:auto;
  border-top:1px solid var(--qqd-line);
  padding:16px 8px 0;
  color:#8a98aa;
  font-size:12px;
  line-height:1.6;
}

.qqd-main{
  margin-left:264px;
  width:calc(100% - 264px);
  min-height:100vh;
  padding:24px 28px 42px;
}

.qqd-topbar{
  height:64px;
  max-width:1240px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.qqd-title h1{
  margin:0;
  font-size:26px;
  font-weight:950;
  letter-spacing:-.4px;
}

.qqd-title p{
  margin:6px 0 0;
  color:var(--qqd-muted);
  font-size:13px;
  font-weight:700;
}

.qqd-top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--qqd-muted);
  font-size:13px;
  font-weight:800;
}

.qqd-content{
  max-width:1240px;
  margin:0 auto;
}

.qqd-hero{
  background:linear-gradient(135deg,#ffffff,#edf5ff);
  border:1px solid var(--qqd-line);
  border-radius:28px;
  box-shadow:var(--qqd-shadow);
  padding:30px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
  margin-bottom:22px;
}

.qqd-hero h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.2;
  letter-spacing:-.5px;
}

.qqd-hero p{
  margin:0;
  color:#526174;
  font-size:15px;
  line-height:1.8;
  font-weight:700;
}

.qqd-hero-tag{
  display:inline-flex;
  align-items:center;
  height:34px;
  padding:0 13px;
  border-radius:999px;
  background:#e0edff;
  color:#1d4ed8;
  font-size:13px;
  font-weight:950;
  white-space:nowrap;
}

.qqd-grid{
  display:grid;
  gap:18px;
}

.qqd-grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.qqd-grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.qqd-card{
  background:var(--qqd-card);
  border:1px solid var(--qqd-line);
  border-radius:var(--qqd-radius);
  box-shadow:var(--qqd-shadow);
  padding:24px;
}

.qqd-card h3{
  margin:0 0 10px;
  font-size:21px;
  font-weight:950;
  letter-spacing:-.2px;
}

.qqd-card p{
  margin:0;
  color:#526174;
  line-height:1.75;
  font-size:14px;
  font-weight:700;
}

.qqd-plugin-card{
  display:flex;
  flex-direction:column;
  min-height:260px;
}

.qqd-plugin-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.qqd-badge{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 11px;
  border-radius:999px;
  background:#eff6ff;
  color:#2563eb;
  font-size:12px;
  font-weight:950;
  white-space:nowrap;
}

.qqd-desc{
  flex:1;
}

.qqd-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.qqd-btn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:0;
  border-radius:13px;
  padding:11px 16px;
  font-size:14px;
  font-weight:950;
  cursor:pointer;
}

.qqd-btn-primary{
  background:var(--qqd-blue);
  color:#fff;
  box-shadow:0 10px 22px rgba(37,99,235,.22);
}

.qqd-btn-light{
  background:#f1f6ff;
  color:#1d4ed8;
  border:1px solid #dbeafe;
}

.qqd-url{
  margin-top:14px;
  padding:11px 12px;
  border-radius:13px;
  background:#f8fbff;
  border:1px dashed #c9dcf7;
  color:#64748b;
  font-size:12px;
  font-weight:800;
  word-break:break-all;
}

.qqd-section{
  margin-top:18px;
}

.qqd-section-title{
  margin:0 0 14px;
  font-size:20px;
  font-weight:950;
}

.qqd-steps{
  display:grid;
  gap:14px;
}

.qqd-step{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border:1px solid var(--qqd-line);
  border-radius:18px;
  background:#fff;
}

.qqd-step-num{
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--qqd-blue-soft);
  color:var(--qqd-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}

.qqd-step h3{
  margin:0 0 6px;
  font-size:17px;
  font-weight:950;
}

.qqd-step p{
  margin:0;
  color:#526174;
  font-size:14px;
  line-height:1.75;
  font-weight:700;
}

.qqd-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--qqd-line);
  color:#526174;
  font-size:14px;
  line-height:1.8;
  font-weight:700;
}

@media (max-width:980px){
  .qqd-sidebar{
    position:static;
    width:100%;
    height:auto;
    border-right:0;
    border-bottom:1px solid var(--qqd-line);
  }

  .qqd-main{
    margin-left:0;
    width:100%;
    padding:18px;
  }

  .qqd-shell{
    display:block;
  }

  .qqd-menu{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .qqd-grid-2,
  .qqd-grid-3{
    grid-template-columns:1fr;
  }

  .qqd-hero,
  .qqd-topbar{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* QQDASH_CENTER_CSS_V1_START */
.qqd-login-card{
  max-width:720px;
}

.qqd-center-stats{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}

.qqd-center-stat{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--qqd-shadow);
}

.qqd-center-stat span{
  display:block;
  color:var(--qqd-muted);
  font-size:13px;
  margin-bottom:8px;
  font-weight:850;
}

.qqd-center-stat b{
  display:block;
  font-size:20px;
  word-break:break-word;
}

.qqd-center-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
}

.qqd-info-row{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  border-bottom:1px solid #eef2f7;
  padding:12px 0;
}

.qqd-info-row:last-child{
  border-bottom:0;
}

.qqd-info-row b{
  color:#334155;
}

.qqd-info-row span{
  word-break:break-all;
}

.qqd-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 11px;
  border-radius:999px;
  font-size:13px;
  font-weight:950;
  white-space:nowrap;
}

.qqd-pill.ok{
  background:#ecfdf5;
  color:#047857;
}

.qqd-pill.warn{
  background:#fffbeb;
  color:#b45309;
}

.qqd-pill.bad{
  background:#fef2f2;
  color:#b91c1c;
}

.qqd-copybox{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
  background:#f8fbff;
  border:1px solid #dbe7f5;
  border-radius:16px;
  padding:10px 10px 10px 14px;
  word-break:break-all;
}

.qqd-copybox code,
.qqd-mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
}

.qqd-copybox code{
  color:#0f172a;
}

.qqd-copybtn{
  border:0;
  background:#111827;
  color:#ffffff;
  border-radius:12px;
  padding:8px 12px;
  font-weight:900;
  cursor:pointer;
}

.qqd-quick{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.qqd-quick a{
  display:block;
  text-decoration:none;
  color:#0f172a;
  background:#f8fbff;
  border:1px solid #dbe7f5;
  border-radius:18px;
  padding:16px;
}

.qqd-quick b{
  display:block;
  font-size:17px;
  margin-bottom:6px;
}

.qqd-quick span{
  color:#64748b;
  font-size:13px;
  line-height:1.5;
}

.qqd-table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid #eef2f7;
}

.qqd-table{
  width:100%;
  border-collapse:collapse;
  background:#ffffff;
}

.qqd-table th,
.qqd-table td{
  padding:12px 10px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
  font-size:14px;
  white-space:nowrap;
}

.qqd-table th{
  background:#f8fbff;
  color:#334155;
  font-weight:950;
}

.qqd-table tr:hover td{
  background:#fbfdff;
}

.qqd-empty{
  color:#64748b;
  text-align:center!important;
  padding:30px!important;
}

.qqd-tx{
  color:#2563eb;
  text-decoration:none;
  font-weight:850;
}

.qqd-notice{
  background:#f8fbff;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  padding:14px;
  color:#475569;
  line-height:1.7;
  font-weight:700;
}

@media(max-width:1080px){
  .qqd-center-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .qqd-center-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .qqd-center-stats{
    grid-template-columns:1fr;
  }

  .qqd-info-row{
    grid-template-columns:1fr;
  }

  .qqd-quick{
    grid-template-columns:1fr;
  }

  .qqd-copybox{
    grid-template-columns:1fr;
  }
}
/* QQDASH_CENTER_CSS_V1_END */

/* QQDASH_TURBOFLOW_API_CSS_V1_START */
.qqtf-body{
  display:block;
}

.qqtf-body .hero{
  display:none!important;
}

.qqtf-body .card{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  box-shadow:var(--qqd-shadow);
  padding:24px;
  margin-bottom:18px;
}

.qqtf-body .card h2{
  margin:0 0 14px;
  font-size:21px;
  font-weight:950;
  color:#0f172a;
}

.qqtf-body .notice,
.qqtf-body .warning{
  background:#f8fbff;
  border:1px dashed #cbd5e1;
  border-radius:16px;
  padding:14px;
  color:#475569;
  line-height:1.7;
  font-weight:700;
  margin-bottom:14px;
}

.qqtf-body .grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.qqtf-body label,
.qqtf-body .label{
  display:block;
  margin:14px 0 7px;
  color:#334155;
  font-weight:950;
  font-size:14px;
}

.qqtf-body input,
.qqtf-body textarea,
.qqtf-body select{
  width:100%;
  box-sizing:border-box;
  border:1px solid #dbe7f5;
  border-radius:14px;
  padding:12px 13px;
  font-size:15px;
  background:#f8fbff;
  color:#0f172a;
  outline:none;
}

.qqtf-body textarea{
  min-height:120px;
  resize:vertical;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
}

.qqtf-body input:focus,
.qqtf-body textarea:focus,
.qqtf-body select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(37,99,235,.08);
  background:#fff;
}

.qqtf-body .btn,
.qqtf-body button,
.qqtf-body .loginbtn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:13px;
  padding:11px 16px;
  background:#2563eb;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(37,99,235,.16);
}

.qqtf-body .btn.red,
.qqtf-body button.red{
  background:#dc2626;
}

.qqtf-body .btn.gray{
  background:#475569;
}

.qqtf-body .ok{
  color:#047857;
  font-weight:950;
}

.qqtf-body .bad{
  color:#b91c1c;
  font-weight:950;
}

.qqtf-body .muted{
  color:#64748b;
  font-size:13px;
  line-height:1.7;
}

.qqtf-body table{
  width:100%;
  border-collapse:collapse;
  background:white;
  border-radius:18px;
  overflow:hidden;
}

.qqtf-body th,
.qqtf-body td{
  padding:12px 10px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
  font-size:14px;
  white-space:nowrap;
}

.qqtf-body th{
  background:#f8fbff;
  color:#334155;
  font-weight:950;
}

.qqtf-body tr:hover td{
  background:#fbfdff;
}

.qqtf-form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

@media(max-width:760px){
  .qqtf-body .grid{
    grid-template-columns:1fr;
  }

  .qqtf-body .card{
    padding:18px;
  }
}
/* QQDASH_TURBOFLOW_API_CSS_V1_END */

/* QQDASH_RECHARGE_CSS_V1_START */
.qqd-recharge-body{
  display:block;
}

.qqd-recharge-body .hero{
  display:none!important;
}

.qqd-recharge-body .card,
.qqd-recharge-body form.card{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  box-shadow:var(--qqd-shadow);
  padding:24px;
  margin-bottom:18px;
}

.qqd-recharge-body .card h1,
.qqd-recharge-body .card h2,
.qqd-recharge-body .card h3,
.qqd-recharge-body h1,
.qqd-recharge-body h2,
.qqd-recharge-body h3{
  color:#0f172a;
  font-weight:950;
  letter-spacing:-.2px;
}

.qqd-recharge-body h1{
  margin:0 0 12px;
  font-size:28px;
}

.qqd-recharge-body h2{
  margin:0 0 14px;
  font-size:22px;
}

.qqd-recharge-body h3{
  margin:0 0 10px;
  font-size:19px;
}

.qqd-recharge-body p,
.qqd-recharge-body .muted,
.qqd-recharge-body .small{
  color:#64748b;
  line-height:1.75;
  font-weight:700;
}

.qqd-recharge-body .row,
.qqd-recharge-body .info-row{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  border-bottom:1px solid #eef2f7;
  padding:12px 0;
}

.qqd-recharge-body .row:last-child,
.qqd-recharge-body .info-row:last-child{
  border-bottom:0;
}

.qqd-recharge-body .row b,
.qqd-recharge-body .info-row b{
  color:#334155;
}

.qqd-recharge-body .row span,
.qqd-recharge-body .info-row span{
  word-break:break-all;
}

.qqd-recharge-body .plans,
.qqd-recharge-body .plan-grid,
.qqd-recharge-body .grid,
.qqd-recharge-body .price-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.qqd-recharge-body .plan,
.qqd-recharge-body .price,
.qqd-recharge-body .package{
  background:#f8fbff;
  border:1px solid #dbe7f5;
  border-radius:20px;
  padding:18px;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.qqd-recharge-body .plan b,
.qqd-recharge-body .price b,
.qqd-recharge-body .package b{
  display:block;
  font-size:18px;
  color:#0f172a;
  margin-bottom:8px;
}

.qqd-recharge-body .plan strong,
.qqd-recharge-body .price strong,
.qqd-recharge-body .package strong{
  display:block;
  font-size:26px;
  color:#2563eb;
  margin:8px 0;
}

.qqd-recharge-body .plan span,
.qqd-recharge-body .price span,
.qqd-recharge-body .package span{
  color:#64748b;
  font-weight:800;
}

.qqd-recharge-body a.btn,
.qqd-recharge-body .btn,
.qqd-recharge-body button{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:13px;
  padding:11px 16px;
  background:#2563eb;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(37,99,235,.16);
}

.qqd-recharge-body .btn.green,
.qqd-recharge-body button.green{
  background:#047857;
}

.qqd-recharge-body .btn.white,
.qqd-recharge-body .btn.gray{
  background:#f1f6ff;
  color:#1d4ed8!important;
  border:1px solid #dbeafe;
  box-shadow:none;
}

.qqd-recharge-body input,
.qqd-recharge-body textarea,
.qqd-recharge-body select{
  width:100%;
  box-sizing:border-box;
  border:1px solid #dbe7f5;
  border-radius:14px;
  padding:12px 13px;
  font-size:15px;
  background:#f8fbff;
  color:#0f172a;
  outline:none;
}

.qqd-recharge-body label{
  display:block;
  margin:14px 0 7px;
  color:#334155;
  font-weight:950;
}

.qqd-recharge-body input:focus,
.qqd-recharge-body textarea:focus,
.qqd-recharge-body select:focus{
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(37,99,235,.08);
  background:#fff;
}

.qqd-recharge-body table{
  width:100%;
  border-collapse:collapse;
  background:white;
  border-radius:18px;
  overflow:hidden;
}

.qqd-recharge-body th,
.qqd-recharge-body td{
  padding:12px 10px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
  font-size:14px;
  white-space:nowrap;
}

.qqd-recharge-body th{
  background:#f8fbff;
  color:#334155;
  font-weight:950;
}

.qqd-recharge-body .ok,
.qqd-recharge-body .success{
  background:#ecfdf5;
  color:#047857;
  border:1px solid #bbf7d0;
}

.qqd-recharge-body .err,
.qqd-recharge-body .error{
  background:#fef2f2;
  color:#b91c1c;
  border:1px solid #fecaca;
}

.qqd-recharge-body .msg,
.qqd-recharge-body .notice{
  padding:14px;
  border-radius:16px;
  line-height:1.7;
  margin-bottom:14px;
}

.qqd-recharge-body code,
.qqd-recharge-body .mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
}

@media(max-width:1080px){
  .qqd-recharge-body .plans,
  .qqd-recharge-body .plan-grid,
  .qqd-recharge-body .grid,
  .qqd-recharge-body .price-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .qqd-recharge-body .plans,
  .qqd-recharge-body .plan-grid,
  .qqd-recharge-body .grid,
  .qqd-recharge-body .price-grid{
    grid-template-columns:1fr;
  }

  .qqd-recharge-body .row,
  .qqd-recharge-body .info-row{
    grid-template-columns:1fr;
  }

  .qqd-recharge-body .card,
  .qqd-recharge-body form.card{
    padding:18px;
  }
}
/* QQDASH_RECHARGE_CSS_V1_END */

/* QQDASH_HOME_INVITE_TURBO_CSS_V1_START */
.qqd-home-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.qqd-home-card{
  min-height:190px;
}

.qqd-home-card .qqd-ico-big{
  width:48px;
  height:48px;
  border-radius:16px;
  background:#eaf2ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  margin-bottom:14px;
}

.qqd-price-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.qqd-price-card{
  background:#f8fbff;
  border:1px solid #dbe7f5;
  border-radius:20px;
  padding:18px;
}

.qqd-price-card b{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}

.qqd-price-card strong{
  display:block;
  font-size:26px;
  color:#2563eb;
  margin-bottom:6px;
}

.qqd-list{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.qqd-list-item{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  border:1px solid #dbe7f5;
  border-radius:16px;
  background:#f8fbff;
}

.qqd-list-num{
  width:34px;
  height:34px;
  border-radius:12px;
  background:#eaf2ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}

.qqd-invite-body h1,
.qqd-invite-body h2,
.qqd-invite-body h3{
  color:#0f172a;
  font-weight:950;
}

.qqd-invite-body h1{
  margin:0 0 12px;
  font-size:28px;
}

.qqd-invite-body h2{
  margin:0 0 14px;
  font-size:22px;
}

.qqd-invite-body p{
  color:#64748b;
  line-height:1.75;
  font-weight:700;
}

.qqd-invite-body .card,
.qqd-invite-body section,
.qqd-invite-body form.card{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  box-shadow:var(--qqd-shadow);
  padding:24px;
  margin-bottom:18px;
}

.qqd-invite-body table{
  width:100%;
  border-collapse:collapse;
  background:#ffffff;
}

.qqd-invite-body th,
.qqd-invite-body td{
  padding:12px 10px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
  font-size:14px;
  white-space:nowrap;
}

.qqd-invite-body th{
  background:#f8fbff;
  color:#334155;
  font-weight:950;
}

.qqd-invite-body input{
  box-sizing:border-box;
  border:1px solid #dbe7f5!important;
  border-radius:14px!important;
  padding:12px 13px!important;
  font-size:15px!important;
  background:#f8fbff!important;
  color:#0f172a!important;
}

.qqd-invite-body button,
.qqd-invite-body .btn,
.qqd-invite-body a.btn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:13px;
  padding:11px 16px;
  background:#2563eb;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(37,99,235,.16);
}

.qqd-invite-body button[type="submit"]{
  background:#047857!important;
}

.qqd-withdraw-cta{
  background:linear-gradient(135deg,#ecfdf5,#eff6ff);
  border:1px solid #bfdbfe;
  border-radius:22px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  box-shadow:var(--qqd-shadow);
}

.qqd-withdraw-cta h3{
  margin:0 0 6px;
}

.qqd-withdraw-cta p{
  margin:0;
}

.qqd-withdraw-cta .qqd-btn{
  white-space:nowrap;
}

@media(max-width:1080px){
  .qqd-home-grid,
  .qqd-price-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .qqd-home-grid,
  .qqd-price-grid{
    grid-template-columns:1fr;
  }

  .qqd-withdraw-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* QQDASH_HOME_INVITE_TURBO_CSS_V1_END */

/* QQDASH_INVITE_WITHDRAW_COLOR_FIX_V1_START */
.qqd-withdraw-cta{
  background:linear-gradient(135deg,#eff6ff,#f8fbff)!important;
  border:1px solid #bfdbfe!important;
  box-shadow:0 18px 45px rgba(37,99,235,.08)!important;
}

.qqd-withdraw-cta h3{
  color:#0f172a!important;
}

.qqd-withdraw-cta p{
  color:#526174!important;
}

.qqd-invite-body #withdraw{
  color:#0f172a!important;
}

.qqd-invite-body #withdraw + p{
  color:#526174!important;
}

.qqd-invite-body #withdraw + p b,
.qqd-invite-body p b[style*="047857"],
.qqd-invite-body b[style*="047857"]{
  color:#2563eb!important;
}

.qqd-invite-body form[action="/user/withdraw"]{
  display:grid!important;
  grid-template-columns:1fr auto!important;
  gap:12px!important;
  align-items:center!important;
  margin-top:16px!important;
  padding:14px!important;
  border-radius:20px!important;
  background:#f8fbff!important;
  border:1px solid #dbeafe!important;
}

.qqd-invite-body form[action="/user/withdraw"] input{
  background:#ffffff!important;
  border:1px solid #cfe0f7!important;
  box-shadow:none!important;
}

.qqd-invite-body form[action="/user/withdraw"] input:focus{
  border-color:#60a5fa!important;
  box-shadow:0 0 0 4px rgba(37,99,235,.10)!important;
}

.qqd-invite-body form[action="/user/withdraw"] button,
.qqd-invite-body form[action="/user/withdraw"] button[type="submit"]{
  background:#2563eb!important;
  color:#ffffff!important;
  box-shadow:0 12px 24px rgba(37,99,235,.22)!important;
  white-space:nowrap!important;
}

.qqd-invite-body form[action="/user/withdraw"] button:hover{
  background:#1d4ed8!important;
}

.qqd-invite-body form[action="/user/withdraw"] + p{
  color:#64748b!important;
  background:#f8fbff!important;
  border:1px dashed #cfe0f7!important;
  border-radius:16px!important;
  padding:12px 14px!important;
  margin-top:12px!important;
}

@media(max-width:760px){
  .qqd-invite-body form[action="/user/withdraw"]{
    grid-template-columns:1fr!important;
  }

  .qqd-invite-body form[action="/user/withdraw"] button{
    width:100%!important;
  }
}
/* QQDASH_INVITE_WITHDRAW_COLOR_FIX_V1_END */

/* QQDASH_INVITE_PAGE_BLUE_STYLE_V1_START */

/* 邀请分润页整体卡片 */
.qqd-invite-body .card,
.qqd-invite-body section,
.qqd-invite-body form.card{
  background:#ffffff!important;
  border:1px solid #dbe7f5!important;
  border-radius:22px!important;
  box-shadow:0 18px 45px rgba(15,23,42,.06)!important;
}

/* 统计卡标题统一 */
.qqd-invite-body .card h1,
.qqd-invite-body .card h2,
.qqd-invite-body .card h3,
.qqd-invite-body section h1,
.qqd-invite-body section h2,
.qqd-invite-body section h3{
  color:#0f172a!important;
}

/* 大数字：累计分润、未结算等，不再用绿/橙 */
.qqd-invite-body .card h2 + div,
.qqd-invite-body .card h2 + p,
.qqd-invite-body .card .stat,
.qqd-invite-body section .stat{
  color:#2563eb!important;
}

/* 覆盖页面里旧的绿色、橙色内联金额 */
.qqd-invite-body [style*="047857"],
.qqd-invite-body [style*="b45309"],
.qqd-invite-body [style*="B45309"],
.qqd-invite-body [style*="orange"],
.qqd-invite-body [style*="green"]{
  color:#2563eb!important;
}

/* 统计数字统一蓝色 */
.qqd-invite-body b,
.qqd-invite-body strong{
  color:#2563eb;
}

/* 但普通表格文字不要全变蓝 */
.qqd-invite-body table b,
.qqd-invite-body table strong,
.qqd-invite-body p b{
  color:inherit;
}

/* 表格外框 */
.qqd-invite-body table{
  border:1px solid #dbe7f5!important;
  border-radius:18px!important;
  overflow:hidden!important;
  background:#ffffff!important;
}

/* 表头从深黑改成浅蓝 */
.qqd-invite-body th{
  background:#eff6ff!important;
  color:#1d4ed8!important;
  border-bottom:1px solid #dbeafe!important;
  font-weight:950!important;
}

/* 表格内容 */
.qqd-invite-body td{
  background:#ffffff!important;
  color:#0f172a!important;
  border-bottom:1px solid #eef2f7!important;
}

.qqd-invite-body tr:hover td{
  background:#f8fbff!important;
}

/* “暂无数据”行 */
.qqd-invite-body td[colspan]{
  color:#64748b!important;
  background:#ffffff!important;
}

/* 申请提现区 */
.qqd-invite-body #withdraw{
  color:#0f172a!important;
}

.qqd-invite-body #withdraw + p b{
  color:#2563eb!important;
}

.qqd-invite-body form[action="/user/withdraw"]{
  background:#f8fbff!important;
  border:1px solid #dbeafe!important;
  border-radius:20px!important;
  padding:14px!important;
}

.qqd-invite-body form[action="/user/withdraw"] button,
.qqd-invite-body form[action="/user/withdraw"] button[type="submit"]{
  background:#2563eb!important;
  color:#ffffff!important;
  box-shadow:0 12px 24px rgba(37,99,235,.20)!important;
}

.qqd-invite-body form[action="/user/withdraw"] button:hover{
  background:#1d4ed8!important;
}

/* 左侧菜单当前项已经是蓝色，这里不动 */
/* QQDASH_INVITE_PAGE_BLUE_STYLE_V1_END */

/* QQDASH_TFAPI_TEST_BUTTONS_V1_START */
.qqtf-test-card{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  box-shadow:var(--qqd-shadow);
  padding:24px;
  margin-bottom:18px;
}

.qqtf-test-card h2{
  margin:0 0 10px;
  font-size:21px;
  font-weight:950;
  color:#0f172a;
}

.qqtf-test-card p{
  margin:0 0 16px;
  color:#64748b;
  line-height:1.7;
  font-weight:700;
}

.qqtf-test-warning{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  border-radius:16px;
  padding:13px 14px;
  margin-bottom:16px;
  font-weight:850;
  line-height:1.7;
}

.qqtf-test-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.qqtf-test-grid form{
  margin:0;
}

.qqtf-test-btn{
  width:100%;
  min-height:48px;
  border:0;
  border-radius:15px;
  color:#ffffff!important;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(37,99,235,.16);
}

.qqtf-test-btn.buy{
  background:#2563eb!important;
}

.qqtf-test-btn.sell{
  background:#475569!important;
}

.qqtf-test-btn:hover{
  filter:brightness(.96);
}

@media(max-width:900px){
  .qqtf-test-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:560px){
  .qqtf-test-grid{
    grid-template-columns:1fr;
  }
}
/* QQDASH_TFAPI_TEST_BUTTONS_V1_END */

/* QQTF_USER_RUN_CONTROL_V1_START */
.qqtf-run-control{
  background:#ffffff;
  border:1px solid var(--qqd-line);
  border-radius:22px;
  box-shadow:var(--qqd-shadow);
  padding:22px 24px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.qqtf-run-control h2{
  margin:0 0 8px;
  font-size:21px;
  font-weight:950;
  color:#0f172a;
}

.qqtf-run-control p{
  margin:0;
  color:#64748b;
  line-height:1.7;
  font-weight:700;
}

.qqtf-run-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:950;
  font-size:13px;
  margin-left:8px;
}

.qqtf-run-status.on{
  background:#dcfce7;
  color:#166534;
}

.qqtf-run-status.off{
  background:#fee2e2;
  color:#991b1b;
}

.qqtf-run-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.qqtf-run-actions form{
  margin:0;
}

.qqtf-run-btn{
  min-height:46px;
  padding:0 18px;
  border:0;
  border-radius:15px;
  color:#ffffff!important;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(37,99,235,.16);
}

.qqtf-run-btn.start{
  background:#2563eb!important;
}

.qqtf-run-btn.stop{
  background:#dc2626!important;
}

.qqtf-run-btn:hover{
  filter:brightness(.96);
}

@media(max-width:720px){
  .qqtf-run-control{
    align-items:flex-start;
  }
  .qqtf-run-actions,
  .qqtf-run-actions form,
  .qqtf-run-btn{
    width:100%;
  }
}
/* QQTF_USER_RUN_CONTROL_V1_END */
