| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .home {
- width: 100%;
- height: 100%;
- :global {
- .back {
- width: 75px;
- height: 60px;
- position: absolute;
- top: 50%;
- left: 50%;
- cursor: pointer;
- transform: translate(-900px, -410px);
- img {
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- }
- .title {
- width: 750px;
- height: 200px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -350px);
- img {
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- }
- .content {
- margin-top: 20px;
- width: 752px;
- height: 98px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- line-height: 40px;
- color: #fff;
- text-align: center;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -120px);
- background: url('../../assets/img/rule-info.svg') no-repeat center / contain;
- }
- .btn-group {
- width: 270px;
- height: 200px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, 160px);
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- gap: 35px;
- .btn-start, .btn-rank {
- width: 100%;
- height: 80px;
- cursor: pointer;
- }
- }
- }
- }
|