Files
smart-large-screen-light-ln/src/views/home.scss
2026-01-28 17:54:51 +08:00

267 lines
5.5 KiB
SCSS

.scale-wrap {
color: #333333;
width: 1920px;
height: 1080px;
overflow: hidden;
// &.pageisScale {
// position: absolute;
// top: 50%;
// left: 50%;
// transform: translate(-50%, -50%);
// transform-origin: left top;
// }
.bg {
width: 100%;
height: 100%;
padding: 16px;
box-sizing: border-box;
background-color: #f7f9fb;
background-image: none;
background-size: cover;
background-position: center center;
}
.host-body {
height: 100%;
.d-flex {
display: flex;
justify-content: space-between;
}
.title_wrap {
height: 66px;
position: relative;
margin-bottom: 16px;
display: flex;
align-items: center;
background-color: #fff;
padding: 0 24px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
.logo {
flex: 1;
display: flex;
justify-content: flex-start;
img {
height: 40px;
width: auto;
}
}
.title {
flex: 0 0 auto;
text-align: center;
.title-text {
color: #00D4AA;
font-family: Audiowide, sans-serif;
font-weight: 400;
font-size: 32px;
letter-spacing: 2px;
}
}
.timers {
display: flex;
justify-content: flex-end;
border: 1px solid #d1fae5;
box-sizing: border-box;
background: #ecfdf5;
padding: 8px 20px;
border-radius: 36px;
align-items: center;
width: fit-content;
margin-left: auto;
display: flex;
align-items: center;
color: #065f46;
font-family: "PingFang TC";
font-weight: 600;
font-size: 14px;
line-height: 17px;
.blq-icon-shezhi02 {
cursor: pointer;
font-size: 18px;
color: #00D4AA;
transition: all 0.3s ease;
&:hover {
color: #00bfa5;
transform: rotate(90deg);
}
}
}
}
}
}
.scale-wrap {
.pagetab {
position: absolute;
top: -35px;
display: flex;
.item {
width: 130px;
height: 36px;
border-radius: 18px 0px 0px 18px;
color: #00D4AA;
text-indent: 26px;
line-height: 36px;
font-size: 16px;
margin-right: 20px;
background: linear-gradient(to right, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0));
}
}
}
.setting {
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
top: 0;
left: 0;
.left_shu {
color: #000;
font-weight: 900;
position: relative;
text-indent: 10px;
padding: 16px 0 10px 0;
&::before {
display: block;
content: " ";
height: 16px;
width: 4px;
border-radius: 2px;
background: #0072FF;
position: absolute;
left: 0px;
}
}
.setting_dislog {
background-color: rgba($color: #000000, $alpha: .3);
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
right: 0;
top: 0;
}
.setting_inner {
box-sizing: border-box;
background: #ffffff;
width: 340px;
height: 100%;
position: absolute;
right: 0px;
top: 0;
z-index: 1;
color: #333333;
box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .1), 0 16px 24px 2px rgba(0, 0, 0, .08), 0 6px 30px 5px rgba(0, 0, 0, .06);
.setting_header {
font-size: 20px;
color: #333333;
font-weight: 900;
text-align: center;
line-height: 40px;
}
.setting_body {
padding: 0px 16px;
box-sizing: border-box;
position: relative;
}
.setting_item {
font-size: 14px;
line-height: 1.5;
// display: flex;
.setting_label {
color: #666666;
}
.setting_label_tip {
font-size: 12px;
color: #999999;
}
}
}
.setting_inner {
animation: rtl-drawer-out .3s;
}
}
.settingShow {
.setting_inner {
animation: rtl-drawer-in .3s 1ms;
}
}
.yh-setting-fade-enter-active {
animation: yh-setting-fade-in .3s;
}
.yh-setting-fade-leave-active {
animation: yh-setting-fade-out .3s;
}
@keyframes yh-setting-fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes yh-setting-fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes rtl-drawer-in {
0% {
transform: translate(100%, 0)
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0)
}
}
@keyframes rtl-drawer-out {
0% {
transform: translate(0, 0)
}
100% {
transform: translate(100%, 0)
}
}