index.less 558 B

12345678910111213141516171819202122232425262728
  1. .li{
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. padding: 20rpx;
  6. margin: 20rpx;
  7. border-bottom: 2rpx solid whitesmoke;
  8. .left{
  9. .top{
  10. font-size: 30rpx;
  11. font-weight: bold;
  12. text{
  13. margin-right: 20rpx;
  14. }
  15. }
  16. .under{
  17. font-size: 28rpx;
  18. text{
  19. margin-right: 20rpx;
  20. }
  21. }
  22. }
  23. .right{
  24. font-size: 28rpx;
  25. width: 200rpx;
  26. text-align: center;
  27. }
  28. }