@import "../../../admins/assets/fonts/fonts.css";

* {
    font-family: 'UKIJ Tor';
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-weight: normal;
    box-sizing: border-box;
    font-style: normal;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

body {
    background-color: var(--bg_color);
    color: var(--text-color);
    width: 100%;
    overflow-x: hidden;
}

.mlr10 {
    margin-right: 10px;
    margin-left: 10px;
}

.mt10 {
    margin-top: 10px;
}

.h11rem {
    height: 1.6rem;
}

.search {
    display: flex;
    background-color: var(--search-color);
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: .2rem .3rem .1rem .2rem;
    border-radius: .2rem;
}

.search input {
    width: 100%;
    border: none;
    outline: none;
    text-align: right;
    height: .6rem;
    font-size: 0.3rem;
    background-color: var(--search-color);
}

.search i {
    font-size: .3rem;
}

.card {
    background-color: var(--card_color);
    border-radius: .2rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card-header {
    padding: .3rem .26rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: .2rem;
}

.card-title {
    font-size: .3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-more {
    color: var(--text-color);
    text-decoration: none;
    font-size: .24rem;
    display: flex;
    align-items: center;
}

.card-more i {
    margin-left: 4px;
    font-size: .22rem;
}


.card-body {
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .2rem;
    padding: 0 .2rem;
}

.movie-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.movie-info {
    padding: 10px 0;
    text-align: center;
}

.movie-name {
    font-size: .26rem;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hot {
    background: var(--card_color);
    border-radius: .2rem;
}

.hot ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .2rem;
    padding: 0 .2rem;
}

.hot ul li {
    height: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: .25rem;
}

.hot ul li .img {
    width: 100%;
    border-radius: .05rem;
    overflow: hidden;
}

.hot ul li .img img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.hot ul li .desc .t {
    font-size: .26rem;
    color: #333333;
    padding: .15rem 0;
    text-align: center;
}

.hot ul li .desc .info {
    display: flex;
    justify-content: space-between;;
    font-size: .24rem;
    color: #adadad;
}

.hot ul li .desc .info span {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hot ul li .desc .info span.colors {
    color: var(--super-color2);
}


.slider {
    height: 3.76rem;
    padding: .2rem;
    position: relative;
    background: var(--card_color);
    border-radius: .2rem;
}

.slider .swiper-slide {
    width: 100%;
    height: 175px;
    background: #fff;
    box-shadow: 0 .05rem .2rem rgba(0, 0, 0, .2);
}

.slider .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: .2rem;
    height: 100%;
}

.slider .swiper-pagination {
    bottom: .3rem;
    left: 10px;
    right: 10px;
}

.slider .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: rgba(0, 0, 0, .5);
    width: .15rem;
    height: .15rem;
}

.slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #fff
}

.slider .swiper-button-prev {
    left: .2rem;
    top: 0;
    width: .3rem;
    height: 100%;
    margin-top: 0;
    background: none;
}

.slider .swiper-button-prev:hover {
    background: none;
}

.slider .swiper-button-next {
    right: .2rem;
    top: 0;
    width: .3rem;
    height: 100%;
    margin-top: 0;
    background: none;
}

.slider .swiper-button-next:hover {
    background: none;
}

/*######## / member /#########*/
#member {
    width: 100%;
    background: linear-gradient(-90deg, #f2c48e, #f4dab0);
    overflow: hidden;
    display: block;
}

#member .member {
}

#member .member .member_title {
    font-size: .5rem;
    text-align: center;
    padding: .2rem 0;
    color: #62421b;
}

#member .member .member_info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

#member .member .member_info .avatar {
    padding: .2rem;
    width: 2rem;
    height: 2rem;
}

#member .member .member_info .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#member .member .member_info .user_info {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}
#member .member .member_info .user_info p{
    font-size: 0.28rem;
    padding-top: 0.1rem;
}

#member .member .member_info .user_info .member_name {
    font-size: .3rem;
    height: 30px;
    line-height: 30px;
    color: #62421b;
}

