|
|
@@ -144,7 +144,7 @@
|
|
|
<div
|
|
|
v-if="(deviceType.startsWith('location') || deviceType.startsWith('vehicle')) && activeKey == 'monitor'"
|
|
|
class="location-form"
|
|
|
- style="position: absolute; z-index: 9999; top: 50px"
|
|
|
+ style="position: absolute; top: 50px; z-index: 9999"
|
|
|
>
|
|
|
<div class="location-form-item">
|
|
|
<span class="location-form-label">{{ deviceType.startsWith('location') ? '人员名称:' : '车辆名称' }}</span>
|
|
|
@@ -173,13 +173,13 @@
|
|
|
deviceType.startsWith('gasDay_normal')
|
|
|
? '当日巡检监测'
|
|
|
: deviceType.startsWith('dustDayReport') ||
|
|
|
- deviceType.startsWith('bundleDayReport') ||
|
|
|
- deviceType.startsWith('bundleSpyDayReport') ||
|
|
|
- deviceType.startsWith('bundleReport') ||
|
|
|
- deviceType.startsWith('bundleSpyReport') ||
|
|
|
- deviceType.startsWith('dustReport')
|
|
|
- ? '最新监测报表'
|
|
|
- : '实时监测'
|
|
|
+ deviceType.startsWith('bundleDayReport') ||
|
|
|
+ deviceType.startsWith('bundleSpyDayReport') ||
|
|
|
+ deviceType.startsWith('bundleReport') ||
|
|
|
+ deviceType.startsWith('bundleSpyReport') ||
|
|
|
+ deviceType.startsWith('dustReport')
|
|
|
+ ? '最新监测报表'
|
|
|
+ : '实时监测'
|
|
|
"
|
|
|
>
|
|
|
<template v-if="(deviceType.startsWith('fanlocal') || deviceType.startsWith('fanmain')) && activeKey == 'monitor'">
|
|
|
@@ -633,7 +633,7 @@
|
|
|
<mainPath
|
|
|
v-if="deviceType == 'majorpath'"
|
|
|
:dataSource="majorPathEchartsData"
|
|
|
- style="width: 300px; height: 300px; position: absolute; left: 250px; top: 40px"
|
|
|
+ style="position: absolute; top: 40px; left: 250px; width: 300px; height: 300px"
|
|
|
/>
|
|
|
<component v-if="modalVisible" :is="currentModal" v-model:visible="modalVisible" :dataSource="dataSource" :activeID="activeID" />
|
|
|
</div>
|
|
|
@@ -684,8 +684,6 @@
|
|
|
import { formConfig } from '../../../safetyMonitor/safety.data';
|
|
|
import { getDictItemsByCode } from '/@/utils/dict';
|
|
|
import BarAndLine from '/@/components/chart/BarAndLine.vue';
|
|
|
- import MTreeSelect from '/@/components/Form/src/jeecg/components/MTreeSelect.vue';
|
|
|
- // import ApiSelect from '/@/components/Form/src/components/ApiSelect.vue';
|
|
|
import { nextTick } from 'vue';
|
|
|
import { useMethods } from '/@/hooks/system/useMethods';
|
|
|
import { useGo } from '/@/hooks/web/usePage';
|
|
|
@@ -1136,12 +1134,15 @@
|
|
|
} else if (deviceType.value.startsWith('vehicle')) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: record, pageObj: null, type: 'car' });
|
|
|
} else {
|
|
|
- actions.setGlobalState({ locationId: record.deviceID, locationObj: record, pageObj: null });
|
|
|
+ actions.setGlobalState({ locationId: record.deviceID, locationObj: record, pageObj: null, type: deviceType.value });
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
function getSearch(param) {
|
|
|
- (gasSearch.address = param.address), (gasSearch.userName = param.userName), (gasSearch.insType = param.insType), (gasSearch.class = param.class);
|
|
|
+ ((gasSearch.address = param.address),
|
|
|
+ (gasSearch.userName = param.userName),
|
|
|
+ (gasSearch.insType = param.insType),
|
|
|
+ (gasSearch.class = param.class));
|
|
|
}
|
|
|
// 详情跳转
|
|
|
function goDetail(record?) {
|
|
|
@@ -1472,8 +1473,8 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
- @import '/@/design/theme.less';
|
|
|
- @import '/@/design/vent/modal.less';
|
|
|
+ @import url('/@/design/theme.less');
|
|
|
+ @import url('/@/design/vent/modal.less');
|
|
|
@ventSpace: zxm;
|
|
|
|
|
|
@{theme-deepblue} {
|
|
|
@@ -1518,21 +1519,21 @@
|
|
|
--location-bottom-bg: #00709955;
|
|
|
--location-bottom-border: #aef3ff4d;
|
|
|
}
|
|
|
+
|
|
|
.scene-box {
|
|
|
pointer-events: none;
|
|
|
}
|
|
|
|
|
|
.top-header {
|
|
|
position: fixed;
|
|
|
+ z-index: 1;
|
|
|
width: 100%;
|
|
|
height: 56px;
|
|
|
background: var(--image-modal-top);
|
|
|
+ color: #fffd;
|
|
|
text-align: center;
|
|
|
line-height: 56px;
|
|
|
- font-size: 28px;
|
|
|
- color: #ffffffdd;
|
|
|
font-weight: 600;
|
|
|
- z-index: 1;
|
|
|
letter-spacing: 2px;
|
|
|
font-size: 30px;
|
|
|
}
|
|
|
@@ -1541,9 +1542,9 @@
|
|
|
position: fixed;
|
|
|
top: 100px;
|
|
|
left: 10px;
|
|
|
- color: var(--vent-font-color);
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
+ color: var(--vent-font-color);
|
|
|
font-size: 22px;
|
|
|
|
|
|
.title {
|
|
|
@@ -1552,11 +1553,11 @@
|
|
|
}
|
|
|
|
|
|
.expansion-icon {
|
|
|
- background: var(--image-tree-icon-bg) no-repeat;
|
|
|
- background-size: contain;
|
|
|
position: absolute;
|
|
|
- left: 190px;
|
|
|
top: 25px;
|
|
|
+ left: 190px;
|
|
|
+ background: var(--image-tree-icon-bg) no-repeat;
|
|
|
+ background-size: contain;
|
|
|
|
|
|
&:hover {
|
|
|
background: var(--image-tree-icon-hover-bg) no-repeat;
|
|
|
@@ -1565,15 +1566,15 @@
|
|
|
}
|
|
|
|
|
|
.device-select {
|
|
|
- width: 250px;
|
|
|
- height: 500px;
|
|
|
- background: var(--image-tree-bg) no-repeat;
|
|
|
position: fixed;
|
|
|
top: 100px;
|
|
|
left: 10px;
|
|
|
+ width: 250px;
|
|
|
+ height: 500px;
|
|
|
+ padding: 20px 10px 30px;
|
|
|
+ background: var(--image-tree-bg) no-repeat;
|
|
|
background-size: contain;
|
|
|
pointer-events: auto;
|
|
|
- padding: 20px 10px 30px 10px;
|
|
|
}
|
|
|
|
|
|
.inspect-info-xj {
|
|
|
@@ -1589,9 +1590,9 @@
|
|
|
}
|
|
|
|
|
|
.is-expansion-icon {
|
|
|
+ z-index: 999;
|
|
|
padding: 5px;
|
|
|
pointer-events: auto;
|
|
|
- z-index: 999;
|
|
|
}
|
|
|
|
|
|
.device-select-show {
|
|
|
@@ -1611,18 +1612,18 @@
|
|
|
}
|
|
|
|
|
|
.node-select-show {
|
|
|
+ left: 10px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-start;
|
|
|
width: 276px;
|
|
|
height: 44px;
|
|
|
background: var(--image-tree-expansion-bg) no-repeat;
|
|
|
- left: 10px;
|
|
|
+ transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
|
|
|
animation-name: treeShow;
|
|
|
/* 持续时间 */
|
|
|
animation-duration: 1s;
|
|
|
- transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
margin-left: 0;
|
|
|
- justify-content: flex-start;
|
|
|
pointer-events: auto;
|
|
|
|
|
|
&:hover {
|
|
|
@@ -1631,8 +1632,8 @@
|
|
|
|
|
|
.put-away-icon {
|
|
|
position: relative;
|
|
|
- display: inline-block;
|
|
|
left: 4px;
|
|
|
+ display: inline-block;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -1667,36 +1668,36 @@
|
|
|
}
|
|
|
|
|
|
input {
|
|
|
- height: 0px !important;
|
|
|
+ height: 0 !important;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
- border-radius: 10px;
|
|
|
- background: #ededed22;
|
|
|
height: 100px;
|
|
|
+ background: #ededed22;
|
|
|
+ box-shadow: inset 0 0 5px rgb(0 0 0 / 20%);
|
|
|
+ border-radius: 10px;
|
|
|
}
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
- -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
+ box-shadow: inset 0 0 5px rgb(0 0 0 / 20%);
|
|
|
background: #4288a444;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.location-icon {
|
|
|
- width: 46px;
|
|
|
- height: 178px;
|
|
|
position: absolute;
|
|
|
top: 100px;
|
|
|
+ width: 46px;
|
|
|
+ height: 178px;
|
|
|
background: var(--image-location-bg) no-repeat;
|
|
|
+ color: var(--vent-font-color);
|
|
|
+ cursor: pointer;
|
|
|
background-size: contain;
|
|
|
writing-mode: vertical-lr;
|
|
|
line-height: 46px;
|
|
|
- color: var(--vent-font-color);
|
|
|
padding-top: 10px;
|
|
|
pointer-events: auto;
|
|
|
- cursor: pointer;
|
|
|
|
|
|
&:hover {
|
|
|
background: var(--image-location-hover-bg) no-repeat;
|
|
|
@@ -1715,36 +1716,36 @@
|
|
|
pointer-events: auto;
|
|
|
|
|
|
.location-select-box {
|
|
|
+ position: relative;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
- position: relative;
|
|
|
|
|
|
&::before {
|
|
|
- content: '';
|
|
|
position: absolute;
|
|
|
- width: 230px;
|
|
|
- height: 500px;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
+ z-index: -1;
|
|
|
+ width: 230px;
|
|
|
+ height: 500px;
|
|
|
background: var(--image-tree-bg) no-repeat;
|
|
|
- background-size: contain;
|
|
|
transform: rotateY(180deg);
|
|
|
- z-index: -1;
|
|
|
+ content: '';
|
|
|
+ background-size: contain;
|
|
|
}
|
|
|
|
|
|
.location-top-title {
|
|
|
- color: var(--vent-font-color);
|
|
|
position: absolute;
|
|
|
- width: 225px;
|
|
|
- height: 68px;
|
|
|
- background: var(--image-turn-location-top-bg) no-repeat;
|
|
|
- background-size: contain;
|
|
|
top: 5px;
|
|
|
left: 5px;
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
- justify-content: space-between;
|
|
|
align-items: flex-end;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 225px;
|
|
|
+ height: 68px;
|
|
|
+ background: var(--image-turn-location-top-bg) no-repeat;
|
|
|
+ color: var(--vent-font-color);
|
|
|
+ background-size: contain;
|
|
|
|
|
|
.title {
|
|
|
font-size: 18px;
|
|
|
@@ -1755,12 +1756,12 @@
|
|
|
}
|
|
|
|
|
|
.location-expansion-icon {
|
|
|
- background: var(--image-tree-icon-cover-bg) no-repeat;
|
|
|
- background-size: contain;
|
|
|
position: relative;
|
|
|
- left: 10px;
|
|
|
top: -15px;
|
|
|
+ left: 10px;
|
|
|
padding: 5px;
|
|
|
+ background: var(--image-tree-icon-cover-bg) no-repeat;
|
|
|
+ background-size: contain;
|
|
|
|
|
|
&:hover {
|
|
|
background: var(--image-tree-icon-cover-hover-bg) no-repeat;
|
|
|
@@ -1770,47 +1771,47 @@
|
|
|
}
|
|
|
|
|
|
.location-container {
|
|
|
- width: 200px;
|
|
|
- height: 390px;
|
|
|
position: absolute;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
top: 80px;
|
|
|
left: 18px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 200px;
|
|
|
+ height: 390px;
|
|
|
overflow-y: auto;
|
|
|
|
|
|
.location-item {
|
|
|
- color: var(--vent-font-color);
|
|
|
- line-height: 30px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+ margin: 3px 0;
|
|
|
+ color: var(--vent-font-color);
|
|
|
+ line-height: 30px;
|
|
|
// background-image: var(--vent-gas-list-item-bg-img);
|
|
|
background-image: linear-gradient(to left, #39f5ff05, #39f5ff10);
|
|
|
- margin: 3px 0;
|
|
|
|
|
|
.item-title {
|
|
|
width: 80px;
|
|
|
- text-align: right;
|
|
|
color: var(--vent-table-action-link);
|
|
|
+ text-align: right;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.location-bottom-btn {
|
|
|
- width: 100%;
|
|
|
- color: var(--vent-font-color);
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
+ width: 100%;
|
|
|
+ color: var(--vent-font-color);
|
|
|
margin-top: 20px;
|
|
|
|
|
|
span {
|
|
|
display: inline-block;
|
|
|
width: 100%;
|
|
|
- background: var(--location-bottom-bg);
|
|
|
- border-radius: 3px;
|
|
|
+ padding: 2px 0;
|
|
|
border: 1px solid var(--location-bottom-border);
|
|
|
+ background: var(--location-bottom-bg);
|
|
|
text-align: center;
|
|
|
- padding: 2px 0;
|
|
|
cursor: pointer;
|
|
|
+ border-radius: 3px;
|
|
|
|
|
|
&:hover {
|
|
|
background: #00557422;
|
|
|
@@ -1837,7 +1838,7 @@
|
|
|
}
|
|
|
|
|
|
.location-btn-show {
|
|
|
- right: -0px;
|
|
|
+ right: -0;
|
|
|
animation-name: locationBtnShow;
|
|
|
/* 持续时间 */
|
|
|
animation-duration: 1s;
|
|
|
@@ -1860,7 +1861,7 @@
|
|
|
position: relative;
|
|
|
background-color: var(--vent-configurable-module-border-bd);
|
|
|
backdrop-filter: blur(18px);
|
|
|
- border: 1px solid #ffffff55;
|
|
|
+ border: 1px solid #fff5;
|
|
|
border-radius: 8px;
|
|
|
// .tabs-box {
|
|
|
// width: calc(100% - 12px) !important;
|
|
|
@@ -1881,70 +1882,77 @@
|
|
|
border-radius: 15%;
|
|
|
padding: 8px;
|
|
|
backdrop-filter: blur(10px);
|
|
|
- background-color: rgba(30, 58, 117, 0.418);
|
|
|
+ background-color: rgb(30 58 117 / 41.8%);
|
|
|
margin-right: 10px;
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
&::after {
|
|
|
- width: 34px;
|
|
|
- height: 34px;
|
|
|
- content: '';
|
|
|
position: absolute;
|
|
|
top: 8px;
|
|
|
left: 8px;
|
|
|
+ width: 34px;
|
|
|
+ height: 34px;
|
|
|
background: var(--image-tohome) no-repeat center;
|
|
|
+ content: '';
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
}
|
|
|
+
|
|
|
&:hover {
|
|
|
- background-color: rgba(79, 104, 134, 0.418);
|
|
|
+ background-color: rgb(79 104 134 / 41.8%);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.to-2D {
|
|
|
width: 50px;
|
|
|
height: 50px;
|
|
|
border-radius: 15%;
|
|
|
padding: 8px;
|
|
|
backdrop-filter: blur(10px);
|
|
|
- background-color: rgba(30, 58, 117, 0.418);
|
|
|
-
|
|
|
+ background-color: rgb(30 58 117 / 41.8%);
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
&::after {
|
|
|
- width: 34px;
|
|
|
- height: 34px;
|
|
|
- content: '';
|
|
|
position: absolute;
|
|
|
top: 8px;
|
|
|
left: 8px;
|
|
|
+ width: 34px;
|
|
|
+ height: 34px;
|
|
|
background: var(--image-to2D) no-repeat center;
|
|
|
+ content: '';
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
}
|
|
|
+
|
|
|
&:hover {
|
|
|
- background-color: rgba(79, 104, 134, 0.418);
|
|
|
+ background-color: rgb(79 104 134 / 41.8%);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.to-3D {
|
|
|
width: 50px;
|
|
|
height: 50px;
|
|
|
border-radius: 15%;
|
|
|
padding: 8px;
|
|
|
backdrop-filter: blur(10px);
|
|
|
- background-color: rgba(30, 58, 117, 0.418);
|
|
|
+ background-color: rgb(30 58 117 / 41.8%);
|
|
|
margin-right: 10px;
|
|
|
cursor: pointer;
|
|
|
+
|
|
|
&::after {
|
|
|
- width: 34px;
|
|
|
- height: 34px;
|
|
|
- content: '';
|
|
|
position: absolute;
|
|
|
top: 8px;
|
|
|
left: 8px;
|
|
|
+ width: 34px;
|
|
|
+ height: 34px;
|
|
|
background: var(--image-to3D) no-repeat center;
|
|
|
+ content: '';
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
}
|
|
|
+
|
|
|
&:hover {
|
|
|
- background-color: rgba(79, 104, 134, 0.418);
|
|
|
+ background-color: rgb(79 104 134 / 41.8%);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -1974,57 +1982,52 @@
|
|
|
}
|
|
|
|
|
|
.table-hide-icon {
|
|
|
- color: var(--vent-font-color);
|
|
|
- cursor: pointer;
|
|
|
position: absolute;
|
|
|
- right: 20px;
|
|
|
top: 10px;
|
|
|
+ right: 20px;
|
|
|
z-index: 9999;
|
|
|
+ color: var(--vent-font-color);
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
.enter-detail {
|
|
|
- color: var(--vent-font-color);
|
|
|
- cursor: pointer;
|
|
|
position: absolute;
|
|
|
- right: 35px;
|
|
|
top: 35px;
|
|
|
- padding: 5px;
|
|
|
- border-radius: 5px;
|
|
|
- margin-left: 8px;
|
|
|
- margin-right: 8px;
|
|
|
- width: auto;
|
|
|
- height: 33px !important;
|
|
|
+ right: 35px;
|
|
|
+ z-index: 999;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
+ width: auto;
|
|
|
+ height: 33px !important;
|
|
|
+ padding: 5px;
|
|
|
+ padding: 5px 15px;
|
|
|
color: var(--vent-font-color);
|
|
|
- padding: 5px 15px 5px 15px;
|
|
|
- z-index: 999;
|
|
|
cursor: pointer;
|
|
|
+ border-radius: 5px;
|
|
|
+ margin-left: 8px;
|
|
|
+ margin-right: 8px;
|
|
|
|
|
|
&:hover {
|
|
|
background: var(--vent-device-manager-control-btn-hover);
|
|
|
}
|
|
|
|
|
|
&::before {
|
|
|
+ position: absolute;
|
|
|
+ inset: 3px 0 0 3px;
|
|
|
+ z-index: -1;
|
|
|
width: calc(100% - 6px);
|
|
|
height: 27px;
|
|
|
+ /* important */
|
|
|
+ background: var(--vent-device-manager-control-btn);
|
|
|
content: '';
|
|
|
- position: absolute;
|
|
|
- top: 3px;
|
|
|
- right: 0;
|
|
|
- left: 3px;
|
|
|
- bottom: 0;
|
|
|
- z-index: -1;
|
|
|
border-radius: inherit;
|
|
|
- /*important*/
|
|
|
- background: var(--vent-device-manager-control-btn);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.table-hide {
|
|
|
- height: 0px;
|
|
|
+ height: 0;
|
|
|
animation-name: tableHide;
|
|
|
/* 持续时间 */
|
|
|
animation-duration: 1s;
|
|
|
@@ -2047,15 +2050,15 @@
|
|
|
width: 400px;
|
|
|
|
|
|
.location-form-label {
|
|
|
- width: 100px;
|
|
|
display: inline-block;
|
|
|
+ width: 100px;
|
|
|
color: var(--vent-font-color);
|
|
|
}
|
|
|
|
|
|
input {
|
|
|
+ border: 1px solid var(--vent-form-item-border) !important;
|
|
|
background: transparent !important;
|
|
|
color: var(--vent-font-color);
|
|
|
- border: 1px solid var(--vent-form-item-border) !important;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -2066,7 +2069,7 @@
|
|
|
|
|
|
@keyframes tableShow {
|
|
|
0% {
|
|
|
- height: 0px;
|
|
|
+ height: 0;
|
|
|
opacity: 0;
|
|
|
}
|
|
|
|
|
|
@@ -2082,7 +2085,7 @@
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
- height: 0px;
|
|
|
+ height: 0;
|
|
|
opacity: 0;
|
|
|
}
|
|
|
}
|
|
|
@@ -2113,7 +2116,7 @@
|
|
|
|
|
|
@keyframes locationShow {
|
|
|
0% {
|
|
|
- right: 0px;
|
|
|
+ right: 0;
|
|
|
opacity: 0;
|
|
|
}
|
|
|
|
|
|
@@ -2171,7 +2174,7 @@
|
|
|
|
|
|
:deep(.zxm-select-dropdown) {
|
|
|
left: 0 !important;
|
|
|
- color: #000000 !important;
|
|
|
+ color: #000 !important;
|
|
|
}
|
|
|
|
|
|
:deep(.zxm-select-selector) {
|
|
|
@@ -2189,15 +2192,15 @@
|
|
|
}
|
|
|
|
|
|
.device-button {
|
|
|
- height: 26px;
|
|
|
+ position: relative;
|
|
|
display: flex;
|
|
|
- justify-content: center;
|
|
|
align-items: center;
|
|
|
- color: var(--vent-font-color);
|
|
|
- position: relative;
|
|
|
- cursor: pointer;
|
|
|
+ justify-content: center;
|
|
|
+ height: 26px;
|
|
|
padding: 0 20px;
|
|
|
background: linear-gradient(45deg, #04e6fb55, #0c5cab55);
|
|
|
+ color: var(--vent-font-color);
|
|
|
+ cursor: pointer;
|
|
|
clip-path: polygon(10px 0, 0 50%, 10px 100%, 100% 100%, calc(100% - 10px) 50%, 100% 0);
|
|
|
|
|
|
&:nth-child(1) {
|