/* 评价页面 样式表 */

.app-container {
  width:100%;
  max-width: 144rem;
  padding: 0.8rem 2rem 0 2rem;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fff;
}
/* 导航 */
.breadcrumb{
    width: 100%;
    margin-top: 1.6rem;
}
.breadcrumbs_item {
    text-decoration: none;
    font-size: .8125em;
    font-weight: 700;
}
.breadcrumbs_item a {
    color: #001952;
    text-decoration: none;
}
.breadcrumbs_item span{
    color: #656565;
}
.breadcrumbs_item:not(:last-child){margin-right: 0.5rem}
.breadcrumbs_item:not(:first-child)::before{content: ">";}
/* 主体 */
.main-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    font-size: 1.4rem;
}
/* 
 左侧评价
 */
.left-review-content{
    width: 75%;
}
.reviews-list{
    margin-bottom: 50px;
}
.review-item{
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
.item-left-image{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    
}

/* 评价主体 */
.review-right-body{
    padding-left: 120px;
    width: 70%;
}
.review-title{
    margin-bottom: 0.8rem;
}

.review-title a{
    font-size: 1.5rem;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.reviews-stars{
    margin-bottom: 0.8rem;
    color: #ffb400;
}
.iconfont{
    font-size: 14px;
}
.review-article {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #696969;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}
.review-img{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.review-img-item{
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 8px 8px  8px 0;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
   cursor: pointer;
}
.review-img-item img,.review-img-item video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
}
.review-img-item i{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-color: transparent rgb(255 255 255 / 50%) transparent transparent;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    transform: translate(-50%, -50%);
}
.review-icon{
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #696969;
}
.review-icon>span{
   margin-right: 5px;
}

.no-reviews{
    font-size: 20px;
    margin: 30px auto;
    text-align: center;
    color: #696969;
}
/* 
 右侧分类 
*/
.right-review-category{
    width: 25%;
    margin-bottom: 20px;
}
.review-category-head{
    position: relative;
    padding:0 8px 12px 15px;
    font-weight: 700;
    font-size: 17px;
    /* border-color: #ccc; */
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}
.icon-shouye-cela:before {
    display: inline-block;
    position: relative;
    top: 0.1rem;
    left: 0.2rem;
    transform: rotate(90deg);

}

.list-item{
    padding:10px 8px 8px 15px;
    border-bottom: 1px solid #ddd;
}
.list-item-seleted{
   font-size: 700;
}
.list-item a{
    color: #000;
}



/* 适配 */
@media screen and (max-width: 768px){
    .left-review-content, .right-review-category {
    width: 100%;
    margin: 0 auto;
    }
    .right-review-category {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #pictureViewer > .content {
    width: 100%;
    height: 500px;
  }
  
}

