@import '~css/public.scss';

.PullLoadList{
    ul{
        width: 100%;
        li{
            width: 100%;
            padding: .1rem $padding2;
            padding-right: 1.1rem;
            background-color: #fff;
            margin-bottom: .05rem;
            overflow: hidden;
            position: relative;
            img{
                width: .8rem;
                height: .5rem;
                background: url('') no-repeat center center;
                background-size: cover;
                position: absolute;
                right: .2rem;
                top: .1rem;
                z-index: 10;
            }
            .leftContent{
                overflow: hidden;
                .title{
                    width: 100%;
                    height: .48rem;
                    line-height: .24rem;
                    -webkit-box-orient:vertical;
                    font-weight: bold;
                    font-size: .16rem;
                }
                .end{
                    width: 100%;
                    padding-top: .1rem;
                    line-height: .2rem;
                    font-size: .12rem;
                    color: $minorText;
                    em{
                        margin: 0 .05rem;
                    }
                }
            }
            &.noImage{
                padding-right: $padding2;
                img{
                    display: none;
                }
            }
            &.bigImage{
                padding-right: $padding2;
                a{
                    img{
                        width: 100%;
                        height: 1.4rem;
                        position: relative;
                        left: 0;
                        top: 0;
                    }
                    .leftContent{
                        display: none;
                    }
                }
            }
        }
    }
}