.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    max-width: 6.6875rem;
    max-height: 2.6875rem;
}

.header .logo img {
    max-width: 6.6875rem;
    max-height: 2.6875rem;
}

.search {
    flex: 1;
    /*width: 11.625rem;*/
    height: 2.3125rem;
    background-color: #646669;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 0.625rem;
    margin: 0 .5rem;
}

.search .icon {
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 0.625rem;
}

.search .input {
    width: 7.5rem;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: 1rem;
}

.search .input::placeholder {
    color: #888888;
}

.lang .icon {
    width: 1.875rem;
    height: 1.875rem;
}

.banner {
    height: 13.125rem;
    margin: 1.25rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    background-position: 50% 50%;
    background-size: cover;
}

.banner-pagination {
    position: absolute;
    text-align: center;
    z-index: 1;
}

.video {

}

.video .tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.video .tabs li {
    font-size: 1rem;
}

.video .tabs li.hover {
    color: #ff5cff;
    font-size: 1.125rem;
}

.video .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.video .list a {
    width: 100%;
    height: 8.75rem;
    display: block;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.video .list a .tit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.875rem;
    line-height: 1.875rem;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
    font-size: 0.75rem;
    overflow: hidden;
    white-space: normal;
}

.video .list a .love {
    position: absolute;
    top: .5rem;
    left: .5rem;
    font-size: 0.75rem;
    padding-left: 1.4375rem;
    font-weight: 700;
    background-image: url("../image/vod_love_icon2.png");
    background-repeat: no-repeat;
    background-size: 1rem 1.125rem;
}

.lang-modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lang-modal .lang-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.lang-modal .lang-box .lang-list {
    padding: .5rem 0;
}

.lang-modal .lang-box .lang-list .lang-item {
    width: 100%;
    display: block;
    text-align: center;
    color: #0a0a0a;
    padding: .5rem 0;
}

.lang-modal .lang-box .lang-list .lang-item.hover {
    color: #1585ff;
}

.lang-modal .lang-box .lang-close {
    width: 100%;
    display: block;
    color: #ff36ff;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #cacaca;
}

.lang-modal.show {
    opacity: 1;
    visibility: visible;
}

.lang-modal.show .lang-box {
    transform: translateY(0);
}