registrationNotice.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* 报班通知 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. font-family: 'PingFangSC-Regular, PingFang SC';
  6. }
  7. .registration {
  8. &-list {
  9. padding: 26rpx 30rpx;
  10. margin-top: 88rpx;
  11. &-item {
  12. background-color: #fff;
  13. padding: 36rpx 32rpx;
  14. margin-bottom: 20rpx;
  15. border-radius: 10rpx;
  16. display: flex;
  17. .left {
  18. height: 224rpx;
  19. margin-right: 22rpx;
  20. border: solid 1px #E0E0E0;
  21. border-radius: 10rpx;
  22. padding: 2rpx;
  23. }
  24. .right {
  25. width: calc(100% - 204rpx);
  26. line-height: 50rpx;
  27. .name {
  28. font-size: 34rpx;
  29. color: #373737;
  30. font-weight: 500;
  31. }
  32. .school {
  33. font-size: 24rpx;
  34. color: #525252;
  35. }
  36. .content {
  37. overflow: hidden;
  38. text-overflow:ellipsis;
  39. white-space: nowrap;
  40. width: 100%;
  41. }
  42. .button {
  43. background-color: #709078;
  44. width: 120rpx;
  45. height: 50rpx;
  46. line-height: 50rpx;
  47. text-align: center;
  48. border-radius: 40rpx;
  49. font-size: 24rpx;
  50. color: #fff;
  51. margin-top: 20rpx;
  52. }
  53. .end {
  54. background-color: #CECECE;
  55. }
  56. }
  57. }
  58. }
  59. }