style.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .data-library {
  2. .header {
  3. padding: 16px 32px;
  4. border-bottom: 1px solid #e8eaec;
  5. background: #fff;
  6. .title {
  7. font-size: 20px;
  8. font-weight: 500;
  9. color: #17233d;
  10. margin-bottom: 16px;
  11. }
  12. }
  13. .main-wrap {
  14. padding: 16px 24px 60px;
  15. .el-row {
  16. margin-bottom: 20px;
  17. &:last-child {
  18. margin-bottom: 0;
  19. }
  20. }
  21. .el-col {
  22. border-radius: 4px;
  23. margin-bottom: 16px;
  24. .el-card {
  25. border: none;
  26. transition: all 0.2s ease-in-out;
  27. &:hover {
  28. @apply cursor-pointer;
  29. box-shadow: 0 1px 6px rgb(0 0 0 / 20%);
  30. border-color: #eee;
  31. }
  32. ::v-deep .el-card__body {
  33. @apply text-center;
  34. padding: 16px;
  35. .figure-wrap {
  36. width: 60%;
  37. margin: 0 auto;
  38. .figure {
  39. @apply inline-block;
  40. }
  41. }
  42. .title {
  43. font-size: 16px;
  44. font-weight: 700;
  45. margin: 8px 0;
  46. }
  47. .desc {
  48. font-size: 14px;
  49. color: #808695;
  50. margin-bottom: 16px;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }