/* 基础样式和重置-------------------------- */
@font-face {
    font-family: 'EnglishFont';
    src: url('/assets/fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'EnglishFont';
    src: url('/assets/fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-family: 'EnglishFont', 'Microsoft Yahei', 'Simsun', sans-serif;
    font-weight: 400;
    place-content: center;
}

body {
    background-color: var(--environment);
    color: var(--text);
    line-height: 1.6;
    font-size: 13px;
    margin: 0 auto;
    overflow: hidden;
    overflow-y: scroll;
    overflow-x: hidden;
    /* 防止横向滚动 */
    height: auto;

}

body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

/*自定义图标颜色全局样式
[class^='mgc_']::before,
[class*=' mgc_']::before {
  color: inherit !important;
}
*/
.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.body {
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
    position: relative;
    width: auto;
    border: 1px solid var(--rim);
    background:var(--panel);
}

main {
    z-index: 3;
    display: flex;
    padding: 10px;
    height: 70vh;
    overflow: hidden;
    /* 隐藏溢出的滚动条 */
    position: relative;
    /* 为内部定位做准备 */
    border: 1px solid var(--rim);
    margin: 10px;
    border-radius: 20px;
    ;
    background-color: var(--screen);
    flex: 1;
    /* 默认占据全部空间 */
    min-width: 0;
    /* 允许内容挤压 */
    padding: 0;
    transition: flex 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* 平滑过渡 */
}

.edge-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    border-radius: 16px;
}

.loginfo {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.loginfo a {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
}

.loginfo small {
    color: var(--text);
}

.loginfo svg {
    margin-right: 5px;
}

.title {
    font-size: 25px;
    font-weight: bold;
}


/* 极简标题系统 */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    line-height: 1.25;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* 24px */
h2 {
    font-size: 1.375rem;
}

/* 22px */
h3 {
    font-size: 1.25rem;
}

/* 20px */
h4 {
    font-size: 1.125rem;
}

/* 18px */
h5 {
    font-size: 1rem;
}

/* 16px */
h6 {
    font-size: 0.875rem;
}

/* 14px */

/* 移动端微调 */
@media (max-width: 768px) {
    h1 {
        font-size: 1.375rem;
    }

    /* 22px */
    h2 {
        font-size: 1.25rem;
    }

    /* 20px */
}


/* 段落 */
p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: initial;
    line-height: 1.5em;
    display: grid;
    text-align: justify;
}

/* 链接 */
a {
    text-decoration: none;
    color: var(--blue);
}

a.btn {
    width: 100%;
    color: var(--text);
    border: var(--borders);
    padding: 15px 10px;
    text-align-last: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(312deg, var(--light), transparent);
}

td a.btn {
    border: none;
}

a.btn.left {
    border-radius: 10px 0 0 10px;
}

a.btn.right {
    border-radius: 0 10px 10px 0;
}


a:hover {
    color: var(--mouse);
}

ul{
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

/* 导航栏 */
nav a svg.feather-icon {
    width: 16px;
    margin-right: 3px;
    color: inherit;
}

nav.active {
    margin-top: 30px;
    margin-left: 0;
}

nav ul li a,
nav ul li span {
    display: flex;
    align-items: center;
    color: #000;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    transition:
        background-color 0.3s,
        border-color 0.3s,
        z-index 0.3s;
    /* 添加z-index过渡 */
    margin-left: 10px;
    position: relative;
    gap: 5px;
}

nav ul li a,
nav path.icon-shape,
nav ul li span {
    margin-left: 0;
    color: var(--text);
}

nav ul li {
    padding: 5px 10px;
    border-radius: 5px;
    background: linear-gradient(312deg, var(--light), transparent);
}

.detail-info-tags ul{
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

ul li {
    display: inline-block;
    position: relative;
    /* 新增定位上下文 */
}

/* 鼠标悬停和选中状态优化 */
ul li .icon-shape:hover {
    z-index: 2;
    /* 提升到最高层级 */
    color: var(--text);
}

.action-btn.active .icon-shape {
    color: var(--text);
}

/* 按钮 */
button, .button {
    background: linear-gradient(312deg, var(--light), transparent);
    color: var(--text);
    border: var(--borders);
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a.btn:hover {
    background: var(--light);
}

/*input相关样式*/
input[readonly] {
    background: var(--light) !important;
    border-left: none;
}

/*input提示文字*/
input::placeholder {
    color: var(--prompt);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* 基础样式覆盖 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* 1. 用超大内阴影覆盖背景色 */
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset !important;
  
  /* 2. 设置文字颜色 */
  -webkit-text-fill-color: var(--text) !important;
  
  /* 3. 过渡动画增强视觉 */
  transition: background-color var(--bg) ease-in-out 0s;
}

/* 表单 */
.card-header {
    font-size: 16px;
    background: var(--text);
    color: var(--bg);
    padding: 5px;
    margin-bottom: 10px;
}

.mb {
    display: flex;
    margin-bottom: 10px;
    position: relative;
}

.date {
    display: flex;
    width: 100%;
}

.d-grid {
    display: grid;
    gap: 10px;
}

        .required {
            color: black; /* 字体颜色 */
        }

        .dot {
            display: inline-block; /* 行内块元素 */
            width: 5px; /* 圆点直径 */
            height: 5px; /* 圆点直径 */
            background-color: red; /* 圆点颜色 */
            border-radius: 50%; /* 变为圆形 */
            margin-left: 5px; /* 圆点与文本间距 */
            vertical-align: middle; /* 垂直对齐 */
        }

/* 表格 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border: var(--borders);
}

th,
td:first-child {
    background-color: var(--light);
}

/* 表单 */
input[type="text"],
input[type="submit"],
input[type="button"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea {
    background-color: var(--input);
    color: var(--text);
    border: var(--borders);
    padding: 10px;
    cursor: pointer;
    display: inline-block;
    margin-left: -1px;
    width: 100%;
}

textarea {
    line-height: 1.2;
    font-family: auto;
}

input[type="submit"]:hover {
    background-color: var(--light);
}

select {
    border: var(--borders);
    background: var(--light);
    color: var(--text);
    padding: 15px 10px;
    width: 100%;
    margin: 0 -1px;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

label {
    padding: 10px;
    border: var(--borders);
    display: flex;
    width: 90px;
    background-color: var(--light);
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0;
}

/* 引用 */
blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: var(--light);
    border-left: 5px solid var(--light);
}

/* 代码块 */
pre,
code {
    background-color: var(--light);
    padding: 5px;
    border-radius: 0;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

pre {
    overflow: auto;
}

/* 图片 */
img {
    max-width: 100%;
    height: auto;
    filter: brightness(var(--image-brightness));
}

/* 对于SVG图标特殊处理
[data-theme="dark"] img[src$=".svg"] {
    filter: brightness(0.8) invert(0.1);
}
 */

svg {
    width: 24px;
    height: auto;
    stroke-width: 2px;
}

.feather-icon {
    width: 15px;
}

.icon-shape{
  fill: currentColor;
}

.icon{
  display:inline-flex;
  line-height:1;
  color: currentColor; /* 只是强调，实际可省 */
}
.icon > svg{
  width:1em;
  height:1em;
  display:block;
}
.icon.muted{ color:#888; }
.icon.big{ font-size:20px; }

.add{
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    gap: 10px;
    background: var(--panel);
}

#home h1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 2.5rem;
    align-items: center;
    margin-top: -10px;
}

#home span.site_subtitle{
    margin: 0;
    letter-spacing: 9px;
    margin-right: -9px;
}
/*所有页面唯一ID的统一样式*/
 #drama, 
 #credit, 
 #detail, 
 #profile, 
 #dashboard, 
 #admin-users, 
 #admin-dramas, 
 #edit-drama, 
 #edit-credit,
 #edit-resource,
 #create-drama, 
 #create-credit,
 #login,
 #register,
 #verify,
 #set,
 #uploadPoster,
 #uploadPhoto,
 #add-credit-to-drama,
 #edit-credit-in-drama,
 #resources,
 #resource-detail{
    /*border: var(--borders);*/
    padding: 30px 15px;
    border-radius: 15px;
}

#drama, #credit,  #dashboard, #login, #register, #verify, #resources, #resource-detail, .home-info, .login-info, .register-info{
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    position: relative;
    min-height: 100%;
    height: auto;
    gap: 5px;
}
#login, #register, #verify,.home-info, .login-info, .register-info{
    align-items: center;
    justify-content: center;
 }
#profile button {
    display: flex;
    justify-content: center;
    width: 100%;
}

#profile button a {
    display: flex;
    align-items: anchor-center;
}

