/* ========== 基础容器 ========== */
.fastww-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 30px;

    padding: 30px;
    /* background: rgba(30, 35, 40, 0.8); */
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(255, 255, 255, 0.05);*/
}

.fastww-hide{display:none;}
.fastww-show{display:inline-block;}
.fastww-block{display:block;}

.fastww-disabled{
    pointer-events: none;    /* 禁止所有鼠标事件 */
    cursor: not-allowed;     /* 显示禁止光标 */
    background-color: #cccccc; /* 灰色背景 */
    color:#999;
    cursor:not-allowed;
}

/* ========== 位置系统 ========== */
.fastww-fl{float:left;}
.fastww-fr{float:right;}
.fastww-pos-re{position:relative;}
.fastww-pos-ab{position:absolute;}

/* ========== 文字系统 ========== */
.fastww-bold{font-weight:bold;}
.fastww-text-white{color:#fff;}
.fastww-text-primarys { color: #7cfaa2; }
.fastww-text-success { color: #6cff6c; }
.fastww-text-warning { color: #ffd166; }
.fastww-text-error { color: #ff6b6b; }
.fastww-text-danger { color: #ff4757 ; }
.fastww-text-info { color: #2d60ff ; }
.fastww-text-muted { color: #6c757d ; }
.fastww-text-gradient {
    background-image: linear-gradient(135deg, #7cfaa2 0%, #2d60ff 100%) ;
    -webkit-background-clip: text ;
    background-clip: text ;
    -webkit-text-fill-color: transparent ;
}

.fastww-text-xs { font-size: 0.75rem ; }
.fastww-text-sm { font-size: 0.875rem ; }
.fastww-text-base { font-size: 1rem ; }
.fastww-text-lg { font-size: 1.125rem ; }
.fastww-text-xl { font-size: 1.25rem ; }
.fastww-text-underline { text-decoration: underline ; }
.fastww-text-line-through { text-decoration: line-through ; }
.fastww-text-italic { font-style: italic ; }
.fastww-text-bold { font-weight: 700 ; }

/* ========== 间距系统 ========== */
.fastww-gap-10 { gap: 10px ; }
.fastww-gap-15 { gap: 15px ; }
.fastww-gap-20 { gap: 20px ; }
.fastww-my-20 { margin: 20px 0 ; }
.fastww-p-20 { padding: 20px ; }

/* 基础间距单位 */
:root {
  --fastww-space-unit: 5px ;
}

/* 外边距（Margin）*/
/* 水平方向 */
.fastww-ml-5 { margin-left: calc(1 * var(--fastww-space-unit)) ; }
.fastww-ml-10 { margin-left: calc(2 * var(--fastww-space-unit)) ; }
.fastww-ml-15 { margin-left: calc(3 * var(--fastww-space-unit)) ; }
.fastww-ml-20 { margin-left: calc(4 * var(--fastww-space-unit)) ; }
.fastww-ml-25 { margin-left: calc(5 * var(--fastww-space-unit)) ; }
.fastww-ml-30 { margin-left: calc(6 * var(--fastww-space-unit)) ; }

.fastww-mr-5 { margin-right: calc(1 * var(--fastww-space-unit)) ; }
.fastww-mr-10 { margin-right: calc(2 * var(--fastww-space-unit)) ; }
.fastww-mr-15 { margin-right: calc(3 * var(--fastww-space-unit)) ; }
.fastww-mr-20 { margin-right: calc(4 * var(--fastww-space-unit)) ; }
.fastww-mr-25 { margin-right: calc(5 * var(--fastww-space-unit)) ; }
.fastww-mr-30 { margin-right: calc(6 * var(--fastww-space-unit)) ; }

/* 垂直方向 */
.fastww-mt-5 { margin-top: calc(1 * var(--fastww-space-unit)) ; }
.fastww-mt-10 { margin-top: calc(2 * var(--fastww-space-unit)) ; }
.fastww-mt-15 { margin-top: calc(3 * var(--fastww-space-unit)) ; }
.fastww-mt-20 { margin-top: calc(4 * var(--fastww-space-unit)) ; }
.fastww-mt-25 { margin-top: calc(5 * var(--fastww-space-unit)) ; }
.fastww-mt-30 { margin-top: calc(6 * var(--fastww-space-unit)) ; }

.fastww-mb-5 { margin-bottom: calc(1 * var(--fastww-space-unit)) ; }
.fastww-mb-10 { margin-bottom: calc(2 * var(--fastww-space-unit)) ; }
.fastww-mb-15 { margin-bottom: calc(3 * var(--fastww-space-unit)) ; }
.fastww-mb-20 { margin-bottom: calc(4 * var(--fastww-space-unit)) ; }
.fastww-mb-25 { margin-bottom: calc(5 * var(--fastww-space-unit)) ; }
.fastww-mb-30 { margin-bottom: calc(6 * var(--fastww-space-unit)) ; }

/* 复合方向 */
.fastww-mx-5 { 
  margin-left: calc(1 * var(--fastww-space-unit)) ;
  margin-right: calc(1 * var(--fastww-space-unit)) ;
}
.fastww-mx-10 { 
  margin-left: calc(2 * var(--fastww-space-unit)) ;
  margin-right: calc(2 * var(--fastww-space-unit)) ;
}
.fastww-mx-15 { 
  margin-left: calc(3 * var(--fastww-space-unit)) ;
  margin-right: calc(3 * var(--fastww-space-unit)) ;
}

.fastww-my-5 { 
  margin-top: calc(1 * var(--fastww-space-unit)) ;
  margin-bottom: calc(1 * var(--fastww-space-unit)) ;
}
.fastww-my-10 { 
  margin-top: calc(2 * var(--fastww-space-unit)) ;
  margin-bottom: calc(2 * var(--fastww-space-unit)) ;
}
.fastww-my-15 { 
  margin-top: calc(3 * var(--fastww-space-unit)) ;
  margin-bottom: calc(3 * var(--fastww-space-unit)) ;
}

/* 内边距（Padding）*/
/* 水平方向 */
.fastww-pl-5 { padding-left: calc(1 * var(--fastww-space-unit)) ; }
.fastww-pl-10 { padding-left: calc(2 * var(--fastww-space-unit)) ; }
.fastww-pl-15 { padding-left: calc(3 * var(--fastww-space-unit)) ; }
.fastww-pl-20 { padding-left: calc(4 * var(--fastww-space-unit)) ; }
.fastww-pl-25 { padding-left: calc(5 * var(--fastww-space-unit)) ; }
.fastww-pl-30 { padding-left: calc(6 * var(--fastww-space-unit)) ; }

.fastww-pr-5 { padding-right: calc(1 * var(--fastww-space-unit)) ; }
.fastww-pr-10 { padding-right: calc(2 * var(--fastww-space-unit)) ; }
.fastww-pr-15 { padding-right: calc(3 * var(--fastww-space-unit)) ; }
.fastww-pr-20 { padding-right: calc(4 * var(--fastww-space-unit)) ; }
.fastww-pr-25 { padding-right: calc(5 * var(--fastww-space-unit)) ; }
.fastww-pr-30 { padding-right: calc(6 * var(--fastww-space-unit)) ; }

/* 垂直方向 */
.fastww-pt-5 { padding-top: calc(1 * var(--fastww-space-unit)) ; }
.fastww-pt-10 { padding-top: calc(2 * var(--fastww-space-unit)) ; }
.fastww-pt-15 { padding-top: calc(3 * var(--fastww-space-unit)) ; }
.fastww-pt-20 { padding-top: calc(4 * var(--fastww-space-unit)) ; }
.fastww-pt-25 { padding-top: calc(5 * var(--fastww-space-unit)) ; }
.fastww-pt-30 { padding-top: calc(6 * var(--fastww-space-unit)) ; }

.fastww-pb-5 { padding-bottom: calc(1 * var(--fastww-space-unit)) ; }
.fastww-pb-10 { padding-bottom: calc(2 * var(--fastww-space-unit)) ; }
.fastww-pb-15 { padding-bottom: calc(3 * var(--fastww-space-unit)) ; }
.fastww-pb-20 { padding-bottom: calc(4 * var(--fastww-space-unit)) ; }
.fastww-pb-25 { padding-bottom: calc(5 * var(--fastww-space-unit)) ; }
.fastww-pb-30 { padding-bottom: calc(6 * var(--fastww-space-unit)) ; }

/* 复合方向 */
.fastww-px-5 { 
  padding-left: calc(1 * var(--fastww-space-unit)) ;
  padding-right: calc(1 * var(--fastww-space-unit)) ;
}
.fastww-px-10 { 
  padding-left: calc(2 * var(--fastww-space-unit)) ;
  padding-right: calc(2 * var(--fastww-space-unit)) ;
}
.fastww-px-15 { 
  padding-left: calc(3 * var(--fastww-space-unit)) ;
  padding-right: calc(3 * var(--fastww-space-unit)) ;
}

.fastww-py-5 { 
  padding-top: calc(1 * var(--fastww-space-unit)) ;
  padding-bottom: calc(1 * var(--fastww-space-unit)) ;
}
.fastww-py-10 { 
  padding-top: calc(2 * var(--fastww-space-unit)) ;
  padding-bottom: calc(2 * var(--fastww-space-unit)) ;
}
.fastww-py-15 { 
  padding-top: calc(3 * var(--fastww-space-unit)) ;
  padding-bottom: calc(3 * var(--fastww-space-unit)) ;
}

/* 全方向 */
.fastww-m-5 { margin: calc(1 * var(--fastww-space-unit)) ; }
.fastww-m-10 { margin: calc(2 * var(--fastww-space-unit)) ; }
.fastww-m-15 { margin: calc(3 * var(--fastww-space-unit)) ; }

.fastww-p-5 { padding: calc(1 * var(--fastww-space-unit)) ; }
.fastww-p-10 { padding: calc(2 * var(--fastww-space-unit)) ; }
.fastww-p-15 { padding: calc(3 * var(--fastww-space-unit)) ; }

/* 特殊值 */
.fastww-m-auto { margin: auto ; }
.fastww-mx-auto { 
  margin-left: auto ;
  margin-right: auto ;
}
.fastww-my-auto { 
  margin-top: auto ;
  margin-bottom: auto ;
}
.fastww-ml-auto { margin-left: auto ; }
.fastww-mr-auto { margin-right: auto ; }
.fastww-mt-auto { margin-top: auto ; }
.fastww-mb-auto { margin-bottom: auto ; }

/* 负边距 */
.fastww--ml-5 { margin-left: calc(-1 * var(--fastww-space-unit)) ; }
.fastww--mt-10 { margin-top: calc(-2 * var(--fastww-space-unit)) ; }

/* ========== 按钮系统 ========== */
.fastww-btn {
    padding: 0.6rem 1.2rem ;
    border: none ;
    border-radius: 6px ;
    cursor: pointer ;
    transition: all 0.3s ease ;
    display: inline-flex;
    align-items: center ;
    gap: 8px ;
    font-weight: 500 ;
    position: relative ;
    overflow: hidden ;
}

.fastww-btn-disabled {
    background: #999;
    color:#666;
    border: none ;
    cursor:not-allowed;
}

.fastww-btn-white {
    background: #fff;
    color: #000 ;
    border: none ;
}

.fastww-btn-form {
    background: linear-gradient(106deg, #aafc89 0%, #00f9e5 100%) ;
    color: #0e0f0f ;
    border: none ;
}

.fastww-btn-primary {
    background: linear-gradient(135deg, #7cfaa2 0%, #2d60ff 100%) ;
    color: #0f1215 ;
}

.fastww-btn-info {
    background: linear-gradient(135deg, #2d60ff 0%, #6941ff 100%) ;
    color: #fff ;
    backdrop-filter: blur(4px) ;
}

.fastww-btn-warning {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e16 100%) ;
    color: #0f1215 ;
    backdrop-filter: blur(4px) ;
}

.fastww-btn-secondary {
    background: rgba(255,255,255,0.1) ;
    color: #fff ;
    backdrop-filter: blur(4px) ;
}

.fastww-btn-success {
    background: linear-gradient(135deg, #6cff6c 0%, #00cc6a 100%) ;
    color: #0f1215 ;
}

.fastww-btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff1a1a 100%) ;
    color: #fff ;
}

.fastww-btn-ghost {
    background: transparent ;
    border: 2px solid #2d60ff ;
    color: #2d60ff ;
}

.fastww-btn:hover {
    transform: translateY(-2px) ;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) ;
}

.fastww-btn:active {
    transform: translateY(0) ;
}

.fastww-btn-icon {
    width: 40px ;
    height: 40px ;
    padding: 0 ;
    justify-content: center ;
}

.fastww-btn-loading::after {
    content: "" ;
    width: 16px ;
    height: 16px ;
    border: 2px solid rgba(255,255,255,0.3) ;
    border-top-color: #fff ;
    border-radius: 50% ;
    animation: fastww-spin 1s linear infinite ;
}

@keyframes fastww-spin {
    to { transform: rotate(360deg) ; }
}

/* ========== 按钮尺寸系统 ========== */
/* 超小按钮 */
.fastww-btn-xxs {
  height: 18px ;
  font-size: 0.5rem ;
  padding: 0 6px ;
  line-height: 18px ;
}

/* 小按钮 */
.fastww-btn-xs {
  height: 22px ;
  font-size: 0.625rem ;
  padding: 0 8px ;
}

/* 中等按钮 */
.fastww-btn-sm {
  height: 28px ;
  font-size: 0.75rem ;
  padding: 0 10px ;
}

/* 基础按钮 (默认尺寸) */
.fastww-btn-md {
  height: 36px ;
  font-size: 0.875rem ;
  padding: 0 12px ;
}

/* 大按钮 */
.fastww-btn-lg {
  height: 44px ;
  font-size: 1rem ;
  padding: 0 16px ;
}

/* 超大按钮 */
.fastww-btn-xl {
  height: 52px ;
  font-size: 1.1rem ;
  padding: 0 20px ;
}

/* 圆形图标按钮尺寸 */
.fastww-btn-icon-xxs {
  width: 18px ;
  height: 18px ;
}
.fastww-btn-icon-xs {
  width: 24px ;
  height: 24px ;
}
.fastww-btn-icon-sm {
  width: 32px ;
  height: 32px ;
}
.fastww-btn-icon-md {
  width: 40px ;
  height: 40px ;
}
.fastww-btn-icon-lg {
  width: 48px ;
  height: 48px ;
}
.fastww-btn-icon-xl {
  width: 56px ;
  height: 56px ;
}

/* 按钮尺寸工具类（单独调整） */
.fastww-btn-h-xs { height: 22px ; }
.fastww-btn-h-sm { height: 28px ; }
.fastww-btn-h-md { height: 36px ; }
.fastww-btn-h-lg { height: 44px ; }
.fastww-btn-h-xl { height: 52px ; }

.fastww-btn-font-xs { font-size: 0.625rem ; }
.fastww-btn-font-sm { font-size: 0.75rem ; }
.fastww-btn-font-md { font-size: 0.875rem ; }
.fastww-btn-font-lg { font-size: 1rem ; }
.fastww-btn-font-xl { font-size: 1.1rem ; }


/* ========== 卡片系统 ========== */
.fastww-card {
    background: #000000 ;
    border:0;
    border-radius: 12px ;
    padding: 1.5rem ;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) ;
}

.fastww-card-header {
    border-bottom: 1px solid #2d3035 ;
    padding-bottom: 1rem ;
    margin-bottom: 1rem ;
}

/* ========== 表单系统 ========== */
.fastww-form-control {
    width: 100% ;
    padding: 0.8rem ;
    background: #25282d ;
    border: 1px solid #373a40 ;
    border-radius: 6px ;
    color: #fff ;
    transition: all 0.3s ;
}

.fastww-form-control:focus {
    border-color: #2d60ff ;
    box-shadow: 0 0 0 3px rgba(45,96,255,0.1) ;
    outline: none ;
}

/* ========== 提示系统 ========== */
.fastww-alert {
    padding: 1rem ;
    border-radius: 8px ;
    margin: 1rem 0 ;
    display: flex ;
    align-items: center ;
    gap: 12px ;
}

.fastww-alert-base {
    background: rgba(30,35,40,0.8) ;
    border: 1px solid rgba(255,255,255,0.05) ;
}

.fastww-alert-info {
    background: rgba(45,96,255,0.1) ;
    border: 1px solid #2d60ff ;
    color: #2d60ff ;
}

.fastww-alert-success {
    background: rgba(108,255,108,0.1) ;
    border: 1px solid #6cff6c ;
    color: #6cff6c ;
}

.fastww-alert-danger {
    background: rgba(255,107,107,0.1) ;
    border: 1px solid #ff6b6b ;
    color: #ff6b6b ;
}

.fastww-alert-warning {
    background: rgba(255,209,102,0.1) ;
    border-color: #ffd166 ;
    color: #ffd166 ;
}

.fastww-alert-icon {
    display: flex ;
    align-items: center ;
    gap: 12px ;
}
.fastww-alert-icon i {
    font-size: 20px ;
}

/* ========== 数据展示 ========== */
.fastww-progress {
    height: 8px ;
    background: #25282d ;
    border-radius: 4px ;
    overflow: hidden ;
}

.fastww-progress-bar {
    height: 100% ;
    background: linear-gradient(90deg, #7cfaa2 0%, #2d60ff 100%) ;
    transition: width 0.3s ease ;
}

.fastww-table {
    width: 100% ;
    border-collapse: collapse ;
    background: #1a1d22 ;
    border-radius: 8px ;
    overflow: hidden ;
}

.fastww-table th,
.fastww-table td {
    padding: 1rem ;
    text-align: left ;
    border-bottom: 1px solid #2d3035 ;
}

.fastww-table th {
    background: #25282d ;
    color: #7cfaa2 ;
}

.fastww-badge {
    display: inline-block ;
    padding: 0.3rem 0.6rem ;
    border-radius: 20px ;
    font-size: 0.8rem ;
    font-weight: 500 ;
}

.fastww-badge-primary {
    background: rgba(124,250,162,0.2) ;
    color: #7cfaa2 ;
}

/* ========== 交互组件 ========== */
.fastww-tooltip {
    position: relative ;
    cursor: help ;
}

.fastww-tooltip-text {
    visibility: hidden ;
    width: 200px ;
    background: #25282d ;
    color: #fff ;
    text-align: center ;
    border-radius: 6px ;
    padding: 0.5rem ;
    position: absolute ;
    z-index: 1 ;
    bottom: 125% ;
    left: 50% ;
    transform: translateX(-50%) ;
    opacity: 0 ;
    transition: opacity 0.3s ;
}

.fastww-tooltip:hover .fastww-tooltip-text {
    visibility: visible ;
    opacity: 1 ;
}

.fastww-pagination {
    display: flex ;
    gap: 8px ;
}

.fastww-page-item {
    padding: 0.5rem 0.8rem ;
    border-radius: 6px ;
    background: #25282d ;
    cursor: pointer ;
    transition: all 0.3s ;
}

.fastww-page-item.active {
    background: #7cfaa2 ;
    color: #0f1215 ;
}

/* ========== 图标系统 ========== */
.fastww-icon-grid {
    display: grid ;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) ;
    gap: 1rem ;
}

.fastww-icon-item {
    padding: 1rem ;
    border-radius: 8px ;
    text-align: center ;
    transition: background 0.3s ;
}

.fastww-icon-item:hover {
    background: rgba(255,255,255,0.05) ;
}

.fastww-icon-item i {
    font-size: 1.5rem ;
    margin-bottom: 0.5rem ;
}

/* ========== 背景系统 ========== */
/* 基础背景色 */
.fastww-bg-dark { background-color: #1a1d22 ; }
.fastww-bg-darker { background-color: #0f1215 ; }
.fastww-bg-light { background-color: #25282d ; }
.fastww-bg-lighter { background-color: #2d3035 ; }

/* 渐变背景 */
.fastww-bg-gradient-primary {
  background: linear-gradient(135deg, #7cfaa2 0%, #2d60ff 100%) ;
}
.fastww-bg-gradient-danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%) ;
}
.fastww-bg-gradient-dark {
  background: linear-gradient(135deg, #25282d 0%, #0f1215 100%) ;
}

/* 毛玻璃效果 */
.fastww-bg-glass {
  background: rgba(37, 40, 45, 0.6) ;
  backdrop-filter: blur(12px) ;
  border: 1px solid rgba(255,255,255,0.1) ;
}

/* 动态背景（悬停效果） */
.fastww-bg-hover-light:hover {
  background-color: rgba(255,255,255,0.05) ;
}
.fastww-bg-hover-primary:hover {
  background-color: rgba(124, 250, 162, 0.1) ;
}

/* 背景图案 */
.fastww-bg-pattern-dots {
  background-image: 
    radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px) ;
  background-size: 16px 16px ;
}
.fastww-bg-pattern-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px) ;
  background-size: 20px 20px ;
}

/* 背景实用工具 */
.fastww-bg-cover {
  background-size: cover ;
  background-position: center ;
  background-repeat: no-repeat ;
}
.fastww-bg-contain {
  background-size: contain ;
  background-position: center ;
  background-repeat: no-repeat ;
}
.fastww-bg-fixed {
  background-attachment: fixed ;
}

/* 背景叠加层 */
.fastww-overlay {
  position: relative ;
}
.fastww-overlay::after {
  content: "" ;
  position: absolute ;
  top: 0 ;
  left: 0 ;
  right: 0 ;
  bottom: 0 ;
}
.fastww-overlay-dark::after {
  background: rgba(15, 18, 21, 0.7) ;
}
.fastww-overlay-primary::after {
  background: linear-gradient(135deg, rgba(124,250,162,0.3) 0%, rgba(45,96,255,0.3) 100%) ;
}

/* ========== 标签系统 ========== */
.fastww-tag {
  display: inline-flex ;
  align-items: center ;
  border-radius:5px ;
  padding: 0 10px ;
  font-weight: 500 ;
  white-space: nowrap ;
  transition: all 0.2s ease ;
  border:0;
}

.fastww-tag i{margin-right:3px;}

/* 尺寸系统 */
.fastww-tag-xs {
  height: 18px ;
  font-size: 0.625rem ;
  padding: 0 6px ;
}
.fastww-tag-sm {
  height: 22px ;
  font-size: 0.75rem ;
}
.fastww-tag-md {
  height: 26px ;
  font-size: 0.875rem ;
}
.fastww-tag-lg {
  height: 32px ;
  font-size: 1rem ;
  padding: 0 12px ;
}

/* 颜色系统 - 实心版本 */
.fastww-tag-hot{
    background:#1a2c17;
    color:#74ff52;
}

.fastww-tag-white{
    background: #fff;
    color:#000;
}
.fastww-tag-disabled{
    background: #999;
    color:#666;
    cursor:not-allowed;
}
.fastww-tag-primary {
  background: linear-gradient(135deg, #7cfaa2 0%, #2d60ff 100%) ;
  color: #0f1215 ;
}
.fastww-tag-success {
  background: linear-gradient(135deg, #6cff6c 0%, #00cc6a 100%) ;
  color: #0f1215 ;
}
.fastww-tag-warning {
  background: linear-gradient(135deg, #ffd166 0%, #ff9e16 100%) ;
  color: #0f1215 ;
}
.fastww-tag-danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%) ;
  color: #fff ;
}
.fastww-tag-info {
  background: linear-gradient(135deg, #2d60ff 0%, #6941ff 100%) ;
  color: #fff ;
}

/* 颜色系统 - 描边版本 */
.fastww-tag-outline-primary {
  background: transparent ;
  border: 1px solid #7cfaa2 ;
  color: #7cfaa2 ;
}
.fastww-tag-outline-success {
  background: transparent ;
  border: 1px solid #6cff6c ;
  color: #6cff6c ;
}
.fastww-tag-outline-danger {
  background: transparent ;
  border: 1px solid #ff6b6b ;
  color: #ff6b6b ;
}

/* 颜色系统 - 浅色版本 */
.fastww-tag-light-primary {
  background: rgba(124, 250, 162, 0.15) ;
  color: #7cfaa2 ;
}
.fastww-tag-light-danger {
  background: rgba(255, 107, 107, 0.15) ;
  color: #ff6b6b ;
}

/* 交互状态 */
.fastww-tag-clickable {
  cursor: pointer ;
}
.fastww-tag-clickable:hover {
  opacity: 0.9 ;
  transform: translateY(-1px) ;
}
.fastww-tag-clickable:active {
  transform: translateY(0) ;
}

/* 标签附加元素 */
.fastww-tag-close {
  margin-left: 6px ;
  cursor: pointer ;
  opacity: 0.7 ;
  transition: opacity 0.2s ;
}
.fastww-tag-close:hover {
  opacity: 1 ;
}

/* 圆角变体 */
.fastww-tag-pill {
  border-radius: 999px ;
}
.fastww-tag-square {
  border-radius: 4px ;
}


/* ========== 特殊标签系统 ========== */
/* 基础标签样式扩展 */
.fastww-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 三角形标签 */
.fastww-tag-triangle {
  width: 0;
  height: 0;
  padding: 0 ;
  border-style: solid;
  border-width: 0 12px 20px 12px;
  border-color: transparent transparent currentColor transparent;
  background: none ;
  clip-path: none ;
}

.fastww-tag-triangle::after {
  content: attr(data-text);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7em;
}

/* 菱形标签 */
.fastww-tag-diamond {
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  margin: 0 8px;
}

.fastww-tag-diamond > span {
  display: inline-block;
  transform: rotate(-45deg);
}

/* 丝带标签 */
.fastww-tag-ribbon {
  padding: 4px 20px 4px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%);
  margin-right: 8px;
}

.fastww-tag-ribbon.fastww-fr {
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%, 0 50%);
  padding: 4px 12px 4px 20px;
}

/* 气泡标签 */
.fastww-tag-bubble {
  border-radius: 20px 20px 20px 4px ;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.fastww-tag-bubble.fastww-fr {
  border-radius: 20px 20px 4px 20px ;
}

/* 书签标签 */
.fastww-tag-bookmark {
  padding-right: 25px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

.fastww-tag-bookmark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 16px;
  background: rgba(0,0,0,0.2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* 脉冲特效标签 */
.fastww-tag-pulse {
  animation: fastww-pulse 2s infinite;
  box-shadow: 0 0 0 currentColor;
}

@keyframes fastww-pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 250, 162, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(124, 250, 162, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 250, 162, 0); }
}

/* 多层标签 */
.fastww-tag-layered {
  position: relative;
  z-index: 1;
  margin-left: 15px;
}

.fastww-tag-layered::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 2px;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  border-radius: inherit;
}

.fastww-tag-layered::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0.3;
  z-index: -2;
  border-radius: inherit;
}



/* ========== 列表卡片容器 ========== */
.fastww-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* ========== 卡片样式 ========== */
.fastww-card-item {
  background: #1a1d22;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fastww-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* 图片区域 */
.fastww-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.fastww-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fastww-card-item:hover .fastww-card-img img {
  transform: scale(1.05);
}

/* 内容区域 */
.fastww-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fastww-card-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.fastww-card-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 按钮区域 */
.fastww-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}



/* ========== 加载动画系统 ========== */
.fastww-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: fastww-spin 0.8s linear infinite;
  vertical-align: middle;
}

/* 尺寸变体 */
.fastww-spinner-xs { width: 0.75em; height: 0.75em; border-width: 0.1em; }
.fastww-spinner-sm { width: 1em; height: 1em; }
.fastww-spinner-md { width: 1.5em; height: 1.5em; border-width: 0.2em; }
.fastww-spinner-lg { width: 2em; height: 2em; border-width: 0.25em; }
.fastww-spinner-xl { width: 3em; height: 3em; border-width: 0.3em; }

/* 颜色变体 */
.fastww-spinner-primary { color: #7cfaa2; }
.fastww-spinner-white { color: white; }
.fastww-spinner-danger { color: #ff6b6b; }
.fastww-spinner-warning { color: #ffd166; }

/* 关键帧动画 */
@keyframes fastww-spin {
  to { transform: rotate(360deg); }
}

/* 容器样式（可选） */
.fastww-spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}


/* SVG版本加载动画 */
.fastww-spinner-svg {
  animation: fastww-spin 1s linear infinite;
  width: 1em;
  height: 1em;
}

.fastww-spinner-svg circle {
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 80, 200;
  stroke-dashoffset: 0;
  animation: fastww-svg-dash 1.5s ease-in-out infinite;
}

@keyframes fastww-svg-dash {
  0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 89, 200; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124; }
}




/* ========== 其他样式 ========== */
.fastww-section-title {
    color:#fff ;
    font-size: 16px ;
    padding-left: 0.5rem ;
    border-left: 4px solid #7cfaa2 ;
    margin-bottom:20px ;
}



/* 核心样式 */
.fastww-section-title-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  padding: 8px 0;
  margin:0;
  margin-bottom:10px;
  position: relative;
  font-family: system-ui, -apple-system, sans-serif;
}

/* 图标动态效果 */
.fastww-section-title-icon > i {
  color: #7cfaa2;
  font-size: 1.1em;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(124,250,162,0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 悬停交互 */
.fastww-section-title-icon:hover > i {
  transform: rotate(8deg);
  background: rgba(124,250,162,0.15);
}

/* 渐变装饰线 */
.title-divider {
  flex-grow: 1;
  height: 1px;
  margin-top: 2px;
  background: linear-gradient(
    90deg,
    rgba(124,250,162,0.15) 0%,
    rgba(124,250,162,0.05) 80%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

/* 焦点状态 */
.fastww-section-title-icon:focus-within {
  outline: 1px dashed rgba(124,250,162,0.3);
  outline-offset: 4px;
}

/* 暗色模式适配 */
@media (prefers-color-scheme: dark) {
  .fastww-section-title {
    color: rgba(255,255,255,0.85);
  }
  .title-divider {
    background: linear-gradient(
      90deg,
      rgba(124,250,162,0.2) 0%,
      rgba(124,250,162,0.1) 50%,
      transparent 100%
    );
  }
}


.fastww-flex {
    display: flex ;
    flex-wrap: wrap ;
}





/* 弹层加载遮罩 - 通用样式 */
.fastww-loading-mask {
    background: rgba(15, 18, 21, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 9999;
}

.fastww-loading-mask.fastww-hide {
    opacity: 0;
    visibility: hidden;
}

/* 容器样式 */
.fastww-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px;
    box-sizing: border-box;
}

/* 旋转器容器 */
.fastww-loading-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 进度环 */
.fastww-spinner-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #7cfaa2 0%,
        #2d60ff 100%
    );
    mask: radial-gradient(transparent 45%, #000 46%);
    -webkit-mask: radial-gradient(transparent 45%, #000 46%);
    animation: fastww-rotate 1.5s linear infinite;
    box-sizing: border-box;
    transform-style: preserve-3d;
}

/* 进度文本容器 */
.fastww-spinner-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 进度文本 */
.fastww-spinner-text {
    font-size: 1.2rem;
    color: #7cfaa2;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 状态容器 */
.fastww-status-container {
    width: 100%;
    text-align: center;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

/* 状态文本 */
.fastww-status-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    max-width: 100%;
    word-break: break-word;
    padding: 0 10px;
    min-height: 1.4em;
    display: block;
}

@keyframes fastww-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