#member .member .member_info .user_info .member_vip {
    font-size: .24rem;
    background: #000;
    height: 25px;
    line-height: 25px;
    border-radius: 6px;
    text-align: center;
    color: #e8bd86;
    padding: 0 .2rem;
}

#member .member .vip_card {
    background: linear-gradient(45deg, #3c3f4b, #262c31);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: .2rem;
}

#member .member .vip_card .vip_card_title {
    font-size: .4rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#member .member .vip_card .vip_card_title i {
    color: #f3c68c;
}

#member .member .vip_card .vip_card_title span {
    color: #f3c68c;
    font-size: .3rem;
}

#member .member .vip_card .vip_card_content {
    font-size: .24rem;
    color: #000;
    text-align: center;
    width: 2rem;
    background: #f3c68c;
    border-radius: 25px;
    line-height: .5rem;
}

.card-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
}

.card-history .card-item {
    background: #fff6e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: .3rem;
    width: 100%;
}

.card-history .card-item i {
    font-size: .6rem;
    width: 100%;
    text-align: center;
    margin-bottom: .3rem;
    background: linear-gradient(to top, #fbb103, #faa900);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-history .card-item span {
    font-size: .3rem;
    color: #b2a99a;
}

.card-history .i1 {
    background: #f7efff;
}

.card-history .i1 i {
    font-size: .6rem;
    width: 100%;
    text-align: center;
    margin-bottom: .3rem;
    background: linear-gradient(to top, #ba63ff, #8f5af4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-history .i1 span {
    color: #a49dab;

}

.card-history-list {
    background: #fff;
}

.histor_mem {
    position: relative;
    z-index: 1;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    direction: rtl; /* ä»Žå³å‘å·¦å¸ƒå±€ */
    margin: 0 10px;
    white-space: nowrap; /* é˜²æ­¢æ¢è¡Œ */
    flex-wrap: nowrap; /* ç¡®ä¿flexé¡¹ç›®ä¸æ¢è¡Œ */
    padding-bottom: .3rem;
    height: 195px;
}

.histor_mem .his_li {
    margin-left: 10px;
    flex-shrink: 0; /* é˜²æ­¢é¡¹ç›®è¢«åŽ‹ç¼© */
    direction: ltr; /* å†…éƒ¨å†…å®¹æ¢å¤ä»Žå·¦åˆ°å³ */
    overflow: hidden;
    width: 110px;
}

.histor_mem .his_li img {
    width: 110px;
    height: 140px;
    border-radius: 5px;
    object-fit: cover; /* ä¿æŒå›¾ç‰‡æ¯”ä¾‹ */
}

.histor_mem .his_li p {
    font-size: 12px;
    height: 29px;
    line-height: 29px; /* ä¿®æ­£è¡Œé«˜ï¼ŒåŽŸ40pxå¯èƒ½è¿‡å¤§ */
    margin-top: 5px;
    text-align: center;
    white-space: normal; /* å…è®¸æ–‡å­—æ¢è¡Œ */
    word-break: break-word;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.3rem;
    background-color: var(--nav-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px var(--shadow-light);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    padding-top: .21rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: .25rem;
    flex: 1;
    height: 100%;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-item i {
    font-size: .35rem;
    margin-bottom: .1rem;
    transition: all var(--transition-fast);
}

.nav-item.active {
    color: var(--super-color);
}


/*######## / read /#########*/

.container {
    width: 100%;
    padding: 0;
}

/* ç§»åŠ¨ç«¯é¡¶éƒ¨å¯¼èˆª */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--card_color);
    color: var(--text-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: .4rem;
    padding: 8px;
    cursor: pointer;
}

.mobile-title {
    font-size: .4rem;
    font-weight: 600;
    text-align: center;
    flex-grow: 1;
}

.share-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: .4rem;
    padding: 8px;
    cursor: pointer;
}

#player {
    height: 290px;
    background: #000;
    padding-bottom: 45px;
    overflow: hidden;
}
#player .is_vip {
    background: linear-gradient(90deg, rgb(255 237 237 / 50%), rgb(237 252 255 / 50%));
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(7px);
    margin-top: 40px;
}

