123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- @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;
- }
- input:focus{
- border: 1px solid @activeColor ;
- outline: 0;
- -webkit-box-shadow:@activeColor 0px 0px 2px;
- -moz-box-shadow: @activeColor 0px 0px 2px;
- box-shadow: @activeColor 0px 0px 2px;
- }
- }
-
- .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;
- }
- .qcItemTitle{
- float: left;
- line-height: 40px;
- }
- .listTypeAll {
- margin-left: 80px;
- .caseEntryName {
- // height: 48px;
- line-height: 48px;
- background-color: #fff;
- cursor: pointer;
- border-bottom: 1px solid #ebeef5;
- }
- .tabTitle,.tabInfo{
- line-height: 40px;
- }
- .caseEntryDetail{
- display: none;
- }
- .opera,.qcItem,.qcUsed{
- display: inline-block;
- text-align: center;
- }
- .opera{
- width: 15%;
- }
- .qcItem{
- width: 50%;
- }
- .qcUsed{
- width: 15%;
- }
- .tabTitle{
- background: #eee;
- }
- .tabInfo{
- box-sizing: border-box;
- border-bottom: 1px solid #eee;
- }
- }
- }
- .borderTop{
- border-top: 1px solid #ebeef5;
- }
- .iconCheck{
- width: 14px;
- cursor: pointer;
- }
- .submitBox{
- text-align: right;
- }
- .submit{
- display: inline-block;
- width:60px;
- height:32px;
- background:@activeColor;
- border-radius:4px;
- color: #fff;
- text-align: center;
- line-height: 32px;
- position: relative;
- top: 2px;
- cursor: pointer;
- margin: 0 20px 22px 0;
- }
|