index.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .collection-detail {
  2. --el-dialog-margin-top: 8vh;
  3. --el-dialog-bg-color: transparent;
  4. --el-dialog-box-shadow: none;
  5. .el-dialog__body {
  6. display: flex;
  7. align-items: flex-start;
  8. gap: 30px;
  9. }
  10. .el-dialog__close {
  11. --el-color-info: white;
  12. width: 40px;
  13. height: 40px;
  14. border-radius: 50%;
  15. background: var(--van-primary-color);
  16. svg {
  17. width: 22px;
  18. height: 22px;
  19. }
  20. }
  21. .el-dialog__headerbtn {
  22. top: 26px;
  23. right: -40px;
  24. &:hover .el-dialog__close {
  25. color: white;
  26. }
  27. }
  28. &-preview,
  29. &-info {
  30. padding: 20px;
  31. background: var(--white-bg);
  32. box-shadow: 0 0 10px #000;
  33. }
  34. &-preview {
  35. width: 540px;
  36. color: var(--black-text-color);
  37. h3 {
  38. font-weight: 700;
  39. font-size: 36px;
  40. line-height: 100%;
  41. }
  42. .el-image {
  43. margin: 20px 0;
  44. width: 100%;
  45. }
  46. &__btn {
  47. margin: 0 auto;
  48. width: 160px;
  49. height: 40px;
  50. font-size: 16px;
  51. line-height: 40px;
  52. text-align: center;
  53. border: 1px solid var(--black-text-color);
  54. cursor: pointer;
  55. }
  56. }
  57. &-info {
  58. flex: 1;
  59. padding: 20px 20px 0px;
  60. width: 440px;
  61. p {
  62. margin-bottom: 24px;
  63. font-size: 14px;
  64. color: var(--black-text-color);
  65. line-height: 160%;
  66. }
  67. }
  68. &__mask {
  69. position: absolute;
  70. top: 0;
  71. left: 0;
  72. width: 64px;
  73. height: 133px;
  74. background: url("../../images/mark.png") no-repeat center / contain;
  75. }
  76. }