index.module.less 965 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .musicAuth {
  2. background: url('../images/bg_top.png') no-repeat top left,
  3. url('../images/bg_center.png') no-repeat left 80%,
  4. url('../images/bg_bottom.png') no-repeat bottom right,
  5. url('../images/music_main.png') no-repeat top right;
  6. background-size: 212px 126px, 178px 223px, 171px 163px, 668px 406px;
  7. background-color: #fff;
  8. .txt {
  9. position: relative;
  10. z-index: 1;
  11. @apply pb-5;
  12. &::after {
  13. content: '';
  14. display: block;
  15. width: 100%;
  16. height: 13px;
  17. background: #cbfdd5;
  18. position: absolute;
  19. bottom: 15px;
  20. left: 0;
  21. z-index: -1;
  22. opacity: 0.63;
  23. @apply rounded-xl;
  24. }
  25. }
  26. .col {
  27. background: #ffffff;
  28. box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.13);
  29. border-radius: 10px;
  30. min-height: 197px;
  31. }
  32. :global {
  33. .el-dialog {
  34. --el-dialog-width: 379px !important;
  35. }
  36. .el-dialog__header,
  37. .el-dialog__body {
  38. padding: 0;
  39. }
  40. }
  41. }