#player .is_vip .is_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    border-radius: 10px;
}

#player .is_vip .is_content i {
    margin-right: 5px;
    font-size: 16px;
}

#player .is_vip .is_content span {
    margin-right: 5px;
}

#player .is_vip .is_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

#player .is_vip .is_btn a {
    background: var(--super-color);
    padding: 5px 10px;
    color: var(--nav-color);
    border-radius: 5px;
    width: 48%;
    text-align: center;
    font-size: 0.2rem;
}

#player .is_vip .is_btn a.mai {
    background: #fff;
    color: var(--super-color);
}
/* ç”µå½±å°é¢åŒºåŸŸ */
.movie-cover-section {
    position: relative;
    height: 50vh;
    max-height: 400px;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--text-color);
}

.movie-title {
    font-size: .3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.year {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.3rem;
    font-weight: 500;
}

.score {
    display: flex;
    align-items: center;
    font-size: 0.3rem;
    font-weight: 600;
}

.score i {
    color: var(--super-color2);
    margin-right: 5px;
}

/* å†…å®¹å¡ç‰‡ */
.content-card {
    background: var(--card_color);
    margin: 15px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: -30px;
    z-index: 10;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    background-color: var(--card_color);
}

.card-title {
    font-size: .36rem;
    font-weight: 600;
    color: var(--text-color);
}


/* ç±»åž‹æ ‡ç­¾ */
.genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.genre {
    background-color: rgba(255, 255, 255, 0.27);
    color: var(--super-color2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: .3rem;
    font-weight: 500;
}

/* å‰§æƒ…ç®€ä»‹ */
.plot-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.25rem;
}

/* æ¼”å‘˜æ¨ªå‘æ»šåŠ¨ */
.actors-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 5px 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.actors-scroll::-webkit-scrollbar {
    display: none;
}

.actor-card {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
}

.actor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #f0f2f5;
}

