index.module.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .btnGroupModal {
  2. padding: 32px 0;
  3. :global {
  4. .n-button {
  5. height: 47px;
  6. min-width: 156px;
  7. }
  8. }
  9. }
  10. .subjectSync {
  11. .tips {
  12. padding: 40px;
  13. font-size: 20px;
  14. color: #131415;
  15. line-height: 28px;
  16. span {
  17. color: #F20606;
  18. }
  19. }
  20. }
  21. .subjectList {
  22. display: flex;
  23. align-items: center;
  24. flex-wrap: wrap;
  25. padding: 0 30px;
  26. gap: 20px 40px;
  27. }
  28. .subjectItem {
  29. .imgSection {
  30. position: relative;
  31. // padding: 7px;
  32. border: 3px solid transparent;
  33. border-radius: 24px;
  34. line-height: 0;
  35. overflow: hidden;
  36. }
  37. img {
  38. overflow: hidden;
  39. border-radius: 18px;
  40. width: 127px;
  41. height: 127px;
  42. object-fit: contain;
  43. }
  44. .iconSelect {
  45. position: absolute;
  46. top: 8px;
  47. right: 8px;
  48. border-radius: 0;
  49. width: 24px;
  50. height: 24px;
  51. }
  52. .subjectName {
  53. text-align: center;
  54. color: #777777;
  55. }
  56. }
  57. .subjectSelect {
  58. .imgSection {
  59. border: 3px solid #198CFE;
  60. }
  61. .subjectName {
  62. font-weight: 600;
  63. color: #198CFE;
  64. }
  65. }