| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- background-color: #f2f2f2;
- }
- ul li {
- list-style: none;
- }
- a {
- text-decoration:none ;
- color: #66b1ff;
- }
- .biaoshi{
- position: relative;
- font-style:normal
- }
- .biaoshi::before{
- position: absolute;
- top: -10px;
- left: -94px;
- content: '*';
- color: #F56C6C;
- }
- .el-button--primary{
- background-color: #1482b4;
- border-color: #1482b4;
- }
- .el-button--primary:focus, .el-button--primary:hover {
- background: #186f97;
- border-color: #186f97;
- }
- .el-input.is-active .el-input__inner, .el-input__inner:focus {
- border-color: #1482b4;
- }
- .cell{
- text-align: center !important;
- }
- .el-input__inner{
- line-height: normal;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
|