fix code
This commit is contained in:
@@ -307,7 +307,7 @@ Page<IData, IPageInstance>({
|
||||
variationSubmitted: false,
|
||||
conversationDifficulty: 'easy',
|
||||
sidebar: [],
|
||||
conversationSceneLang: 'zh',
|
||||
conversationSceneLang: 'en',
|
||||
conversationSelectedScenes: [],
|
||||
conversationSelectedScenesMap: {},
|
||||
conversationSelectedEvents: [],
|
||||
|
||||
@@ -1,8 +1,24 @@
|
||||
.qa-exercise-container { min-height: 100vh; background: #ffffff; }
|
||||
.qa-exercise-container {
|
||||
height: 100vh;
|
||||
background: #ffffff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
.status-text { font-size: 28rpx; color: #666666; }
|
||||
.page-loading-mask { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: transparent; z-index: 1000; }
|
||||
.loading-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; gap: 16rpx; }
|
||||
.container { width: 100%; height: 100%; padding: 32rpx; box-sizing: border-box; margin: 0 auto; display: flex; flex-direction: column; gap: 24rpx; }
|
||||
.container {
|
||||
width: 100%;
|
||||
flex: 1;
|
||||
height: 0;
|
||||
padding: 32rpx;
|
||||
box-sizing: border-box;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24rpx;
|
||||
}
|
||||
.fade-in { animation: fadeInUp 260ms ease forwards; }
|
||||
.fade-out { animation: fadeOutDown 200ms ease forwards; }
|
||||
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 12rpx, 0) } to { opacity: 1; transform: translate3d(0, 0, 0) } }
|
||||
@@ -782,19 +798,18 @@
|
||||
padding: 0 24rpx;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.suggestion-item {
|
||||
display: block;
|
||||
background: #fff;
|
||||
border: 1rpx solid #e7e7e7;
|
||||
border-radius: 32rpx;
|
||||
padding: 0 24rpx;
|
||||
border-radius: 12rpx;
|
||||
padding: 0 12rpx;
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
margin-right: 16rpx;
|
||||
max-width: 600rpx;
|
||||
max-width: 400rpx;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
|
||||
Reference in New Issue
Block a user