12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .container{
- background-color: #F7F7F7;
- width: 100vw;
- min-height: 100vh;
- .list{
- padding: 60px 16px 0px 16px;
- background-color: #ffffff;
- .list-item{
- padding:16px 0px;
- background-color: #ffffff;
- border-top: 1px solid #EEEEEE;
- display: flex;
- justify-content: space-between;
- align-items: center;
- &:nth-of-type(1){
- border: none;
- }
- .li-left{
- .li-info{
- font-size: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .li-time{
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- margin-top: 6px;
- }
- }
- .li-right{
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: bolder;
- }
- }
- }
- .null{
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- padding-top: 252px;
- .null-img{
- width: 147px;
- height: 100px;
- }
- .null-text{
- font-size: 12px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #CCCCCC;
- margin-top: 10px;
- }
- }
- .no-more{
- font-size: 12px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #AAAAAA;
- text-align: center;
- padding: 20px 0px;
- }
- }
|