.news {
    width: 80%;
    height: 90%;
    
    display: flex;
    position: relative;
    background-color: rgba(110, 119, 184, 0.4);
    /* 半透明背景 */
    backdrop-filter: blur(10px);
    /* 磨砂效果 */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* 阴影效果 */
    overflow: hidden;
}

.iconfont {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 27%;
    z-index: 999;
    font: 900 80px '';
    color: #c50e0e;
}

.news .btn {
    width: 120px;
    height: 70px;
    background-color: rgb(0,0,0,0.2);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Ubuntu;
    font-size: 18px;
    position: absolute;
    z-index: 999;
    text-align: center;
    line-height: 50px;
    /* 垂直居中 */
}

#up-btn {
    top: 5%;
    left: 55%;
    /* 中心位置 */
}

#down-btn {
    bottom: 5%;
    left: 55%;
    /* 中心位置 */
}

.passage-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
    height: 100%;
}

.passage-image {
    border-radius: 15px;
}

.text-content {
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.text-content p {
    margin-bottom: 0px;
    /* 修改底部边距 */
}

.card-title {
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: 'Ubuntu', sans-serif;
    color: #a090b1;
    font-size: 50px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
    z-index: 1001;
}

.card-time {
    font-family: 'Ubuntu';
    color: #b0a7ce;
    /* 时间颜色 */
    font-size: 22px;
    /* 调整时间大小 */
    font-weight: 500;
    /* 加粗时间 */
}

#content {
    width: 550px;
    height: 450px;
    position: relative;
    left: 2%;
    top: 5%;
    overflow: hidden;
}

.news .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-color: transparent;
    transition: transform .8s ease-in-out;
}

.card-passage {
    font-size: 24px;
    font-weight: 300;
    height: 100%;
}

#clock {
    height: 130%;
    aspect-ratio: 1 / 1;
    position: absolute;
    right: -28%;
    top: -15%;
    border-radius: 50%;
    background-color: #fdfdfd;
    border: #9f8fb2 30px solid;
}

@media(max-width:1000px) {
    #clock {
        right: -90%;
    }
}

#clock-table {
    width: 96%;
    height: 96%;
    border-radius: 50%;
    position: absolute;
    top: 2%;
    left: 2%;
    transition: transform .8s ease-in-out;
}

.invisible-table {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: 50% 50%;
    position: absolute;
}

.clock-thick {
    width: 6%;
    height: 6px;
    background-color: #9f8fb2;
    position: absolute;
    top: calc(50% - 3px);
    left: 0px;
}

.clock-thick span {
    font-size: 40px;
    position: absolute;
    left: 140%;
    top: calc(50% - 30px);
    color: #9f8fb2;
}

.clock-scale {
    width: 4%;
    height: 2px;
    background-color: #6e77b8;
    position: absolute;
    top: calc(50% - .5px);
    left: 0px;
}
