/* =========================================================
   lrtk.css - Banner 轮播插件样式
========================================================= */

/* Banner 主容器 */
.banner_show {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* 单张 Banner 图片容器 */
.bannger_inbox {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    text-align: center;
    transform: none !important;
}

/* Banner 图片 */
.bannger_inbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0;
}

/* 左右切换按钮区域 */
.banner_pre_next {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 56px;
    z-index: 105;
    transform: translateY(-50%);
    pointer-events: none;
}

/* 左右按钮公共样式 */
.banner_pre_next a {
    position: absolute;
    top: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    pointer-events: auto;
    transition: background 0.25s ease;
}

.banner_pre_next a:hover {
    background: rgba(0, 0, 0, 0.42);
}

/* 隐藏组件原有图片按钮，改用 CSS 绘制箭头 */
.banner_pre_next a img {
    display: none;
}

/* CSS 绘制箭头 */
.banner_pre_next a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    position: relative;
    box-sizing: border-box;
}

/* 左箭头 */
.banner_pre_next .banner_btn_left {
    left: 36px;
}

.banner_pre_next .banner_btn_left::before {
    transform: rotate(-45deg);
    left: 2px;
}

/* 右箭头 */
.banner_pre_next .banner_btn_right {
    right: 36px;
}

.banner_pre_next .banner_btn_right::before {
    transform: rotate(135deg);
    left: -2px;
}

/* 底部指示点外层 */
.banner_mag {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99;
    overflow: hidden;
    text-align: left;
    font-family: "微软雅黑";
}

/* 底部指示点区域 */
.yq_banner_list {
    position: absolute;
    right: 50%;
    bottom: 22px;
    z-index: 100;
    transform: translateX(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* 指示点 */
.yq_banner_list a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

/* 当前指示点 */
.yq_banner_list a.hover {
    background: #fff;
}

/* Banner 链接去掉下划线 */
.banner_show a {
    text-decoration: none;
}



/* =========================================================
   90 已弃用 / 暂未生效
   说明：
   以下样式当前 Banner 组件没有输出对应结构，暂时集中保留。
========================================================= */

/*

.fix {
    *zoom: 1;
}

.fix:after {
    display: block;
    content: "clear";
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.none {
    display: none;
}

.banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.banner_magbox {
    height: 47px;
    line-height: 47px;
    overflow: hidden;
    background: #0c1119;
    text-align: left;
}

.banner_magbox h4 {
    width: 1000px;
    margin: 0 auto 10px;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    font-family: "微软雅黑";
}

.banner_magbox h4 a {
    color: #fff;
    text-decoration: none;
}

.banner_magbox p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-weight: normal;
}

.banner a {
    text-decoration: none;
}

*/