index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. background-size: 100% 100%;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. background-color: #D8D8D8;
  49. .playBtn {
  50. width: 84rpx;
  51. height: 84rpx;
  52. }
  53. }
  54. .footer {
  55. .countBox {
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. .box {
  60. display: flex;
  61. align-items: center;
  62. .icon {
  63. width: 38rpx;
  64. height: 34rpx;
  65. }
  66. .num {
  67. margin-left: 4rpx;
  68. font-size: 26rpx;
  69. color: #666;
  70. }
  71. }
  72. }
  73. .handle {
  74. display: flex;
  75. justify-content: space-between;
  76. justify-content: center;
  77. margin-top: 28rpx;
  78. .btn {
  79. width: 294rpx;
  80. height: 86rpx;
  81. }
  82. }
  83. }
  84. }
  85. }