card.wxss 709 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. page {
  2. height: 100%;
  3. }
  4. .content {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .images {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. height: 100%;
  13. }
  14. .images .slide-image {
  15. width: 80%;
  16. height: auto;
  17. }
  18. .btn-box {
  19. height: 140rpx;
  20. z-index: 9999;
  21. width: 100%;
  22. padding: 0rpx 30rpx;
  23. position: fixed;
  24. bottom: 0;
  25. left: 0;
  26. box-sizing: border-box;
  27. background-color: #ffffff;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. .btn-box .btn {
  33. width: 100%;
  34. height: 88rpx;
  35. line-height: 88rpx;
  36. text-align: center;
  37. font-size: 34rpx;
  38. font-family: PingFang SC;
  39. font-weight: 400;
  40. color: #FFFFFF;
  41. background: #2BC7B9 !important;
  42. border-radius: 44rpx;
  43. }