12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- :root {
- --zIndex-dialog: 9999;
- --default-bgc: #f2f4f7;
- --v-primary-base: #00897B;
- --v-error-base: #fe574a;
- --v-primary-lighten1: #26A69A;
- --v-primary-lighten2: #4DB6AC;
- --v-primary-lighten3: #80CBC4;
- --v-primary-lighten4: #B2DFDB;
- --default-text: #666;
- }
- // 长按钮
- .buttons {
- height: 36px;
- width: 224px;
- }
- // 短按钮
- .half-button {
- height: 36px;
- width: 88px;
- }
- // 默认宽度
- .default-width {
- width: 1184px;
- min-width: 1184px;
- max-width: 1184px;
- margin: 0 auto;
- // align-items: center;
- }
- // 高亮
- .default-active {
- color: var(--v-primary-base) !important;
- }
- .border-bottom-dashed {
- border-bottom: 1px dashed #ccc;
- }
- .white-bgc {
- background-color: #fff;
- }
- .ellipsis {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .vline {
- display: inline-block;
- width: 1px;
- height: 10px;
- vertical-align: middle;
- background-color: #e0e0e0;
- margin: 0 10px;
- }
- // 个人简历
- .resume-box {
- border-radius: 5px;
- padding: 20px 30px;
- background-color: #fff;
- }
- .resume-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 36px;
- }
- .resume-title {
- font-weight: 700;
- font-size: 18px;
- border-left: 5px solid #00897B;
- padding-left: 12px;
- line-height: 17px;
- }
|