| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- .form-drawer {
- .el-drawer__header {
- font-size: 18px;
- color: #333;
- margin-bottom: 0;
- padding: 20px 20px 10px 20px;
- background-color: #f2f5fc;
- }
- .el-drawer__body {
- background-color: #f2f5fc;
- padding: 0 !important;
- }
- .form-drawer__footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- padding: 10px 20px;
- margin-top: 10px;
- text-align: center;
- background: #fff;
- z-index: 9;
- }
- .wrap {
- box-sizing: border-box;
- background-color: #fff;
- padding: 15px 20px;
- border-radius: 8px;
- margin: 10px 20px;
- height: 90%;
- overflow-y: auto;
- overflow-x: hidden;
- .el-form-item {
- margin-bottom: 18px;
- }
- }
- }
- table {
- border-collapse: collapse;
- }
- .tbody {
- display: table-row-group;
- vertical-align: middle;
- border-color: inherit;
- }
- table:not([cellpadding]) td,
- table:not([cellpadding]) th {
- padding: 0.4rem;
- }
- .form-tag-dialog {
- .el-form {
- padding: 15px !important;
- }
- .info-title {
- margin-left: -15px;
- min-width: 75px;
- max-width: 150px;
- padding: 15px;
- font-weight: bolder;
- background-color: #f3f6fb;
- border-top-right-radius: 50px;
- border-bottom-right-radius: 50px;
- }
- .info-wrap {
- padding: 15px 0;
- box-sizing: border-box;
- }
- }
- .process-list, .process-drawer{
- .info-title {
- padding: 15px;
- font-weight: bold;
- background-color: transparent;
- font-size: 15px;
- }
- .title{
- font-size: 16px;
- font-weight: bolder;
- }
- }
- .info-title {
- min-width: 75px;
- max-width: 150px;
- padding: 15px 0;
- // margin-left: -20px;
- font-weight: bolder;
- background-color: #f3f6fb;
- border-top-right-radius: 50px;
- border-bottom-right-radius: 50px;
- }
- .info-wrap {
- padding: 15px 0;
- box-sizing: border-box;
- }
- .flex-cc {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .flex-between {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .price {
- color: var(--el-color-warning);
- }
- .new-scene {
- background-size: cover;
- background-image: url('@/assets/imgs/bg.png');
- background-attachment: fixed; /* 背景图片固定 */
- }
- .new-scene-tab {
- // background: radial-gradient( 34% 83% at 88% 14%, rgba(255,255,255,0.28) 0%, #EFF9FF 46%, rgba(255,255,255,0.33) 100%);
- box-shadow: inset 0px -1px 0px 0px #ffffff;
- }
- .new-scene-tab-none {
- display: none;
- }
- .newBgLoading {
- .el-loading-mask {
- background-color: rgba(#fff, 0.6);
- }
- }
- // datepicker处于同一行
- .el-picker-panel__body-wrapper{
- .el-picker-panel__body{
- .el-picker-panel__icon-btn{
- margin-top: 0;
- }
- }
- }
|