index.module.less 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. }
  36. img {
  37. overflow: hidden;
  38. border-radius: 18px;
  39. width: 120px;
  40. height: 120px;
  41. object-fit: contain;
  42. }
  43. .iconSelect {
  44. position: absolute;
  45. top: 11px;
  46. right: 11px;
  47. border-radius: 0;
  48. width: 24px;
  49. height: 24px;
  50. }
  51. .subjectName {
  52. text-align: center;
  53. color: #777777;
  54. }
  55. }
  56. .subjectSelect {
  57. .imgSection {
  58. border: 3px solid #198CFE;
  59. }
  60. .subjectName {
  61. font-weight: 600;
  62. color: #198CFE;
  63. }
  64. }