index.module.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .uploadSection {
  2. width: 156px;
  3. height: 106px;
  4. background: #f8faf9;
  5. border-radius: 4px;
  6. border: 1px solid rgba(45, 199, 170, 0.26);
  7. font-size: 14px;
  8. color: #2dc7aa;
  9. line-height: 20px;
  10. }
  11. .uploadClass {
  12. height: 106px;
  13. width: 100%;
  14. :global {
  15. .el-loading-spinner {
  16. margin-top: -43px;
  17. height: 106px;
  18. }
  19. }
  20. }
  21. .avatar-upload-preview_range,
  22. .avatar-upload-preview {
  23. width: 180px;
  24. height: 180px;
  25. box-shadow: 0 0 4px #ccc;
  26. overflow: hidden;
  27. img {
  28. background-color: #f7f7f7;
  29. height: 100%;
  30. }
  31. }
  32. .avatar-upload-preview_range {
  33. border-radius: 0;
  34. }
  35. .previewImg {
  36. padding-left: 50px;
  37. padding-top: 10px;
  38. & > span {
  39. display: block;
  40. color: #212121;
  41. font-size: 16px;
  42. padding-bottom: 15px;
  43. }
  44. }
  45. .operation {
  46. font-size: 24px;
  47. display: flex;
  48. align-items: center;
  49. margin-top: 20px;
  50. & > i {
  51. margin-left: 12px;
  52. cursor: pointer;
  53. }
  54. .icon-rate {
  55. display: inline-block;
  56. width: 20px;
  57. height: 20px;
  58. background: url('./images/icon_rate.png') no-repeat center;
  59. background-size: contain;
  60. }
  61. }
  62. .vue-cropper {
  63. border-radius: 5px;
  64. overflow: hidden;
  65. }
  66. :deep(.el-dialog) {
  67. margin-bottom: 10vh;
  68. .el-dialog__header {
  69. // background: #363d55;
  70. background: #fff;
  71. padding: 15px 20px 15px;
  72. .el-dialog__title {
  73. color: #212121;
  74. }
  75. .el-dialog__headerbtn .el-dialog__close {
  76. color: #212121;
  77. }
  78. }
  79. .el-dialog__body {
  80. padding-top: 0;
  81. }
  82. }