Files
miniprogram-1/miniprogram/components/word-dictionary/word-dictionary.wxss
2025-12-19 17:16:24 +08:00

198 lines
3.2 KiB
Plaintext

.word-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
border-top-left-radius: 12rpx;
border-top-right-radius: 12rpx;
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
padding: 0 20rpx;
box-sizing: border-box;
transition: all 0.3s ease;
z-index: 100;
overflow-y: scroll;
min-height: 600rpx;
}
.word-popup.expanded {
height: 100vh;
border-top-left-radius: 0rpx;
border-top-right-radius: 0rpx;
}
.popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20rpx;
position: relative;
}
.word-title {
display: flex;
align-items: center;
font-size: 40rpx;
font-weight: bold;
}
.word-source {
font-size: 24rpx;
}
.frequency-tags {
flex: 1;
display: flex;
flex-wrap: wrap;
gap: 12rpx;
min-height: 48rpx;
}
.close-btn {
flex-shrink: 0;
margin-left: 20rpx;
}
.more-btn {
display: flex;
font-size: 30rpx;
}
.pronounce {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 20rpx;
}
.pron-item {
display: flex;
align-items: center;
margin-right: 20rpx;
font-size: 24rpx;
line-height: 30rpx;
}
.pron-item-text {
padding-right: 8rpx;
}
.word-meanings {
display: flex;
flex-direction: column;
margin-bottom: 20rpx;
font-size: 24rpx;
}
.dictionary {
padding: 20rpx 0;
}
.dictionary-content {
margin-bottom: 20rpx;
font-size: 28rpx;
border-bottom: 1rpx solid #f5f5f5;
}
.dictionary-pos {
display: inline;
color: #33272a;
}
.dictionary-tran {
display: inline;
padding-left: 16rpx;
vertical-align: middle;
}
.dictionary-tran-bold {
font-weight: bold;
}
.dictionary-list {
padding: 16rpx 0;
margin-left: 16rpx;
}
.exam-sent {
padding: 10rpx 0;
border-bottom: 1rpx solid #e0e0e0;
}
.exam-sent-en {
font-size: 32rpx;
color: #333;
margin-bottom: 6rpx;
}
.exam-sent-zh {
font-size: 28rpx;
color: #909090;
margin-bottom: 6rpx;
}
.exam-sent-source {
font-size: 24rpx;
color: #ccc;
text-align: right;
}
.syno {
margin-bottom: 20rpx;
}
.syno-title {
font-size: 32rpx;
line-height: 32rpx;
font-weight: bold;
color: #333;
padding: 20rpx 0;
}
.syno-list {
padding-bottom: 20rpx;
border-bottom: 1rpx solid #e0e0e0;
margin-bottom: 20rpx;
}
.syno-pos {
font-size: 26rpx;
color: #666;
margin-bottom: 10rpx;
}
.syno-tran {
font-size: 28rpx;
color: #333;
margin: 12rpx 0;
display: inline;
vertical-align: middle;
padding-left: 16rpx;
}
.syno-item {
display: inline-block;
margin-right: 15rpx;
}
.rel-word {
margin-bottom: 30rpx;
}
.rel-word-title {
font-size: 32rpx;
line-height: 32rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
}
.rel-word-list {
padding: 20rpx;
background: #f9f9f9;
border-radius: 24rpx;
margin-bottom: 24rpx;
}
.rel-word-pos {
font-size: 28rpx;
color: #666;
margin-bottom: 10rpx;
}
.rel-word-item {
display: flex;
justify-content: space-between;
padding: 15rpx 0;
border-bottom: 1rpx solid #eee;
}
.rel-word-item:last-child {
border-bottom: none;
}
.rel-word-tran {
font-size: 28rpx;
color: #333;
flex: 1;
}
.rel-word-word {
font-size: 28rpx;
}
.no-related-words-text {
font-size: 28rpx;
color: #909090;
}
.no-word {
text-align: center;
font-size: 28rpx;
color: #909090;
padding: 40rpx 0;
}