| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .story {
- position: absolute;
- inset: 0;
- background: url("@/assets/images/bg-min.jpg") no-repeat center / cover;
- &-back {
- position: fixed;
- top: 34px;
- left: 34px;
- width: 76px;
- height: 76px;
- background: url("@/assets/images/back.png") no-repeat center / contain;
- z-index: 10;
- }
- &-menu {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- width: 658px;
- background: url("./images/menu-bg-min.png") no-repeat center / cover;
- ul {
- margin: 24px 0 0 16px;
- display: flex;
- flex-direction: column;
- gap: 10px;
- width: 538px;
- li {
- padding: 0 60px;
- height: 86px;
- line-height: 86px;
- font-size: 36px;
- color: white;
- background: rgba(61, 1, 12, 0.6);
- }
- }
- }
- &-title {
- margin: 152px 0 0 35px;
- width: 603px;
- }
- }
|