| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- @import '~antd/es/style/themes/default.less';
- .main__b__2 {
- display: flex;
- width: 100%;
- height: 100%;
- padding-top: 16px;
- padding-bottom: 16px;
- overflow: auto;
- background-color: @menu-bg;
- .leftMenu {
- width: 224px;
- border-right: @border-width-base @border-style-base @border-color-split;
- :global {
- .ant-menu-inline {
- border: none;
- }
- .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
- font-weight: bold;
- }
- }
- }
- .right__b__0 {
- flex: 1;
- padding-top: 8px;
- padding-right: 40px;
- padding-bottom: 8px;
- padding-left: 40px;
- .title {
- margin-bottom: 12px;
- color: @heading-color;
- font-weight: 500;
- font-size: 20px;
- line-height: 28px;
- }
- }
- //:global {
- .ant-list-split .ant-list-item:last-child {
- border-bottom: 1px solid @border-color-split;
- }
- .ant-list-item {
- padding-top: 14px;
- padding-bottom: 14px;
- }
- //}
- }
- //:global {
- .ant-list-item-meta {
- // 账号绑定图标
- .taobao {
- display: block;
- color: #ff4000;
- font-size: 48px;
- line-height: 48px;
- border-radius: @border-radius-base;
- }
- .dingding {
- margin: 2px;
- padding: 6px;
- color: #fff;
- font-size: 32px;
- line-height: 32px;
- background-color: #2eabff;
- border-radius: @border-radius-base;
- }
- .alipay {
- color: #2eabff;
- font-size: 48px;
- line-height: 48px;
- border-radius: @border-radius-base;
- }
- }
- // 密码强度
- font.strong {
- color: @success-color;
- }
- font.medium {
- color: @warning-color;
- }
- font.weak {
- color: @error-color;
- }
- //}
- @media screen and (max-width: @screen-md) {
- .main__b__2 {
- flex-direction: column;
- .leftMenu {
- width: 100%;
- border: none;
- }
- .right__b__0 {
- padding: 40px;
- }
- }
- }
|