111 lines
1.9 KiB
Plaintext
111 lines
1.9 KiB
Plaintext
.container {
|
|
padding: 32rpx;
|
|
min-height: 100vh;
|
|
background: #f7f7f7;
|
|
}
|
|
.header {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 32rpx;
|
|
color: #007AFF;
|
|
}
|
|
.content {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
.wifi-list {
|
|
margin-top: 32rpx;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
padding: 24rpx;
|
|
}
|
|
.wifi-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16rpx 0;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
.wifi-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.ssid {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
.rssi {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
.loading-bar {
|
|
margin: 24rpx 0;
|
|
padding: 20rpx;
|
|
background: #fffbe6;
|
|
color: #faad14;
|
|
border-radius: 8rpx;
|
|
text-align: center;
|
|
font-size: 28rpx;
|
|
}
|
|
.dialog-mask {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background: rgba(0,0,0,0.4);
|
|
z-index: 1000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.dialog-box {
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
width: 80vw;
|
|
max-width: 600rpx;
|
|
padding: 40rpx 32rpx 24rpx 32rpx;
|
|
box-shadow: 0 8rpx 32rpx rgba(0,0,0,0.15);
|
|
}
|
|
.dialog-title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 32rpx;
|
|
text-align: center;
|
|
}
|
|
.dialog-content {
|
|
margin-bottom: 32rpx;
|
|
}
|
|
.dialog-input {
|
|
width: 100%;
|
|
height: 80rpx;
|
|
border: 2rpx solid #eee;
|
|
border-radius: 8rpx;
|
|
font-size: 28rpx;
|
|
margin-bottom: 24rpx;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.dialog-actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 24rpx;
|
|
}
|
|
.dialog-btn {
|
|
flex: 1;
|
|
height: 72rpx;
|
|
border-radius: 36rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
.dialog-btn.cancel {
|
|
background: #f5f5f5;
|
|
color: #666;
|
|
}
|
|
.dialog-btn.confirm {
|
|
background: linear-gradient(135deg, #007AFF, #40a9ff);
|
|
color: #fff;
|
|
}
|
|
.tip-text {
|
|
color: #faad14;
|
|
font-size: 26rpx;
|
|
line-height: 1.8;
|
|
margin-bottom: 12rpx;
|
|
white-space: pre-line;
|
|
} |