31 lines
549 B
Plaintext
31 lines
549 B
Plaintext
.env-area {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.env-btn {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.env-btn-inner {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22rpx;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
box-shadow: 0 4rpx 12rpx rgba(34, 197, 94, 0.4);
|
|
border: 2rpx solid rgba(255, 255, 255, 0.3);
|
|
}
|