.actor-name {
    font-weight: 600;
    font-size: 0.23rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.actor-role {
    color: #666;
    font-size: 0.2rem;
    line-height: 1.3;
}

/* åˆ¶ä½œäººå‘˜ç½‘æ ¼ */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.crew-item {
    background-color: rgba(0, 0, 0, 0.09);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.25rem;
}

.crew-role {
    color: var(--text-color);
    font-size: 0.2rem;
    margin-bottom: 5px;
}

.crew-name {
    font-weight: 500;
    color: #333;
}

/* åº•éƒ¨æ“ä½œæ  */
.mobile-footer {
    position: fixed;
    bottom: 1.3rem;
    left: 0;
    right: 0;
    background: var(--card_color);
    display: flex;
    padding: 12px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.footer-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.watch-btn {
    background: var(--super-color);
    color: white;
    margin-right: 10px;
}

.collect-btn {
    background: #f0f2f5;
    color: #333;
}

.footer-btn:active {
    transform: scale(0.98);
}

/* å“åº”å¼è°ƒæ•´ */
@media (max-width: 360px) {
    .movie-title {
        font-size: 1.5rem;
    }

    .content-card {
        margin: 10px;
        padding: 15px;
    }

    .actor-card {
        width: 100px;
    }

    .actor-avatar {
        width: 70px;
        height: 70px;
    }
}

/* åŠ¨ç”»æ•ˆæžœ */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-card {
    animation: slideUp 0.4s ease-out;
}

.content-card:nth-child(2) {
    animation-delay: 0.1s;
    margin-top: 20px;
}

.content-card:nth-child(3) {
    animation-delay: 0.2s;
}

.content-card:nth-child(4) {
    animation-delay: 0.3s;
}

.content-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* é˜²æ­¢é¡µé¢æ»šåŠ¨ */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.h70 {
    height: 70px;
}

/* 自定义弹窗背景遮罩 */
.custom-alert-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 自定义弹窗主体 */
.custom-alert {
    background: #fff;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    z-index: 9999;
    text-align: center;
}

/* 弹窗标题 */
.custom-alert h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 弹窗内容 */
.custom-alert p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* 按钮容器 */
.custom-alert .btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* 按钮基础样式 */
.custom-alert button {
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

/* 登录按钮 */
.custom-alert .btn-login {
    background: var(--super-color);
    color: white;
}

.custom-alert .btn-login:hover {
    background: var(--super-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(173 173 173 / 30%);
}

/* 取消按钮 */
.custom-alert .btn-cancel {
    background: #f1f1f1;
    color: #666;
}

.custom-alert .btn-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 响应式调整 */
@media (max-width: 480px) {
    .custom-alert {
        width: 280px;
        padding: 20px;
    }

    .custom-alert .btn-group {
        flex-direction: column;
        gap: 10px;
    }
}



/* 会员购买弹窗 */
/* 会员购买弹窗 */
.vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}

.vip-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #333;
}

.vip-icon {
    font-size: 50px;
    color: var(--super-color);
    margin-bottom: 15px;
}

.vip-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.vip-desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.vip-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.vip-plan {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
}

.plan-info {
    text-align: right;
}

.plan-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.26rem;
}

.plan-desc {
    font-size: 0.2rem;
    direction: rtl;
}

.plan-price {
    color: var(--super-color);
    font-weight: bold;
    font-size: 0.29rem;
}

.plan-btn {
    background: var(--super-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.26rem;
}

.vip-plan.selected {
    background: var(--super-color);
}

.vip-plan.selected .plan-price {
    color: #fff;
}

.vip-plan.selected .plan-btn {
    background: #fff;
    color: var(--super-color);
}
.vip-plan.selected .plan-info {
    color: #fff;
}

.close-vip {
    line-height: 40px;
    color: #fff;
    background: var(--super-color);
    font-style: normal;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    margin-top: -22px;
}
@import "../../../admins/assets/fonts/fonts.css";

* {
    font-family: 'UKIJ Tor';
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-weight: normal;
    box-sizing: border-box;
    font-style: normal;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

body {
    background-color: var(--bg_color);
    color: var(--text-color);
    width: 100%;
    overflow-x: hidden;
}

.mlr10 {
    margin-right: 10px;
    margin-left: 10px;
}

.mt10 {
    margin-top: 10px;
}

.h11rem {
    height: 1.6rem;
}

.search {
    display: flex;
    background-color: var(--search-color);
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: .2rem .3rem .1rem .2rem;
    border-radius: .2rem;
}

.search input {
    width: 100%;
    border: none;
    outline: none;
    text-align: right;
    height: .6rem;
    font-size: 0.3rem;
    background-color: var(--search-color);
}

.search i {
    font-size: .3rem;
}

.card {
    background-color: var(--card_color);
    border-radius: .2rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card-header {
    padding: .3rem .26rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: .2rem;
}

.card-title {
    font-size: .3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-more {
    color: var(--text-color);
    text-decoration: none;
    font-size: .24rem;
    display: flex;
    align-items: center;
}

.card-more i {
    margin-left: 4px;
    font-size: .22rem;
}


.card-body {
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .2rem;
    padding: 0 .2rem;
}

.movie-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.movie-info {
    padding: 10px 0;
    text-align: center;
}

.movie-name {
    font-size: .26rem;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hot {
    background: var(--card_color);
    border-radius: .2rem;
}

.hot ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .2rem;
    padding: 0 .2rem;
}

.hot ul li {
    height: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: .25rem;
}

.hot ul li .img {
    width: 100%;
    border-radius: .05rem;
    overflow: hidden;
}

.hot ul li .img img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.hot ul li .desc .t {
    font-size: .26rem;
    color: #333333;
    padding: .15rem 0;
    text-align: center;
}

.hot ul li .desc .info {
    display: flex;
    justify-content: space-between;;
    font-size: .24rem;
    color: #adadad;
}

.hot ul li .desc .info span {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hot ul li .desc .info span.colors {
    color: var(--super-color2);
}


.slider {
    height: 3.76rem;
    padding: .2rem;
    position: relative;
    background: var(--card_color);
    border-radius: .2rem;
}

.slider .swiper-slide {
    width: 100%;
    height: 175px;
    background: #fff;
    box-shadow: 0 .05rem .2rem rgba(0, 0, 0, .2);
}

.slider .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: .2rem;
    height: 100%;
}

.slider .swiper-pagination {
    bottom: .3rem;
    left: 10px;
    right: 10px;
}

.slider .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: rgba(0, 0, 0, .5);
    width: .15rem;
    height: .15rem;
}

.slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #fff
}

.slider .swiper-button-prev {
    left: .2rem;
    top: 0;
    width: .3rem;
    height: 100%;
    margin-top: 0;
    background: none;
}

.slider .swiper-button-prev:hover {
    background: none;
}

.slider .swiper-button-next {
    right: .2rem;
    top: 0;
    width: .3rem;
    height: 100%;
    margin-top: 0;
    background: none;
}

.slider .swiper-button-next:hover {
    background: none;
}

/*######## / member /#########*/
#member {
    width: 100%;
    background: linear-gradient(-90deg, #f2c48e, #f4dab0);
    overflow: hidden;
    display: block;
}

#member .member {
}

#member .member .member_title {
    font-size: .5rem;
    text-align: center;
    padding: .2rem 0;
    color: #62421b;
}

#member .member .member_info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

#member .member .member_info .avatar {
    padding: .2rem;
    width: 2rem;
    height: 2rem;
}

