index.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .B1exhibit {
  2. padding-bottom: 120px;
  3. overflow-y: auto;
  4. :global {
  5. .B1top {
  6. width: 100%;
  7. height: auto;
  8. object-fit: fill !important;
  9. }
  10. .B1tit {
  11. font-size: 24px;
  12. font-weight: 700;
  13. color: var(--themeColor);
  14. margin: 10px 0 24px;
  15. text-align: center;
  16. }
  17. .B1txt {
  18. padding: 0 30px;
  19. color: #303030;
  20. font-size: 16px;
  21. letter-spacing: 3px;
  22. line-height: 24px;
  23. }
  24. .B1btn {
  25. position: absolute;
  26. bottom: 0;
  27. left: 50%;
  28. transform: translateX(-50%);
  29. max-width: 500px;
  30. width: 100%;
  31. height: 100px;
  32. background-color: #fff;
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-between;
  36. padding: 0 30px;
  37. & > div {
  38. height: 54px;
  39. line-height: 54px;
  40. text-align: center;
  41. font-size: 20px;
  42. font-weight: 700;
  43. border-radius: 5px;
  44. background-color: var(--themeColor);
  45. width: 30%;
  46. color: #fff;
  47. }
  48. .B1btn2 {
  49. background-color: var(--themeColor2);
  50. }
  51. .B1btn3 {
  52. background-color: var(--themeColor3);
  53. }
  54. }
  55. }
  56. }