index.less 904 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .activityDet {
  2. .header {
  3. width: 100%;
  4. height: 600rpx;
  5. background-color: wheat;
  6. }
  7. .btnsBox {
  8. position: relative;
  9. text-align: center;
  10. background-color: skyblue;
  11. font-size: 0rpx;
  12. .send {
  13. width: 290rpx;
  14. height: 80rpx;
  15. }
  16. .countDown {
  17. position: absolute;
  18. right: 30rpx;
  19. top: 0px;
  20. bottom: 0px;
  21. margin: auto;
  22. display: flex;
  23. align-items: center;
  24. color: #FD3545;
  25. font-size: 22rpx;
  26. font-weight: bold;
  27. .countBox {
  28. padding: 10rpx;
  29. border-radius: 10rpx;
  30. margin: 0rpx 4rpx;
  31. color: white;
  32. background-image: linear-gradient(180deg, #FF7079 0%, #FE3D44 100%);
  33. }
  34. }
  35. }
  36. }