|
@@ -213,6 +213,7 @@
|
|
|
|
|
|
<div class="btnGroup">
|
|
|
<div
|
|
|
+ v-if="step > 1"
|
|
|
class="btn btnUp"
|
|
|
:style="{ cursor: step <= 1 ? 'not-allowed' : 'pointer' }"
|
|
|
@click="changeUpDown('up')"
|
|
@@ -301,6 +302,7 @@ export default {
|
|
|
// background: linear-gradient(180deg, #e1f8ff 0%, #bbe7fd 100%);
|
|
|
background: linear-gradient(180deg, #d3ede8 0%, #cff5fa 100%);
|
|
|
border-radius: 0 0 23px 23px;
|
|
|
+ padding-top: 8px;
|
|
|
}
|
|
|
|
|
|
.steps {
|
|
@@ -415,6 +417,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.w6 {
|
|
|
+ margin-top: 12px;
|
|
|
width: 196px;
|
|
|
height: 207px;
|
|
|
}
|
|
@@ -493,6 +496,11 @@ export default {
|
|
|
width: 165px;
|
|
|
height: 39px;
|
|
|
cursor: pointer;
|
|
|
+ transition: opacity 0.2s ease;
|
|
|
+ &:hover {
|
|
|
+ opacity: 0.8;
|
|
|
+ transition: opacity 0.2s ease;
|
|
|
+ }
|
|
|
|
|
|
+ .btn {
|
|
|
margin-left: 16px;
|