index.scss 2.95 KB
body {
    background-color: #f0f0f0;
}

.my-prize-wrap {
    padding: 20px 30px;
    font-size: 0;

    .prize-item {
        background-color: #FFFFFF;
        height: 300px;
        margin-bottom: 20px;
        
        &:last-child {
            margin-bottom: 0;
        }
    }
    
    .item-top {
        position: relative;
        height: 220px;
        padding: 40px 30px;
        box-sizing: border-box;
        
        .prize-img {
            position: absolute;
            top: 40px;
            left: 30px;
            width: 200px;
            height: 140px;
        }
        
        .prize-info {
            margin-left: 230px;
            height: 140px;
            box-sizing: border-box;
        }
        
        .prize-name {
            font-family: PingFang-SC-Regular;
            font-size: 30px;
            color: #444444;
            letter-spacing: 0;
            line-height: 1.5;
            
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .got-time {
            font-family: PingFangSC-Regular;
            font-size: 24px;
            color: #B0B0B0;
            letter-spacing: 0;
            line-height: 1.5;
            margin-top: 10px;
        }
    }
    
    .item-bottom {
        position: relative;
        height: 80px;
        
        .fix-line {
            position: absolute;
            height: 1px;
            top: 0;
            left: 0;
            right: 0;
            background-color: #e0e0e0;
            transform: scale(1, 0.5);
        }
        
        .detail {
            position: relative;
            height: 80px;
            padding-right: 64px;
            font-family: PingFang-SC-Regular;
            font-size: 28px;
            line-height: 80px;
            color: #B0B0B0;
            letter-spacing: 0;
            text-align: right;
            float: right;
        }
        
        .detail-img {
            position: absolute;
            top: 25px;
            right: 30px;
            width: 30px;
            height: 30px;
        }
    }
    
    .empty-prize {
        text-align: center;
        padding-top: 272px;
        
        .empty-img {
            width: 180px;
            height: 180px;
        }
        
        .empty-tip {
            font-family: PingFang-SC-Regular;
            font-size: 24px;
            color: #444444;
            letter-spacing: 0;
            text-align: center;
            margin-top: 60px;
        }
        
        .back-try {
            height: 80px;
            width: 426px;
            margin: 130px auto 0;
            background: #363636;
            border-radius: 2px;
            font-family: PingFang-SC-Regular;
            font-size: 28px;
            color: #FFFFFF;
            letter-spacing: 0;
            text-align: center;
            line-height: 80px;
        }
    }
}