index.css 940 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .sp-col-45 {
  2. width: 45%;
  3. float: left;
  4. }
  5. .sp-page {
  6. float: left;
  7. width: 100%;
  8. }
  9. .sp-box {
  10. width: 100%;
  11. padding: 8px 0;
  12. display: inline-block;
  13. float: left;
  14. clear: both;
  15. }
  16. .sp-pb-5 {
  17. padding-bottom: 5px;
  18. }
  19. .sp-bg-white {
  20. background-color: #fff !important;
  21. }
  22. .sp-text-right {
  23. text-align: right !important;
  24. }
  25. .sp-fs-12 {
  26. font-size: 12px !important;
  27. }
  28. .sp-fs-20 {
  29. font-size: 20px !important;
  30. }
  31. #clickCard {
  32. margin: 20px auto;
  33. width: 100px;
  34. height: 100px;
  35. padding: 25px;
  36. border-radius: 100px;
  37. background: #008FFF;
  38. cursor: pointer;
  39. position: relative;
  40. }
  41. #clickCard.gray {
  42. background: #e3e3e3;
  43. }
  44. #clickCard span {
  45. width: 70px;
  46. text-align: center;
  47. display: inline-block;
  48. position: absolute;
  49. left: 50%;
  50. top: 45%;
  51. transform: translate(-50%,-50%);
  52. color: white;
  53. }