123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .background {
- background-image: url(@/assets/UnityMenu/newBackground.png);
- width: 100%;
- height: calc(100vh - 79px);
- overflow-y: auto;
- position: absolute;
- top: 0;
- left: 0;
- background-size: cover;
- background-repeat: no-repeat;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #122c63;
- // align-items: flex-start;
- :global {
- .ant-popover-inner {
- background: #0d1a2b;
- }
- }
- }
- .menu {
- width: 130px;
- height: 130px;
- // background: linear-gradient(0deg, #285098, #1d3969);
- // box-shadow: 0px 3px 0.16rem 2px rgba(0, 0, 0, 0.3), 0px 5px 0.39rem 0.1rem rgba(0, 0, 0, 0.1);
- // border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- }
- .menuContent {
- height: 100%;
- width: 1486px;
- max-height: 100vh;
- overflow-y: hidden;
- padding-top: 190px;
- }
- .menuFriName {
- font-family: 'Microsoft YaHei UI';
- cursor: pointer;
- user-select: none;
- text-align: center;
- word-break: keep-all;
- font-size: 16px;
- font-weight: 400;
- color: #caf0ff;
- line-height: 18px;
- letter-spacing: 1px;
- }
- .wrap {
- display: flex;
- align-items: center;
- background: url('@/assets/floor.png') no-repeat bottom center;
- background-size: contain;
- margin-bottom: 106px;
- padding: 0 68px;
- display: flex;
- width: 100%;
- }
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 130px;
- height: 186px;
- margin-bottom: 78px;
- user-select: none;
- margin-left: 170px;
- }
- .pic {
- width: 100%;
- height: 100%;
- background-size: cover;
- background-repeat: no-repeat;
- }
|