12345678910111213141516171819202122232425262728293031323334 |
- .A3hotList {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 30001;
- background-color: rgba(255, 255, 255, 0.4);
- backdrop-filter: blur(4px);
- padding: 10%;
- transition: all 0.3s;
- :global {
- .A3close {
- position: absolute;
- top: 20px;
- right: 20px;
- cursor: pointer;
- }
- .A3main {
- width: 100%;
- height: 100%;
- background-color: red;
- color: #fff;
- overflow: auto;
- & > div {
- cursor: pointer;
- margin-bottom: 10px;
- &:hover {
- color: blue;
- }
- }
- }
- }
- }
|