1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .background {
- background-image: url(@/assets/UnityMenu/newBackground.jpg);
- width: 100%;
- height: 100vh;
- background-size: cover;
- background-repeat: no-repeat;
- display: flex;
- justify-content: center;
- background-color: #122c63;
- // align-items: flex-start;
- :global {
- .ant-popover-inner {
- background: #0d1a2b;
- }
- }
- }
- .menu {
- width: 152px;
- height: 152px;
- // 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%;
- padding-top: 160px;
- width: 1480px;
- max-height: 100vh;
- overflow-y: hidden;
- }
- .menuFriName {
- font-size: 24px;
- font-family: 'Microsoft YaHei UI'; /* Microsoft YaHei UI;*/
- // font-weight: 400;
- color: #bae3ff;
- // line-height: 0.45rem;
- // text-shadow: 0px 5px 14px rgba(0, 0, 0, 0.35), 0px 3px 12px rgba(0, 0, 0, 0.19);
- cursor: pointer;
- user-select: none;
- letter-spacing: 2px;
- text-align: center;
- word-break: keep-all;
- }
- .wrap {
- display: flex;
- flex-wrap: wrap;
- justify-content: start;
- align-items: center;
- }
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 292px;
- height: 220px;
- margin-bottom: 64px;
- }
- .pic {
- width: 152px;
- height: 152px;
- background-size: cover;
- background-repeat: no-repeat;
- }
|