141 lines
2.0 KiB
Plaintext
141 lines
2.0 KiB
Plaintext
/* 设置弹窗样式 */
|
|
.settings-dialog-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.settings-dialog {
|
|
width: 90%;
|
|
max-width: 600rpx;
|
|
background: white;
|
|
border-radius: 24rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dialog-header {
|
|
padding: 30rpx;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.dialog-title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
color: white;
|
|
}
|
|
|
|
.dialog-close {
|
|
font-size: 40rpx;
|
|
color: white;
|
|
opacity: 0.8;
|
|
padding: 0 10rpx;
|
|
}
|
|
|
|
.dialog-content {
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.dialog-section {
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.section-label {
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.section-hint {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
margin-bottom: 20rpx;
|
|
display: block;
|
|
}
|
|
|
|
.voice-selector {
|
|
background: #f5f5f5;
|
|
padding: 24rpx;
|
|
border-radius: 12rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.voice-selected {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.voice-arrow {
|
|
font-size: 32rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.memory-item {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.memory-label {
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
margin-bottom: 10rpx;
|
|
display: block;
|
|
}
|
|
|
|
.memory-input {
|
|
width: 100%;
|
|
padding: 20rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 12rpx;
|
|
font-size: 28rpx;
|
|
border: none;
|
|
}
|
|
|
|
.memory-textarea {
|
|
width: 100%;
|
|
min-height: 120rpx;
|
|
padding: 20rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 12rpx;
|
|
font-size: 28rpx;
|
|
border: none;
|
|
}
|
|
|
|
.dialog-footer {
|
|
padding: 20rpx 30rpx 30rpx;
|
|
display: flex;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.dialog-btn {
|
|
flex: 1;
|
|
padding: 24rpx;
|
|
border-radius: 12rpx;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
border: none;
|
|
}
|
|
|
|
.dialog-btn.cancel {
|
|
background: #f5f5f5;
|
|
color: #666;
|
|
}
|
|
|
|
.dialog-btn.confirm {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
}
|