header {
    display: flex;
    justify-content: space-between;
}

footer {
    padding: 0 15px;
    margin-top: -1px;
    padding-bottom: 20px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
}

footer a {
    color: var(--text);
}

footer a:hover,
.loginfo a:hover,
nav ul li a:hover,
nav ul li:hover a,
nav ul li:hover span {
    color: var(--mouse);
}

footer i {
    font-size: initial;
}

/*电视面板上鼠标放在上面和选中的效果-------------------------*/

/*按钮选中和状态*/
nav ul li.active,
nav ul li:hover {

}

/* 激活状态保持边框完整 */
nav ul li.active a,
nav ul li.active .icon-shape,
nav ul li:hover .icon-shape,
nav ul li:hover a {
    z-index: 3;
    /* 确保激活状态始终在最前 */
    color: var(--mouse);
}

/* 首尾元素特殊处理 */
nav ul li:first-child a,
nav ul li:first-child:hover {}

nav ul li:last-child a,
nav ul li:last-child:hover {}

#user .icon-shape {
    color:var(--head);
    fill:var(--input);
}

.user {
    display: flex;
    align-items: center;
}

.content {
    width:100%;
    /* 继承外部高度 */
    overflow-y: auto;
    /* 启用垂直滚动 */
    box-sizing: border-box;
    /* 保证padding不影响总宽度 */
    /*padding: 15px;*/
}