#member .member .member_info .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#member .member .member_info .user_info {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}
#member .member .member_info .user_info p{
    font-size: 0.28rem;
    padding-top: 0.1rem;
}

#member .member .member_info .user_info .member_name {
    font-size: .3rem;
    height: 30px;
    line-height: 30px;
    color: #62421b;
}

#member .member .member_info .user_info .member_vip {
    font-size: .24rem;
    background: #000;
    height: 25px;
    line-height: 25px;
    border-radius: 6px;
    text-align: center;
    color: #e8bd86;
    padding: 0 .2rem;
}

#member .member .vip_card {
    background: linear-gradient(45deg, #3c3f4b, #262c31);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: .2rem;
}

#member .member .vip_card .vip_card_title {
    font-size: .4rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#member .member .vip_card .vip_card_title i {
    color: #f3c68c;
}

#member .member .vip_card .vip_card_title span {
    color: #f3c68c;
    font-size: .3rem;
}

#member .member .vip_card .vip_card_content {
    font-size: .24rem;
    color: #000;
    text-align: center;
    width: 2rem;
    background: #f3c68c;
    border-radius: 25px;
    line-height: .5rem;
}

.card-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
}

.card-history .card-item {
    background: #fff6e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: .3rem;
    width: 100%;
}

.card-history .card-item i {
    font-size: .6rem;
    width: 100%;
    text-align: center;
    margin-bottom: .3rem;
    background: linear-gradient(to top, #fbb103, #faa900);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-history .card-item span {
    font-size: .3rem;
    color: #b2a99a;
}

.card-history .i1 {
    background: #f7efff;
}

.card-history .i1 i {
    font-size: .6rem;
    width: 100%;
    text-align: center;
    margin-bottom: .3rem;
    background: linear-gradient(to top, #ba63ff, #8f5af4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-history .i1 span {
    color: #a49dab;

}

.card-history-list {
    background: #fff;
}

.histor_mem {
    position: relative;
    z-index: 1;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    direction: rtl; /* ä»Žå³å‘å·¦å¸ƒå±€ */
    margin: 0 10px;
    white-space: nowrap; /* é˜²æ­¢æ¢è¡Œ */
    flex-wrap: nowrap; /* ç¡®ä¿flexé¡¹ç›®ä¸æ¢è¡Œ */
    padding-bottom: .3rem;
    height: 195px;
}

.histor_mem .his_li {
    margin-left: 10px;
    flex-shrink: 0; /* é˜²æ­¢é¡¹ç›®è¢«åŽ‹ç¼© */
    direction: ltr; /* å†…éƒ¨å†…å®¹æ¢å¤ä»Žå·¦åˆ°å³ */
    overflow: hidden;
    width: 110px;
}

.histor_mem .his_li img {
    width: 110px;
    height: 140px;
    border-radius: 5px;
    object-fit: cover; /* ä¿æŒå›¾ç‰‡æ¯”ä¾‹ */
}

.histor_mem .his_li p {
    font-size: 12px;
    height: 29px;
    line-height: 29px; /* ä¿®æ­£è¡Œé«˜ï¼ŒåŽŸ40pxå¯èƒ½è¿‡å¤§ */
    margin-top: 5px;
    text-align: center;
    white-space: normal; /* å…è®¸æ–‡å­—æ¢è¡Œ */
    word-break: break-word;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.3rem;
    background-color: var(--nav-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px var(--shadow-light);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    padding-top: .21rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: .25rem;
    flex: 1;
    height: 100%;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-item i {
    font-size: .35rem;
    margin-bottom: .1rem;
    transition: all var(--transition-fast);
}

.nav-item.active {
    color: var(--super-color);
}


/*######## / read /#########*/

.container {
    width: 100%;
    padding: 0;
}

/* ç§»åŠ¨ç«¯é¡¶éƒ¨å¯¼èˆª */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--card_color);
    color: var(--text-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: .4rem;
    padding: 8px;
    cursor: pointer;
}

.mobile-title {
    font-size: .4rem;
    font-weight: 600;
    text-align: center;
    flex-grow: 1;
}

.share-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: .4rem;
    padding: 8px;
    cursor: pointer;
}

#player {
    height: 250px;
    background: #000;
    overflow: hidden;
}
#player .is_vip {
    background: linear-gradient(90deg, rgb(255 237 237 / 50%), rgb(237 252 255 / 50%));
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(7px);
    margin-top: 40px;
}

