1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- @import './reset.less';
- .container{
- width: 100%;
- height: 100%;
- overflow: auto;
- background-color: #fff;
- }
- .assertTypeDetail {
-
- .filterBox{
- margin-bottom: 15px;
- }
- .main-body{
- margin: 20px 0;
- padding: 0 35px;
- min-width: 1090px;
- /*width: 100%;*/
- }
- .filterItem{
- position: relative;
- height: 40px;
- line-height: 40px;
- margin: 0 20px 15px 0;
- float: none !important;
- span{
- display: inline-block;
- line-height: 40px;
- position: relative;
- }
- .explainL:before {
- content: "*";
- color: #f56c6c;
- margin-right: 4px;
- }
- input{
- width:120px;
- height:40px;
- border-radius:4px;
- border: 1px solid #E2E5EF;
- outline: none;
- margin-right: 10px;
- padding: 0 10px;
- box-sizing: border-box;
- }
- }
-
- .selectLevel,.selectDept{
- display: inline-block;
- position: relative;
- width:120px;
- padding: 0 10px;
- height:40px;
- border-radius:4px;
- border: 1px solid #E2E5EF;
- box-sizing: border-box;
- cursor: pointer;
- }
- .selectDept{
- width: 160px;
- }
- .filterDropList{
- position: absolute;
- right: 0;
- max-height: 200px;
- overflow-y: auto;
- background: #fff;
- display: none;
- border: 1px solid #e4e7ed;
- box-shadow: 0 2px 12px 0 #e4e7ed;
- z-index: 2;
- li{
- padding: 0 10px;
- }
- }
-
- .deptList{
- width: 160px;
- max-height: 400px;
- }
- .listTypeAll {
- li {
- height: 48px;
- line-height: 48px;
- background-color: #fff;
- cursor: pointer;
- padding-bottom: 1px solid #ebeef5;
- }
- }
- }
|