|
@@ -9,12 +9,13 @@
|
|
v-for="item in list.list"
|
|
v-for="item in list.list"
|
|
:key="item.title"
|
|
:key="item.title"
|
|
class="leave-common-footer-item"
|
|
class="leave-common-footer-item"
|
|
|
|
+ :class="{ setStyle: item.title === '人工' }"
|
|
>
|
|
>
|
|
<div class="leave-common-footer-item-icon">
|
|
<div class="leave-common-footer-item-icon">
|
|
<span class="j-icon" :class="item.icon" />
|
|
<span class="j-icon" :class="item.icon" />
|
|
</div>
|
|
</div>
|
|
<div class="leave-common-footer-item-title">
|
|
<div class="leave-common-footer-item-title">
|
|
- {{ item.title }}-{{ item.subtitle }}
|
|
|
|
|
|
+ <span class="text">{{ item.title }}-</span>{{ item.subtitle }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -41,15 +42,26 @@ export default {
|
|
background-size: cover;
|
|
background-size: cover;
|
|
.leave-common-title {
|
|
.leave-common-title {
|
|
text-align: center;
|
|
text-align: center;
|
|
|
|
+ color: #2ABED1;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ }
|
|
|
|
+ .leave-common-footer-content {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 20px 0 16px;
|
|
}
|
|
}
|
|
.leave-common-footer-list {
|
|
.leave-common-footer-list {
|
|
display: flex;
|
|
display: flex;
|
|
- justify-content: center;
|
|
|
|
|
|
+ justify-content: space-between;
|
|
align-items: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
|
|
+ margin-top: 16px;
|
|
|
|
+ width: 424px;
|
|
.leave-common-footer-item {
|
|
.leave-common-footer-item {
|
|
display: flex;
|
|
display: flex;
|
|
- text-align: center;
|
|
|
|
|
|
+ justify-content: center;
|
|
|
|
+ margin-bottom: 16px;
|
|
.leave-common-footer-item-icon {
|
|
.leave-common-footer-item-icon {
|
|
img {
|
|
img {
|
|
width: 16px;
|
|
width: 16px;
|
|
@@ -57,8 +69,15 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.leave-common-footer-item-title {
|
|
.leave-common-footer-item-title {
|
|
- font-size: 16px;
|
|
|
|
- color: #333;
|
|
|
|
|
|
+ margin-left: 8px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #1d1d1d;
|
|
|
|
+ .text {
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ &.setStyle {
|
|
|
|
+ margin-right: 2px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|