index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .greetingBox {
  2. width: 100vw;
  3. min-height: 100vh;
  4. padding: 26rpx 20rpx;
  5. background-color: #fcd9927c;
  6. box-sizing: border-box;
  7. .template {
  8. width: 100%;
  9. padding: 20rpx 31rpx;
  10. margin-bottom: 40rpx;
  11. box-sizing: border-box;
  12. background-color: white;
  13. border-radius: 20rpx;
  14. box-shadow: 0 2rpx 24rpx 0 rgba(252, 216, 146, 0.51);
  15. .header {
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. .left {
  20. .title {
  21. font-size: 34rpx;
  22. font-weight: bold;
  23. }
  24. .time {
  25. font-size: 24rpx;
  26. color: #666;
  27. }
  28. }
  29. .right {
  30. text-align: center;
  31. .delete {
  32. width: 24rpx;
  33. height: 32rpx;
  34. }
  35. .text {
  36. font-size: 24rpx;
  37. }
  38. }
  39. }
  40. .body {
  41. margin: 24rpx 0rpx;
  42. width: 650rpx;
  43. height: 520rpx;
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. background-color: #D8D8D8;
  48. .playBtn {
  49. width: 84rpx;
  50. height: 84rpx;
  51. }
  52. }
  53. .footer {
  54. .countBox {
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. .box {
  59. display: flex;
  60. align-items: center;
  61. .icon {
  62. width: 38rpx;
  63. height: 34rpx;
  64. }
  65. .num {
  66. margin-left: 4rpx;
  67. font-size: 26rpx;
  68. color: #666;
  69. }
  70. }
  71. }
  72. .handle {
  73. display: flex;
  74. justify-content: space-between;
  75. justify-content: center;
  76. margin-top: 28rpx;
  77. .btn {
  78. width: 294rpx;
  79. height: 86rpx;
  80. }
  81. }
  82. }
  83. }
  84. }