| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- .screening {
- background: #fff;
- padding: 5px 5px 5px;
- border-radius: 5px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- .screening-title {
- // width: 60px;
- margin-right: 5px;
- span {
- display: inline-block;
- width: 3px;
- height: 14px;
- background: #9f643a;
- border-radius: 1px;
- margin-right: 14px;
- }
- div {
- font-size: 18px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #9f643a;
- }
- img{
- width:30px;
- }
- }
- .screening-form {
- flex: 1;
- // margin-top: 22px;
- }
- .screening-item {
- flex: 1;
- min-width: 200px;
- max-width: 370px;
- // margin-right: 37px;
- margin-right: 16px;
- // margin-bottom: 20px;
- span {
- font-size: 14px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- // margin-right: 15px;
- display: inline-block;
- min-width: 70px;
- text-align: right;
- }
-
- .input {
- flex: 1;
- // width: 246px;
- // height: 38px;
- // border: 2px solid #D8D8D8;
- // outline: none;
- // font-size: 14px;
- // font-family: PingFang SC;
- // font-weight: 400;
- // padding: 0 11px;
- // box-sizing: border-box;
- }
- }
- .screen-btn {
- width: 58px;
- height: 38px;
- background: #9f643a;
- margin-right: 22px;
- // margin-bottom: 20px;
- img {
- width: 26px;
- }
- }
- .screen-yellow {
- background: #FFAE45 !important;
- margin-right: 0;
- }
- }
- .p-tab {
- div {
- width: 70px;
- height: 28px;
- background: rgba($color:#9f643a,$alpha:0.1);
- // opacity: 0.1;
- border-radius: 8px 8px 0px 0px;
- margin-right: 4px;
- font-size: 13px;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- cursor: pointer;
- white-space:nowrap ;
- overflow: hidden ;
- text-overflow: ellipsis;
- padding: 0 10px;
- }
- .p-active {
- color: #fff;
- background: #9f643a;
- }
- }
- .screening-item::v-deep .el-select{
- width: 100%;
- }
- .screening-item::v-deep .el-autocomplete{
- width: 100%;
- }
- .today-table ::v-deep .el-table td{
- padding: 2.5px 0;
- }
- .today-table ::v-deep .el-table th{
- padding: 4px 0;
- }
- .today-table ::v-deep .el-table .cell{
- padding: 0 5px;
- }
- .today-page{
- margin-top: 10px;
- }
- .screening-item ::v-deep .el-date-editor.el-input, .el-date-editor.el-input__inner{
- flex: 1;
- width: auto;
- }
- .screening-item ::v-deep .el-input--prefix .el-input__inner{
- padding-left: 25px;
- }
- .screening-item ::v-deep .el-input--suffix .el-input__inner{
- padding-right: 5px;
- }
- .screening-item .el-input__prefix{
- left: 0;
- }
|