12345678910111213141516171819202122232425262728293031323334353637383940 |
- .sz-container{
- color: #ffffff;
- padding: 23px 16px 16px;
- height: calc(100% - 80px);
- display:flex;
- }
- .left-barge{
- flex:1;
- position:relative;
- height:100%;
- display:flex;
- padding:20px;
- flex-wrap:wrap;
- align-items:flex-start;
- justify-content:flex-start;
- }
- .left-barge .build-name{
- padding:5px 10px;
- cursor:pointer;
- }
- .left-barge .build-name:hover{
- color:#2196f3;
- }
- .left-barge .build-name.active{
- color:#2196f3;
- }
- .left-barge:before{
- content: '';
- position: absolute;
- bottom: 0;
- right: 0;
- width: 2px;
- height: 100%;
- background: linear-gradient(to bottom, rgba(33,150,243,0), #2196f3, rgba(33,150,243,0));
- }
- .right-barge{
- flex:4;
- background-image:url(../images/b1.png);
- background-size:100%;
- }
|