/* 作业 */

/* 品牌列表 */
.brand-list{
    position: relative;
    padding-bottom: 8px;
}
.brand-list ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: -3.5px;
    margin-left: 0;
}
.brand-list ul li{
    width: 20%;
    display: flex;
    justify-content: center;
    margin-top: 11px;
    box-sizing: border-box;
}
.brand-list ul li:nth-child(5n+1){
    margin-left: 0;
}
.brand-list.collapse ul li:nth-child(n+10){
    display: none;
}
.brand-list .brand-item{
    width: 60px;
}
.brand-list .show-all-brands-btn{
    position: absolute;
    right: 0px;
    bottom: 8px;
    z-index: 10;
    font-size: 12px;
    color: #333;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 20%;
    height: 50px;
}
.brand-list .show-all-brands-btn:active{
    opacity: .8;
}

.brand-list .show-all-brands-btn .icon-more{
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #522712;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    box-sizing: border-box;
}
.brand-list .show-all-brands-btn .icon-more::before{
    content: '...';
}
.brand-list .show-all-brands-btn .icon-more-font{
    margin-top: 4px;
    font-size: 11px;
    color: #74381e;
}
.brand-item-pic{
    width: 60px;
    height: 30px;
    overflow: hidden;
}
.brand-item-pic img{
    width: 100%;
}
.brand-item-name{
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    text-align: center;
}

/* 热门款式 */
.hot-style-wrapper{
    padding-bottom: 15px;
}
.hot-style-tab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.hot-style-tab h3{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.hot-style-tab span{
    font-size: 11px;
    color: #74381e;
    display: inline-flex;
    align-items: center;
}
.hot-style-tab span::after{
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 4px;
    border-left: 1px solid #74381e;
    border-bottom: 1px solid #74381e;
    transform: rotate(-45deg);
    box-sizing: border-box;
}
/* 状态类，便于脚本控制 */
.hot-style-tab span.expanded{
    cursor: pointer;
}
.hot-style-tab span.expanded::after{
    transform: rotate(135deg);
    transition: transform .18s ease;
}
/* 热门款式 列表 */
.hot-style-list{ 
    padding: 8px 0 0;
}
.hot-style-list.collapsed{ 
    height: 73px;
    overflow: hidden;
}
.hot-style-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 12.5px;
}
.hot-style-list ul li{
    box-sizing: border-box;
    height: 25px;
    max-width: 123px;
}
.hot-style-list ul li a{
    height: 25px;
    line-height: 25px;
    max-width: 123px;
    display: block;
    border-radius: 4px;
    border: 1px solid #f0f2f5;
    font-size: 14px;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 14px;
    box-sizing: border-box;
}
.hot-style-list ul li a:hover{
    background: #f7f7f7;
}


/* post-list */
.post-list{
}

.post-list > ul{
}

/* 分割线 */
.post-list > ul > li.underline{
    position: relative;
}
.post-list > ul > li.underline::after{
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right,  transparent 0%,  #e5e5e5 25%, #e5e5e5 75%, transparent 100%);
}

.post-list > ul > li.picture{
}

.post-list > ul > li.video{
}

.post-list .author{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 0;
}

.post-list .author-avatar{
    width: 17.5px;
    height: 17.5px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 4px;
}

.post-list .author-avatar img{
    width: 100%;
}

.post-list .author-name{
    font-size: 11px;
    color: #999;
    margin-right: 5px;
}
/* .post-list .author-badge{} */
.post-list .author-badge span.author-vip{
    display: block;
    width: 11px;
    height: 11px;
    background: url(../../images/wap4.0/bbs/icon-vip@2x.png) no-repeat 0 0;
    background-size: 11px 11px;
}


.post-list .post-content{
    padding: 15px 0 0;
}

.post-list .post-title{
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.post-list .post-card-picture{

}

.post-list .post-card-picture ul{
    display: flex;
    justify-content: flex-start;
    gap: 2px;
}

.post-list .post-card-picture li{
    flex: 0 0 calc((100% - 4px) / 3);
    aspect-ratio: 234 / 157;
    overflow: hidden;
}
.post-list .post-card-picture li:first-child{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.post-list .post-card-picture li:last-child{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.post-list .post-card-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-list .post-info{
    display: flex;
    height: 18px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.post-list .post-info-left{
    display: flex;
    align-items: center;
}
.post-list .post-info-left span{margin-right: 5px;}

.post-list .style-default{
    font-size: 11px;
    color: #a0a0a0;
}

.post-list .style-brand{
    color: #999;
    background-color: #f5f4f9;
    font-size: 9px;
    line-height: 15px;
    height: 15px;
    border-radius: 7.5px;
    padding: 0 .5em;
}

.post-list .post-info-right{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}


.post-list .post-info-icon{
    background: url(../../images/wap4.0/bbs/icon-comment.png) no-repeat 0 0;
    background-size: 18px 75px;
    height: 18px;
    padding-left: 22px;
    font-size: 11px;
    line-height: 18px;
}
.post-list .post-info-share{
    background-position: 0 -50px;
}

.post-list .post-info-comment{
    background-position: 0 -25px;
}

.post-list .post-info-like{
    background-position: 0 0px;
}

.video-landscape .post-card-video{
    width: 100%;
}

.video-portrait .post-card-video{
    width: calc(320 * 100vw / 750);
}


.post-card-video{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.post-card-video img{
    width: 100%;
}
.post-card-video::after{
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22.5px;
    margin-top: -22.5px;
    content: "";
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.5) url(../../images/wap4.0/bbs/icon-play.png) no-repeat 50% 50%;
    border-radius: 50%;
    background-size: 13.5px 15.5px;
}
.post-card-video span{
    position: absolute;
    right: 17px;
    bottom: 10px;
    font-size: 12px;
    color: #fff;

}

.bbs-write-wrapper{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 55px;
    height: 55px;
    background-color: #894d32;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}
.bbs-write-wrapper .bbs-write{
    width: 19px;
    height: 18.5px;
    background: url(../../images/wap4.0/bbs/icon-write.png) no-repeat 0 0;
    background-size: cover;
}
.bbs-write-wrapper em{
    font-size: 11px;
    color: #fff;
}

/* 热门话题 */
.hot-topic{
    padding-bottom: 15px;
}
.hot-topic h3{
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    font-weight: bold;
}

            /* <div class="hot-posts-wrapper">
                <div class="hot-posts-item">
                        <img src="http://placehold.co/230x413/f88/fff" alt="">
                        <div class="pa hot-posts-black"></div>
                        <div class="pa hot-posts-title">
                            <span></span>
                            <em>表友游记</em>
                        </div>
                        <div class="pa hot-posts-intro">
                            24302个帖子
                        </div>
                </div>
            </div> */
.hot-posts-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hot-posts-item{
    width: calc( (100% - 10px )/3 );
    height: 206.5px;
    border-radius: 5px;
    overflow: hidden;
}
.hot-posts-item img{
    width: 100%;
}
.hot-posts-black{
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 30%);
}
.hot-posts-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    left: 5px;
    top: 0;
    height: 30px;
    font-size: 12px;
    color: #fff;
}
.hot-posts-title::before{
    display: block;
    content: "#";
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    font-size: 9px;
    background-color: #f9e0c7;
    color: #8b807f;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    margin-right: 3px;
}
.hot-posts-intro{
    position: absolute;
    right: 5px;
    bottom: 10px;
    height: 13px;
    line-height: 13px;
    font-size: 8px;
    color: #666;
    padding: 0 1em;
    background-color: rgba(225,225,225,0.5);
    border-radius: 7px;
}

