.el-main {
  padding: 0 !important;
}
.main-content {
  display: flex;
  column-gap: 0.24rem;
  background: #f6f6fa;
}
.left-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.24rem;
}

/* 顶部4个统计卡片 - 优化版 */
.top-statistics-row {
  display: flex;
  gap: 0.2rem;
}
.stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.16rem;
  padding: 0.28rem 0.24rem;
  border-radius: 0.12rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F0F0F0;
  position: relative;
  overflow: hidden;
}
.stat-card-1 {
  background: #fff;
  transition: all 0.3s ease;
}
.stat-card-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/total.png') no-repeat left center;
  background-size: auto 100%;
  transition: all 0.3s ease;
  z-index: 0;
}
.stat-card-1:hover::before {
  background-position: right center;
}
.stat-card-2 {
  background: #fff;
  transition: all 0.3s ease;
}
.stat-card-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/activate.png') no-repeat left center;
  background-size: auto 100%;
  transition: all 0.3s ease;
  z-index: 0;
}
.stat-card-2:hover::before {
  background-position: right center;
}
.stat-card-3 {
  background: #fff;
  transition: all 0.3s ease;
}
.stat-card-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/daoqi.png') no-repeat left center;
  background-size: auto 100%;
  transition: all 0.3s ease;
  z-index: 0;
}
.stat-card-3:hover::before {
  background-position: right center;
}
.stat-card-4 {
  background: #fff;
  transition: all 0.3s ease;
}
.stat-card-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/daizhifu.png') no-repeat left center;
  background-size: auto 100%;
  transition: all 0.3s ease;
  z-index: 0;
}
.stat-card-4:hover::before {
  background-position: right center;
}
.stat-icon {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.26rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.stat-card-1 .stat-icon {
  background: url('../img/chanpinico.png') no-repeat center center;
  background-size: 85%;
}
.stat-card-2 .stat-icon {
  background: url('../img/jihuoico.png') no-repeat center center;
  background-size: 85%;
}
.stat-card-3 .stat-icon {
  background: url('../img/daoqiico.png') no-repeat center center;
  background-size: 85%;
}
.stat-card-4 .stat-icon {
  background: url('../img/dingdanico.png') no-repeat center center;
  background-size: 85%;
}
.stat-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.stat-value {
  font-size: 0.32rem;
  font-weight: 700;
  color: #1E2736;
  line-height: 1.2;
  margin-bottom: 0.04rem;
}
.stat-label {
  font-size: 0.13rem;
  color: #8692B0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 新版用户信息卡片样式 - 恢复背景图 */
.user-info-card {
  position: relative;
  background: #E8F4FD url('../img/user400.png') no-repeat;
  background-size: auto 100%;
  background-position: 70% center;
  padding: 0.28rem 0.24rem;
  border-radius: 0.12rem;
  min-height: 1.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin: -0.24rem -0.24rem 0.24rem -0.24rem;
  border-radius: 0.12rem 0.12rem 0 0;
  border: 1px solid #F0F0F0;
}
.user-info-main {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
  position: relative;
  z-index: 1;
  height: 100%;
  justify-content: center;
}
.user-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.12rem;
}
.user-row-name {
  gap: 0.16rem;
  margin-bottom: 0.06rem;
}
.user-name {
  font-size: 0.22rem;
  font-weight: 700;
  color: #1E2736;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 2.5rem;
}
.user-name:hover {
  color: #3699FF;
}
.security-score {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.13rem;
  color: #52C41A;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(82, 196, 26, 0.1);
  padding: 0.04rem 0.12rem;
  border-radius: 0.12rem;
}
.security-score i {
  font-size: 0.14rem;
}
.user-row-id {
  margin-bottom: 0.04rem;
}
.user-id {
  font-size: 0.14rem;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}
.user-level-tag {
  display: inline-block;
  padding: 0.04rem 0.14rem;
  border-radius: 0.12rem;
  font-size: 0.12rem;
  color: #fff;
  background: #F99600;
  white-space: nowrap;
  font-weight: 600;
}
.user-row-contact {
  gap: 0.2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.13rem;
  color: #666;
  font-weight: 500;
}
.contact-item i {
  color: #8692B0;
  font-size: 0.14rem;
}
.user-row-cert {
  gap: 0.2rem;
  margin-top: 0.04rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.12rem;
}
.cert-icon {
  font-size: 0.14rem;
  color: #C0C4CC;
}
.cert-icon.active {
  color: #3699FF;
}
.cert-icon-company.active {
  color: #F99600;
}
.cert-label {
  color: #8692B0;
  font-weight: 500;
}
.cert-value {
  color: #1E2736;
  font-weight: 600;
}
.cert-link {
  color: #3699FF;
  cursor: pointer;
}
.cert-link:hover {
  text-decoration: underline;
}

/* 余额卡片 - 新版布局 */
.finance-summary-card {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EBF0 100%);
  border-radius: 0.16rem;
  padding: 0.32rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E8EAED;
  transition: all 0.3s ease;
}
.finance-summary-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.finance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.32rem;
}
.finance-title {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.15rem;
  color: #2C3E50;
  font-weight: 600;
}
.finance-title i.balance-toggle {
  font-size: 0.18rem;
  color: #4A90E2;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.04rem;
  border-radius: 0.04rem;
}
.finance-title i.balance-toggle:hover {
  background: rgba(74, 144, 226, 0.1);
  transform: scale(1.1);
}
.recharge-btn {
  padding: 0.08rem 0.24rem;
  background: #F0F8FF;
  color: #4A90E2;
  border-radius: 0.2rem;
  font-size: 0.13rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #D6E9FF;
}
.recharge-btn:hover {
  background: #E3F2FF;
  border-color: #4A90E2;
  transform: scale(1.05);
}
.finance-amount {
  display: flex;
  align-items: baseline;
  gap: 0.08rem;
  margin-bottom: 0.24rem;
}
.currency-symbol {
  font-size: 0.24rem;
  color: #2C3E50;
  font-weight: 600;
}
.amount-value {
  font-size: 0.48rem;
  color: #2C3E50;
  font-weight: 700;
  line-height: 1;
}
.finance-footer {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer-label {
  font-size: 0.13rem;
  color: #95A5A6;
}
.footer-value {
  font-size: 0.13rem;
  color: #2C3E50;
  font-weight: 600;
}

/* 推介计划未开启 */
.recommend-box {
  text-align: center;
  margin: 0;
  padding: 0.32rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F0F0F0;
}
.recommend-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.24rem;
}
.recommend-box p {
  margin: 0;
  text-align: center;
  color: #95A5A6;
  font-size: 0.14rem;
  line-height: 1.6;
}
.info-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0.25rem;
  background-color: #fff;
  border-radius: 0.04rem;
}
.info-first {
  height: 0.6rem;
  display: flex;
  cursor: pointer;
}
.name-first {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.36rem;
  background: #fff;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.03rem;
  color: #FFFFFF;
  font-weight: bold;
}
.name-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 0.08rem;
}
.name {
  color: #8692B0;
  font-size: 0.14rem;
  font-weight: 400;
}
.name .id-text {
  color: #1E2736;
}
.hello {
  font-weight: 400;
  font-size: 0.16rem;
  color: #1E2736;
  max-width: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-second {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-three {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.04rem;
}
.info-three .compny-box,
.info-three .person-box {
  display: flex;
  align-items: flex-start;
  column-gap: 0.32rem;
  font-size: 0.14rem;
}
.info-three .compny-box .left-icon,
.info-three .person-box .left-icon {
  display: flex;
  align-items: center;
  column-gap: 0.04rem;
  font-size: 0.14rem;
  color: #8692B0;
}
.info-three .compny-box .left-icon img,
.info-three .person-box .left-icon img {
  vertical-align: middle;
  width: 0.24rem;
  height: 0.24rem;
  flex-shrink: 0;
}
.info-three .compny-box .right-text .certify-id,
.info-three .person-box .right-text .certify-id {
  display: flex;
  align-items: center;
}
.info-three .compny-box .right-text .right-type,
.info-three .person-box .right-text .right-type {
  color: #949CB0;
}
.info-three .compny-box .right-text .company-name,
.info-three .person-box .right-text .company-name {
  color: #1E2736;
  display: inline-block;
  max-width: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-three .compny-box .right-text .certify-bottom,
.info-three .person-box .right-text .certify-bottom {
  display: flex;
  align-items: center;
}
.info-three .compny-box .right-text .certify-bottom .cpoy-btn,
.info-three .person-box .right-text .certify-bottom .cpoy-btn {
  cursor: pointer;
  margin-left: 0.04rem;
  width: 0.14rem;
  height: 0.14rem;
}
.info-three .compny-box .right-text .bule-text,
.info-three .person-box .right-text .bule-text {
  cursor: pointer;
  color: var(--color-primary);
}
.info-three .compny-box .right-text .certify-text,
.info-three .person-box .right-text .certify-text {
  color: #292E36;
  display: inline-block;
  max-width: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.email-box,
.phone-box {
  color: #8692B0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
}
.email-box .phone-number,
.phone-box .phone-number {
  margin-left: 0.25rem;
  color: #1E2736;
}
.info-second > div img {
  margin-right: 0.05rem;
  vertical-align: middle;
  width: 0.16rem;
}
.statistics-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem;
  min-height: 2.4rem;
}
.money-box {
  box-sizing: border-box;
  flex: 1;
  padding: 0.24rem;
  border-radius: 0.04rem;
  background-color: #fff;
  min-width: 0;
}
.consume-box {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  width: 2.4rem;
  flex-shrink: 0;
}
.consume-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
  border-radius: 0.08rem;
  background: #fff;
  border: 1px solid #E6E7EB;
  transition: all 0.3s;
}
.consume-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.consume-box-1 {
  border-left: 3px solid #04C8C9;
}
.consume-box-2 {
  border-left: 3px solid #8692B0;
}
.consume-icon {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
.consume-box-1 .consume-icon {
  background: rgba(4, 200, 201, 0.1);
  color: #04C8C9;
}
.consume-box-2 .consume-icon {
  background: rgba(134, 146, 176, 0.1);
  color: #8692B0;
}
.consume-icon i {
  font-size: 0.18rem;
}
.consume-title {
  color: #8692B0;
  font-size: 0.12rem;
  font-weight: 400;
  margin-bottom: 0.06rem;
}
.consume-value {
  color: #1E2736;
  font-size: 0.22rem;
  font-weight: bold;
  margin-bottom: 0.04rem;
}
.consume-value .currency {
  font-size: 0.14rem;
  margin-right: 0.02rem;
}
.consume-percent {
  font-size: 0.11rem;
}
.percent-up {
  color: #50CD89;
  background: rgba(80, 205, 136, 0.08);
  padding: 0.02rem 0.06rem;
  border-radius: 0.03rem;
}
.percent-down {
  color: #F0142F;
  background: rgba(240, 20, 46, 0.08);
  padding: 0.02rem 0.06rem;
  border-radius: 0.03rem;
}
.statistics-box-bottom {
  margin-top: 0.16rem;
}
.statistics-box-bottom .statistics-content {
  padding: 0.24rem;
  background-color: #fff;
  border-radius: 0.04rem;
}
.order-box {
  display: flex;
  gap: 0.16rem;
  width: 100%;
}
.money-top {
  display: flex;
  justify-content: space-between;
  column-gap: 0.26rem;
}
.money-top .money-credit {
  position: relative;
  flex: 1;
  flex-shrink: 0;
  border-radius: 0.04rem;
  background: #F6F6FA;
  padding: 0.16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.money-top .money-credit .credit-btn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  background-color: var(--color-primary);
  font-size: 0.14rem;
  color: #fff;
  padding: 0.05rem 0.23rem;
  border-radius: 0.04rem;
  border-radius: 0 0.04rem 0 0.08rem;
}
.money-top .money-credit .credit-title {
  color: #646464;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  column-gap: 0.08rem;
}
.money-top .money-credit .credit-title.coin-title {
  justify-content: space-between;
}
.money-top .money-credit .credit-title .credit-detail {
  color: var(--color-primary);
  font-size: 0.14rem;
  cursor: pointer;
}
.money-top .money-credit .credit-title .create-notice {
  display: flex;
  align-items: center;
}
.money-top .money-credit .credit-title .create-notice .notice-status {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #A2A2A2;
}
.money-top .money-credit .credit-title .create-notice .notice-status.active {
  background-color: var(--color-success);
}
.money-top .money-credit .credit-title .create-notice .notice-btn {
  color: var(--color-primary);
  font-size: 0.12rem;
  cursor: pointer;
}
.money-top .money-credit .credit-money {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  column-gap: 0.1rem;
}
.money-top .money-credit .credit-money .credit-num {
  color: #2B2B2B;
  font-size: 0.32rem;
  font-weight: 500;
  flex-shrink: 0;
}
.money-top .money-credit .credit-money .credit-num .s-24 {
  margin-right: 0.08rem;
  font-size: 0.24rem;
}
.money-top .money-credit .credit-money .recharge-btn {
  cursor: pointer;
  padding: 0 0.1rem;
  line-height: 0.24rem;
  color: #ffffff;
  font-size: 0.12rem;
  border-radius: 0.04rem;
  background: var(--color-primary);
}
.money-top .money-credit .credit-money .recharge-text {
  font-weight: 400;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 0.14rem;
  margin-left: 0.16rem;
}
.money-order {
  margin-top: 0.32rem;
  border-top: 1px solid #EEEEEE;
  padding-top: 0.24rem;
  display: flex;
  align-items: center;
}
.money-order .money-order-divider {
  width: 1px;
  height: 0.2rem;
  border-radius: 1px;
  background: #EBEBF4;
  margin: 0 0.2rem;
}
.money-order .money-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-shrink: 0;
}
.money-order .money-order-item .money-order-title {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #333333;
}
.money-order .money-order-item .money-order-title .credit-tag {
  margin-left: 0.08rem;
  color: #333333;
  font-size: 0.12rem;
  box-sizing: border-box;
  padding: 0.02rem 0.04rem;
  border: 1px solid #E6E7EB;
  border-radius: 2px;
  background: #FFFFFF;
}
.money-order .money-order-item .money-order-value {
  font-size: 0.14rem;
  color: #2B2B2B;
  font-weight: bold;
}
.money-order .money-order-item .money-order-value .s-12 {
  margin-right: 0.06rem;
  font-size: 0.12rem;
}
.voucher-box {
  color: #646464;
  font-size: 0.12rem;
}
.voucher-box .bule-text {
  color: var(--color-primary);
  margin-left: 0.03rem;
  cursor: pointer;
}
.statistics-bottom {
  margin-top: -0.16rem;
  display: flex;
  padding: 0.26rem 5.32rem 0.26rem 0.24rem;
  border-radius: 0.04rem;
  background: url("../img/index_bg.png") no-repeat;
  background-size: auto 100%;
  background-position: right center;
  background-color: #fff;
}
.statistics-bottom .statistics-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.08rem;
}
.statistics-bottom .statistics-item .statistics-item-name {
  color: #A2A2A2;
  font-size: 0.14rem;
}
.statistics-bottom .statistics-item .statistics-item-name .green-text {
  color: var(--color-success);
}
.statistics-bottom .statistics-item .statistics-item-name .red-text {
  color: var(--color-danger);
}
.statistics-bottom .statistics-item .statistics-item-value {
  font-size: 0.14rem;
  color: #2B2B2B;
  font-weight: bold;
}
.statistics-bottom .statistics-item .statistics-item-value .s-12 {
  margin-right: 0.06rem;
  font-size: 0.12rem;
}
.statistics-bottom .statistics-item-divider {
  width: 1px;
  height: 0.2rem;
  border-radius: 1px;
  background: #EBEBF4;
  margin: 0 0.2rem;
}
.order-box .order-item {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.24rem;
  border-radius: 0.08rem;
  cursor: pointer;
  min-height: 1.6rem;
  transition: all 0.3s;
}
.order-box .order-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.order-box .order-title {
  color: #FFFFFF;
  font-size: 0.13rem;
  font-weight: 500;
}
.order-box .order-nums {
  margin-bottom: 0.33rem;
  font-size: 0.32rem;
  font-weight: bold;
  color: #FFFFFF;
}
.order-box .order-type-img {
  margin-top: 0.36rem;
}
.order-box .order-type-img img {
  width: 0.68rem;
  height: 0.68rem;
}
.order-box .order-box-1 {
  background: #7239EA;
}
.order-box .order-box-2 {
  background: #3699FF;
}
.order-box .order-box-3 {
  background: #3DD598;
}
/* 工单和公告区域 - 紧凑版 */
.tickets-news-section {
  display: flex;
  gap: 0.2rem;
  align-items: stretch;
}
.section-card {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.24rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F0F2F5;
  display: flex;
  flex-direction: column;
}
.section-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* 待处理工单卡片 - 紧凑版 */
.ticket-pending-card {
  flex: 1;
  background: #F7F8FA;
  cursor: pointer;
  border: 1px solid #E8EAED;
  min-height: 1.8rem;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}
.ticket-pending-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/daichuli.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 1;
}
.ticket-pending-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.12rem;
  position: relative;
  z-index: 1;
}
.ticket-pending-card .card-header .card-title {
  font-size: 0.15rem;
  color: #2C3E50;
  font-weight: 600;
}
.ticket-pending-card .card-value {
  font-size: 0.42rem;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ticket-pending-card .card-value::after {
  content: '↑';
  font-size: 0.18rem;
  color: #95A5A6;
  margin-left: 0.08rem;
  vertical-align: middle;
}
.ticket-pending-card .card-footer {
  font-size: 0.12rem;
  color: #95A5A6;
  position: relative;
  z-index: 1;
  margin-top: 0.08rem;
}

/* 最近工单卡片 - 紧凑版 */
.recent-tickets-card {
  flex: 1;
  background: #F7F8FA;
  border: 1px solid #E8EAED;
  min-height: 1.8rem;
  color: #2C3E50;
  position: relative;
  overflow: hidden;
}
.recent-tickets-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/gongdan.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 1;
}
.recent-tickets-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.16rem;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 1;
}
.recent-tickets-card .card-title {
  font-size: 0.15rem;
  font-weight: 600;
  color: #2C3E50;
}
.recent-tickets-card .card-more {
  font-size: 0.12rem;
  color: #4A90E2;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.recent-tickets-card .card-more:hover {
  color: #357ABD;
}
.recent-tickets-card .ticket-list {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  position: relative;
  z-index: 1;
}
.recent-tickets-card .ticket-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.08rem 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.recent-tickets-card .ticket-item:last-child {
  border-bottom: none;
}
.recent-tickets-card .ticket-item:hover {
  background: rgba(74, 144, 226, 0.05);
  transform: none;
  padding-left: 0.06rem;
}
.recent-tickets-card .ticket-status {
  background: rgba(74, 144, 226, 0.1);
  color: #4A90E2;
  padding: 0.03rem 0.08rem;
  border-radius: 0.03rem;
  font-size: 0.1rem;
  font-weight: 600;
}
.recent-tickets-card .ticket-info {
  flex: 1;
  margin-left: 0.1rem;
}
.recent-tickets-card .ticket-title {
  color: #2C3E50;
  font-size: 0.12rem;
  font-weight: 500;
  margin-bottom: 0;
}
.recent-tickets-card .ticket-name {
  color: #95A5A6;
  font-size: 0.1rem;
  margin-top: 0.02rem;
}

