body {
    background: rgb(249,249,249);
}

.content {
    padding: .75rem;
    width: 70%;
    margin: 2.25rem auto 1.25rem;
    background: rgb(249,249,249);
    display: flex;
    gap: 4%;
}

.content-left {
    flex: 0 0 calc(71%); /* 计算补偿间隔空间 */
    background: rgb(249,249,249);
}

.content-top .title {
    margin-top: 3.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.time-eye {
    margin: 1rem 0;
    color: #666666;
    display: flex;
    gap: 15px; /* 控制两个元素间距 */
}

.eye,
.time {
    display: flex;
    align-items: center;
    gap: 5px; /* 控制图标文字间距 */
}

.time-eye img {
    width: 1rem;
    height: 1rem;
    display: block;
}

.content-left .video {
    height: 35rem;
}

.info {
    padding: 1rem 0;
    text-indent: 1em;
    background: white;
}

/* 标题样式 */
.content-bottom .title {
    margin: 2.13rem 0 1.7rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.content-bottom .title img {
    width: 3rem;
    height: 1.5rem;
}

.content-bottom .title span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* 视频列表布局 */
.video-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* 统一设置间隔 */
    padding: 0;
    list-style: none;
}

.video-list li {
    /*width: 235px;*/
    height: 20rem;
    position: relative;
    background: white;
}

.watching-l {
    position: absolute;
    left: .75rem;
    bottom: 8.7rem;
    width: 3.0625rem;
    height: 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #FFFFFF;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 0.5rem;
    height: 0.5rem;
}

/* 图片尺寸 */
.video-list .video-prew {
    width: 100%;
    border-radius: 0.5rem;
    height: 60%;
    object-fit: cover;
}

/* 文字区域定位 */
.video-title {
    margin: 1rem 0 1rem .75rem;
}

.video-time {
    position: absolute;
    bottom: 1rem;
    right: .75rem;
}

.content-right {
    flex: 0 0 calc(25%);
    background: white;
    padding: 0 1rem;
}

.content-right .content-top {
    margin-bottom: 30px;
}

/* 资讯标题区 */
.content-right .title {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}
.content-right .title img {
    width: 36px;
    height: 36px;
}
.content-right .title span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* 顶部方形图片 */
.content-right .content-top > img {
    /*width: 90%;*/
    /*aspect-ratio: 1/1;*/
    margin:0 1rem 1.5rem 0;
}

/* 新闻列表 */
.news-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 新闻项双行布局 */
.news {
    display: block;
    text-decoration: none;
    color: #333;
    /*padding:0 8px;*/
    /*border-radius: 4px;*/
    /*transition: all 0.3s;*/
}
.news-title {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.news-time {
    display: block;
    /*text-align: right;*/
    color: #666;
    font-size: 14px;
}

/* 悬停交互 */
.news:hover {
    /*background: #f0f5ff;*/
}
.news:hover .news-title,
.news:hover .news-time {
    color: #0066ff;
}

.content-right .content-bottom > img {
    /*width: 90%;*/
    /*aspect-ratio: 1/1;*/
    margin:0 1rem 1.5rem 0;
}

/* ===== 公共补充样式 ===== */
/* 图片通用处理 */
img {
    object-fit: cover;
    display: block;
}


a {
    color: #000;
}