div#subject_box {
    margin-top: 50px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970;
    }
}

@media (min-width: 1250px) {
    .container {
        width: 1200px;
    }
}

.temp-li {
    display: inline-block;
    vertical-align: top;
    width: 183px;
    background-color: #ffffff;
    box-shadow: 0 0 4px rgba(20, 20, 20, 0.1);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}

.temp-li:hover {
    box-shadow: 0 0 12px rgba(20, 20, 20, 0.2);
}

.temp-li .content {
    position: relative;
}

.temp-li .content:hover  .temp-hover-floor{
    display: block;
}

.temp-li .content .temp-preview-floor {
    height: 180px;
}

.temp-li .content .temp-preview-floor img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.temp-li .content .temp-hover-floor {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.temp-li .content .temp-hover-floor img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.temp-li .footer {
    height: 75px;
    font-size: 14px;
}

.temp-li .footer .title {
    margin: 10px 0 5px 0;
    padding: 0 8px;
    height: 18px;
    line-height: 18px;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.temp-li .footer .price {
    height: 18px;
    line-height: 18px;
    padding-right: 8px;
    font-size: 12px;
    text-align: right;
}

.temp-li .footer .price .ori {
    color: #909399;
}

.temp-li .footer .price .ori > span {
    text-decoration: line-through;
}

.temp-li .footer .price .real {
    color: #303133;
    
}

.temp-li .footer .price .discount {
    color: #ED7700;
}

.temp-li .footer .author {
    line-height: 20px;
    padding: 0 8px;
    color: #606266;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.temp-li .footer .author .pv {
    float: right;
    color: #909399;
}

.temp-li .footer .author .name {
    float: left;
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #909399;
    font-size: 10px;
}

.temp-li .footer .author .name:hover {
    text-decoration: underline;
}



.temp-li .footer .author .pv span{
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    max-width: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
}

.temp-li .footer .split {
    margin: 5px 0;
    border-bottom: 1px solid #EFEFEF;
}