#player .is_vip .is_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    flex-direction: row-reverse;
    margin-bottom: 20px;
    border-radius: 10px;
}

#player .is_vip .is_content i {
    margin-right: 5px;
    font-size: 16px;
}

#player .is_vip .is_content span {
    margin-right: 5px;
}

#player .is_vip .is_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

#player .is_vip .is_btn a {
    background: var(--super-color);
    padding: 5px 10px;
    color: var(--nav-color);
    border-radius: 5px;
    width: 48%;
    text-align: center;
    font-size: 0.2rem;
}

#player .is_vip .is_btn a.mai {
    background: #fff;
    color: var(--super-color);
}
/* ç”µå½±å°é¢åŒºåŸŸ */
.movie-cover-section {
    position: relative;
    height: 50vh;
    max-height: 400px;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--text-color);
}

.movie-title {
    font-size: .3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.year {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.3rem;
    font-weight: 500;
}

.score {
    display: flex;
    align-items: center;
    font-size: 0.3rem;
    font-weight: 600;
}

.score i {
    color: var(--super-color2);
    margin-right: 5px;
}

/* å†…å®¹å¡ç‰‡ */
.content-card {
    background: var(--card_color);
    margin: 15px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    background-color: var(--card_color);
}

.card-title {
    font-size: .36rem;
    font-weight: 600;
    color: var(--text-color);
}


/* ç±»åž‹æ ‡ç­¾ */
.genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.genre {
    background-color: rgba(255, 255, 255, 0.27);
    color: var(--super-color2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: .3rem;
    font-weight: 500;
}

/* å‰§æƒ…ç®€ä»‹ */
.plot-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.25rem;
}

/* æ¼”å‘˜æ¨ªå‘æ»šåŠ¨ */
.actors-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 5px 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.actors-scroll::-webkit-scrollbar {
    display: none;
}

.actor-card {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
}

.actor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #f0f2f5;
}

