1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .container{
- width: 100%;
- }
- h2{
- padding: 11px 10px;
- font-size: 16px;
- font-weight: 600;
- border-bottom: 1px solid #E2E5EF;
- }
- .main-body{
- margin: 20px 40px;
- }
- .totalSumBox{
- margin: 0 0 20px 0;
- text-align: right;
- .totalSum{
- color: red;
- }
- }
- table{
- width: 100%;
- border:1px solid #E2E5EF;
- border-collapse: collapse;/*关键代码*/
-
- thead{
- background: #EFF0F9;
-
- }
- th,td{
- height: 40px;
- box-sizing: border-box;
- padding: 0 20px;
- border:1px solid #E2E5EF;
- border-collapse: collapse;/*关键代码*/
- }
- th{
- font-size: 14px;
- font-weight: 500;
- }
- td{
- font-size: 14px;
- font-weight: 400
- }
- .moduleNumber{
- text-align: center;
- }
-
- }
- .moduleScore, .totalSum{
- text-align: center;
- input{
- text-align: center ;
- height: 30px;
- }
- }
- .saveModuleBox{
- margin: 20px 0 0 0;
- }
- .saveModule{
- display: inline-block;
- float: right;
- background: #5A8EEE;
- color:#fff;
- padding: 9px 16px;
- border-radius: 5px;
- cursor: pointer;
- }
- .tableWrapper{
- overflow-y: auto;
- }
- .mask {
- position: fixed;
- width: 100%;
- height: 100%;
- background: #000;
- opacity: 0.5;
- left: 0;
- top: 0;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
-
- input[type="number"] {
- -moz-appearance: textfield;
- }
|