/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background: url('https://y.gtimg.cn/music/photo_new/T053M000000KDP370deOxT.jpg') fixed;
    background-size: cover;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* 表格样式 */
.resource-table {
    width: 100%;
    border-collapse: collapse;
}

.resource-table th {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.resource-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn.primary {
    background: #3b82f6;
    color: white;
}

.btn.danger {
    background: #ef4444;
    color: white;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* 表单样式 */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        border-radius: 8px;
    }
    
    .resource-table td, 
    .resource-table th {
        padding: 0.8rem;
        font-size: 14px;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 14px;
    }
}
/* 通用图标调整 */
.link-icon {
    /* 方案1: 字体图标 */
  width: 65px;
    height: 25px;
    color: #fff; /* 字体图标/文字颜色 */
    fill: #fff;  /* SVG填充色 */
    stroke: #fff;/* SVG描边色 */
  
}
.go-link {
    /* 所有状态下去除下划线 */
    &,
    &:hover,
    &:active,
    &:visited {
        text-decoration: none;
        border-bottom: 0 !important;
        box-shadow: none !important;
    }
}
$('a').css({<br>    'color': '#007FFF',<br>    'font-weight': 'bold',<br>    'background-color': '#F0F0F0'<br>});
/* 表格列间距调整 */
.resource-table td:nth-child(1) {  /* 提取码列 */
    padding-right: 2.5rem;
    min-width: 140px;
}

.resource-table td:nth-child(2) {  /* 资源名称列 */
    padding-left: 1rem;
    padding-right: 2rem;
    min-width: 320px;
}
.resource-table td:nth-child(3) {  /* 资源名称列 */
    padding-left: 1rem;
    padding-right: 2rem;
    min-width: 140px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .resource-table td:nth-child(1) {
        padding-right: 1.5rem;
        min-width: 100px;
    }
    
    .resource-table td:nth-child(2) {
        padding-left: 1rem;
        min-width: 100px;
    }
      .resource-table td:nth-child(3) {
        padding-left: 1rem;
        min-width: 100px;
    }
}
Font-Dynamic {
font-size: 40px;
font-weight:bold;
 
background: rgb(131,58,180);
background: radial-gradient(circle, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-background-size: 200% 100%;
-webkit-animation: flowCss 5s infinite linear;
}
@-webkit-keyframes flowCss {
0% {
background-position: 0 0;
}
100% {
background-position: -400% 0;
}
}
Font-Dynamic:hover {
-webkit-animation: flowCss 2s infinite linear;
}