/* 隐藏所有浏览器的滚动条 */
.content::-webkit-scrollbar {
    width: 0;
    /* 隐藏Chrome/Safari的滚动条 */
    background: transparent;
}

.content {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

/*卡片样式------------------------------------*/
.cards{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 10px;
    margin-bottom: 40px;
    }
.card{
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    gap: 10px;
    border: var(--borders);
    flex-direction: row;
    background: linear-gradient(312deg, var(--light), transparent);
    box-shadow: -3px 3px 8px var(--shadow);
    }
.card h3{
    margin: 0;
    font-size: 13px;
    display: flex;
    font-weight: normal;
    }
.card:hover {
    transform: translateY(-3px);
}
.value{
    font-size: 15px;
    }
.values{
    display: flex;
    align-items: center;
}
a.edit, .award{
margin-left: 5px;
} 
.award{
    color: var(--bg);
    background: var(--text);
    padding: 2px 3px;
    font-size: 11px;
    border-radius: 3px;
}

.value,.value2{
    display: flex;
    align-items: center;
}
    
.label{
    color: var(--prompt);
    font-size: 10px;
    }

/*首页-------------------------------------*/
.search-results{
    border: var(--borders);
    padding: 10px 15px;
    background: var(--text);
    color: var(--light);
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}
    
.site_subtitle{
    font-size: 14px;
    font-weight: 500;
    margin-left: 6px;
    color: var(--prompt);
}

.year{
}
.year-range{
    background: var(--text) !important;
    color: var(--bg);
}

/*剧集列表页面样式-------------------------------------*/
.search {
    position: relative;
}

.search input[type="text"] {
    border-radius: 10px;
}
.statistic{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}

.statistic svg{
    margin-right: 5px;
}

.tags { 
    font-size: 11px;
    display: flex;
    gap: 5px; 
}
.sort-options a { 
    margin-right: 10px; 
    cursor: pointer; 
    text-decoration: underline; 
    
}
.sort-options a.active { 
    font-weight: bold; 
    color: red; 
    
}
/*首页建设中提示语*/
.warning{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    font-size: 26px;
}
.warning svg{
    margin-right: 5px;
    width: 29px;
}



.list-info svg{
    left: 13px;
    width: 15px !important; 
}

.search p svg {
    position: unset;
    left: 13px;
    width: 16px !important;
}

.search-button {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}


.sort-options {
    margin-bottom: 10px;
    margin-top: 20px;
}

.drama-grid, .credit-grid, .res-list{
    display: grid;
    gap: 5px;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

#res-body{
    display: grid;
    gap: 10px;
}

.res-author, .res-date{
    display: flex;
    gap: 5px;
    align-items: center;
}

.list-info-author svg{
    width: 12px;
}
.res-list{
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}

.res ul{
    flex-direction: column;
    gap: 10px;
}
.line{
}

.home.drama-grid{
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.list-img{
    width: 100%;
    height: 0;
    padding-bottom: 145%;
    position: relative;
}

.home.drama-list-img{
    width: 25%;
    position: relative;
    margin: 15px;
}

.actor{
    margin-bottom: 5px;
}

.drama_list_poster, .credit_list_photo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    filter: brightness(var(--image-brightness));
    border-bottom: var(--borders);
}

.home.drama_list_poster{
    border-radius: 0;
}

.drama-item, .credit-item, .res-item, .res, .line{
    flex-direction: column;
}
/*
.res-item, .res, .line{
    padding: 10px;
    gap:5px;
}
.res-item h3{
    margin: 0;
    font-size: 18px;
    display: flex;
}

.drama-item h3, .credit-item h3 {
    margin: 10px 0 5px 0;
    font-size: 1.1em;
}
*/
.home.drama-item h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.home.drama-item {
    flex-direction: row;
    padding: 0;
    border-radius: 10px;
}
.drama-list-info, .credit-list-info {
    position: relative;
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.home.drama-list-info {
    margin: 20px;
    margin-left: 0;
    position: relative;
    display: grid;
    gap: 5px;
}

.drama-detail-info, .credit-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-info {
    color: var(--text);
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.home.list-info {
    color: var(--text);
    font-size: 0.9em;
    display: flex;
    align-items: anchor-center;
}

.producer {
    color: #888;
    font-size: 0.9em;
}

/*剧集详情页面样式*/
.base-info {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.subscript {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 10px;
    margin-top: 20px;
}

.tag li:first-child,
.listGenre span:first-child,
.occupation li:first-child {
    background: var(--text);
    color: var(--bg);
}

.list-info-author{
   display: flex;
    gap: 20px;
    font-size: 12px; 
}

.detail-info-tags{
    display: grid;
    gap: 5px;
}

.detail-info-tags ul li{
    border: var(--borders);
    border-radius: 3px;
    background: var(--light);
    padding: 3px 5px;
}

.ename{
    margin-bottom: 8px;
    display: inline-block;
}

.play, .mda{
    background: var(--screen);
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 3px;
    border: var(--borders);
}

/*剧情*/
.foldable {
    overflow: hidden;
    transition: max-height 0.3s ease;
}
        
/* 默认折叠状态（最多显示3行） */
.folded {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 控制显示行数 */
    max-height: 4.5em; /* 3行 x 1.5行高 */
}
        
/* 展开状态 */
.unfolded {
    display: block;
}
    
.fold-btn {
    margin-top: 8px;
    padding: 5px 8px;
    border: var(--borders);
    border-radius: 3px;
    cursor: pointer;
    color: var(--text);
    background: var(--light);
    display: flex;
}
        
.fold-btn:hover {
    background: var(--text);
    color: var(--bg);
}
.details-info{
    display: grid;
    gap: 10px;  
    margin-bottom: 20px;
}

.title-head{
    border: var(--borders);
    padding: 5px 10px;
    background: var(--light);
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drama-credit-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.drama-credit-photo{
    width: 70px;
    height: 70px;
}
.drama-credit-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: var(--borders);
    border-radius: 15%;
}
/*职员详情页*/

.credit_photo, .drama_poster{
    border-radius: 10px;
    border: var(--borders);
    filter: brightness(var(--image-brightness));
}
.credit-drama-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 70%;
}
.credit-drama-poster{
    width: 60px;
    height: 80px;
}
.credit-drama-poster img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: var(--borders);
    border-radius: 5px;
}
/*消息页面样式-------------------------------------*/
.message-box {
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    color: white;
    font-size: 18px;
}

.success,
#message .success svg {
    color: #4CAF50;
}

.error,
#message .error svg {
    color: #f44336;
}

