.hisFixed {
width: 100%;
max-width: 920px;
height: 85vh;
margin: 2rem auto;
background: #0a0a0a;
z-index: 10000;
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
border-radius: 16px;
box-shadow: 
0 10px 50px rgba(0, 0, 0, 0.8),
0 0 0 1px rgba(255, 255, 255, 0.03);
border: 1px solid #2a2a2a;
font-family: 'Segoe UI', Roboto, sans-serif;
}
.containerHistory {
display: flex;
flex-direction: column;
height: 100%;
background: linear-gradient(145deg, #0f0f0f 0%, #080808 100%);
} .hisHeader {
padding: 1.5rem;
background: linear-gradient(160deg, #1a1a1a 0%, #121212 100%);
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 
0 4px 12px rgba(0, 0, 0, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.02);
position: relative;
z-index: 3;
}
.hisTitle {
font-size: 1.4rem;
color: #fff;
font-weight: 600;
margin: 0;
display: flex;
align-items: center;
gap: 0.75rem;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hisTitle svg {
width: 24px;
height: 24px;
fill: #e53935;
filter: drop-shadow(0 0 4px rgba(229, 57, 53, 0.3));
}
.hisClose {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
transition: all 0.3s ease;
border: none;
backdrop-filter: blur(4px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.hisClose:hover {
background: rgba(229, 57, 53, 0.2);
transform: rotate(90deg);
} .hisContent {
flex: 1;
overflow-y: auto;
padding: 1.5rem;
position: relative;
z-index: 1;
} .hisList {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(calc(50% - 0.75rem), 1fr));
gap: 1.5rem;
} .hisCard {
background: linear-gradient(145deg, #1a1a1a 0%, #151515 100%);
border-radius: 12px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
border: 1px solid rgba(255, 255, 255, 0.03);
box-shadow: 
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.02);
display: flex;
flex-direction: column;
position: relative;
}
.hisCard::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
}
.hisCard:hover {
transform: translateY(-5px);
box-shadow: 
0 8px 25px rgba(0, 0, 0, 0.4),
0 0 0 1px rgba(229, 57, 53, 0.2);
border-color: rgba(229, 57, 53, 0.3);
} .hisThumb {
width: 100%;
height: 180px;
overflow: hidden;
position: relative;
}
.hisThumb::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, transparent 50%);
pointer-events: none;
}
.hisThumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease, filter 0.4s ease;
}
.hisCard:hover .hisThumb img {
transform: scale(1.08);
filter: brightness(1.1);
} .hisInfo {
padding: 1.25rem;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.hisName {
color: #fff;
font-weight: 600;
font-size: 1rem;
margin: 0 0 0.75rem 0;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.hisName a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
.hisName a:hover {
color: #e53935;
} .hisMeta {
margin-top: auto;
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
} .hisBadge {
display: flex;
align-items: center;
gap: 0.4rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.8rem;
color: #bbb;
backdrop-filter: blur(4px);
border: 1px solid rgba(255, 255, 255, 0.03);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.hisBadge:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-1px);
}
.hisBadge svg {
width: 12px;
height: 12px;
fill: currentColor;
}
.hisEpisode {
background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
color: white;
padding: 0.4rem 0.8rem;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 600;
box-shadow: 0 2px 6px rgba(229, 57, 53, 0.3);
}
.hisDate {
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}
.hisType {
background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
color: white;
} .hisDelete {
position: absolute;
top: 1rem;
right: 1rem;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
border: none;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(4px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
z-index: 2;
}
.hisDelete svg {
width: 16px;
height: 16px;
fill: #fff;
transition: fill 0.3s ease;
}
.hisDelete:hover {
background: rgba(229, 57, 53, 0.9);
transform: scale(1.1);
} .hisFooter {
padding: 1.25rem 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.03);
display: flex;
justify-content: flex-end;
background: linear-gradient(160deg, #121212 0%, #0f0f0f 100%);
z-index: 2;
box-shadow: 
0 -4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.hisClear {
background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}
.hisClear svg {
width: 16px;
height: 16px;
fill: currentColor;
}
.hisClear:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4);
} .hisEmpty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 3rem 1rem;
color: #aaa;
flex: 1;
}
.hisEmpty svg {
width: 60px;
height: 60px;
fill: #e53935;
margin-bottom: 1.5rem;
opacity: 0.8;
}
.hisEmpty h3 {
font-size: 1.5rem;
color: #fff;
margin: 0 0 1rem 0;
font-weight: 600;
}
.hisEmpty p {
font-size: 0.9rem;
color: #bbb;
max-width: 400px;
margin: 0.25rem 0;
line-height: 1.6;
} .hisContent::-webkit-scrollbar {
width: 8px;
}
.hisContent::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.02);
border-radius: 4px;
}
.hisContent::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
}
.hisContent::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
} @media (max-width: 768px) {
.hisFixed {
max-width: 100%;
height: 100vh;
border-radius: 0;
top: 0;
left: 0;
transform: none;
margin: 0;
}
.hisList {
grid-template-columns: 1fr;
}
.hisHeader {
padding: 1.25rem;
}
.hisFooter {
padding: 1rem;
}
}
@media (max-width: 480px) {
.hisThumb {
height: 150px;
}
.hisInfo {
padding: 1rem;
}
.hisBadge {
font-size: 0.75rem;
padding: 0.3rem 0.6rem;
}
}