.actor-name {
    font-weight: 600;
    font-size: 0.23rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.actor-role {
    color: #666;
    font-size: 0.2rem;
    line-height: 1.3;
}

/* åˆ¶ä½œäººå‘˜ç½‘æ ¼ */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.crew-item {
    background-color: rgba(0, 0, 0, 0.09);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.25rem;
}

.crew-role {
    color: var(--text-color);
    font-size: 0.2rem;
    margin-bottom: 5px;
}

.crew-name {
    font-weight: 500;
    color: #333;
}

/* åº•éƒ¨æ“ä½œæ  */
.mobile-footer {
    position: fixed;
    bottom: 1.3rem;
    left: 0;
    right: 0;
    background: var(--card_color);
    display: flex;
    padding: 12px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.footer-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.watch-btn {
    background: var(--super-color);
    color: white;
    margin-right: 10px;
}

.collect-btn {
    background: #f0f2f5;
    color: #333;
}

.footer-btn:active {
    transform: scale(0.98);
}

/* å“åº”å¼è°ƒæ•´ */
@media (max-width: 360px) {
    .movie-title {
        font-size: 1.5rem;
    }

    .content-card {
        margin: 10px;
        padding: 15px;
    }

    .actor-card {
        width: 100px;
    }

    .actor-avatar {
        width: 70px;
        height: 70px;
    }
}

/* åŠ¨ç”»æ•ˆæžœ */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content-card {
    animation: slideUp 0.4s ease-out;
}

.content-card:nth-child(2) {
    animation-delay: 0.1s;
    margin-top: 20px;
}

.content-card:nth-child(3) {
    animation-delay: 0.2s;
}

.content-card:nth-child(4) {
    animation-delay: 0.3s;
}

.content-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* é˜²æ­¢é¡µé¢æ»šåŠ¨ */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.h70 {
    height: 70px;
}

/* 自定义弹窗背景遮罩 */
.custom-alert-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 自定义弹窗主体 */
.custom-alert {
    background: #fff;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    z-index: 9999;
    text-align: center;
}

/* 弹窗标题 */
.custom-alert h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 弹窗内容 */
.custom-alert p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* 按钮容器 */
.custom-alert .btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* 按钮基础样式 */
.custom-alert button {
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

/* 登录按钮 */
.custom-alert .btn-login {
    background: var(--super-color);
    color: white;
}

.custom-alert .btn-login:hover {
    background: var(--super-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(173 173 173 / 30%);
}

/* 取消按钮 */
.custom-alert .btn-cancel {
    background: #f1f1f1;
    color: #666;
}

.custom-alert .btn-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 响应式调整 */
@media (max-width: 480px) {
    .custom-alert {
        width: 280px;
        padding: 20px;
    }

    .custom-alert .btn-group {
        flex-direction: column;
        gap: 10px;
    }
}



/* 会员购买弹窗 */
/* 会员购买弹窗 */
.vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}

.vip-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #333;
}

.vip-icon {
    font-size: 50px;
    color: var(--super-color);
    margin-bottom: 15px;
}

.vip-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.vip-desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.vip-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.vip-plan {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
}

.plan-info {
    text-align: right;
}

.plan-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.26rem;
}

.plan-desc {
    font-size: 0.2rem;
    direction: rtl;
}

.plan-price {
    color: var(--super-color);
    font-weight: bold;
    font-size: 0.29rem;
}

.plan-btn {
    background: var(--super-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.26rem;
}

.vip-plan.selected {
    background: var(--super-color);
}

.vip-plan.selected .plan-price {
    color: #fff;
}

.vip-plan.selected .plan-btn {
    background: #fff;
    color: var(--super-color);
}
.vip-plan.selected .plan-info {
    color: #fff;
}

.close-vip {
    line-height: 40px;
    color: #fff;
    background: var(--super-color);
    font-style: normal;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    margin-top: -22px;
}
