From f4425543db1c8db8c47a34c53ef477e72cfe318e Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期一, 11 三月 2024 18:19:56 +0800 Subject: [PATCH] feat(答题器): 答题器 --- pages/bookServices/detail/components/note/note.wxss | 129 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 128 insertions(+), 1 deletions(-) diff --git a/pages/bookServices/detail/components/note/note.wxss b/pages/bookServices/detail/components/note/note.wxss index 7604004..959c6d2 100644 --- a/pages/bookServices/detail/components/note/note.wxss +++ b/pages/bookServices/detail/components/note/note.wxss @@ -1,5 +1,9 @@ /* pages/bookServices/detail/components/note/note.wxss */ -.note {} + +.popup { + padding: 40rpx; + width: 600rpx; +} .note-btn { height: 140rpx; @@ -13,7 +17,130 @@ --td-button-primary-active-bg-color: #fff0e6; } +.note-btn image { + width: 28rpx; + height: 32rpx; + margin-top: 24rpx; +} + + + +.note-title { + width: 90%; + height: 84rpx; + line-height: 84rpx; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + .make-note { margin: 0; margin-right: 40rpx; +} + +.title-text { + display: flex; + align-items: center; +} + +.edit-icon { + margin-left: 10rpx; + width: 30rpx; + height: 30rpx; +} + +.header { + display: flex; +} + +.note-icon { + width: 44rpx; + height: 48rpx; + margin-right: 20rpx; +} + +.collapse-header { + display: flex; +} + +.collapse-header .header-name { + font-size: 32rpx; + width: 500rpx; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.note-content { + height: min-content; + font-size: 28rpx; + color: #949494; + margin-bottom: 20rpx; + max-height: 600rpx; + text-align: justify; + /* padding-bottom: 200rpx; */ +} + +.wrapper { + height: 100%; +} + +.note-bottom { + display: flex; + justify-content: space-between; + align-items: center; +} + +.bottom-btn { + height: 40rpx; + display: flex; + align-items: center; +} + +.note-time { + color: #D9D9D9; +} + +.complice, +.delete { + width: 30rpx; + height: 30rpx; +} + +.delete { + margin-left: 40rpx; +} + +.loading-box { + width: 100%; + min-height: 550rpx; + display: flex; + align-items: center; + justify-content: center; +} + +.content { + margin-top: 20rpx; +} + +.close-btn { + position: absolute; + left: 50%; + margin-left: -32rpx; + bottom: calc(-1 * (48rpx + 64rpx)); +} + +.submit-btn { + padding: 40rpx; + --td-button-border-radius: 60rpx; + --td-button-primary-bg-color: #ff6c00; + --td-button-primary-border-color: #ff6c00; + --td-button-primary-active-bg-color: #ff984d; + --td-button-primary-active-border-color: #ff984d; +} + +.bottom-box { + display: flex; + justify-content: center; } \ No newline at end of file -- Gitblit v1.9.1