12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .mine {
- width: 100vw;
- position: relative;
-
- .content {
- padding: 40px;
- margin-top: 60px;
- .title {
- font-size: 28px;
- margin-bottom: 30px;
- }
- .code{
- text-align: center;
- font-size: 48px;
- }
- .search {
- // width: 100%;
- display: flex;
- padding: 0 20px;
- height: 70px;
- align-items: center;
- background: #EAEAEF;
- border-radius: 10px;
- .search-img {
- width: 36px;
- height: 36px;
- display: flex;
- }
- .search-input {
- margin-left: 6px;
- flex: 1;
- font-size: 24px;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(0, 0, 0, 0.4);
- line-height: 82px;
- }
- }
- .console{
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- .console-button{
- margin-top: 80px;
- width: 70%;
- height: 60px;
- border-radius: 60px;
- line-height: 60px;
- background: firebrick;
- color: #EAEAEF;
- font-size: 28px;
- text-align: center;
- }
- }
- .user-info{
- margin-top: 40px;
- padding: 40px;
- background: #e3e3e979;
- font-size: 28px;
- .identity{
-
- }
- .status{
- margin-top: 10px;
- }
- }
- }
- }
|