/* 隐藏滚动条，但仍可滚动 */
body{
    /*background - image: url('/www/wwwroot/buke/public/assets/img/bj.png');*/
    /*background - size: cover;*/
    /*background - position: center;*/
    /*filter: grayscale(50%);*/
}
a {
    text-decoration: none;
    color:inherit;
}
.header{
    padding: 2vw 5vw;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.header .name{
    font-size: 14px;
    color: #14a958;
}
.header .logo{
    width: 120px;
    height: 30px;
}
.banner{
    width: 100%;
    /*height: 200px;*/
}
.banner img{
    width: 100%;
    /*height: 100%;*/
}
::-webkit-scrollbar {
  display: none;
}

.video-list{
    padding: 0 2vw 10vw 2vw;
}

.video-list .li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vw 0;
    border-bottom: 1px solid #f1f1f1;
}
.video-list .list .li .image{
    width: 100px;
    height: 75px;
    position: relative;
    display: inline-block;
}
.video-list .list .li .image img{
    width: 100%;
    height: 100%;
}
.video-list .list .li .image .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 30px;
    height: 30px;
}
.video-list .list .li .content{
    width: 68%;
}
.video-list .list .li .title{
    font-size: 14px;
    color: #333;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏超出部分的文本 */
    text-overflow: ellipsis; /* 在文本末尾显示省略号 */
    margin-bottom: 5px;
}
.video-list .list .li .content .intro{
    color: #999;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;

}
.video-list .list .li .more{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}
.more .browse{
    display: flex;
    align-items: center;
}
.more .browse img{
    width: 20px;
    height: 20px;
}
.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 888;
    left: 0;
}
.footer .list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #3c3c3c;
}
.footer .list .li{
    width: 50%;
    background: #3c3c3c;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 5px 0;
}
.footer .list .li img{
    width: 25px;
    height: 25px;
}
.footer .list .active{
    background: #02d6a6;
}
/* 轮播图整体容器样式 */
.carousel {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* 轮播图内部图片容器样式 */
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

/* 轮播图单项图片样式 */
.carousel-item {
    width: 100%;
    object-fit:cover;
}

/* 切换按钮容器样式 */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
/* 单个切换按钮样式 */
.prev-btn,
.next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.category{
    padding: 5vw 2vw;
}
.category .list{
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    display: flex;
    align-items: center;
}
.category .list .li{
    display: inline-block;
    padding: 5px 35px;
    margin-right: 10px;
    color: #333;
    border: 1px solid #e6e6e6;
}
.category .list .active{
    background-color: #02d6a6;
    color: #fff;
}
.category .two-list{
    /*white-space: nowrap;*/
    /*overflow-x: scroll;*/
    /*-webkit-overflow-scrolling:touch;*/
    /*scrollbar-width:none;*/
    /*display: flex;*/
    /*align-items: center;*/
    margin-top: 10px;
}
.category .two-list .li{
    display: inline-block;
    padding: 5px 15px;
    margin-right: 10px;
    color: #666;
    border: 1px solid #e6e6e6;
    font-size: 12px;
    margin-top: 10px;
}
.category .two-list .active{
    background-color: #02d6a6;
    color: #fff;
}
.catelist{
    border-top: 1px solid #f1f1f1;
    padding: 5vw 2vw 0 2vw;
    font-size: 14px;
    color: #666;
}