style.less 936B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .Five-Conste-box {
  2. margin: 20px 20px;
  3. width: 335px;
  4. height: 180px;
  5. background: #fbfbfb;
  6. -webkit-box-shadow: 0 7px 14px 0 rgba(0, 0, 0, 0.04),
  7. 0 4px 36px 0 rgba(0, 0, 0, 0.08);
  8. box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.04),
  9. 0 8px 72px 0 rgba(0, 0, 0, 0.08);
  10. border-radius: 38px;
  11. display: inline-flex;
  12. .Five-box-imageContent {
  13. width: 50%;
  14. height: 100%;
  15. position: relative;
  16. .Five-box-image {
  17. width: 160px;
  18. height: 190px;
  19. padding-left: 10px;
  20. filter: grayscale(100%);
  21. }
  22. .Five-imageLess {
  23. filter: grayscale(0%);
  24. }
  25. }
  26. .Five-box-content {
  27. width: 50%;
  28. height: 100%;
  29. display: inline-block;
  30. text-align: center;
  31. .Five-box-C-title {
  32. font-size: 34px;
  33. font-weight: bold;
  34. color: #140f0f;
  35. margin-top: 35%;
  36. }
  37. .Five-box-C-moon {
  38. font-size: 22px;
  39. font-weight: 500;
  40. color: #140f0f;
  41. }
  42. }
  43. }