.info,
#message .info svg {
    color: #2196F3;
}

.success,
.error,
.info {
    font-size: 30px;
    margin-bottom: 35px;
    text-align: -webkit-center;
    display: flex;
    flex-direction: column;
}

.success svg,
.error svg,
.info svg {
    display: flex;
    flex-direction: column;
    align-self: center;
    color: revert;
}

.timer {
    font-size: 14px;
    color: var(--text);
    margin-top: 6px;
}

.tip {
    color: var(--text);
    display: flex;
    gap: 5px;
}

.message {
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
    height: 100%;
}

/*登录页面样式-------------------------------------*/
.login form,
.login button,
.register form, 
.register button{
    width: 200px;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.action-buttons i{
    border-radius: 3px;
    font-size: 13px;
    display: flex;
    place-items: anchor-center;
    align-items: anchor-center;
}

.detail.action-buttons i{
    border: var(--borders);
    padding: 6px 10px;
    background: var(--light);
    font-synthesis: none;
}

.action-btn i {
    margin-right: 5px;
}

.state{
    margin-left: 5px;
}

/* 添加按钮激活状态样式--------------------------*/
.icon-shape.active {
    color: var(--blue) !important;
}

/* 添加图标过渡动画 */
.mc-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
}

.action-btn.active .mc-icon {
    transform: scale(1.1);
    opacity: 0.9;
    color: var(--green);
}
/*弹窗样式--------------------------------------------------*/
/* 蒙层样式 */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 弹窗主体 */
.confirm-box {
    background: var(--bg);
    padding: 35px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    font-size: 15px;
}

