style.scss 1.29 KB
.site-layout{
  .site-layout-background {
     background: #1890FF;
     height: 60px;
   }
   .site-layout-header{
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     &::before{
       content: "";
       width: 1px;
       height: 36px;
       position: absolute;
       top: 50%;
       right: 0px;
       transform: translate(0%, -50%);
       background-color: #fff;
     }
   }
   .icon{
     width: 18px;
     height: 18px;
     margin-right: 10px;
   }
   .logo-box {
     margin: 0 auto;
     width: 1200px;
     display: flex;
     align-items: center;
     color: #fff;
   }
 
   .platform {
     font-size: 16px;
     line-height: 28px;
     color: #fff;
   }
   .site-layout-tab-header{
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-left: 16px;
     padding-right: 16px;
   }
   .user-menu-box{
     display: flex;
     align-items: center;
     cursor: pointer;
     .user-title{
       color: #fff;
       font-size: 18px;
       font-weight: 500;
       padding-left: 4px;
     }
   }
   .content{
     margin: 11px;
     flex: 1;
     height: calc(100vh - 82px);
     overflow: auto;
     padding-bottom: 30px;
   }
   .meun-box{
      height: calc(100vh - 82px);
      overflow: hidden;
   }
 }