/* 大盒子 .lunbo */

.lunbo {
    /* 相对定位 */
    position: relative;
    margin-top: 0px;
}

.lunbobox1 {
    height: 450px;
}

.lunbobox2 {
    height: 30px;
    width: 100%;
    background-color: #fff;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    /* 宽：body 高：和图片一样 */
    width: 100%;
    height: 450px;
    /* 图片作为背景 和img里的图片一样 */
    background: url('../img/lunbo_bg\ \(1\).jpg') no-repeat;
    background-size: 100% 450px;
    filter: blur(10px);
    z-index: -999;
}

.fff {
    /* 绝对定位 不保留位置 卡在下面结束背景模糊 */
    position: absolute;
    width: 100%;
    height: 20px;
    top: 520;
    /* 背景颜色和body颜色一样 */
    background-color: #fff;
}

.lunbo .content {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -650px;
    height: 450px;
    width: 1200px;
}

.lunbo ul {
    position: absolute;
    bottom: 15px;
    right: 0;
    height: 420px;
    width: 265px;
}

.lunbo ul li {
    /* position: relative; */
    height: 40px;
    width: 100%;
    padding-right: 20px;
    /* 未被选中 */
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 9999999;
    cursor: default;
}

.lunbo img {
    /* 图片 定位到中间 */
    position: absolute;
    top: -15px;
    /* = content宽度一半 - img宽度一半 */
    right: 200px;
    /* 图片 16:9 */
    height: 450px;
    width: 800px;
    z-index: -999;
}

.lunbo h3,
.lunbo p {
    display: block;
    text-align: right;
}

.lunbo h3 {
    line-height: 40px;
    font-size: 18px;
    font-weight: normal;
}

.lunbo p {
    display: none;
    line-height: 20px;
    font-size: 14px;
}

.lunbo .current {
    height: 60px;
    /* 被选中 */
    background: linear-gradient(to right, transparent, rgba(167, 167, 167, 0.4), rgba(167, 167, 167, 0.5));
}

.lunbo .current h3 {
    font-size: 22px;
}

.lunbo .current p {
    display: block;
    line-height: 20px;
    font-size: 14px;
}