|
- .workspace {
- position: relative;
- height: 100%;
- padding: 20px 30px 10px;
- overflow-y: auto;
- background: linear-gradient(#ecf2fe, #f9fafb);
-
- &__overview {
- flex: 1;
- gap: 15px;
- padding: 20px 30px;
- background-color: white;
- border-radius: 4px;
-
- &__title {
- margin-bottom: 20px;
- color: @text-color;
- font-weight: 500;
- font-size: @font-size-title;
- }
-
- &__content {
- display: flex;
- flex-wrap: wrap;
- gap: 15px;
- align-items: center;
-
- &__statistics {
- flex: none;
- // min-width: 500px;
- background: linear-gradient(
- 123.08deg,
- rgba(138, 138, 138, 0.06) 1.32%,
- rgba(22, 100, 255, 0.02) 58.35%
- );
- border-radius: 4px;
-
- // // 媒体查询
- // @media screen and (max-width: 1600px) {
- // flex: 1;
- // }
- }
- }
- }
-
- &__quick-start {
- display: flex;
- gap: 15px;
- align-items: flex-start;
- width: 100%;
- margin-top: 16px;
- }
-
- &__user {
- display: flex;
- flex-direction: column;
- width: 326px;
- min-width: 326px;
- height: 700px;
- }
-
- &__robot-img {
- position: fixed;
- right: 20px;
- bottom: 90px;
- z-index: 99;
- width: 56px;
- height: 56px;
- cursor: pointer;
- }
- }
|