div::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 6px;
}
div::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background: #f1f1f1; /* 设置轨道的背景颜色 */
}
div::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover {
    background: #555; /* 设置滑块在悬停状态下的背景颜色 */
}
div::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background: #888; /* 设置滑块的背景颜色 */
}
*{ 
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    margin: 0;
    color: #3c3c3c;
    font-family: system-ui, "Segoe UI", "Open Sans", "Helvetica Neue",
        sans-serif;
    font-weight: 400;
    height: 100%;
    background-color: rgb(248 248 248 / 50%);
}
.layui-carousel, .layui-carousel>[carousel-item]>* {
    background-color: rgb(248 248 248 / 50%);
}
#loading {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    margin: 0 auto;
    font-size: 24px;
    color: #f40;
    z-index: 10;
}
#container {
    width: 100%;
    height: 100%;
    position: relative;
}
#top {
    top: 0;
    width: 100%;
    height: calc(100% - 160px);
    display: flex;
}
#left {
    position: relative;
    width: calc(100% - 360px);
    height: 100%;
}
#left .group-btn {
    position: absolute;
    top: 20px;
    width: 100%;
    font-size: 18px;
}
.layui-btn {
    padding: 0 10px;
}
.btn-change {
    position: absolute;
    z-index: 10;
    padding: 0 12px;
    right: 30px;
    width: auto;
}
.btn-change i {
    font-size: 24px;
}
.btn-back {
    /* display: block; */
    position: absolute;
    z-index: 10;
    left: 30px;
    width: auto;
}
.btn-back i {
    font-size: 24px;
}
.btn-back a {
    display: inline-block;
    color: #fff;
    /* padding: 6px 10px; */

}
.tips {
    color: lightgrey;
    font-size: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.btn-fullscreen {
    /* display: block; */
    position: absolute;
    padding: 0 12px;
    right: 90px;
    color: #fff;
    z-index: 10;
}
.btn-fullscreen i{
    font-size: 24px;
}
.btn-right {
    position: absolute;
    padding: 0 12px;
    right: 150px;
    color: #fff;
    z-index: 10;
}
.btn-right i{
    font-size: 24px;
}
.btn-down {
    position: absolute;
    padding: 0 12px;
    right: 210px;
    color: #fff;
    z-index: 10;
}
.btn-down i{
    font-size: 24px;
}
#right {
    width: 360px;
    height: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
#jt, #ft {
    height: 100%;
    overflow: hidden;
}
#bottom {
    height: 160px;
    bottom: 0;
}
.img-box {
    font-size: 0;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    
}
.img-box a {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px;
    height: 100%;
    user-select: none;
}
.img-box .carousel-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /* 设置16:9的比例 */
}
.img-box .carousel-img:hover {
    transform: scale(1.02);
    transition: all 0.5s;
}

.img-box a .title {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 24px;
    line-height: 24px;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #fefefe;
    background: #000;
    overflow: hidden;
    text-align: center;
}
#right .title {
    font-family: fangsong;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}
#right .desc {
    font-family: cursive;
    height: 80%;
    font-weight: 400;
    line-height: 20px;
    font-size: 16px;
    line-height: 24px;
    overflow-y: auto;
}

#ft {
    display: none;
}
.btn-fj {
    position: absolute;
    z-index: 10;
    bottom: 30px;
    right: 30px;
    padding: 6px 10px;
}
@media only screen and (max-width: 992px) {
    .btn-right, .btn-down, .btn-fullscreen {
        display: none;
    }
     .btn-back, .btn-change {
        transform: scale(0.9);
    }
    .tips {
        font-size: 14px;
    }
}