    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    }

    body {
        background: #f8f9fa;
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 15px;
    }

    /* 分类导航优化 */
    .type-nav {
        display: flex;
        /*flex-wrap: wrap;*/
        gap: 10px;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
    }

    .type-item {
        padding: 10px 24px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #f8f9fa;
        color: #495057;
        font-size: 15px;
        border: 1px solid transparent;
    }

    .type-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

    .type-item.active {
        background: linear-gradient(135deg, #3385ff, #6ea8ff);
        color: #fff;
        box-shadow: 0 4px 6px -1px rgba(51, 133, 255, 0.3);
    }

    /* 榜单容器 */
    .hot-list {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    /* 单个热榜项 */
    .hot-item {
        width: 100%; /* 确保占满容器 */
        display: flex;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid #eee;
        transition: background 0.3s ease;
    }

    .hot-item:hover {
        background: #f8f9fa;
    }

    .hot-item:last-child {
        border-bottom: none;
    }

    /* 排名样式 */
    .rank {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        border-radius: 8px;
        margin-right: 20px;
        background: #f8f9fa;
        color: #868e96;
    }

    .rank:nth-child(1) { color: #ff3c00; background: #fff0e6; }
    .rank:nth-child(2) { color: #ff6b00; background: #ffe8d9; }
    .rank:nth-child(3) { color: #ff9100; background: #ffe3cc; }

    /* 海报优化 */
    .poster {
        width: 120px;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
        margin-right: 20px;
        flex-shrink: 0;
        position: relative;
    }

    .poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .poster:hover img {
        transform: scale(1.05);
    }

    /* 内容区域 */
    .content {
        flex: 1;
    min-width: 0; /* 关键属性：允许内容收缩 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
/* 信息容器优化 */
.info-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}
    .title {
        font-size: 17px;
        color: #212529;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .title:hover {
        color: #3385ff;
    }

    .hot-index {
        color: #ff3c00;
        font-size: 14px;
        font-weight: 500;
        margin-right: 15px;
    }

    .info {
    color: #868e96;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%; /* 新增限制 */
    flex-shrink: 1;  /* 允许收缩 */
    display: inline-block; /* 修正显示方式 */
}

    .tag {
        display: inline-block;
        padding: 4px 8px;
        background: #e9ecef;
        border-radius: 4px;
        font-size: 12px;
        color: #495057;
        margin-left: 10px;
        vertical-align: middle;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .container {
            padding: 0 !important; /* 移除左右间距 */
            margin: 15px auto;
        }
.hot-list {
        border-radius: 0; /* 移除圆角避免视觉空隙 */
        padding: 15px 10px !important;
    }
        .type-nav {
            padding: 12px;
            border-radius: 8px;
        }

        .type-item {
            padding: 8px 16px;
            font-size: 14px;
        }
.content {
        flex: 1;
        min-width: calc(100% - 92px); /* 自动计算剩余宽度 */
    }
        .hot-item {
        flex-direction: row !important; /* 保持横向布局 */
        align-items: flex-start;
        padding: 12px 0 !important;
    }

        .rank {
            width: 36px;
            height: 36px;
            font-size: 16px;
            margin-right: 15px;
        }

            .poster {
        width: 80px !important;
        height: 110px !important; /* 更适合移动端的海报比例 */
        margin-right: 12px !important;
    }

        .title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .hot-index {
            font-size: 13px;
        }

        .info {
        white-space: nowrap !important;
        text-overflow: ellipsis;
        max-width: 60vw; /* 动态宽度限制 */
    }
.info-container {
        flex-wrap: nowrap; /* 保持横向布局 */
        overflow: hidden;
    }
    
    .hot-index {
        flex-shrink: 0; /* 防止热度值被压缩 */
    }
        .tag {
            font-size: 11px;
            padding: 3px 6px;
        }
    }

    @media (max-width: 480px) {
        .hot-item {
        flex-wrap: nowrap; /* 禁止换行 */
    }

       .poster {
        width: 70px !important;
        height: 95px !important;
    }

       .rank {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
        margin-right: 10px !important;
    }
.title {
        font-size: 14px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 标题两行截断 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .info {
        font-size: 11px !important;
        max-width: 55vw !important;
    }
    .hot-index {
        font-size: 12px !important;
    }
        .content {
            width: 100%;
        }
    }
.box,.position {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background: #fff;
	overflow: hidden;
}
.txt {width: 100%;padding: 0;overflow: hidden}
.txt ul li {border-bottom: #ccc 1px dotted;
	font-size: .93rem;
	overflow: hidden
}

.txt ul li:last-child {
	border-bottom: 0
}

.txt ul li:hover {
	background: #f9f9f9
}

.txt p {
	float: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.txt i {
	float: left;
	width: 2%;
	color: #f60;
	text-indent: .8rem;
	font-style: normal
}

.footer #fm {
	display: none
}

.txt #t {
	font-weight: 700;
	background: #f9f9f9
}

.txt #t_n,.txt #name {
	width: 35%;
	text-indent: 2rem
}

.txt #t_t,.txt #time {
	width: 25%;
	text-align: center
}

.txt #t_a,.txt #actor {
	width: 32%
}

.txt #t_a {
	text-align: center
}

.txt #name a,.name dd.on,.name span a,.list li p a,.list_txt li a {
	text-shadow: 3px 3px 8px #ccc
}

.txt #actor a {
	margin-right: .5rem
}
