123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .GoogsDown {
- .ant-modal-close {
- display: none;
- }
- .main {
- border-top: 1px solid #999999;
- padding-top: 15px;
- width: 100%;
- }
- .imgRowBox{
- display: flex;
- flex-wrap: wrap;
- .imgRow{
- width: calc(33.33% - 6px);
- margin-right: 9px;
- margin-bottom: 9px;
- position: relative;
- &:nth-of-type(3n){
- margin-right: 0;
- }
- .incoSelect{
- z-index: 10;
- cursor: pointer;
- top: 0px;
- right: 0px;
- position: absolute;
- width: 40px;
- height: 40px;
- padding: 6px;
- &>div{
- border-radius: 50%;
- background-color: #999;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- color: #fff;
- }
- }
- .incoSelectActive{
- &>div{
- background-color: green;
- }
- }
- }
- }
- .radioBox{
- margin-top: 10px;
- display: flex;
- justify-content: space-between;
- }
- .button{
- margin-top: 20px;
- text-align: center;
- }
- }
|