123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- @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:201px;
- height: 100%;
- iframe{
- width: 100%;
- height: 100%;
- }
- }
- //设置
- .userAction {
- background-color: #ccc;
- display: none;
- li {
- text-align: center;
- cursor: pointer;
- }
- }
- //修改密码
- .modalAction {
- // padding: 20px;
- input {
- border: 1px solid #E2E5EF;
- width: 300px;
- height: 40px;
- line-height: 40px;
- border-radius: 3px;
- margin-bottom: 15px;
- padding: 0 10px;
- box-sizing: border-box;
- }
- p span {
- width: 90px;
- display: inline-block;
- text-align: right;
- }
- .waring {
- color: red;
- display: none;
- text-align: left;
- i {
- margin-left: 15px;
- }
- }
- }
|