index.wxss 683 B

12345678910111213141516171819202122232425262728293031323334
  1. .activityDet .header {
  2. width: 100%;
  3. height: 600rpx;
  4. background-color: wheat;
  5. }
  6. .activityDet .btnsBox {
  7. position: relative;
  8. text-align: center;
  9. background-color: skyblue;
  10. font-size: 0rpx;
  11. }
  12. .activityDet .btnsBox .send {
  13. width: 290rpx;
  14. height: 80rpx;
  15. }
  16. .activityDet .btnsBox .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. }
  28. .activityDet .btnsBox .countDown .countBox {
  29. padding: 10rpx;
  30. border-radius: 10rpx;
  31. margin: 0rpx 4rpx;
  32. color: white;
  33. background-image: linear-gradient(180deg, #FF7079 0%, #FE3D44 100%);
  34. }