1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .form {
- --el-component-size-large: 48px;
- :global {
- .el-input,
- .el-select--large {
- height: 48px;
- line-height: 48px;
- }
- .el-form-item__label {
- font-size: 16px;
- color: rgba(0, 0, 0, 0.85);
- }
- .el-radio-button__inner {
- border: var(--el-border);
- border-radius: var(--el-border-radius-base) !important;
- width: 100%;
- padding: 11px 19px !important;
- }
- .el-radio-button__original-radio:checked + .el-radio-button__inner {
- background-color: #e9fff8;
- color: var(--el-color-primary);
- box-shadow: no;
- }
- .el-select .el-select__tags .el-tag {
- background-color: #dffff8;
- border: 1px solid #4bb39e;
- color: #4bb39e !important;
- border-radius: 10px;
- margin: 0 6px 0 0;
- height: 30px;
- }
- .el-tag .el-icon {
- color: #4bb39e;
- background-color: transparent;
- }
- .plyr {
- width: 150px;
- height: 85px;
- min-width: auto;
- }
- }
- }
|