registrationNotice.scss 1002 B

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