index.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .GoogsDown {
  2. .ant-modal-close {
  3. display: none;
  4. }
  5. .main {
  6. border-top: 1px solid #999999;
  7. padding-top: 15px;
  8. width: 100%;
  9. }
  10. .imgRowBox{
  11. display: flex;
  12. flex-wrap: wrap;
  13. .imgRow{
  14. width: calc(33.33% - 6px);
  15. margin-right: 9px;
  16. margin-bottom: 9px;
  17. position: relative;
  18. &:nth-of-type(3n){
  19. margin-right: 0;
  20. }
  21. .incoSelect{
  22. z-index: 10;
  23. cursor: pointer;
  24. top: 0px;
  25. right: 0px;
  26. position: absolute;
  27. width: 40px;
  28. height: 40px;
  29. padding: 6px;
  30. &>div{
  31. border-radius: 50%;
  32. background-color: #999;
  33. width: 100%;
  34. height: 100%;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. font-size: 16px;
  39. color: #fff;
  40. }
  41. }
  42. .incoSelectActive{
  43. &>div{
  44. background-color: green;
  45. }
  46. }
  47. }
  48. }
  49. .radioBox{
  50. margin-top: 10px;
  51. display: flex;
  52. justify-content: space-between;
  53. }
  54. .button{
  55. margin-top: 20px;
  56. text-align: center;
  57. }
  58. }