_fav.css 3.28 KB
.yoho-favorite-page {
    width: 100%;
    height: auto;

    .fav-content {
        .fav-type {
            display: none;
        }
        .show {
            display: block;
        }

        .fav-null {
            font-size: 22px;
            color: #444;
            display: block;
            margin-top: 100px;
            text-align: center;

            &:before {
                content: '';
                display: block;
                width: 188px;
                height: 171px;
                background: resolve("home/fav/fav-null.png");
                background-size: 100% 100%;
                margin: 0 auto 45px auto;
            }
        }

        .go-shopping {
            width: 472px;
            height: 88px;
            line-height: 88px;
            margin: 80px auto 0 auto;
            background: #444;
            text-align: center;
            color: #fff;
            display: block;
            font-size: 26px;
            border-radius:.2rem;
        }

        .fav-product-list {
            list-style: none;

            li {
                height: auto;
                overflow: hidden;
                margin-top: 20px;
            }

            .fav-del {
                float: left;
                display: none;
            }

            .show {
                display: block;
            }

            .delhide {
                display: block;
            }
            
            .fav-img-box {
                width: 152px;
                height: 203px;
                float: left;
                margin-right: 24px;

                img {
                    display: block;
                    overflow: hidden;
                    width: 100%;
                    height: 100%;
                }
            }

            .fav-info-list {
                color: #444;
                font-size: 24px;
                border-bottom: 1px solid #e0e0e0;
                padding-bottom: 20px;
                margin-right: 5px;
                height: 203px;
                overflow: hidden;
                position: relative;

                .title {
                    width: 430px;
                    text-overflow: ellipsis;
                    font-size: 28px;
                    margin: 0;
                }

                .fav-price {
                    margin-top: 20px;

                    .new-price {
                        color: #d1021c;
                        font-size: 24px;
                    }

                    .price-underline {
                        text-decoration: line-through;
                        margin-left: 15px;
                        color: #b0b0b0;
                        font-size: 24px;
                    }
                }

                .save-price {
                    position: absolute;
                    bottom: 20px;
                    left: 0;
                    width: 100%;
                    min-height: 24px;

                    span {
                        &.sell-out {
                            float: right;
                            padding: 5px 18px;
                            color:  #b0b0b0;
                            border-radius: 20px;
                            font-size: 22px;
                        }
                    }
                }
            }
        }
    }
}