*{
    font-family:"YahooSans VF","Helvetica Neue",Helvetica,Arial,sans-serif
}
p{
    margin:0;
}
h1,h2,h3,h4,h5,h6{
    margin:0;
}
html{
    width:100%;
    height:100%;
    background:#fff;
    max-width:428px;
    overflow-x:hidden;
    margin:0 auto;
}
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    position:relative;
    max-width:428px;
    margin:0 auto;
}
.content{
    max-width:428px;
    margin:0 auto;
    min-height:100%;
    display:flex;
    flex-wrap:wrap;
}
.top_card{
    padding-top:40%;
    position:relative;
    margin-top:60px;
    width:100%;
    overflow:hidden;
}
.top_card img{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
#navBar{
    width:100%;
    max-width:428px;
    height:60px;
    background:#fff;
    border-bottom:1px solid #ddd;
    position:fixed;
    top:0;
    line-height:60px;
    display:flex;
    align-items:center;
}
#navBar #collapse{
    width:30px;
    height:20px;
    margin-left:16px;
    display:flex;
}
.page_title{
    text-align:center;
    padding-right:46px;
    width:100%;
}
#select_bar{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,.5);
    display:flex;
    z-index:999;
    transition:all linear .1s;
}
.select_content{
    width:70%;
    height:100%;
    background:#fff;
    position: fixed;
    width:300px;
}
.select_content p.select_item{
    font-size:16px;
    font-weight:700;
    padding-left:16px;
    height:40px;
    line-height:40px;
    position:relative;
}
.select_content a{
    color:#030303;
}
.close_btn{
    width:90%;
    margin-left:10%;
    text-align:right;
    height:30px;
    line-height:30px;
    margin:20px;
}
.close_btn img{
    width:15px;
    height:15px;
    display:inline-block;
    margin-right:20px;
}
.hidden_bar{
    left:-102% !important;
    display:none !important;
}
.section{
    padding:12px;
    width:100%;
}
.section_item{
    width:100%;
    display:flex;
    align-items: revert;
    margin-bottom:15px;
}
.section_item .img_container{
    width:40%;
    border-radius:8px;
    overflow:hidden;
    max-height:92px;
}
.section_item .img_container img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.right_container{
    width:60%;
    padding-left:12px;
    display: flex;
    flex-wrap: wrap;
}
.right_container h4{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 4.5em;
    color: #000;
    line-height: 1.5em;
}
.bottom_info{
    font-size:.8em;
    color:#888686;
    display:flex;
    justify-content: space-between;
    width: 100%;
    /* font-weight: 700; */
    align-items: end;
}
.section_title{
    margin-bottom:10px;
    margin-top:20px;
    text-transform: capitalize; /* 使每个单词的首字母大写 */  
}
.carousel-inner {  
    position: absolute;  
    width: 100%;  
    height: 100%;  
    display: flex;  
    transition: transform 0.5s ease;
    top:0;
}  
.carousel-item {  
    min-width: 100%; /* 每个item占满整个轮播图 */  
    height: 100%;  
    position: relative;  
}  
img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover; /* 确保图片填满整个容器 */  
}  
a{
    color:auto;
    text-decoration:none;
}
.carousel-item p{
    position:absolute;
    bottom:10px;
    left:0;
    color:#fff;
    line-height:20px;
    height:auto;
    font-size:1.1em;
    padding:0 10px;
    font-weight:600;
}
.active_item::after{
    content:"";
    position:absolute;
    width:1px;
    height:60%;
    left:0;
    top:20%;
    border-left:2px solid #333;
}