.wt-account-hero{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;

  background:#fff;
  border:1px solid #edf0f2;
  border-radius:18px;

  padding:34px 38px;
  margin-bottom:28px;

  overflow:hidden;

  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

/* 顶部橙色线 */
.wt-account-hero:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#FF6600;
}

/* 右上角蓝色圆 */
.wt-account-hero:after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:rgba(34,103,216,.06);
}

.wt-account-hero h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.2;
  font-weight:700;
  color:#222;
  letter-spacing:-0.02em;
}

/* 标题下橙色短线 */
.wt-account-hero h1:after{
  content:"";
  display:block;
  width:68px;
  height:3px;
  border-radius:20px;
  background:#FF6600;
  margin-top:14px;
}

.wt-account-hero p{
  margin:0;
  max-width:650px;

  font-size:15px;
  line-height:1.8;

  color:#777;
}

/* 右侧ICON */
.wt-account-icon{
  position:relative;
  z-index:2;

  width:78px;
  height:78px;

  border-radius:50%;

  background:linear-gradient(135deg,#FF6600,#ff944d);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;
  color:#fff;

  box-shadow:
    0 10px 24px rgba(255,102,0,.22),
    0 2px 6px rgba(0,0,0,.06);
}

/* section标题 */
.wt-section-head h2{
  font-size:24px;
  font-weight:700;
  color:#222;
  margin:0;
}

/* 所有按钮统一Wokiee风格 */
.wt-btn-outline,
.wt-btn-small,
.wt-btn-invoice{
  min-height:40px;
  padding:0 18px;

  border-radius:6px;

  font-size:13px;
  font-weight:600;

  transition:.25s ease;
}

/* 主按钮 */
.wt-btn-small{
  background:#FF6600;
  border:1px solid #FF6600;
  color:#fff!important;
}

.wt-btn-small:hover{
  background:#e95d00;
  border-color:#e95d00;
  color:#fff!important;
}

/* 发票按钮 */
.wt-btn-invoice{
  background:#2267d8;
  border:1px solid #2267d8;
  color:#fff!important;
}

.wt-btn-invoice:hover{
  background:#1956b7;
  border-color:#1956b7;
}

/* outline */
.wt-btn-outline{
  background:#fff;
  border:1px solid #dcdfe3;
  color:#222;
}

.wt-btn-outline:hover{
  background:#FF6600;
  border-color:#FF6600;
  color:#fff;
}

/* 状态 */
.wt-status{
  background:rgba(34,103,216,.08);
  color:#2267d8;

  padding:6px 14px;
  border-radius:30px;

  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}

/* 卡片hover */
.wt-card{
  transition:.25s ease;
}

.wt-card:hover{
  transform:translateY(-2px);

  box-shadow:
    0 10px 26px rgba(0,0,0,.06);
}

/* links */
.wt-account-links a:hover{
  color:#FF6600;
}

.wt-account-links a span{
  transition:.2s ease;
}

.wt-account-links a:hover span{
  transform:translateX(3px);
  color:#FF6600;
}

/* 手机端 */
@media (max-width:767px){

  .wt-account-hero{
    padding:24px 22px;
    border-radius:14px;
  }

  .wt-account-hero h1{
    font-size:26px;
  }

  .wt-account-hero p{
    font-size:14px;
    line-height:1.7;
  }

  .wt-account-icon{
    display:none;
  }
}