/* pages/AIAide/index.wxss */
|
|
.card {
|
padding: 24rpx;
|
height: 100%;
|
background-color: #fff;
|
position: relative;
|
}
|
|
.card_main {
|
background-color: #F6F7FB;
|
border-radius: 8px;
|
}
|
|
.flex_end {
|
/* position: fixed;
|
bottom: 40rpx; */
|
color: rgba(23, 26, 29, 0.24);
|
font-size: 28rpx;
|
/* padding: 0 52rpx; */
|
text-align: center;
|
padding: 24rpx 0;
|
}
|
|
.caseList {
|
border-radius: 4px;
|
background-color: #fff;
|
padding: 24rpx;
|
margin: 0 24rpx 16rpx 24rpx;
|
}
|
|
.caseList_flex {
|
display: flex;
|
justify-content: space-between;
|
margin-bottom: 8rpx;
|
}
|
|
.cell-arrow {
|
width: 16px;
|
height: 16px;
|
background: #f6f7fb;
|
border-radius: 50%;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
padding: 6rpx;
|
}
|
|
.caseList_title {
|
color: rgba(23, 26, 29, 0.60);
|
font-size: 24rpx;
|
line-height: 40rpx;
|
}
|
|
.caseList_head {
|
display: flex;
|
gap: 8rpx;
|
padding: 24rpx 24rpx;
|
margin-top: 24rpx;
|
}
|
|
.line {
|
border: 1px dashed #e5e6eb;
|
margin: 32rpx 24rpx 0;
|
}
|
|
.assess {
|
display: flex;
|
gap: 32rpx;
|
justify-content: flex-end;
|
padding: 12rpx 24rpx 32rpx;
|
}
|
|
.ellipsis {
|
overflow: hidden;
|
/* 确保超出容器的文本会被裁剪 */
|
white-space: nowrap;
|
/* 保证文本在一行内显示 */
|
text-overflow: ellipsis;
|
/* 使用省略号表示文本超出 */
|
}
|
|
.show-line {
|
margin: 24rpx 0;
|
border-top: 1px solid #F0F0F0;
|
}
|
|
.show-Law {
|
color: var(--main-color);
|
}
|
|
/* 评价弹窗样式 */
|
.evaluation-popup {
|
position: relative;
|
width: 100%;
|
}
|
|
.evaluation-title {
|
text-align: center;
|
font-weight: bold;
|
font-size: 18px;
|
margin-bottom: 20px;
|
}
|
|
.evaluation-item {
|
margin-bottom: 15px;
|
}
|
|
.item-title {
|
margin-bottom: 8px;
|
font-size: 14px;
|
}
|
|
.stars {
|
display: flex;
|
justify-content: flex-start;
|
gap: 8px;
|
}
|
|
.comments-area {
|
width: 100%;
|
background-color: #F5F5F5;
|
border-radius: 4px;
|
padding: 10px;
|
}
|
|
.comments-area textarea {
|
width: 100%;
|
height: 80px;
|
font-size: 14px;
|
line-height: 1.5;
|
}
|
|
.submit-btn {
|
width: 100%;
|
background-color: #1A6FB8;
|
color: white;
|
border-radius: 4px;
|
margin-top: 20px;
|
font-size: 16px;
|
height: 44px;
|
line-height: 44px;
|
}
|
|
.close-btn {
|
position: fixed;
|
bottom: 8vh;
|
left: 50%;
|
transform: translateX(-50%);
|
z-index: 9999;
|
}
|
|
.close-btn image {
|
width: 30px;
|
height: 30px;
|
}
|
|
/* 禁止弹窗滚动 */
|
.van-popup {
|
overflow: hidden !important;
|
}
|
|
/* 自定义toast样式 */
|
.custom-toast {
|
position: fixed;
|
top: 50%;
|
left: 50%;
|
transform: translate(-50%, -50%);
|
background-color: rgba(51, 51, 51, 0.9);
|
border-radius: 8px;
|
padding: 16px 24px;
|
z-index: 10000;
|
opacity: 0;
|
transition: opacity 0.3s ease;
|
}
|
|
.show-toast {
|
opacity: 1;
|
}
|
|
.toast-content {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
gap: 8px;
|
}
|
|
.toast-content text {
|
color: #FFFFFF;
|
font-size: 16px;
|
}
|