
  .welheader {
    position: relative;
    z-index: 10;
    padding: 28px 20px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 71, 87, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
 }

 .welheader .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    animation: pulse-badge 2s ease-in-out infinite;
 }

 .welheader h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ffa502 40%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 80px;
 }

 .welheader .subtitle {
    font-size: 0.9rem;
    color: #a0a0b8;
 }

 .wel-content{
    max-width: 1200px;
    margin: 0 auto;
 }

 .wel-list{
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding: 2px 10px;
 }

 .wel-list .layui-icon{
    display:none;
 }

 .wel-list .layui-form-radioed{
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
  }

  .wel-list .layui-form-radioed .lay-skin-checkcard-detail{
    color:#fff;
 }

 .wel-list .layui-form-radio{
    padding: 5px 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
 }

 .wel-list .layui-form-radio:hover{
    background: linear-gradient(135deg, #ff4757, #ff6b81);
 }

 .wel-list .layui-form-radio:hover>*{
    color: #fff;
 }

 .wel-section-content{
    margin-top: 20px;
 }

 .wel-section-content li{
    width: calc(50% - 20px);
    display: inline-block;
    margin: 10px;
    background: #fff;
    overflow: hidden;
  }

  .wel-section-content li a img{
    width: 100%;
    border-radius: 4px;
  }

  .wel-section-content li a:hover{
    color: #ff4757;
  }

  .wel-itemcardinfo{
    display: flex;
    align-items: center;
    position: absolute;
    margin-top: -70px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    width: calc(100% - 20px);
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }

  .wel-itemcardinfo img{
    width:50px!important;
  }

  .wel-section-content li .itemweltag{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: #fff;
    border: #fff 1px solid;
    padding: 0px 8px;
    border-radius: 4px;
    background: rgba(255, 0, 0, 0.5);
  }

  .wel-itemcardinfo .wel-itemcardinfol{
    margin-right: 10px;
    color: #fff;
  }

  .wel-itemcardinfo .wel-itemcardinfor{
    color: #fff;
  }

  .wel-itemcardinfo .wel-itemcardinfor .wel-itemcardtitle{
    font-size: 24px;
    display: flex;
    align-items: center;
  }

  .wel-itemcardinfo .wel-itemcardinfor .wel-itemcardtitle i{
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0px 10px;
    margin-left: 10px;
    background: rgba(255, 0, 0, 0.5);
  }

  .wel-section-content li:hover{box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);transition: all 0.3s;}
  .wel-section-content li:hover img{transform: scale(1.1);transition: all 0.5s;}

  /* ===== 返回顶部 ===== */
.back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #c9a96e;
    background: rgba(12, 10, 24, 0.85);
    color: #c9a96e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    border-color: #c9a96e;
    background: rgba(201, 169, 110, 0.15);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.25);
    transform: translateY(-3px);
}
.back-to-top.visible:hover {
    transform: translateY(-3px);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
}

.welfiexd{
    position: fixed;
    z-index: 999;
    top: 0;
    background: #F4F4F4;
    width: 1200px;
    padding: 10px;
}

@media screen and (max-width: 1200px) {
    .wel-section-content li{
        width: calc(100% - 20px);
    }
    
}

@media screen and (max-width: 768px) {
    .welfiexd{
        width: 100%;
    }
    
}