Files
lingji-work-fe/src/views/trial/style.scss
rd 8d57d555b4 style(input): 优化输入框样式和功能
- 调整输入框后缀和清除图标的样式
- 修改导航栏右侧组件的样式
- 优化试用页面布局和步骤样式
2025-09-18 10:03:43 +08:00

110 lines
2.3 KiB
SCSS

.trial-wrap {
background: transparent;
min-width: 1200px;
.cts {
color: #211f24;
font-family: $font-family-medium;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 22px;
}
:deep(.ant-steps) {
.ant-steps-item {
margin-left: 0;
.ant-steps-item-container {
cursor: text;
.ant-steps-item-icon {
width: 10px;
height: 10px;
}
.ant-steps-item-content {
margin-top: 8px;
.ant-steps-item-title {
color: var(--Text-1, #211f24) !important;
font-family: $font-family-regular;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.ant-steps-item-description {
color: var(--Text-3, #737478) !important;
font-family: $font-family-regular;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
}
.ant-steps-item-tail {
top: 4px;
&::after {
height: 1px !important;
}
}
}
&.ant-steps-item-wait {
.ant-steps-icon {
.ant-steps-icon-dot {
background: #d7d7d9;
}
}
}
&.ant-steps-item-active,
&.ant-steps-item-finish {
.ant-steps-icon {
.ant-steps-icon-dot {
background: #6d4cfe;
}
}
.ant-steps-item-content {
.ant-steps-item-title {
padding: 0;
font-family: $font-family-medium;
}
}
}
}
}
.header-wrap {
background: transparent;
height: $navbar-height;
line-height: $navbar-height;
padding-inline: inherit;
color: inherit;
width: 100%;
min-width: $layout-min-width;
:deep(.right-wrap) {
.task-icon,
.agent-entry {
display: none;
}
}
}
.trial-content {
width: 100%;
height: 100%;
background: transparent;
min-height: calc(100vh - $navbar-height);
:deep(.ant-form) {
.ant-form-item {
&:not(:last-child) {
margin-bottom: 24px !important;
}
.ant-form-item-label {
> label {
font-family: $font-family-medium;
font-weight: 500;
}
}
}
}
}
}