/* 按钮容器 */
.confirm-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* 按钮样式 */
.confirm-ok,
.confirm-cancel {
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.confirm-ok:hover {
    background: var(--text);
    color: var(--bg);
}

/*呼吸灯------------------------------------------------*/
.status-indicator {
    width: 8px;
    /* 更小的指示点 */
    height: 8px;
    border-radius: 50%;
    position: relative;
}

/* 未登录状态 - 呼吸效果 */
.status-indicator.logged-out {
    background: rgba(255, 147, 0, 0.7);
    /* 起始透明度 */
    animation: human-breath 4s infinite;
    /* 模拟人类呼吸速度 */
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.3),
        /* 多层光晕 */
        0 0 16px rgba(255, 235, 59, 0.2);
}

/* 已登录状态 - 绿色常亮 */
.status-indicator.logged-in {
    background: var(--lamp);
    box-shadow: 0 0 12px rgb(255 255 255 / 50%), 0 0 24px rgb(255 255 255 / 30%);
}

/* 呼吸动画（完全透明到完全实体） */
@keyframes human-breath {
    0% {
        opacity: 0.3;
        filter: drop-shadow(0 0 4px rgba(255, 235, 59, 0.3));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 235, 59, 0.6));
    }

    100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 4px rgba(255, 235, 59, 0.3));
    }
}

/* 添加边缘模糊效果 */
.status-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(4px);
    opacity: 0.5;
    animation: inherit;
}

/*评分*/
.rating{
    color: var(--green);
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-size: 14px;
}

.detail-rating{
    color: var(--green);
}

.no-rating{
    margin-left: 5px;
    font-size: 14px;
}

.detail-no-rating{
}

/*禁用样式*/
.disabled{
    background: var(--light);
}

.home-en-title{
    font-size: smaller;
}
ul.res-tags{
  gap:10px;
    
}
/* —— 各网盘品牌色 —— */
/* 百度网盘 */
.res-tags .wp-baidu    { background:var(--baidu); color:var(--bg);}
/* 115 网盘（偏金） */
.res-tags .wp-115      { background:var(--yyw); color:var(--bg);}