@charset "UTF-8";

/*!
 * 电波模板屋
 * 主页 www.52dianbo.com
*/
:root {
    --bg-color-1: #f3f3f3;
    /*整页背景色*/
    --bg-color-2: #ffffff;
    /*强调色块背景*/
    --bg-color-3: #f6f6f6;
    /*强调色块上的强调色块*/
    --text-color-1: #323232;
    /*整站字体色*/
    --text-color-2: #b5b5b5;
    /*次级字体色*/
    --text-color-3: #8a8a8a;
    /*强调色调上的字体色*/

    --theme-color: #477be3;
    --theme-color-1: var(--theme-color);
    --theme-color-2: #e22419;
    --theme-color-3: #00BF00;
    --theme-color-4: #EF5B38;

    /*主题彩色*/
    --theme-text-color: #ffffff;
    /*主题色块上的字体色*/
    /*--theme-highlight-color: #00007E;*/
    --theme-highlight-color: #1a4fa0;
    /*主题色上的对比强调色*/
    --theme-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    --theme-padding: 15px;
    --theme-gap: 15px;
    --theme-radius: 5px;
    --theme-radius-2: 12px;
    --swiper-theme-color: var(--theme-color);

    /* --theme-color: #df3062;

    --theme-color-1: var(--theme-color);

    --theme-color-2: #11abc1;
    --theme-color-3: #ec9900;
    --theme-color-4: #66c192; */


}

@media (max-width: 767.9px) {
    :root {
        --theme-padding: 10px;
        --theme-gap: 10px;
        --theme-radius: 4px;
        --theme-radius-2: 8px;
    }
}

@media (max-width: 575.9px) {
    :root {
        --theme-padding: 5px;

    }
}

[data-theme="1"] {
    --bg-color-1: #121212;
    --bg-color-2: #25252b;
    --bg-color-3: #32323c;
    --text-color-1: #f0f0f0;
    --text-color-2: #cccccc;
    --text-color-3: #ffffff;
    --theme-shadow: 3px 3px 5px 0 var(--bg-color-1);
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: var(--theme-radius);
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--theme-color)
}