/* 公告通知卡片 - 单条轮播版 */
.news-card {
  flex: 1;
  background: #F7F8FA;
  border: 1px solid #E8EAED;
  min-height: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/new.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
  opacity: 1;
}
.news-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.16rem;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 1;
}
.news-card .card-title {
  font-size: 0.15rem;
  font-weight: 600;
  color: #2C3E50;
}
.news-card .card-more {
  font-size: 0.12rem;
  color: #4A90E2;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.news-card .card-more:hover {
  color: #357ABD;
}
.news-card .news-carousel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .news-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.news-card .news-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.2rem;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-card .news-item:hover .news-title {
  color: #4A90E2;
}
.news-card .news-date {
  font-size: 0.13rem;
  font-weight: 600;
  color: #95A5A6;
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.news-card .news-date::before {
  content: '📅';
  font-size: 0.16rem;
}
.news-card .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.16rem;
}
.news-card .news-title {
  font-size: 0.18rem;
  color: #2C3E50;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.news-card .news-type {
  display: inline-block;
  font-size: 0.12rem;
  color: #4A90E2;
  background: rgba(74, 144, 226, 0.1);
  padding: 0.04rem 0.12rem;
  border-radius: 0.04rem;
  font-weight: 500;
  align-self: flex-start;
}

/* 公告切换动画 */
.news-fade-enter-active {
  animation: newsFadeIn 0.5s ease-out;
}
.news-fade-leave-active {
  animation: newsFadeOut 0.5s ease-in;
}
@keyframes newsFadeIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes newsFadeOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}
/* 轮播控制按钮 */
.news-carousel-controls {
  position: absolute;
  bottom: 0.16rem;
  right: 0.16rem;
  display: flex;
  gap: 0.08rem;
  z-index: 2;
}
.news-carousel-btn {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E8EAED;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #4A90E2;
  font-size: 0.14rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.news-carousel-btn:hover {
  background: #4A90E2;
  color: #fff;
  border-color: #4A90E2;
  transform: scale(1.1);
}
.news-carousel-btn:active {
  transform: scale(0.95);
}
/* 轮播指示器 */
.news-carousel-indicator {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.06rem;
  z-index: 2;
}
.news-carousel-dot {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: #D0D0D0;
  transition: all 0.3s;
  cursor: pointer;
}
.news-carousel-dot.active {
  width: 0.18rem;
  border-radius: 0.03rem;
  background: #4A90E2;
}

.product-list-box {
  flex: 1;
  background-color: #fff;
  border-radius: 0.04rem;
  padding: 0.24rem;
}
.product-list-box .title-text {
  font-size: 0.14rem;
  color: #2B2B2B;
  margin-bottom: 0.24rem;
}
.product-list-box .product-name {
  color: var(--color-primary);
  font-size: 0.14rem;
  cursor: pointer;
}
.product-list-box .red-time {
  color: var(--color-danger);
}
.right-box {
  flex-shrink: 0;
  width: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}
/* 右边栏用户信息卡片样式调整 */
.right-box .user-info-card {
  padding: 0.28rem 0.24rem;
  margin: 0;
  border-radius: 0.12rem;
}
.right-box .user-name {
  font-size: 16px;
}
.right-box .user-id {
  font-size: 12px;
}
.right-box .user-row-contact {
  gap: 16px;
}
.right-box .contact-item {
  font-size: 12px;
}
.right-box .user-row-cert {
  flex-wrap: wrap;
  gap: 8px 16px;
}
.right-box .cert-item {
  font-size: 12px;
}

.recommend-people {
  margin-top: 0.3rem;
  border-top: 1px solid #E6E7EB;
  padding-top: 0.3rem;
  text-align: left;
}
.recommend-people-num {
  display: inline-block;
  width: 1rem;
  height: 0.08rem;
  background: var(--color-warning);
  border-radius: 0rem 0.2rem 0.2rem 0rem;
}
.recommend-money-num {
  display: inline-block;
  width: 1.2rem;
  height: 0.08rem;
  background: var(--color-success);
  border-radius: 0rem 0.2rem 0.2rem 0rem;
}
.recommend-number {
  margin-left: 0.16rem;
  font-weight: bold;
  font-size: 0.26rem;
  color: #040E34;
}
.recommend-people > div {
  display: flex;
  align-items: center;
}
.recommend-people > div:nth-of-type(2) {
  margin-top: 0.47rem;
}
.WorkOrder-box {
  margin-top: 0.24rem;
}
.WorkOrder-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.12rem;
  font-size: 14px;
  color: #2B2B2B;
  font-weight: bold;
}
.more {
  cursor: pointer;
  display: block;
  padding: 0 0.03rem;
  background: #EEF4FF;
  height: 0.24rem;
  line-height: 0.24rem;
  text-align: center;
  border-radius: 0.03rem;
  color: #8692B0;
}
.WorkOrder-content {
  padding: 0.3rem 0.3rem 0 0.3rem;
  border-radius: 0.03rem;
  border: 1px solid #E6E7EB;
}
.WorkOrder-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
.WorkOrder-item:hover {
  cursor: pointer;
  background-color: #f5f7fa;
  transition: background-color 0.25s ease;
}
.replay-div {
  flex-shrink: 0;
  margin-right: 0.1rem;
  font-weight: 500;
  font-size: 0.13rem;
  padding: 0 0.1rem;
  height: 0.26rem;
  line-height: 0.26rem;
  text-align: center;
  background: rgba(54, 155, 255, 0.205);
  color: #FFF;
  border-radius: 0.03rem;
}
.replay-red {
  color: var(--color-danger);
  background: rgba(240, 20, 46, 0.205);
}
.replay-green {
  background: rgba(61, 213, 152, 0.205);
  color: var(--color-success);
}
.replay-box {
  width: 80%;
}
.replay-title {
  font-size: 0.14rem;
  color: #1E2736;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.replay-name {
  font-size: 0.13rem;
  font-weight: 500;
  color: #8692B0;
}
.notice-box {
  margin-top: 0.24rem;
}
.notice-item {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.16rem;
}
.notice-item:hover {
  background-color: #f5f7fa;
  transition: background-color 0.25s ease;
}
.notice-item:nth-of-type(1) {
  border-left: 0.02rem solid var(--color-success);
  margin-bottom: 0.4rem;
}
.notice-item:nth-of-type(2) {
  border-left: 0.02rem solid var(--color-primary);
  margin-bottom: 0.4rem;
}
.notice-item:nth-of-type(3) {
  border-left: 0.02rem solid var(--color-warning);
  margin-bottom: 0.3rem;
}
.notice-time {
  font-size: 0.2rem;
  color: #1E2736;
}
.notice-title {
  font-weight: 400;
  font-size: 0.14rem;
  color: #1E2736;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.notice-type {
  font-size: 0.13rem;
  font-weight: 500;
  color: #8692B0;
}
.notice-item-right {
  color: #8692B0;
  width: 0.24rem;
  height: 0.24rem;
  text-align: center;
  line-height: 0.24rem;
  background: #EEF4FF;
  border-radius: 0.03rem;
}
.no-product {
  text-align: center;
  margin-top: 1.06rem;
  padding-bottom: 1.72rem;
  background-color: #fff;
  border-radius: 0.04rem;
  padding: 0.24rem;
}
.no-product h2 {
  font-weight: 400;
  color: #171725;
  font-size: 0.28rem;
}
.no-product p {
  margin: 0.1rem 0 0.2rem 0;
  color: #8692B0;
  font-size: 0.14rem;
}
.no-recommend {
  margin: 0 auto;
  margin-top: 0.24rem;
  color: #FFF;
  font-size: 0.14rem;
  background: var(--color-primary);
  height: 0.32rem;
  line-height: 0.32rem;
  width: 1.52rem;
  border-radius: 0.03rem;
  cursor: pointer;
}
.recommend-text {
  margin: 0 auto;
  margin-top: 0.24rem;
  color: #8692B0;
  font-size: 0.14rem;
  background: #EEF4FF;
  height: 0.32rem;
  line-height: 0.32rem;
  border-radius: 0.03rem;
}
.info-box .divider-box {
  height: 100%;
  background-color: #E6E7EB !important;
}
.dialog-form {
  display: flex;
  flex-direction: column;
}
.cz-input {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cz-input > .btn-ok {
  margin-left: 0.1rem;
  height: 0.46rem;
  background: var(--color-primary);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-html {
  display: flex;
  justify-content: center;
}
.pay-html > img {
  width: 2.5rem;
  height: 2.5rem;
}
.ty-select {
  width: 100%;
}
.recommend-box-open {
  padding: 0.24rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #F0F0F0;
}
.recommend-box-open .recommend-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.recommend-box-open .recommend-top .left {
  display: flex;
  flex-direction: column;
}
.recommend-box-open .recommend-top .left .row1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.recommend-box-open .recommend-top .left .row1 .title-text {
  font-size: 18px;
  font-weight: bold;
  color: #171725;
  margin-right: 0.2rem;
  margin-bottom: 0;
}
.recommend-box-open .recommend-top .left .row1 .reword {
  background: linear-gradient(180deg, #F74C4B 0%, #EF7575 100%);
  border-radius: 3px;
  color: #FFF;
  position: relative;
  padding: 1px 6px 1px 20px;
  font-size: 13px;
  cursor: pointer;
}
.recommend-box-open .recommend-top .left .row1 .reword img {
  width: 36px;
  height: 35px;
  position: absolute;
  left: -18px;
  top: -4px;
}
.recommend-box-open .recommend-top .left .row2 {
  font-size: 14px;
  font-weight: bold;
  color: #2B2B2B;
  margin-top: 0.3rem;
  margin-bottom: 0.13rem;
}
.recommend-box-open .recommend-top .left .row3,
.recommend-box-open .recommend-top .left .row4 {
  font-size: 14px;
  color: #8692B0;
}
.recommend-box-open .recommend-top .right {
  width: 1.5rem;
  height: 1.53rem;
}
.recommend-box-open .url {
  width: 100%;
  height: 0.46rem;
  border: 1px solid #E6E7EB;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.26rem;
}
.recommend-box-open .url .url-text {
  width: 100%;
  font-size: 15px;
  color: #8692B0;
  margin-left: 0.16rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recommend-box-open .url .copy-btn {
  width: 112px;
  height: 100%;
  background: #E1F0FF;
  border-left: 1px solid #E6E7EB;
  border-radius: 0px 3px 3px 0px;
  font-size: 16px;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend-box-open .top-statistic {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 0.08rem;
  flex-wrap: wrap;
  margin-top: 0.24rem;
}
.recommend-box-open .top-statistic .top-item {
  padding: 0.16rem;
  flex: 1;
  box-shadow: 0px 1px 4px rgba(21, 34, 50, 0.08);
  border-radius: 0.04rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
}
.recommend-box-open .top-statistic .top-item:nth-of-type(1) {
  background: url("../img/referral/top1.png") no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}
.recommend-box-open .top-statistic .top-item:nth-of-type(2) {
  background: url("../img/referral/top3.png") no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}
.recommend-box-open .top-statistic .top-item .top-money {
  font-size: 0.24rem;
  font-weight: bold;
  color: #1E2736;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.recommend-box-open .top-statistic .top-item .top-text {
  font-size: 0.14rem;
  color: #8692B0;
}
.open-dialog {
  font-size: 16px;
}
.open-dialog .dialog-footer {
  font-size: 0.16rem;
}
.open-dialog .dialog-footer .btn-ok {
  width: 1.12rem;
  height: 0.46rem;
  background: var(--color-primary);
  border-radius: 3px;
  color: #FFF;
}
.open-dialog .dialog-footer .btn-no {
  width: 1.12rem;
  height: 0.46rem;
  background: #E7E7E7;
  border-radius: 3px;
  color: #1E2736;
}
.wx-code {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 100;
  position: fixed;
  top: 50%;
  right: 3px;
  transform: translateY(50%);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.wx-code .wx-img {
  width: 40px;
  height: 40px;
  background: url('../img/wx.svg') no-repeat;
  background-size: 100% 100%;
}
.wx-code:hover .wx-img {
  background: url('../img/wx_hover.svg') no-repeat;
  background-size: 100% 100%;
}
.wx-box {
  text-align: center;
}
.wx-box .img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.wx-box .img img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .main-content {
    display: block;
    padding-bottom: 1.5rem;
  }
  .el-main {
    margin-top: 1rem;
  }
  .statistics-bottom {
    padding: 0.26rem 0.24rem;
    margin-top: 0.24rem;
  }
  .recharge-btn {
    height: 30px;
    line-height: 30px;
  }
  .progress-box .el-progress-circle {
    display: flex;
  }
  .order-box {
    width: 100%;
    margin-left: 0;
    margin-top: 0.2rem;
  }
  .order-box .order-item {
    flex: 1;
  }
  .info-box .divider-box {
    display: none;
  }
  .info-three {
    margin-top: 10px;
    width: 100%;
    align-items: flex-end;
  }
  .right-box {
    width: auto;
    margin-top: 0.2rem;
  }
  /* 移动端用户信息卡片 */
  .user-info-card {
    padding: 16px;
  }
  .user-info-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .user-avatar .avatar-img {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .user-details {
    align-items: center;
  }
  .user-row-info,
  .user-row-extra {
    flex-direction: column;
    gap: 8px;
  }
  .cert-tags {
    margin-right: 0;
    justify-content: center;
  }
  .info-link {
    display: none;
  }
  .right-box .user-info-card {
    margin: -0.24rem -0.24rem 0.24rem -0.24rem;
  }
  .user-row-cert {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .status-cards {
    flex-direction: column;
  }
  .status-card {
    width: 100%;
  }
}
