123456789101112131415161718192021222324252627282930313233343536 |
- .modalmain {
- .header {
- position: relative;
- z-index: 1;
- height: 120px;
- background: #f3f3f3;
- border-radius: 20px 20px 0 0;
- .title {
- color: #000;
- font-weight: 400;
- font-size: 22px;
- }
- }
- .close {
- position: absolute;
- top: 15px;
- right: 15px;
- z-index: 2;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 36px;
- height: 36px;
- color: #c4c4c4;
- font-size: 20px;
- border-radius: 100%;
- cursor: pointer;
- transition: background-color 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
- &:hover {
- background-color: #fff;
- }
- }
- .content {
- padding: 50px 60px 20px;
- }
- }
|