123456789101112131415161718192021222324252627282930313233343536 |
- .container{
- padding: 20rpx
- }
- .item-group{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .item-group .item-image{
- width: 40rpx;
- height: 50rpx;
- }
- .item-group .item-title{
- font-size: 32rpx;
- color: #41be57;
- margin-left: 10rpx;
- margin-right: 10rpx;
- }
- .item-group .item-rate{
- font-size: 28rpx;
- color: #ccc;
- }
- .btn-group{
- display: flex;
- margin-top: 40rpx;
- margin-bottom: 40rpx;
- justify-content: flex-start;
- align-items: center;
- }
- .page-btn{
- flex: 1;
- height: 60rpx;
- color: #898989;
- border-color: #898989;
- line-height: 60rpx;
- }
|