chatapp-h5/h5/language/language.css
2026-04-27 19:11:53 +08:00

70 lines
1.1 KiB
CSS

.language-page {
background: #f4fbf6;
}
.language-card {
margin: 20px;
padding: 20px;
border: 1px solid #d7eadf;
border-radius: 20px;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.language-list {
overflow: hidden;
border-radius: 12px;
background: #f8fcf9;
}
.language-row {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
min-height: 54px;
padding: 0 14px;
border-bottom: 1px solid #e5efe8;
color: #244b37;
font-size: 16px;
font-weight: 700;
text-align: left;
}
.language-row:last-child {
border-bottom: 0;
}
.language-row:active {
background: #e9f7ee;
}
.selected-check {
width: 20px;
height: 20px;
border: 2px solid #9fcdb0;
border-radius: 50%;
}
.selected-check--active {
position: relative;
border-color: #32a96b;
background: #32a96b;
}
.selected-check--active::after {
content: "";
position: absolute;
left: 5px;
top: 2px;
width: 5px;
height: 10px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
[dir="rtl"] .language-row {
text-align: right;
}