|
@@ -48,6 +48,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <div class="pc-href-after-block"/>
|
|
|
</div>
|
|
|
<div v-show="showInfo" class="info-dialog animate__animated animate__fadeInRight" ref="ref_infoDialog">
|
|
|
<img :src="infoCurrent"/>
|
|
@@ -257,31 +258,37 @@ export default defineComponent({
|
|
|
margin: 0 22px 0 10px;
|
|
|
}
|
|
|
}
|
|
|
+ $pcHrefRight: 100px;
|
|
|
+ $pcHrefItemWidth: 264px;
|
|
|
.pc-href {
|
|
|
//opacity: 0.8;
|
|
|
z-index: 2;
|
|
|
position: absolute;
|
|
|
bottom: 0;
|
|
|
- right: 110px;
|
|
|
+ right: $pcHrefRight;
|
|
|
box-sizing: border-box;
|
|
|
display: grid;
|
|
|
- grid-template-columns: repeat(5, calc((100% - 22px * 4) / 5));
|
|
|
- column-gap: 22px;
|
|
|
+ grid-template-columns: repeat(5, $pcHrefItemWidth);
|
|
|
+ column-gap: 2px;
|
|
|
$skewXDeg: -30deg;
|
|
|
transform: skewX($skewXDeg);
|
|
|
+ background-color: #234382;
|
|
|
.pc-href-before-block {
|
|
|
position: absolute;
|
|
|
- background-color: #395587;
|
|
|
+ background-color: rgba(57, 85, 135, 0.8);
|
|
|
width: 80px;
|
|
|
- height: 280px;
|
|
|
+ height: 255px;
|
|
|
left: -80px;
|
|
|
bottom: 0;
|
|
|
}
|
|
|
.pc-href-block {
|
|
|
width: 100%;
|
|
|
+ height: 332px;
|
|
|
+ $pcHrefBlockHeadHeight: 45px;
|
|
|
.pc-href-block-head {
|
|
|
position: relative;
|
|
|
transform: skewX(-$skewXDeg);
|
|
|
+ white-space: nowrap;
|
|
|
&:after {
|
|
|
content: '';
|
|
|
position: absolute;
|
|
@@ -293,27 +300,30 @@ export default defineComponent({
|
|
|
z-index: -1;
|
|
|
transform: skewX($skewXDeg);
|
|
|
}
|
|
|
- height: 45px;
|
|
|
- font-size: 16px;
|
|
|
+ height: $pcHrefBlockHeadHeight;
|
|
|
+ font-size: 24px;
|
|
|
font-weight: 400;
|
|
|
color: #82D6FF;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- margin-bottom: 10px;
|
|
|
>img {
|
|
|
&:first-child {
|
|
|
margin: 0 11px 0 17px;
|
|
|
}
|
|
|
&:last-child {
|
|
|
- margin: 0 1px 0 auto;
|
|
|
+ position: absolute;
|
|
|
+ right: -100px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
.pc-href-block-content {
|
|
|
+ height: calc(100% - #{$pcHrefBlockHeadHeight});
|
|
|
+ box-sizing: border-box;
|
|
|
background-color: #031336;
|
|
|
- padding: 20px;
|
|
|
+ padding: 10px 16px;
|
|
|
display: grid;
|
|
|
grid-template-columns: repeat(1, 100%);
|
|
|
+ grid-template-rows: repeat(5, calc((100% - (10px * 4)) / 5));
|
|
|
row-gap: 10px;
|
|
|
.phbc-item {
|
|
|
position: relative;
|
|
@@ -329,10 +339,9 @@ export default defineComponent({
|
|
|
z-index: -1;
|
|
|
transform: skewX($skewXDeg);
|
|
|
}
|
|
|
- font-size: 16px;
|
|
|
+ font-size: 20px;
|
|
|
font-weight: normal;
|
|
|
color: #FFFFFF;
|
|
|
- height: 48px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
>img {
|
|
@@ -346,12 +355,22 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .pc-href-after-block {
|
|
|
+ z-index: -1;
|
|
|
+ transform: skewX(-$skewXDeg);
|
|
|
+ position: absolute;
|
|
|
+ background-color: rgba(3, 19, 54, 0.7);
|
|
|
+ width: $pcHrefItemWidth;
|
|
|
+ height: 100%;
|
|
|
+ right: -$pcHrefRight;
|
|
|
+ bottom: 0;
|
|
|
+ }
|
|
|
}
|
|
|
$infoItemActiveWidth: 1425px;
|
|
|
.info-dialog {
|
|
|
z-index: 2;
|
|
|
position: absolute;
|
|
|
- top: 172px;
|
|
|
+ top: 160px;
|
|
|
height: 674px;
|
|
|
display: flex;
|
|
|
left: calc((100% - #{$infoItemActiveWidth}) / 2);
|