.header {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #FFF;
    backdrop-filter: blur(10px);
}

.home-cover .wapper {
    background: none;
}

.home-cover .card-inner header h2 {
    margin-bottom: 10px!important;
}

.home-cover .card-inner ul {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -9999;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-cover {
    background: none;
}

.home-cover .card-inner ul li {
    margin-bottom: 30px;
    border: 0.5px solid #FFF;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.home-cover .card-inner ul li:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.notice-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 0.5px solid #FFF;
    color: #FFF;
    margin-bottom: 20px;
}

.notice {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.notice-title {
    font-size: 16px;
    font-weight: bold;
    color: #FF5722;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    color: #FFF;
    height: 24px;
    line-height: 24px;
}

.notice-text {
    display: inline-block;
    animation: scroll 10s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(calc(200%));
    }

    100% {
        transform: translateX(calc(-100%));
    }
}