2026-01-08 11:27:19 +08:00
|
|
|
.map_content_bottom_utils_container {
|
2026-01-05 14:53:49 +08:00
|
|
|
.bottom_utils {
|
|
|
|
|
width: 1000px;
|
2026-01-07 13:51:33 +08:00
|
|
|
//height: 168px;
|
2026-01-05 14:53:49 +08:00
|
|
|
position: absolute;
|
|
|
|
|
left: calc(50% - 500px);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
&.port {
|
2026-07-20 20:02:52 +08:00
|
|
|
top: 920px;
|
2026-07-28 16:31:04 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.option {
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.img {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
&:hover {
|
|
|
|
|
animation: bottomUtilsContainerSlideY 0.5s;
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
}
|
|
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.label {
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-15 18:01:40 +08:00
|
|
|
.child_items {
|
2026-01-07 13:51:33 +08:00
|
|
|
transform-origin: left;
|
|
|
|
|
display: flex;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 8px;
|
|
|
|
|
left: 40px;
|
|
|
|
|
background-image: linear-gradient(to right,
|
2026-01-05 14:53:49 +08:00
|
|
|
rgba(31, 62, 129, 0) 0%,
|
|
|
|
|
rgba(31, 62, 129, 0.4) 50%,
|
2026-01-07 13:51:33 +08:00
|
|
|
rgba(31, 62, 129, 0) 100%);
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
border-image: linear-gradient(to right,
|
2026-01-05 14:53:49 +08:00
|
|
|
rgba(255, 255, 255, 0) 0%,
|
|
|
|
|
rgba(255, 255, 255, 0.4) 50%,
|
2026-01-07 13:51:33 +08:00
|
|
|
rgba(255, 255, 255, 0) 100%) 1;
|
|
|
|
|
border-left: none;
|
|
|
|
|
border-right: none;
|
|
|
|
|
padding: 6px 50px;
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-15 18:01:40 +08:00
|
|
|
.child_item {
|
2026-01-07 13:51:33 +08:00
|
|
|
padding: 0 20px;
|
|
|
|
|
text-align: center;
|
2026-03-02 16:35:37 +08:00
|
|
|
cursor: pointer;
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.child_img {
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 60px;
|
2026-01-05 14:53:49 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
&:hover {
|
|
|
|
|
animation: bottomUtilsContainerSlideY 0.5s;
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
}
|
|
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.child_label {
|
2026-03-02 16:35:37 +08:00
|
|
|
margin-top: -5px;
|
2026-01-07 13:51:33 +08:00
|
|
|
font-size: 12px;
|
|
|
|
|
width: 80px;
|
|
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
@keyframes bottomUtilsContainerSlideY {
|
|
|
|
|
0% {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
transform: translateY(-5px);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
}
|
2026-01-07 13:51:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.branch_office {
|
2026-07-20 20:02:52 +08:00
|
|
|
top: 1020px;
|
2026-07-28 16:31:04 +08:00
|
|
|
|
2026-01-07 13:51:33 +08:00
|
|
|
.option {
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 124px;
|
|
|
|
|
height: 43px;
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 43px;
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.items {
|
|
|
|
|
background-image: linear-gradient(to bottom, rgba(0, 9, 100, 0.5), rgba(1, 35, 145, 0.5));
|
|
|
|
|
border: 1px solid #167ce4;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 50px;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: max-content;
|
2026-07-23 10:52:22 +08:00
|
|
|
padding: 0 9px 5px 9px;
|
2026-01-07 13:51:33 +08:00
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background-image: linear-gradient(to bottom, rgb(19, 44, 140), rgba(22, 124, 228, 0));
|
|
|
|
|
border: 1px solid rgba(22, 124, 228, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.child_label {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-05 14:53:49 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|