.top_announcement_vue
{
    
}
.top_announcement_vue .ta_wrapper 
{
    /* 原有样式不变 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fade_in 0.5s ease-out;
}

.top_announcement_vue .ta_wrapper .ta_image_container
{
    position: relative;
    display: inline-block;
}

.top_announcement_vue .ta_wrapper .ta_image_container .ta_image_computer
{
    width:1000px;
}
.top_announcement_vue .ta_wrapper .ta_image_container .ta_image_mobile
{
    width:600px;
}

.top_announcement_vue .ta_wrapper .ta_close_btn
{
    position: absolute;
    top: -15px; /* 调整到图片上方 */
    right: -15px; /* 调整到图片右侧 */
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7); /* 添加背景色提高可见性 */
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    z-index: 1001;
    border-radius: 50%; /* 圆形按钮 */
}

.top_announcement_vue .ta_wrapper .ta_close_btn:hover
{
    background-color: rgba(255, 0, 0, 0.8); /* 悬停时红色背景 */
    color: #fff;
}

.top_announcement_vue .ta_wrapper .ta_content_container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 新增：倒计时样式 - 修改为相对定位元素 */
.top_announcement_vue .ta_wrapper .ta_countdown
{
    margin-top: 10px; /* 图片下边距20px */
    color: #fff;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    text-align: center;
    width: fit-content; /* 根据内容自适应宽度 */
}



