*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;/*它表示文本内容不需要添加任何装饰效果*/
    /*因为每个浏览器中对html标签的默认外边距和内边距的值不同，
    为了达到让主流浏览器设置出来的布局显示相同，则需要把html
    中所有标签的padding,margin都设置为0；*/
    scrollbar-width: none;  
}


.about_enter{
    width: 390px;
    margin: 0 auto;
    margin-top: 30px;
}
.content{
    padding-left: 16px;
    padding-right: 16px;
}
/*标题*/
.enter_title{
    text-align: center;
    color: #111;
    margin-bottom: 24px;
}
.enter_title h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.enter_title p{
    font-size: 14px;
}
/*小标题*/
.navlist{
    width: 100%;
    margin-bottom: 24px;
}
.navlist ul{
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.navlist li{
    margin: 0 10px;
    font-weight: bold;
    
}

.listbox .list {  
    display: none; /* 隐藏所有list元素 */  
}  
.listbox .list.active {  
    display: flex; /* 显示带有active类的list元素，并应用网格布局 */  
}

.navlist li {  
    /* 这里可以定义li的默认样式 */  
    color: #888686; /* 默认文本颜色 */  
    cursor: pointer; /* 鼠标悬停时显示小手图标，表示可点击 */  
}
.navlist li.active {  
    /* 这里定义当li有active类时的样式 */  
    color: #002b68;
    font-weight: bold; /* 还可以添加其他样式，比如加粗 */  
}  
.list {  
    display: flex;  
    overflow: hidden;  
    width: 100%; /* 或其他固定宽度 */  
}  
  
.list-item {  
    flex: 0 0 auto; /* 不允许子项伸缩 */  
    width: 100%; /* 初始宽度，可能需要调整 */  
    height: 350px;
    transition: transform 0.5s ease; /* 平滑过渡效果 */  
    background: violet;
}



.imgbx{
    width: 100%;
    height: 25.625rem;
    position: relative;
}
.imgbx img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(70%); 
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.textbx{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 16px;
    box-sizing: border-box;
}
.textbx span{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}
.textbx_bd{
    font-size: 14px;
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}
.textbx_bd h4{
    font-size: 18px;
    color: #fff;
    margin-bottom: 0.75rem;
}
.textbx_bd p{
    font-size: 12px;
    color: #fff;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: all 0.5s;
}



.swiper {
    width: 100%;
    height: 25.625rem;
} 