submitted.scss 801 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .cell-box{
  2. position: relative;
  3. .cell-box-right{
  4. padding: 2rpx 6rpx;
  5. height: 30rpx;
  6. position: absolute;
  7. right: 20rpx;
  8. top: 0;
  9. bottom: 0;
  10. margin: auto 0;
  11. display: flex;
  12. align-items: center;
  13. }
  14. }
  15. .content-status {
  16. padding: 20rpx 0 40rpx;
  17. background-color: $page-bg;
  18. line-height: 1.5;
  19. font-size: $uni-font-size-base;
  20. color: $uni-text-color;
  21. .tip {
  22. position: relative;
  23. margin-bottom: 20rpx;
  24. }
  25. .tip text {
  26. position: absolute;
  27. right: 30rpx;
  28. color: $uni-text-color-grey;
  29. }
  30. .cell {
  31. padding: 10rpx 30rpx;
  32. }
  33. .status-info {
  34. padding: 10rpx 30rpx;
  35. position: relative;
  36. border-top: 1px solid #D8D8D8;
  37. }
  38. .title {
  39. margin-bottom: 20rpx;
  40. font-weight: 700;
  41. text-indent: 0;
  42. }
  43. .font-grey {
  44. color: $uni-text-color-grey;
  45. }
  46. }