12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .words-H5 {
- display: inline-block;
- position: relative;
- cursor: auto;
- .words-H5-main {
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- width: 100vw;
- height: auto;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- padding: 0;
- .words-main-content {
- padding: 23Px 27Px 12Px;
- border-radius: 12Px 12Px 0 0;
- header {
- padding: 0;
- aside {
- flex-direction: column;
- align-items: flex-start;
- font-size: 16Px;
- line-height: 28Px;
- h1 {
- font-size: 20Px;
- }
- }
- .close {
- font-size: 18Px;
- line-height: 27Px;
- }
- }
- .words-list {
- &-item {
- padding: 12Px 0;
- font-size: 18Px;
- line-height: 25Px;
- }
- }
- }
- }
- }
|