body, [data-theme="0"] body, [data-theme="1"] body {
    font-size: 14px;
    color: var(--text-color-1);
    background-color: var(--bg-color-1);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

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

a:focus, a:hover {
    color: var(--theme-color);
}

.ewave-dropdown-box {
    border-radius: var(--theme-radius) !important;
}

.ewave-dropdown-box, .ewave-dropdown-box::before {
    background-color: var(--bg-color-3) !important;
}

.ewave-dropdown-box ul {
    position: relative;
    z-index: 1;
}

.ewave-dropdown-box ul li:hover {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

.ewave-dropdown-box ul li:first-child {

    border-top-left-radius: var(--theme-radius);
    border-top-right-radius: var(--theme-radius);
}

.ewave-dropdown-box ul li:last-child {

    border-bottom-left-radius: var(--theme-radius);
    border-bottom-right-radius: var(--theme-radius);
}

.ewave-dropdown-box ul li:hover a {
    color: var(--theme-text-color);
}

.layout-box {
    background-color: var(--bg-color-2);
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
}

.layout-box:hover {
    box-shadow: var(--theme-shadow);
}

.ewave-img-wrapper {
    padding-bottom: 130%;
    background-image: url("../images/loading.gif");
}

.blur {
    filter: blur(20px);
}

.position {
    position: relative;
    z-index: 2;
}

.position span, .position a:not(:hover) {
    /* color: var(--theme-text-color); */
}

.position span {
    margin-left: 5px;
}

.splite {
    display: inline-block;
    position: relative;
    z-index: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.splite::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: var(--theme-text-color);
    opacity: .8;
    vertical-align: middle;
}

/*头部*/
.head-wrapper {
    position: fixed;
    z-index: 99;
    width: 100%;
    box-shadow: 0px 1px 1px 0px #D6D6D6;
}

[data-theme="1"] .head-wrapper {
    box-shadow: 0px 1px 1px 0px #333;
}

.head-box, .head-bg {
    position: relative;
    z-index: 9;
    width: 100%;
    line-height: 88px;
}

.head-box {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 190px;
}

.head-box::before, .head-box::after {
    content: '';
    display: block;
    background-color: var(--bg-color-2);
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
}

.head-box::before {
    left: 0;
    width: calc((100vw - 1800px) / 2);
    translate: -100%;
}

.head-box::after {
    right: 0;
    width: calc((100vw - 1800px) / 2 + 460px);
    translate: calc((100vw - 1800px) / 2);
    z-index: 1;
}

.head-bg {
    position: absolute;
    z-index: 0;
    height: 100%;
    background-color: var(--bg-color-2);
    top: 0;
    left: 0;
}

.head-left {
    float: left;
    width: calc(100% - 260px);
    display: flex;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.head-left > * {
    flex-grow: 0;
    flex-shrink: 0;
}

.logo-box {
    color: var(--theme-text-color);
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 240px;
    max-width: 70%;
    background-color: var(--bg-color-2);

}

.logo {
    display: block;
}

.logo-img {
    width: 100%;
    height: 88px;
    background-image: url("../images/logo.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.logo-text {
    display: block;
    font-size: 24px;
    text-align: center;
    color: var(--theme-text-color);
}

.head-nav {
    position: relative;
    z-index: 0;
    flex-shrink: 1;
    width: calc(100% - 240px);
}

.head-nav li {
    width: auto;
    margin-right: 10px;
}

.head-nav li a {
    display: block;
    font-size: 16px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    padding-right: 10px;
}

.head-nav li a > .fa {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.head-nav li.active a, .tab-item.active a {
    color: var(--theme-color);
}

.tab-item a {
    padding-left: 5px;
    padding-right: 5px;
}

.head-nav li.active a::after, .tab-item.active a::after {
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: 3px;
    border-radius: 3px;
    background-color: var(--theme-color);
    position: absolute;
    left: 10px;
    bottom: 24px;
}

.tab-item.active a::after {
    width: calc(100% - 10px);
    left: 5px;
}

.head-nav .ewave-dropdown-box {
    z-index: 2;
}

.head-nav li .ewave-dropdown-box a {
    display: block;
    margin-left: 0;
    margin-right: 0;
    min-width: 100px;
    color: var(--text-color-1);
    white-space: nowrap;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 36px;
}

.head-nav li .ewave-dropdown-box a:first-child {
    overflow: hidden;
    border-top-left-radius: var(--theme-radius);
    border-top-right-radius: var(--theme-radius);
}

.head-nav li .ewave-dropdown-box a:last-child {
    overflow: hidden;
    border-bottom-left-radius: var(--theme-radius);
    border-bottom-right-radius: var(--theme-radius);
}

.head-nav li .ewave-dropdown-box a::after {
    display: none;
}

.head-nav .ewave-dropdown-box a.current, .head-nav .ewave-dropdown-box a:hover {
    background-color: var(--theme-color-1);
    color: var(--theme-text-color);
}

.head-search {
    width: 230px;
    height: 88px;
    float: right;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 10px;
    flex-shrink: 0;
    flex-grow: 0;



}

.head-search form {
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
}

.head-search input {
    display: block;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: var(--bg-color-3);
    color: var(--text-color-1);
    padding-left: 95px;
    padding-right: 60px;
}


.ewave-search-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    text-align: center;
    width: 85px;
    height: 100%;
    line-height: 40px;
}

.ewave-search-dropdown-text, .ewave-search-dropdown .fa {
}

.ewave-search-dropdown .ewave-dropdown-box {
    width: 85px;
}

.ewave-search-dropdown .ewave-dropdown-box li a {
    display: block;
}

.ewave-search-dropdown .ewave-dropdown-box li:hover {
    background-color: var(--theme-color-2);
}

.head-search button {
    background: none;
    border: none;
    outline: none;
    height: 100%;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: .6;
    color: var(--text-color-1);
}

.head-search-wrapper {
    width: calc(100% - 200px);
    float: left;
}


.head-right {
    float: right;
    padding-right: 10px;
    position: absolute;
    top: 9px;
    right: 0;
    z-index: 2;
    background-color: var(--bg-color-2);
    padding-left: 10px;

}

.head-right-item {
    margin-right: 15px;
    float: right;
    text-align: center;
    width: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}


.head-right-item.ewave-user-logged {
    width: 50px;
}


.head-menu-switch a {
    display: block;
}

.head-right-item-icon {
    display: block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.head-right-item-text {
    height: 20px;
    line-height: 20px;
    display: block;
    margin-left: 0;
    font-size: 12px;
    margin-top: 2px;
}

.ewave-history-text > span span {
    display: block;
    margin-left: 0;
}

.ewave-history-text > span span:first-child {
    display: none;
}

.ewave-user-info {
    position: relative;
    z-index: 0;
    display: block;
}

.ewave-user-info::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 50%;
    top: -1px;
    left: -1px;
    border: 1px solid var(--theme-color);
    opacity: .1;
}

.ewave-user-info:hover::after {
    opacity: .5;
}

.ewave-user-avatar {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    opacity: .95;
}

.ewave-user-name {
    display: none;
}

@media (max-width: 1950px) {
    .ewave-history-box {
        transform: translateX(calc(-50% - 70px));
    }

    .ewave-dropdown-box::before {
        left: calc(50% + 70px);
    }
}

.ewave-history-box li.ewave-history-head .fa, .ewave-history-box li::before {
    background-color: var(--bg-color-3);
}

.ewave-history-box li::after {
    background-color: var(--bg-color-2);
}

.ewave-history-box li a {
    border-top-color: var(--bg-color-2);
}

.ewave-history-box ul li.ewave-history-head:hover, .ewave-history-box ul li.ewave-history-foot:hover {
    background-color: transparent;
}

.ewave-history-box li:not(.ewave-history-head):not(.ewave-history-foot):hover::before {
    border-color: var(--theme-text-color);
}

.ewave-history-box li:not(.ewave-history-head):not(.ewave-history-foot):hover a {
    border-color: var(--theme-color);
}

.ewave-history-box li:not(.ewave-history-head):not(.ewave-history-foot) a small {
    color: var(--text-color-2);
}

.ewave-history-box li:not(.ewave-history-head):not(.ewave-history-foot):hover a small {
    color: var(--theme-text-color);
}

.ewave-history-box li:not(.ewave-history-head):not(.ewave-history-foot):hover::after {
    background-color: transparent;
}

.ewave-history-box ul li.ewave-history-head:hover a {
    color: var(--theme-color);
}

.ewave-history-box li.ewave-history-foot a {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

.ewave-history-box li.ewave-history-foot a:hover {
    background-color: var(--theme-color-2);
}

.skin-switch .dark, [data-theme="1"] .skin-switch .light {
    display: block;
}

.skin-switch .light, [data-theme="1"] .skin-switch .dark {
    display: none;
}

.head-placeholder {
    height: 70px;
    margin-bottom: var(--theme-gap);
}

.ewave-offcanvas-modal {
    z-index: 9998;
}

.ewave-offcanvas-content {
    z-index: 9999;
}


main {
    flex: 1;
}

main.vertical-middle {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-section {
    padding-top: var(--theme-gap);
    padding-bottom: var(--theme-gap);
}

.top-section {
    margin-top: calc(var(--theme-gap) * -1);
}

.bg-item {
    background-color: var(--bg-color-2);
    /* box-shadow: inset 1.5px 1.5px 1px 0 rgb(255, 255, 255), inset -1px -1px 1px 0 rgba(0, 0, 0, .15), .444584px .444584px .628737px -1px rgba(0, 0, 0, .26), 1.21072px 1.21072px 1.71222px -1.5px rgba(0, 0, 0, .247), 2.5px 2.5px 3.75px -2.5px rgba(0, 0, 0, .23), 6px 6px 8px -3px rgba(0, 0, 0, .2), 10px 10px 22px -3px rgba(0, 0, 0, .06), -.5px -.5px 0 0 rgb(0 0 0 / 5%);
    background: var(--bg-color-2); */
}

/* [data-theme="1"] .bg-item{
    box-shadow: inset 1.5px 1.5px 1px 0 var(--bg-color-2), inset -1px -1px 1px 0 rgba(0, 0, 0, .15), .444584px .444584px .628737px -1px rgba(0, 0, 0, .26), 1.21072px 1.21072px 1.71222px -1.5px rgba(0, 0, 0, .247), 2.5px 2.5px 3.75px -2.5px rgba(0, 0, 0, .23), 6px 6px 8px -3px rgba(0, 0, 0, .2), 10px 10px 22px -3px rgba(0, 0, 0, .06), -.5px -.5px 0 0 rgb(0 0 0 / 5%);
} */

.bg-item:hover {
    box-shadow: var(--theme-shadow);
}


/*轮播*/


.slide {
    overflow: hidden;
    position: relative;
}

.slide-item {
    position: relative;
}

.slide-item-link {
    display: block;
    position: relative;
    z-index: 0;
}

.slide-item-pic {
    padding-bottom: 40%;
    border-radius: var(--theme-radius-2);
}

.slide-item-info {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .5));
    border-radius: 0 0 var(--theme-radius-2) var(--theme-radius-2);
    padding-left: 40px;
    padding-right: 140px;
    padding-bottom: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slide-item-title {
    font-size: 30px;
    margin-bottom: 10px;
}

.slide-item-desc {
    line-height: 24px;
    margin-bottom: 10px;
}

.slide-item-foot {
    padding-right: 120px;
    display: flex;
    align-items: center;
}

.slide-item-foot > * {
    float: left;
    flex-shrink: 0;
    flex-grow: 0;
}

.slide-item-actor {
    max-width: calc(75% - 140px);
}

.slide-item-date {
    max-width: 25%;
}

.slide-item-star {
    width: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-item-star .ewave-star-wrapper .ewave-star-item {
    font-size: 18px;
}

.slide-item-star .ewave-star-wrapper .ewave-star-item + .ewave-star-item {
    margin-left: 5px;
}

.slide-item-star .ewave-star-score {
    font-size: 16px;
}

.slide .swiper-pagination {
    text-align: right;
    padding-right: 20px;
    bottom: 17px;
    left: auto;
    right: 0;
    width: auto;
}

.slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    opacity: .7;
}

.slide .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--theme-color);
    opacity: 1;
}


/*box*/
.box-head {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-head-block {
    display: block;
    overflow: hidden;
}

.box-head-title {
    font-size: 20px;
    float: left;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    line-height: 40px;
}

.box-head-block .box-head-title {
    line-height: 40px;
}

.box-head-title::after {
    content: '';
    display: block;
    height: 100%;
    width: 4px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: var(--theme-radius);
    background-color: var(--theme-color);

}


.box-head-title a {
    display: block;
    position: relative;
    z-index: 1;
}

.box-head-title .fa {
    display: inline-block;
    line-height: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-right: 5px;
}

.box-head-title span {
    position: relative;
    z-index: 1;
}

.box-head-title small {
    margin-left: 8px;
    color: var(--text-color-1);
}


.box-head-title .search-wd {
    color: var(--theme-color);
    margin-left: 10px;
}


.box-head-more {
    float: right;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    display: block;
    background-color: var(--bg-color-3);
    padding: 0 5px;
    border-radius: var(--theme-radius);
}

.box-head-block .box-head-more {
    margin-top: 8px;
}


.box-head-more:hover {
    background-color: var(--theme-color);
}

.box-head-type {
    float: right;
    margin-right: 15px;
    overflow: hidden;
    max-width: calc(100% - 250px);
}

.box-head-type li {
    width: auto;
}

.box-head-type a {
    display: block;
    line-height: 40px;
}

.box-head-type a::before {
    content: '/';
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    color: var(--text-color-1);
}

.box-head-type li:first-child a::before {
    display: none;
}


/* 首页演员 */


.index-actor-item {
    padding-left: var(--theme-padding);
    padding-right: var(--theme-padding);

    border-radius: var(--theme-radius-2);
}

.index-actor-box {
    display: flex;
    align-items: flex-start;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--bg-color-2);
}

[data-theme="1"] .index-actor-box {
    border-bottom-style: dashed;
}

.index-actor-cover {
    width: 25%;
}

.index-actor-cover .ewave-img-wrapper {
    padding-bottom: 100%;
    border-radius: 50%;
}

.index-actor-info {
    width: 75%;
    padding-left: 25px;
    font-size: 14px;

}

.index-actor-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;

}

.index-actor-title span {
    margin-left: 10px;
}

.index-actor-info p {
    opacity: .8;
}

.index-actor-info p + p {
    margin-top: 8px;
}

.index-actor-info {
}

.index-actor-vod {
    padding-top: 25px;
    padding-bottom: 25px;
}

.index-actor-vod h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}


.index-actor-vod {
    margin-bottom: 10px;
    position: relative;
    z-index: 0;
}

.index-actor-vod-cover-list {
    margin-bottom: 15px;

}

.index-actor-vod-cover {
    transition-property: z-index, transform;
    transition-duration: .1s;
    transform-style: preserve-3d;
    transform-origin: center bottom;
    order: var(--card-item-index);
}

.index-actor-vod-cover .ewave-img-wrapper {
    border-radius: var(--theme-radius-2);
}

.index-actor-vod-cover.order-0 {
    --card-item-index: 0;

    position: relative;
}

.index-actor-vod-cover.order-1 {
    --card-item-index: 1;
}

.index-actor-vod-cover.order-2 {
    --card-item-index: 2;
}

.index-actor-vod-cover.order-3 {
    --card-item-index: 3;
}

.index-actor-vod-cover.order-4 {
    --card-item-index: 4;
}

.index-actor-vod-cover.order-5 {
    --card-item-index: 5;
}


.index-actor-vod-cover.order-0 a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.index-actor-vod-info {
    display: none;
    padding-top:
}

.index-actor-vod-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.index-actor-vod-desc {
    font-size: 13px;
    height: 48px;
    line-height: 16px;
    opacity: .8;
    margin-bottom: 10px;
}

.index-actor-vod-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.index-actor-vod-star {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    flex-shrink: 0;
}

.index-actor-vod-star .ewave-star-wrapper .ewave-star-item {
    font-size: 14px;
}


/* vod-item */
.vod-item {
    margin-bottom: 15px;
}


.vod-item-cover {
    display: block;
    position: relative;
    z-index: 0;

}

.vod-item-cover .ewave-img-wrapper {
    border-radius: var(--theme-radius-2);
}

.vod-item-title {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
}

.vod-item-title a {
    display: block;
}

.vod-item-info {
    padding: 10px 0;
}

.vod-item-actor {
    opacity: .8;

}

.vod-item-actor.text-row-2 {
    height: 40px;
}

.vod-item-desc {
    font-size: 13px;
    line-height: 20px;
    height: 40px;
    opacity: .8;
    word-break: break-all;
    margin-bottom: 10px;
}

.vod-item-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vod-item-play {
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: var(--theme-text-color);
}

.vod-item-play:hover {
    color: var(--theme-text-color);
}

.vod-item-star {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.vod-item-star .ewave-star-wrapper .ewave-star-item {
    font-size: 18px;
    color: var(--theme-color-2);
}

.vod-item-2 {
    background-color: var(--bg-color-2);
    border-radius: var(--theme-radius-2);
    margin-bottom: 25px;
}

.vod-item-2 .vod-item-cover::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

[data-theme="1"] .vod-item-2 .vod-item-cover::after {
    background-image: linear-gradient(to bottom, rgba(37, 37, 43, 0), rgba(37, 37, 43, 1));
}


.vod-item-2 .vod-item-cover .ewave-img-wrapper {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.vod-item-2 .vod-item-info {
    padding-left: var(--theme-padding);
    padding-right: var(--theme-padding);
}

.vod-item-2 .vod-item-actor {
    margin-bottom: 5px;
}


/* 文章列表 */


.art-item, .art-item2, .search-item {
    margin-bottom: 15px;
}

.art-item {
    display: flex;
}

.art-item-cover {

    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 25%;
    flex-grow: 0;
    flex-shrink: 0;
}

.art-item-cover .ewave-img-wrapper {
    padding-bottom: 100%;
    border-radius: var(--theme-radius-2);
}

.art-list-small .art-item-cover .ewave-img-wrapper {
    padding-bottom: 50%;
}

.art-list-small .art-item + .art-item {
    border-top: 1px solid var(--bg-color-1);
    padding-top: 15px;
}

.art-item-info {
    width: 75%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.art-item-title {

    font-size: 18px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.art-item-title a:hover {
    color: var(--theme-color);
}

.art-item-time {
    opacity: .8;
}

.art-item-time span {
    float: left;
}

.art-item-time span + span {
    float: right;
}

.art-item-desc {
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}


/* 首页专题 */

.topic-item {
    border-radius: var(--theme-radius-2);
    overflow: hidden;
}

.topic-item-cover {
    position: relative;
    z-index: 0;
}

.topic-item-cover .ewave-img-wrapper {
    padding-bottom: 25%;
}

.topic-item-info {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(to left, rgba(0, 101, 209, 0) 0%, #45526F 100%);
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.topic-item-title a {
    font-size: 22px;
    color: #fff;
}

.topic-item-num {
    font-size: 16px;
    color: #ebebeb;
}

.topic-item-num * {
    font-style: normal;
}

.topic-item-num > * + * {
    margin-left: 5px;
}

.topic-item-tab {

    float: left;

}

.topic-item-tab + .topic-item-tab {
    margin-left: 10px;
}

.topic-item-tab a {
    display: block;
    width: 70px;
    line-height: 24px;
    border-radius: 12px;
    background-color: var(--bg-color-2);
    text-align: center;
    font-size: 12px;
}

.topic-item-tab.active a {
    background-color: var(--theme-color);
    color: #fff;
}

.topic-data-list {
    padding: 20px;
}


.topic-vod-list ul {
}

.topic-vod-item {
    width: 40%;
}

.topic-vod-item .ewave-img-wrapper {
    border-radius: var(--theme-radius-2);
}


.topic-item .art-item-cover .ewave-img-wrapper {
    padding-bottom: 80%;
}

.topic-item-foot {
    border-top: 1px solid var(--bg-color-1);
}


.topic-item-foot a {
    display: block;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}


/*排行榜*/
.ranking-box {
    position: relative;
    z-index: 0;
    background-color: var(--bg-color-2);
}

.ranking-box:hover {
    box-shadow: var(--theme-shadow);
}

.layout-box .ranking-box:hover {
    box-shadow: none;
}

.ranking-box .box-head {
    position: relative;
    z-index: 1;
}

.ranking-box .box-head-title {
    height: 40px;
    line-height: 40px;
    float: none;
}

.ranking-box .box-head::before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 60px);
    height: 100%;
    left: 0;
    top: 0;
}

.ranking-box .box-head::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
}

.ranking-box .box-head-title::before, .ranking-box .box-head-title::after {
    display: none;
}

.ranking-box .box-head-title .fa, .ranking-box .box-head-title span {
    color: var(--text-color-1);
}

.ranking-box .box-head-title .fa {
    margin-right: 0;
}

.ranking-item {
    position: relative;
    z-index: 0;
    height: 80px;
}

.ranking-item + .ranking-item {
    border-top: 1px solid var(--bg-color-1)
}

.ranking-item-num, .new-item-num {
    font-style: normal;
    display: block;
    background-color: var(--bg-color-3);
    position: absolute;
    left: 10px;
    top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--text-color-1);
    font-size: 30px;
    transition: all .3s ease;
    border-radius: var(--theme-radius-2) 0 var(--theme-radius-2) 0;
}

.ranking-item:nth-child(1) .ranking-item-num, .new-item:nth-child(1) .new-item-num {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

.ranking-item:nth-child(2) .ranking-item-num, .new-item:nth-child(2) .new-item-num {
    background-color: var(--theme-color-2);
    color: var(--theme-text-color);
}

.ranking-item:nth-child(3) .ranking-item-num, .new-item:nth-child(3) .new-item-num {
    background-color: var(--theme-color-3);
    color: var(--theme-text-color);
}

.ranking-item:hover .ranking-item-num, .new-item:hover .new-item-num {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

.ranking-item-title {
    position: absolute;
    width: calc(100% - 50px);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 30px;
}

.ranking-item-time {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ranking-item-pic {
    height: auto;
    padding: 10px;
}

.ranking-item-cover {
    display: block;
    width: 27%;
    float: left;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.ranking-item-info {
    width: calc(73% - 10px);
    float: right;
}

.ranking-item-info h4 {
    margin-bottom: 10px;
}

.ranking-item-info p {
    line-height: 22px;
    word-break: break-all;
}

.ranking-item-info p + p {
}

.vod-ranking-list .ranking-item {
    height: 50px;
}

.vod-ranking-list .ranking-item-num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    top: 10px;
}

.vod-ranking-list .ranking-item-title {
    width: calc(100% - 40px);
}

.vod-ranking-list .ranking-item-pic {
    height: auto;
    position: relative;
    z-index: 0;
}

.vod-ranking-list .ranking-item-pic .ranking-item-num {
    top: auto;
    left: 0px;
    bottom: 0px;
    border-radius: var(--theme-radius);
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.new-item {
    display: flex;
    align-items: center;
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
}

.new-item:nth-child(odd) {
    background-color: var(--bg-color-2);
}

.new-item > * {
    flex-grow: 0;
    flex-shrink: 0;
}

.new-item-num {
    top: 0px;
    left: 0px;
}

.new-item-cover {
    position: relative;
    z-index: 0;
    width: 100px;
}

.new-item-cover .ewave-img-wrapper {
    display: block;
    border-radius: var(--theme-radius-2);
}

.new-item-name, .new-item-type, .new-item-year, .new-item-desc, .new-item-time {
    padding-left: 15px;
    opacity: .8;
}

.new-item-name {
    width: 200px;
    opacity: 1;
}

.new-item-name a {
    font-size: 16px;
}

.new-item-name span {
    opacity: .8;
    margin-top: 10px;
}

.new-item-type {
    width: 90px;
}

.new-item-year {
    width: 170px;
}

.new-item-desc {
    flex-grow: 1;
    flex-shrink: 1;
}

.new-item-time {
    width: 100px;
    text-align: right;
}

.new-item-time span {
    display: block;
    line-height: 24px;
}


/* text-list */

.text-list {
    border-top: 1px solid var(--bg-color-1);
    margin-top: 5px;
    padding-top: 5px;
}

.text-item {
    padding-right: 20px;
    position: relative;
    z-index: 0;
    line-height: 36px;
    display: block;
}

.text-item-title {
}

.text-item-more {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    font-size: 16px;
    text-align: right;
}


.link-list {
    padding: 20px 0 10px;
}

.link-item {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

/*筛选*/
.filter-box .box-head-title {
    line-height: 30px;
}

.filter-selected-list {
    float: left;
    margin-left: 30px;
}

.filter-selected-list li {
    text-align: center;
    float: left;
    margin-right: 10px;
}

.filter-selected-list li a {
    display: block;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: var(--theme-radius);
    line-height: 28px;
    height: 30px;
}

.filter-selected-list li a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.filter-more:hover .fa {
    animation: fa-spin 2s infinite linear;
}

.filter-content {
    position: relative;
    z-index: 0;
}

.filter-content dl {
    padding-top: 5px;
    padding-bottom: 5px;
}

.filter-content dt {
    font-size: 16px;
    width: 50px;
    line-height: 30px;
    float: left;
    font-weight: normal;
}

.filter-content dt .fa {
    margin-left: 5px;
}

.filter-content dd {
    width: calc(100% - 50px);
    float: left;
    overflow-x: hidden;
}

.filter-content dd a {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 5px;
    line-height: 30px;
    width: auto;
}

.filter-content dd a.active {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
    border-radius: var(--theme-radius);
}

.tab-item {
    float: left;
    position: relative;
    z-index: 0;
    width: auto;
}

.tab-item a {
    display: block;
    font-size: 16px;
    position: relative;
    line-height: 40px;
}

.tab-item.active a {
    color: var(--theme-color);
    font-weight: bold;
}

.tab-item.active a::after {
    bottom: 0;
}

.search-tab {
    float: right;
}

.search-tab .tab-item {
}

.search-tab .tab-item + .tab-item {
    margin-left: 15px;
}

.search-tab .tab-item .fa {
    margin-right: 5px;
}

.search-tab .tab-item.active a::after {
}

.search-item {
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
    display: flex;
}

.search-item > * {
    flex-grow: 0;
    flex-shrink: 0;
}

.search-item + .search-item {
    border-top: 1px solid var(--bg-color-1);
}

.search-item-cover {
    width: 12%;
    display: block;
    position: relative;
    z-index: 0;
    overflow: hidden;

}

.search-item-cover .ewave-img-wrapper {
    border-radius: var(--theme-radius-2);
}

.search-item-info {
    width: 88%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-item-title {
    font-size: 18px;
    line-height: 24px;
}

.search-item-desc li {
    line-height: 20px;
}

.search-item-desc li + li {
    margin-top: 5px;
}

.search-item-btn, .detail-info-btn {
    margin-top: 10px;
}

.search-item-btn a, .detail-info-btn a {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    border-radius: var(--theme-radius);
    padding: 0 15px;
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

.search-item-btn a:hover, .detail-info-btn a:hover {
    background-color: var(--theme-color-2);
    box-shadow: var(--theme-shadow);
}

/* 详情页 */
.detail-info-section {
    margin-top: calc(var(--theme-gap) * -1);
}

.detail-info-btn a + a {
    margin-left: 10px;
}

.detail-info-btn .fav-btn {
    background-color: var(--theme-color-4);
    color: var(--theme-text-color);
}

.detail-box {
    position: relative;
    z-index: 0;
    overflow: hidden;
    /* margin-top: calc(var(--theme-gap)*-1); */
    padding-top: 10px;
    padding-bottom: 10px;
}


.detail-box::after, .detail-box-bg {
    content: '';
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.detail-box::after {
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
}

.detail-container {
    position: relative;
    z-index: 2;
}

.detail-wrapper {
    display: flex;

}

.detail-wrapper > * {
    flex-grow: 0;
    flex-shrink: 0;
}

.detail-cover {
    width: 16%;
    overflow: hidden;


}

.detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--theme-radius-2);
}

.detail-info {
    width: 84%;
    padding-left: calc(var(--theme-padding) * 2);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.detail-info-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-info-title, .detail-info-list li, .detail-info-title, .detail-info-list li a:not(:hover) {
    /* color: #fff; */
}

.detail-info-title {
    font-size: 20px;
    line-height: 30px;
    max-width: calc(100% - 370px);
    flex-grow: 0;
    flex-shrink: 0;
}

.detail-info-list em {
    font-style: normal;
}

.detail-info-list li {
    line-height: 28px;
}

.detail-info-list li a {
    display: inline-block;
}

.detail-info-list li a + a {
    margin-left: 5px;
}

.detail-info-list li .fa, .detail-info-list li span {
}

.detail-desc-more {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    position: absolute;
    bottom: 0;
    right: var(--theme-padding);
    background-color: var(--bg-color-1);
}

.detail-star {

    font-size: 16px;
    overflow: hidden;
    float: left;
    clear: both;
    width: 370px;
    max-width: 100%;
    display: flex;
    width: 180px;
}

.star-count-box, .ewave-star-box .ewave-star-wrapper, .ewave-star-box .ewave-star-text, .ewave-star-box .ewave-star-score {
    height: 36px;
    line-height: 36px;
    padding-left: 10px;
    padding-right: 10px;
    float: none;
}

.star-count-box {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
    border-radius: var(--theme-radius) 0 0 var(--theme-radius);
    display: none;
}

.ewave-star-box .ewave-star-wrapper {
    border-top: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
    line-height: 34px;
    border: none;
    line-height: 34px;
    padding-left: 0;
}

.ewave-star-wrapper .ewave-star-item {
    color: var(--theme-color);
}

.ewave-star-box .ewave-star-text {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
    display: none;
}

.ewave-star-box .ewave-star-score {
    border: 2px solid var(--theme-color);
    border-radius: 0 var(--theme-radius) var(--theme-radius) 0;
    color: var(--theme-color);
    border-left: none;
    line-height: 32px;
    font-weight: bold;
    border: none;
    line-height: 36px;
    padding-right: 0;
}

.player-box-section {
    margin-top: calc(var(--theme-gap) * -1);
}

.vod-player-right .detail-star, .vod-player-right .ewave-star-box .ewave-star-text {
    font-size: 14px;
}

.vod-player-right .ewave-star-wrapper .ewave-star-item, .vod-player-right .ewave-star-box .ewave-star-score {
    font-size: 20px;
}

.vod-player-right .ewave-star-box .ewave-star-score {
    color: var(--theme-color);
}

.vod-player-right .detail-star {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    float: none;
}

.vod-player-right .detail-star .ewave-star-wrapper {
    flex: 1;
    text-align: center;
}

.vod-player-right .hidden-xs {
    display: none;
}

.detail-intro {
    margin-top: 10px;
}

.detail-intro.ewave-collapse:not(.ewave-collapse-xs):not(.ewave-collapse-sm):not(.ewave-collapse-md):not(.ewave-collapse-lg) .ewave-collapse-content:not(.active) {
    height: 48px;
    max-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2
}

.detail-intro-text {
    line-height: 24px;
}

/*播放列表*/
.playlist-tab-box {
    float: left;
    overflow: hidden;
    width: calc(100% - 220px);
}

.playlist-tab-box .tab-item + .tab-item {
    margin-left: 10px;
}

.episode-box {
}

.episode-box li {
    margin-bottom: 10px;
}

.episode-box li a {

    background-image: none;
}

.episode-box li a:not(.bg-item) {
    background-color: var(--bg-color-3);
}

.episode-box li.active a, .episode-box li a:hover, .episode-box li.active a.bg-item, .episode-box li a.bg-item:hover {
    background-color: var(--theme-color);
    background-image: none;
    color: var(--theme-text-color);
}

.ewave-playlist-sort-content, .ewave-downlist-sort-content {
    padding-top: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 270px;
    padding-right: 5px;
}

.ewave-downlist-checkall {
    background-color: var(--theme-color);
}

.ewave-downlist-btn.ewave-downlist-download {
    background-color: var(--theme-color-4);
}

.ewave-downlist-btn.ewave-copy, .ewave-downlist-btn.ewave-downlist-copyall {
    background-color: var(--theme-color-2);
}

.detail-desc-content {
    line-height: 1.6;
}

.vod-list-related {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.vod-list-related .vod-item-slide {
    text-align: center;
}


/*参演明星*/
.detail-actor-box {
    padding-top: 10px;
}

.detail-actor-tab {
    padding-bottom: 10px;
    overflow: hidden;
}

.detail-actor-tab li {
    width: auto;
    margin-right: 15px;
}

.detail-actor-tab li + li {
}

.detail-actor-tab li:last-child {
    margin-right: 0;
}

.detail-actor-tab-item {
    height: 60px;
    line-height: 60px;
    border-radius: var(--theme-radius);
    /* background-color: var(--bg-color-3); */
    position: relative;
    z-index: 0;
    padding-left: 60px;
    padding-right: 20px;
    cursor: pointer;
    font-size: 16px;
}

.detail-actor-tab-item.no-actor {
    padding-left: 20px;
    padding-right: 20px;
}

.active .detail-actor-tab-item {
    color: #fff;
}

.active .detail-actor-tab-item::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(45deg);
    border-radius: 0;
}

.active .detail-actor-tab-item, .active .detail-actor-tab-item::after {
    background-color: var(--theme-color) !important;
}

.detail-actor-tab-cover {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: var(--theme-radius);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.ewave-gbook-form {
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
}

/*评论*/
.ewave-comment {

    border-radius: var(--theme-radius-2);
}

.ewave-comment-form, .ewave-comment-item-list {
    padding-left: 0;
    padding-right: 0;
}

.ewave-comment-form, .ewave-comment-item {
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
}

.ewave-comment-head {
    border-color: var(--bg-color-1);
}

.ewave-comment-item + .ewave-comment-item {
    margin-top: 10px;
}

.ewave-comment-bar {
    display: none !important;
}

.ewave-comment-reply-box .ewave-comment-item-list {
    border-radius: var(--theme-radius-2) !important;
}

.ewave-comment-bar, .ewave-comment-reply-box .ewave-comment-item-list, .ewave-comment-item .ewave-comment-bar {
    background-color: var(--bg-color-1);
}

.ewave-comment-item .ewave-comment-reply-box .ewave-comment-head, .ewave-comment-reply-box .ewave-comment-item:not(:last-child) {
    border-color: var(--bg-color-2);
}

.ewave-comment-reply-box .ewave-comment-item:not(:last-child)::after {
    background-color: var(--bg-color-1);
}

.ewave-comment-item .ewave-comment-foot a:not(:hover) {
    color: var(--text-color-1);
}

/*播放*/
.player-wrapper {
    margin-top: calc(var(--theme-gap) * -1);
    padding-top: var(--theme-padding);
    padding-bottom: var(--theme-padding);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.player-container {
    position: relative;
    z-index: 2;
}

.player-tips {
    padding: 10px 20px;
    width: 100%;
    z-index: 20;
    line-height: 30px;
    position: relative;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center
}

.player-tips .fa {
    font-size: 20px;
    font-weight: normal;
}

.player-tips .player-tips-title {
    padding: 0 15px;
    font-size: 15px;
    position: relative;
    max-width: 100%;
    text-align: center;
}

.vod-player {
    position: relative;
    z-index: 1;
}

.vod-player-left {
    width: calc(100% - 310px);
    position: relative;
    z-index: 1;
}

.vod-player-left .full-btn {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 40px;
    line-height: 40px;
    top: 40%;
    right: -20px;
    background-color: var(--theme-color);
    color: var(--theme-text-color);
    border-radius: var(--theme-radius) 100px 100px 0;
    cursor: pointer;
    text-align: center;
    opacity: .8;
}

.vod-player-left .full-btn i {
    font-size: 16px;
}

.vod-player-left .full-btn:hover {
    opacity: 1;
}

.vod-player.ewave-player-full.active .vod-player-left {
    width: 100%;
}

.vod-player.ewave-player-full.active .vod-player-left .full-btn i {
    transform: rotate(180deg);
    display: inline-block;
}

.vod-player.ewave-player-full.active .vod-player-right {
    display: none;
}

.vod-player-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    width: 310px;
    padding: 10px;
    background-color: var(--bg-color-2);
}

.player-vod-item {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.player-vod-cover {
    display: block;
    width: 30%;
    float: left;
    border-radius: var(--theme-radius);
    overflow: hidden;
}

.player-vod-info {
    width: calc(70% - 10px);
    float: right;
}

.player-vod-info h1 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.player-vod-info .text {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 5px;
}

.player-vod-info .ewave-dropdown-box {
    width: 290px;
    right: 0;
    left: auto;
    transform: translateX(0);
    padding: 10px;
    cursor: auto;
}

.player-vod-info .ewave-dropdown-box .fa {
    margin-right: 5px;
}

.player-vod-info .ewave-dropdown-box a + a {
    margin-left: 3px;
}

.vod-player-right .vod-wrapper {
    height: calc(100% - 260px);
    overflow: hidden;
    overflow-y: auto
}

.vod-player-right .qrcode-box {
    display: block;
    position: relative;
    background-color: var(--bg-color-2);
    border-radius: var(--theme-radius);
    padding: 6px 0;
    height: 70px;
    margin: 15px 0;
}

.vod-player-right .qrcode-box .ewave-qrcode {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: var(--theme-radius);
    left: 6px;
    padding: 2px;
    background-color: #fff;
}

.vod-player-right .qrcode-box .ewave-qrcode canvas {
    width: 100%;
    height: 100%;
}

.vod-player-right .qrcode-box .info {
    float: left;
    margin-left: 80px;
}

.vod-player-right .qrcode-box .info h3 {
    height: 22px;
    line-height: 22px;
    font-size: 16px;
    margin: 5px 0;
    color: var(--text-color-1)
}

.vod-player-right .qrcode-box .info p {
    font-size: 12px;
    line-height: 17px;
    height: 17px;
    color: var(--text-color-1)
}

.vod-player-right .vod-wrapper ul {
    display: block;
    width: 100%;
}

.vod-player-right .vod-wrapper li {
    width: 100%;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--bg-color-2);
}

.vod-player-right .vod-wrapper li + li {
    border-top: 1px solid var(--bg-color-1);
}

.vod-player-right .vod-wrapper .pic {
    width: 110px;
    position: relative;
    float: left;
}

.vod-player-right .vod-wrapper .pic .ewave-img-wrapper {
    padding-bottom: 55%;
    border-radius: var(--theme-radius);
}

.vod-player-right .vod-wrapper .info {
    float: right;
    width: 165px
}

.vod-player-right .vod-wrapper .name {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.vod-player-right .vod-wrapper .actor {
    padding-top: 5px;
    font-size: 12px;
    width: 100%;
}

.vod-player-right .vod-wrapper :not(:hover) .actor {
    color: var(--text-color-2);
}

/*文章*/
.art-box-head {
    display: flex;
}

.art-box-head .box-head-title {
    white-space: nowrap;
    margin-right: 10px;
}

.art-tab {
    overflow: hidden;
    flex: 1;
}

.art-tab .ewave-swiper {
    float: right;
}

.art-tab .tab-item {
    margin-left: 10px;
    float: right;
}

.art-detail-section {
    margin-top: calc(var(--theme-gap) * -1);
}

.art-detail-box {
    padding-top: 20px;
    padding-bottom: 20px;
}

.art-detail-box .position {
    font-size: 16px;
}

.art-info {
    padding-top: 20px;
    /* text-align: center; */
    position: relative;
    z-index: 2;
    /* color: var(--theme-text-color); */
}

.art-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
}

.art-info p {
    line-height: 24px;
}

.art-info p a:not(:hover) {
    /* color: var(--theme-text-color); */
}

.art-detail-content {
    line-height: 1.6;
}

.art-detail-content img {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
}

.art-side-menu {
    width: 100%;
    max-width: none;
}

.art-side-menu .side-menu-nav {
    margin-bottom: 0;
}

.art-side-menu .side-menu-nav:hover {
    box-shadow: var(--theme-shadow);
}

.art-detail-tag {
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

.art-detail-tag li {
    width: auto;
}

.art-detail-tag li + li {
    margin-left: 10px;
}

.art-detail-tag a {
    display: block;
    padding: 6px 15px;
    background-color: var(--bg-color-3);
    color: var(--text-color-3);
    border-radius: var(--theme-radius);
}

.art-detail-tag a:hover {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

/*专题*/
.topic-detail-box {
    height: 150px
}

.topic-detail-box .container {
    position: relative;
    z-index: 2;
    transform: translateY(calc(50% + 20px));
}

.topic-top-box {
    margin-top: -75px;
    position: relative;
    z-index: 1;
}

.topic-detail-cover {
    display: block;
    width: calc(100% + var(--theme-padding) * 2);
    margin-left: calc(var(--theme-padding) * -1);
    margin-right: calc(var(--theme-padding) * -1);
    margin-top: calc(var(--theme-gap) * -1);
    border-radius: var(--theme-radius);
    margin-bottom: 15px;
}

.topic-detail-title {
    font-size: 28px;
    line-height: 40px;
}

.topic-detail-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
}

/*剧情*/
.plot-item {
    display: block;
    padding: var(--theme-padding);
    border-radius: var(--theme-radius-2);
}

.plot-item + .plot-item {
    margin-top: 15px;
}

.plot-item-title {
    font-size: 16px;
    line-height: 40px;
    /* margin-bottom: 5px; */
    padding-left: var(--theme-padding);
    padding-right: var(--theme-padding);
    /* background-color: var(--bg-color-3); */
}

.plot-item-title span {
    margin-right: 5px;
}

.plot-item-title em {
    font-style: normal;
    color: var(--theme-color);
    margin-right: 5px;
}

.plot-item-desc {
    line-height: 20px;
    opacity: .8;
    padding: 0 var(--theme-padding) 0;
    color: var(--text-color-1);
}

.plot-detail-title {
    font-size: 24px;
    line-height: 40px;
    text-align: center;
}

.plot-detail-title em {
    font-style: normal;
    margin-left: 5px;
    margin-right: 5px;
}

.plot-detail-name {
    text-align: center;
    background-color: var(--theme-color-3);
    font-weight: normal;
    margin: 5px calc(var(--theme-padding) * -1) 10px;
    margin-left: 0;
    margin-right: 0;
    padding: 10px var(--theme-padding);
    font-size: 16px;
    color: var(--theme-text-color);
    border-radius: var(--theme-radius);
}

.plot-detail-content {
    line-height: 1.6;
    margin-bottom: 10px;
    overflow: hidden;
}

.plot-detail-content h1, .plot-detail-content h2, .plot-detail-content h3, .plot-detail-content h4, .plot-detail-content h5, .plot-detail-content p {
    margin-bottom: 10px;
}

.plot-detail-content p {
    text-indent: 2em;
}

.plot-detail-content img {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 100%;
}

.plot-detail-foot {
    text-align: center;
}

.plot-detail-foot a {
    display: inline-block;
    background-color: var(--bg-color-1);
    padding: 10px 15px;
    border-radius: var(--theme-radius);
}

.plot-detail-foot a.disabled {
    opacity: .8;
}

.plot-detail-foot a:hover {
    background-color: var(--theme-color);
    color: var(--theme-text-color);
}

/*演员*/
.detail-info-btn .actor-detail-up:not(:hover) {
    background-color: var(--theme-color-3);
}

.actor-detail-tab-item {
    font-size: 16px;
    cursor: pointer;
    width: auto;
}

.actor-detail-tab-item + .actor-detail-tab-item {
    margin-left: 10px;
}

.actor-detail-tab-item .fa {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.actor-detail-tab-item.active .fa, .actor-detail-tab-item:hover .fa {
    color: var(--theme-text-color);
}

.actor-detail-tab-item:not(.active):not(:hover) .fa {
    color: var(--text-color-1);
}

.actor-detail-tab-item::after {
    width: 100%;
    background-color: var(--bg-color-2);
    transition: background-color .3s ease;
}

.actor-detail-tab-item:hover::after, .actor-detail-tab-item.active::after {
    box-shadow: var(--theme-shadow);
}

.actor-detail-tab-item:hover span, .actor-detail-tab-item.active span {
    color: var(--theme-text-color);
}

.actor-detail-tab-item.active::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(45deg);
    border-radius: 0;
    box-shadow: var(--theme-shadow);
}

.actor-detail-tab-item.content.active::after, .actor-detail-tab-item.content:hover::after, .actor-detail-tab-item.content.active::before {
    background-color: var(--theme-color-2);
}

.actor-detail-tab-item.vod.active::after, .actor-detail-tab-item.vod:hover::after, .actor-detail-tab-item.vod.active::before {
    background-color: var(--theme-color-3);
}

.actor-detail-tab-item.art.active::after, .actor-detail-tab-item.art:hover::after, .actor-detail-tab-item.art.active::before {
    background-color: var(--theme-color-4);
}

.actor-content {
    line-height: 1.6;
}

.actor-content h1, .actor-content h2, .actor-content h3, .actor-content h4, .actor-content h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    border-left: 4px solid var(--theme-color-2);
    padding-left: 10px;
}

.actor-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}

/* 底部说明 */
.footer-body {
    background-color: #2a2a31;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #B3B3B3;
    position: relative;
    z-index: 1;
}


.footer-body a:not(:hover) {
    color: #b3b3b3;
    opacity: .8;
}

.footer-link {
    font-size: 14px;
}

.footer-link li {
    display: inline-block;
}

.footer-link li + li {
    margin-left: 10px;
}

.footer-text {
    border-top: 1px solid #484848;
    text-align: center;
    padding: 20px 10px 0;
    line-height: 1.8;
    font-size: 12px;
}

.footer-text a {
    color: var(--text-color-2);
    opacity: 1;
}

.footer-link li a:hover, .footer-text a:hover {
    color: var(--theme-color);
}

.ewave-banner-box {
    background-color: var(--bg-color-2);
    border-radius: var(--theme-radius-2);
    overflow: hidden;
}

.ewave-banner-box img {
}


.ewave-banner-box.float-top, .ewave-banner-box.float-bottom {
    border-radius: 0;
    background-color: #ddd;
    width: 100%;
    z-index: 1;
}

.ewave-banner-box.float-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-radius: var(--theme-radius);
}

.ewave-banner-box.float-bottom .ewave-banner-close {
    top: 5px;
    left: 5px;
    transform: translate(0);
}

.ewave-banner-box.float-bottom .ewave-banner-text {
    color: var(--text-color-1);
}

[data-theme="1"] .ewave-banner-box.float-top, [data-theme="1"] .ewave-banner-box.float-bottom {
    background-color: #666;
}

/* 返回顶部 */
.fixed {
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 999;
}

.fixed-item {
    width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    background-color: var(--theme-color);
    box-shadow: var(--theme-shadow);
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
}

.fixed-item .fa {
    color: #fff;
    font-size: 20px;
    width: 40px;
    line-height: 40px;
}

.fixed-item-text {
    color: var(--theme-text-color);
    width: 0;
    max-width: 0;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    transition: max-width .1s ease;
    position: absolute;
    top: 0;
    right: 40px;
    background-color: var(--theme-color);
}

.fixed-item-gbook, .fixed-item-gbook .fixed-item-text {
    background-color: var(--theme-color-2);
}

.fixed-item-backtop, .fixed-item-backtop .fixed-item-text {
    background-color: var(--theme-color);
}

.fixed-item.skin-switch {
    padding-top: 0;
    padding-bottom: 0;
}

.fixed-item.skin-switch span {
    height: 40px;
    line-height: 40px;
}

.ewave-sticky {
    position: static;
    top: auto;
    bottom: auto;
}

.ewave-page {
    margin-top: 15px;
}

.ewave-page li .num, .ewave-page li a {
    background-color: var(--bg-color-2);
    border-color: var(--bg-color-2);
    color: var(--text-color-1);
}


.layout-box .ewave-page li:not(.active):not(:hover) .num, .layout-box .ewave-page li:not(.active):not(:hover) a {
    background-color: var(--bg-color-1);
    border-color: var(--bg-color-1);
    color: var(--text-color-1);
}

.member-container {
    margin-top: 0;
    margin-bottom: var(--theme-gap);
}


.panel {
    border-radius: var(--theme-radius-2);
}

.ewave-jump-msg {
    background-color: var(--bg-color-2);
    border-radius: var(--theme-radius-2);

}

.ewave-jump-msg:hover {
    box-shadow: var(--theme-shadow);
}

.form-control {
    background-color: var(--bg-color-3);
    border-color: var(--bg-color-3);
    color: var(--text-color-3);
}

.form-control[disabled], .form-control[readonly] {
    background-color: var(--bg-color-3);
    opacity: .8;
}

.form-control option {
    background-color: var(--bg-color-3);
    color: var(--text-color-3);
    padding: 5px 0;
}

.form-control, .ewave-comment-reply-box .ewave-comment-item-list, .ewave-page li .num, .ewave-page li a .member-container .btn.member-btn, .member-container .member-right .member-data-delete, .member-container .member-left.style2 .member-left-top, .member-container .member-left.style2 .member-left-nav, .member-container .member-left.style2 .member-left-nav li a, .btn, .episode-box li a, .member-container .member-right .member-page a {
    border-radius: var(--theme-radius);
}

.input-group-btn:last-child > .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.member-container .member-right .member-tab-list li.active::after {
    width: 100%;
    height: 4px;
    border-radius: var(--theme-radius);
}

/*颜色*/
.color1::-webkit-scrollbar-thumb, .color1::-webkit-scrollbar-thumb:active, .color1 ::-webkit-scrollbar-thumb, .color1 ::-webkit-scrollbar-thumb:active, .color1 .index-type-icon, .index-type-icon.color1, .color1 .box-head-title::after, .color1 .vod-item-score, .color1 .filter-selected-list li a:hover, .color1 .tab-item.active a::after, .color1 .search-item-btn a:not(:hover), .color1 .ewave-page li:not(.disabled) a:hover, .color1 .ewave-page li.active a, .color1 .ewave-page li.active .num, .color1 .box-head-title.sharp, .color1 .box-head-title.flag, .layout-box.color1 .box-head-title.sharp, .layout-box.color1 .box-head-title.flag, .color1 .star-count-box, .color1 .ewave-star-box .ewave-star-text, .color1 .filter-content dd a.active, .color1 .vod-item-play, .color1 .box-head-more:hover, .color1 .topic-item-tab.active a {
    background-color: var(--theme-color-1);
}

.color2::-webkit-scrollbar-thumb, .color2::-webkit-scrollbar-thumb:active, .color2 ::-webkit-scrollbar-thumb, .color2 ::-webkit-scrollbar-thumb:active, .color2 .index-type-icon, .index-type-icon.color2, .color2 .box-head-title::after, .color2 .vod-item-score, .color2 .filter-selected-list li a:hover, .color2 .tab-item.active a::after, .color2 .search-item-btn a:not(:hover), .color2 .ewave-page li:not(.disabled) a:hover, .color2 .ewave-page li.active a, .color2 .ewave-page li.active .num, .color2 .box-head-title.sharp, .color2 .box-head-title.flag, .layout-box.color2 .box-head-title.sharp, .layout-box.color2 .box-head-title.flag, .color2 .star-count-box, .color2 .ewave-star-box .ewave-star-text, .color2 .filter-content dd a.active, .color2 .vod-item-play, .color2 .box-head-more:hover, .color2 .topic-item-tab.active a {
    background-color: var(--theme-color-2);
}

.color3::-webkit-scrollbar-thumb, .color3::-webkit-scrollbar-thumb:active, .color3 ::-webkit-scrollbar-thumb, .color3 ::-webkit-scrollbar-thumb:active, .color3 .index-type-icon, .index-type-icon.color3, .color3 .box-head-title::after, .color3 .vod-item-score, .color3 .filter-selected-list li a:hover, .color3 .tab-item.active a::after, .color3 .search-item-btn a:not(:hover), .color3 .ewave-page li:not(.disabled) a:hover, .color3 .ewave-page li.active a, .color3 .ewave-page li.active .num, .color3 .box-head-title.sharp, .color3 .box-head-title.flag, .layout-box.color3 .box-head-title.sharp, .layout-box.color3 .box-head-title.flag, .color3 .star-count-box, .color3 .ewave-star-box .ewave-star-text, .color3 .filter-content dd a.active, .color3 .vod-item-play, .color3 .box-head-more:hover, .color3 .topic-item-tab.active a {
    background-color: var(--theme-color-3);
}

.color4::-webkit-scrollbar-thumb, .color4::-webkit-scrollbar-thumb:active, .color4 ::-webkit-scrollbar-thumb, .color4 ::-webkit-scrollbar-thumb:active, .color4 .index-type-icon, .index-type-icon.color4, .color4 .box-head-title::after, .color4 .vod-item-score, .color4 .filter-selected-list li a:hover, .color4 .tab-item.active a::after, .color4 .search-item-btn a:not(:hover), .color4 .ewave-page li:not(.disabled) a:hover, .color4 .ewave-page li.active a, .color4 .ewave-page li.active .num, .color4 .box-head-title.sharp, .color4 .box-head-title.flag, .layout-box.color4 .box-head-title.sharp, .layout-box.color4 .box-head-title.flag, .color4 .star-count-box, .color4 .ewave-star-box .ewave-star-text, .color4 .filter-content dd a.active, .color4 .vod-item-play, .color4 .box-head-more:hover, .color4 .topic-item-tab.active a {
    background-color: var(--theme-color-4);
}

.color0::-webkit-scrollbar-thumb, .color0::-webkit-scrollbar-thumb:active, .color0 ::-webkit-scrollbar-thumb, .color0 ::-webkit-scrollbar-thumb:active, .color0 .index-type-icon, .index-type-icon.color0, .color0 .box-head-title::after, .color0 .vod-item-score, .color0 .filter-selected-list li a:hover, .color0 .tab-item.active a::after, .color0 .search-item-btn a:not(:hover), .color0 .ewave-page li:not(.disabled) a:hover, .color0 .ewave-page li.active a, .color0 .ewave-page li.active .num, .color0 .box-head-title.sharp, .color0 .box-head-title.flag, .layout-box.color0 .box-head-title.sharp, .layout-box.color0 .box-head-title.flag, .color0 .star-count-box, .color0 .ewave-star-box .ewave-star-text, .color0 .filter-content dd a.active, .color0 .vod-item-play, .color0 .box-head-more:hover, .color0 .topic-item-tab.active a {
    background-color: var(--theme-color-4);
}

.color1 .text-color, .color1 a:hover, .color1 .box-head-type a:hover, .color1 .filter-selected-list li a:not(:hover), .color1 .tab-item.active a, .color1 .tab-item a:hover, .color1 .vod-item-title a:hover, .color1 .vod-item-desc a:hover, .color1 .text-list a:hover, .color1 .ewave-star-wrapper .ewave-star-item, .color1 .box-head-title:not(.sharp):not(.flag) .search-wd, .color1 .box-head-title a:hover, .color1 .art-item-title a:hover, .color1 .topic-item-foot a:hover, .color1 .plot-item-title em {
    color: var(--theme-color-1);
}

.color2 .text-color, .color2 a:hover, .color2 .box-head-type a:hover, .color2 .filter-selected-list li a:not(:hover), .color2 .tab-item.active a, .tv .tab-item a:hover, .color2 .vod-item-title a:hover, .color2 .vod-item-desc a:hover, .color2 .text-list a:hover, .color2 .ewave-star-wrapper .ewave-star-item, .color2 .box-head-title:not(.sharp):not(.flag) .search-wd, .color2 .box-head-title a:hover, .color2 .art-item-title a:hover, .color2 .topic-item-foot a:hover, .color2 .plot-item-title em {
    color: var(--theme-color-2);
}

.color3 .text-color, .color3 a:hover, .color3 .box-head-type a:hover, .color3 .filter-selected-list li a:not(:hover), .color3 .tab-item.active a, .color3 .tab-item a:hover, .color3 .vod-item-title a:hover, .color3 .vod-item-desc a:hover, .color3 .text-list a:hover, .color3 .ewave-star-wrapper .ewave-star-item, .color3 .box-head-title:not(.sharp):not(.flag) .search-wd, .color3 .box-head-title a:hover, .color3 .art-item-title a:hover, .color3 .topic-item-foot a:hover, .color3 .plot-item-title em {
    color: var(--theme-color-3);
}


.color4 .text-color, .color4 a:hover, .color4 .box-head-type a:hover, .color4 .filter-selected-list li a:not(:hover), .color4 .tab-item.active a, .color4 .tab-item a:hover, .color4 .vod-item-title a:hover, .color4 .vod-item-desc a:hover, .color4 .text-list a:hover, .color4 .ewave-star-wrapper .ewave-star-item, .color4 .box-head-title:not(.sharp):not(.flag) .search-wd, .color4 .box-head-title a:hover, .color4 .art-item-title a:hover, .color4 .topic-item-foot a:hover, .color4 .plot-item-title em {
    color: var(--theme-color-4);
}

.color0 .text-color, .color0 a:hover, .color0 .box-head-type a:hover, .color0 .filter-selected-list li a:not(:hover), .color0 .tab-item.active a, .color0 .tab-item a:hover, .color0 .vod-item-title a:hover, .color0 .vod-item-desc a:hover, .color0 .text-list a:hover, .color0 .ewave-star-wrapper .ewave-star-item, .color0 .box-head-title:not(.sharp):not(.flag) .search-wd, .color0 .box-head-title a:hover, .color0 .art-item-title a:hover, .color0 .topic-item-foot a:hover, .color0 .plot-item-title em {
    color: var(--theme-color-4);
}

.color1 .box-head-title::before, .color1 .filter-selected-list li a, .color1 .vod-item-score::after, .color1 .box-head-title.flag::after, .color1 .ewave-star-box .ewave-star-wrapper, .color1 .ewave-star-box .ewave-star-score {
    border-color: var(--theme-color-1);
}

.color2 .box-head-title::before, .color2 .filter-selected-list li a, .color2 .vod-item-score::after, .color2 .box-head-title.flag::after, .color2 .ewave-star-box .ewave-star-wrapper, .color2 .ewave-star-box .ewave-star-score {
    border-color: var(--theme-color-2);
}

.color3 .box-head-title::before, .color3 .filter-selected-list li a, .color3 .vod-item-score::after, .color3 .box-head-title.flag::after, .color3 .ewave-star-box .ewave-star-wrapper, .color3 .ewave-star-box .ewave-star-score {
    border-color: var(--theme-color-3);
}


.color4 .box-head-title::before, .color4 .filter-selected-list li a, .color4 .vod-item-score::after, .color4 .box-head-title.flag::after, .color4 .ewave-star-box .ewave-star-wrapper, .color4 .ewave-star-box .ewave-star-score {
    border-color: var(--theme-color-4);
}

.color0 .box-head-title::before, .color0 .filter-selected-list li a, .color0 .vod-item-score::after, .color0 .box-head-title.flag::after, .color0 .ewave-star-box .ewave-star-wrapper, .color0 .ewave-star-box .ewave-star-score {
    border-color: var(--theme-color-4);
}


.box-head-more:hover, .ewave-download-btn:not(.ewave-download-tip):hover, .search-item-btn a:hover, .detail-info-btn a:hover, .topic-item-tab.active a:hover, .vod-item-play:hover, .ewave-submit-btn:hover {
    color: var(--theme-text-color) !important;
}


/*layui*/
.layui-layer {
    border-radius: var(--theme-radius-2);
}

.layui-layer .mini-container {
    padding-top: 15px;
}

.layui-layer-btn a {
    border-radius: var(--theme-radius);
}

[data-theme="1"] .layui-layer {
    background-color: var(--bg-color-3);
    color: var(--text-color-1);
}

[data-theme="1"] .layui-layer a {
    color: var(--text-color-1);
}

[data-theme="1"] .layui-layer a:hover {
    color: var(--theme-color);
}

[data-theme="1"] .layui-layer-title {
    border-bottom-color: var(--bg-color-2);
    margin-bottom: 15px;
    color: var(--text-color-1);
}

[data-theme="1"] .layui-layer .form-control {
    background-color: var(--bg-color-2);
}

[data-theme="1"] .layui-layer-btn1 {
    background-color: var(--bg-color-1);
    border-color: var(--bg-color-1);
}

[data-theme="1"] .ewave-search-dropdown-text {
    color: var(--text-color-1);
}

@media (min-width: 992px) {
    .container {
        transition: all .3s ease;
    }
    .head-search {
        width: 230px;
        margin-right: 28px;

    }

    .head-wrapper.with-fixed-nav {
        transition: width .3s ease;
    }


    .logo-box {
    }

    .logo {
        position: relative;
        z-index: 0;
    }

    .logo::after {
        top: 5px;
        right: 20px;
        height: calc(100% - 10px);
    }

    .fixed-nav {
        transform: translateX(0);
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
        transition: all .3s ease;
    }

    .fixed-nav-item {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }

    .side-menu-nav li.fixed-nav-item {
        padding-left: 0;
        padding-right: 0;
    }

    .side-menu-nav li.fixed-nav-item + li {
        border: none;
    }

    .fixed-nav-item a {
        display: block;
        position: relative;
        padding-left: 30px;
        padding-right: 10px;
    }

    .side-menu-nav li.fixed-nav-item.current::before, .side-menu-nav li.fixed-nav-item.current::after, .side-menu-nav li:hover::after {
        display: none;
    }

    .side-menu-nav li.fixed-nav-item a {
        line-height: 50px;
    }

    .side-menu-nav li.side-menu-parent.fixed-nav-item .ewave-accordion-toggle {
        overflow: visible;
    }

    .side-menu-nav li.fixed-nav-item.ewave-accordion.active .ewave-accordion-content {
        display: none;
    }

    .side-menu-nav li.fixed-nav-item.side-menu-parent .ewave-accordion-toggle a {
        float: none;
    }

    .side-menu-nav li.side-menu-parent.fixed-nav-item .ewave-accordion-toggle > .fa {
        display: none;
    }

    .fixed-nav-icon {
        font-size: 20px;
        margin-right: 5px;
    }

    .fixed-nav-item.active a {
        background-color: var(--theme-color);
        color: var(--theme-text-color) !important;
    }

    .fixed-nav-item.active a::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        left: auto;
        bottom: -10px;
        width: 10px;
        height: 10px;
        border-radius: 0;
        background: none;
        border-top: 10px solid var(--theme-color);
        border-right: 10px solid transparent !important;
    }


    .fixed-item:hover {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .fixed-item:hover .fixed-item-text {
        width: 80px;
        max-width: 80px;
        padding-left: 20px;
        border-radius: 20px 0 0 20px;
    }


    .member-container .member-left, .member-container .member-right {
        top: auto;
    }

    .member-container .member-left.style2 .member-left-top {
        background-image: linear-gradient(45deg, var(--theme-color), var(--theme-color-3));
    }
}

@media (min-width: 1200px) {
    .index-art-1 .art-item, .index-art-2 .art-item {
        flex-direction: column;
        gap: 10px;
    }

    .index-art-1 .art-item-cover, .index-art-1 .art-item-info, .index-art-2 .art-item-cover, .index-art-2 .art-item-info {
        width: 100%;
    }

    .index-art-1 .art-item-info, .index-art-2 .art-item-info {
        padding-left: 0;
        gap: 10px;
    }

    .index-art-1 .art-item-cover .ewave-img-wrapper {
        padding-bottom: 35%;
    }
}


@media (min-width: 1400px) {
    .art-item-desc {
        -webkit-line-clamp: 3;
    }

    .ranking-item-pic:first-child {
        margin-top: 3px;
    }
}

@media (min-width: 1800px) {
}

@media (max-width: 1799.9px) {
    .head-box::before {
        display: none;
    }

    .head-box::after {
        width: 500px;
        translate: 0;
    }
}

@media (max-width: 1399.9px) {
}

@media (max-width: 1399.9px) and (min-width: 1200px) {


    /* .slide .ewave-nav-name .name {} */
    .ranking-item-pic:first-child {
        margin-top: 10px;
    }

    .ranking-item-cover {
        width: 22%;
    }

    .ranking-item-info {
        width: calc(78% - 10px);
    }

    .ranking-item-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 1199.9px) {
    .art-detail-main {
        margin-bottom: var(--theme-gap);
    }

    .art-detail-sticky {
        position: static;
    }

    .index-actor-title {
        margin-bottom: 5px;
    }

    .index-actor-info p + p {
        margin-top: 5px;
    }

    .search-item-cover {
        width: 16%;
    }

    .search-item-info {
        width: 84%;
    }
}

@media (max-width: 1199.9px) and (min-width: 992px) {


    .art-item-desc {
        -webkit-line-clamp: 4;
    }

    .art-list-small .art-item-desc {
        display: none;
    }

    .ranking-item-pic:first-child {
        margin-top: 20px;
    }

    .ranking-item-cover {
        width: 35%;
    }

    .ranking-item-info {
        width: calc(65% - 5px);
    }

    .ranking-item-info h4 {
        font-size: 16px;
    }
}

/*平板及手机*/
@media (max-width: 991.9px) {
    .container {
        width: auto;
    }

    .vertical-middle > .container {
        width: 100%;
    }

    .head-placeholder, .gap {
        margin-bottom: 10px;
    }

    .fixed-nav-swiper {
        height: calc(100% - 80px);
    }

    .fixed-nav-swiper .side-menu-nav {
        max-height: 100%;
        height: 100%;
    }

    .fixed-nav-icon {
        margin-right: 3px;
    }


    .head-box, .head-placeholder {
        line-height: 50px;
    }

    .head-box {
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 50px;
        padding-right: 230px;

    }

    .head-box::after {
        display: none;
    }

    .head-placeholder {
        height: 100px;
    }

    .head-search {
        display: none;
    }

    .head-wrapper.open-search .head-box {
        padding-bottom: 110px;
    }

    .head-wrapper.open-search .head-search {
        display: block;
    }

    .head-left {
        width: 100%;
    }

    .logo-box {
        padding-left: 10px;
        padding-right: 15px;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .logo-box .logo {
        height: 50px;
        padding-top: 4px;
    }

    .logo-img {
        height: 42px;
    }

    .logo-text {
        font-size: 18px;
    }

    .head-nav {
        position: absolute;
        z-index: 0;
        width: 100vw;
        top: 100%;
        background-color: var(--bg-color-2);

    }

    .head-nav li.active a::after {
        bottom: 8px;
    }

    .head-search {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 50px;
        width: 100%;
        padding-right: 10px;
    }


    .head-right {
        margin-right: 0;
        padding-right: 10px;
        top: 0;
    }

    .head-right-item {
        margin-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .head-right-item:first-child {
        margin-right: 0;
    }

    .head-right-item.ewave-user-logged {
        width: 40px;
    }

    .head-right-item-icon {
        font-size: 18px;
        margin-bottom: 0;
    }


    .ewave-user-avatar {
        width: 40px;
        height: 40px;
    }

    .ewave-history-box {
        left: auto;
        right: -85px;
        transform: translateX(0);
    }

    .ewave-history-box::before {
        left: auto;
        right: 95px;
    }


    .slide-item-info {
        padding-left: 20px;
        /* padding-right:20px;
      padding-bottom:30px;
      text-align: center; */
    }

    .slide-item-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .slide .swiper-pagination {
        bottom: 15px;
    }

    .slide .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .slide .swiper-pagination-bullet-active {
        width: 20px;
    }

    .box-head-title {
        font-size: 18px;
    }

    .box-head-title:not(.actor-detail-tab-item) span {
    }

    .ranking-box .box-head-title span {
        color: var(--text-color-1);
    }


    .box-head-title .fa {
        line-height: 18px;
        margin-right: 5px;
    }

    .box-head-more {
    }

    /* .box-head-title .search-wd
    {
      color: var(--theme-text-color) !important;
    } */
    .layui-layer:not(.layui-layer-msg):not(.layui-layer-loading) {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 96%;
        max-width: 400px;
    }

    .layui-layer:not(.layui-layer-msg):not(.layui-layer-loading) .mini-container {
        max-width: 380px;
    }

    .ewave-full-height {
        min-height: calc(100vh - 272px - var(--theme-gap));
    }

    .detail-cover {
        width: 25%;
    }

    .detail-info {
        width: 75%;
    }

    .detail-info-head {
        display: block;
    }

    .detail-info-title {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }

    .detail-star {
        width: 100%;
    }

    .vod-player-left {
        width: 100%;
    }

    .plot-detail-title {
        font-size: 20px;
    }

    .plot-detail-name {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .art-list-small .art-item-cover .ewave-img-wrapper {
        padding-bottom: 70%;
    }

    .art-info {
        text-align: left;
        padding-top: 0;
    }

    .gbook-form-box {
        position: static;
    }

    .new-item-cover {
        width: 15%;
    }

    .new-item-name, .new-item-type, .new-item-year, .new-item-desc, .new-item-time {
        padding-left: 10px;
    }

    .new-item-name {
        width: 50%;
    }

    .new-item-type {
        width: 70px;
    }

    .new-item-time {
        flex-grow: 1;
        flex-shrink: 1;
    }

    .search-item-cover {
        width: 25%;
    }

    .search-item-info {
        width: 75%;
    }
}

@media (max-width: 991.9px) and (min-width: 768px) {
    .art-item-desc {
        -webkit-line-clamp: 4;
    }

    .art-list-small .art-item-desc {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 767.9px) {
    .head-nav li {
        margin-right: 5px;
    }

    .head-nav li a {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 15px;
    }

    .head-nav li.active a {
        font-weight: bold;
    }

    .head-nav li.active a::after {
        width: calc(100% - 10px);
        left: 5px;
        bottom: 8px;
    }

    .vod-item:not(.vod-item-2) .vod-item-title {
        line-height: 24px;
        height: 48px;
        text-align: center;
    }

    .art-box-head {
        display: block;
    }

    .art-tab, .search-tab {
        width: 100%;
    }

    .art-tab .ewave-swiper {
        float: none;
    }

    .art-tab .tab-item {
        margin-left: 0;
        margin-right: 10px;
    }


    .art-item-desc {
        line-height: 20px;

    }

    .art-item-title {
        font-size: 16px;

    }


    .ranking-item {
        height: 50px;
    }

    .ranking-item-num, .new-item-num {
        min-width: auto;
        height: 24px;
        line-height: 24px;
        font-size: 16px;
    }

    .ranking-item-num {
        top: 10px;
    }


    .ranking-item-title {
        width: calc(100% - 40px);
        font-size: 14px;
        line-height: 22px;
    }

    .star-count-box, .ewave-star-box .ewave-star-wrappere, .ewave-star-box .ewave-star-text, .ewave-star-box .ewave-star-score {
        padding-left: 5px;
        padding-right: 5px;
    }

    .playlist-tab-box {
        max-width: 100%;
        width: auto;
    }

    .art-title {
        font-size: 24px;
        line-height: 30px;
    }

    .member-container .member-right .member-data-delete {
        border-radius: 50%;
    }
}

@media (max-width: 767.9px) and (min-width: 576px) {
    .index-actor-vod-star {
        width: 70px;
    }

    .detail-star, .ewave-star-box .ewave-star-text {
        font-size: 16px;
    }

    .ewave-star-wrapper .ewave-star-item, .ewave-star-box .ewave-star-score {
        font-size: 20px;
    }
}

@media (max-width: 575.9px) {


    .index-actor-item {
        padding-left: calc(var(--theme-padding) * 2);
        padding-right: calc(var(--theme-padding) * 2);
    }

    .index-actor-box, .index-actor-vod {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .vod-item-2 .vod-item-info {
        padding-left: 10px;
        padding-right: 10px;
    }

    .actor-list .vod-item-title {
        height: 30px;
        line-height: 30px;
    }

    .vod-item-info {
        padding: 5px;
    }

    .vod-item-status, .vod-item-desc {
        font-size: 12px
    }


    .vod-item-slide .vod-item-title {
        height: auto;
    }

    .box-head-title {
        line-height: 32px !important;
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .box-head-title .fa {
        line-height: 32px;
        width: 20px;
    }

    .actor-content h1, .actor-content h2, .actor-content h3, .actor-content h4, .actor-content h5 {
        font-size: 18px;
    }

    .box-head-more {
    }

    .topic-item-title a {
        font-size: 18px;
    }

    .topic-item-num {
        font-size: 14px;
    }

    .search-item-cover {
        width: 30%;
    }

    .search-item-info {
        width: 70%;
    }

    .detail-star, .ewave-star-box .ewave-star-text {
        font-size: 14px;
    }

    .ewave-star-wrapper .ewave-star-item, .ewave-star-box .ewave-star-score {
        font-size: 18px;
    }

    .tab-item a {
        font-size: 15px;
    }

    .art-item-desc {
        height: 40px;
    }

    .art-item2 .art-item-cover {
        width: 40%;
    }

    .new-item-name {
        width: 40%;
    }

    .detail-cover {
        width: 33%;
    }

    .detail-info {
        width: 67%;
    }

    .playlist-tab-box + .ewave-sort {
        font-size: 16px;
    }

    .player-wrapper {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -10px;
    }

    .player-container {
        padding-left: 0;
        padding-right: 0;
        margin-top: -10px;
    }

    .player-tips {
        padding-left: 10px;
    }

    .player-tips .player-tips-title {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }


    .vod-item-slide .vod-item-title {
        font-size: 14px;
        line-height: 20px;
    }

    .art-title, .topic-detail-title {
        font-size: 20px;
        line-height: 28px;
    }

    .topic-detail-box {
        height: 100px
    }

    .topic-top-box {
        margin-top: -50px;
    }

    .topic-detail-desc {
        font-size: 14px;
        line-height: 21px;
        margin-top: 10px;
    }

    .topic-detail-cover {
        margin-bottom: 10px;
    }

    .detail-actor-tab-item {
        height: 50px;
        line-height: 50px;
        padding-left: 50px;
        padding-right: 10px;
    }

    .detail-actor-tab-cover {
        width: 40px;
        height: 40px;
    }

    .star-count-box, .ewave-star-box .ewave-star-wrapper, .ewave-star-box .ewave-star-text, .ewave-star-box .ewave-star-score {
        height: 30px;
        line-height: 30px;
    }

    .ewave-star-box .ewave-star-wrapper {
        line-height: 28px;
    }

    .ewave-star-box .ewave-star-score {
        font-size: 16px;
        line-height: 26px;
    }

    .search-item-btn a, .detail-info-btn a {
        height: 30px;
        line-height: 30px;
    }
}


/* reset */
/* odd */
.main-section:nth-child(even), .main-section:nth-child(even) .bg-item .form-control, .main-section:nth-child(even) .bg-item .ewave-comment-reply-box .ewave-comment-item-list {
    background-color: var(--bg-color-2);
}

.main-section:nth-child(even) .bg-item {
    background-color: var(--bg-color-3);
}

.main-section:nth-child(even) .bg-item .ewave-comment-head, .main-section:nth-child(even) .bg-item .form-control, .main-section:nth-child(even) .topic-item-foot {
    border-color: var(--bg-color-2);
}

.main-section:nth-child(even) .bg-item .ewave-comment-reply-box .ewave-comment-head, .main-section:nth-child(even) .bg-item .ewave-comment-reply-box .ewave-comment-item:not(:last-child) {
    border-color: var(--bg-color-1);
}

.main-section:nth-child(even) .vod-item-2 .vod-item-cover::after {
    background-image: linear-gradient(to bottom, rgba(246, 246, 246, 0), rgba(246, 246, 246, 1));
}

[data-theme="1"] .main-section:nth-child(even) .vod-item-2 .vod-item-cover::after {
    background-image: linear-gradient(to bottom, rgba(50, 50, 60, 0), rgba(50, 50, 60, 1));
}


/* even */
.main-section:nth-child(odd) .index-actor-box {
    border-color: var(--bg-color-1);
}

.main-section:nth-child(odd) .box-head-more:not(:hover) {
    background-color: var(--bg-color-2);
}

.main-section:nth-child(odd) .art-list-small .art-item + .art-item {
    border-color: var(--bg-color-2);
}
.site-title-box {
    width: 100%;
    background: var(--bg-color-2);
}
.site-h1 { font-size: 12px; color: #999; text-align: center; padding: 6px 0; margin-bottom: 8px; }


.breadcrumb {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.7;
}
.breadcrumb li {
    display: inline;
}
.breadcrumb li + li::before {
    content: " > ";
    padding: 0 5px;
}
@media (max-width: 200px) {
    .player-box-section .breadcrumb {
        padding-bottom: 16px;
    }
}

/* {
  background-color: var(--bg-color-2); 
  border-color: var(--bg-color-2);
}*/


/* {
  background-color: var(--bg-color-2);
}


{
  background-color: var(--bg-color-2);
} */


/* {
  border-top-color: var(--bg-color-2);
} */


/* .main-section:nth-child(even) .art-list-small .art-item + .art-item
{
  border-color: var(--bg-color-2);
} */