1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- @import './reset.less';
- .container{
- height: 100%;
- }
- .header{
- position: fixed;
- width: 100%;
- height:40px;
- top:0;
- background: #267FD7;
- text-indent: 15px;
- line-height: 40px;
- color: #fff;
- font-size: 16px;
- a{
- color: #fff;
- text-decoration: none;
- margin-right: 15px;
- }
- img{
- vertical-align: middle;
- margin-right: 10px;
- }
- }
- .main-body{
- height: 100%;
- margin-top:40px;
- }
- .menu{
- width: 200px;
- height: 100%;
- border-right:1px #267FD7 solid;
- .active{
- color: #267FD7;
- }
- .list-1{
- ul{
- display: none;
- }
- }
- li{
- line-height: 34px;
- padding: 0 15px;
- cursor: pointer;
- }
- }
- .main{
- margin-left:215px;
- height: 100%;
- iframe{
- width: 100%;
- height: 100%;
- }
- }
- //设置
- .userAction {
- background-color: #ccc;
- display: none;
- li {
- text-align: center;
- cursor: pointer;
- }
- }
- //修改密码
- .modalAction {
- position: fixed;
- width: 200px;
- height: 200px;
- left: 50%;
- top: 50%;
- margin-left: -100px;
- margin-top: -100px;
- padding: 20px;
- background-color: #ccc;
- display: none;
- .waring {
- color: red;
- display: none;
- }
- }
|