招标解析

This commit is contained in:
cwchen 2025-11-27 13:28:18 +08:00
parent 28d2dd60ed
commit 0fa939e560
1 changed files with 101 additions and 23 deletions

View File

@ -200,9 +200,10 @@ export default {
.el-tabs__header {
margin: 0;
padding: 0 20px;
padding: 12px 20px;
border-bottom: 1px solid #EBEEF5;
background: #FAFAFA;
background: #F5F7FA;
border-radius: 0;
}
.el-tabs__nav-wrap {
@ -211,22 +212,69 @@ export default {
}
}
.el-tabs__nav {
border: none;
display: flex;
align-items: center;
gap: 0;
}
.el-tabs__item {
height: 48px;
line-height: 48px;
height: 36px;
line-height: 36px;
padding: 0 20px;
font-size: 14px;
color: #606266;
border-bottom: 2px solid transparent;
background: #FFFFFF;
border: none;
border-radius: 0;
margin-right: 0;
position: relative;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: none;
&.is-active {
color: #409EFF;
border-bottom-color: #409EFF;
font-weight: 500;
//
&:first-child {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
&:hover {
color: #409EFF;
//
&:last-child {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
// +
&.is-active {
color: #FFFFFF;
background: #1F72EA;
font-weight: 500;
z-index: 1;
//
&:not(:first-child) {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
//
&:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
// +
&:not(.is-active) {
background: #FFFFFF;
color: #606266;
&:hover {
background: #F0F4FF;
color: #1F72EA;
}
}
}
@ -255,7 +303,7 @@ export default {
margin: 0;
padding: 0 20px;
border-bottom: 1px solid #EBEEF5;
background: #F5F7FA;
background: #FFFFFF;
}
.el-tabs__nav-wrap {
@ -264,22 +312,52 @@ export default {
}
}
.el-tabs__item {
height: 40px;
line-height: 40px;
padding: 0 16px;
font-size: 13px;
color: #606266;
border-bottom: 2px solid transparent;
.el-tabs__nav {
border: none;
}
.el-tabs__item {
height: 44px;
line-height: 44px;
padding: 0 20px;
font-size: 14px;
color: #606266;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
border-radius: 0;
margin-right: 0;
position: relative;
transition: all 0.3s ease;
cursor: pointer;
// + 线
&.is-active {
color: #409EFF;
border-bottom-color: #409EFF;
color: #1F72EA;
font-weight: 500;
background: transparent;
// 线
&::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: calc(100% + 8px);
height: 2px;
background: #1F72EA;
}
}
&:hover {
color: #409EFF;
//
&:not(.is-active) {
color: #606266;
background: transparent;
&:hover {
color: #1F72EA;
}
}
}