/* =========================================
 * 顶部指示精神滚动区域 - 样式
 * 红色背景 1200px 宽 H1 字号 纵向滚动
 * ========================================= */
.hsz_directive {
    background: #E50015;
    color: #ffffff;
    width: 1200px;
    margin: 15px auto;
    overflow: hidden;
}

.hsz_directive_inner {
    position: relative;
    width: 100%;
    height: 122px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hsz_directive_inner.hsz_ready {
    opacity: 1;
}

.hsz_directive_track {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.hsz_directive_item {
    position: relative;
    width: 100%;
    height: 122px;
    padding: 8px 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.hsz_directive_text {
    height: 100%;
    box-sizing: border-box;
    padding-right: 180px;
    text-indent: 2em;
    line-height: 1.5;
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.hsz_directive_ref {
    position: absolute;
    right: 30px;
    bottom: 8px;
    line-height: 1.5;
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
}
