/* pages/judge/review.wxss */
|
.container {
|
min-height: 100vh;
|
background-color: #f5f5f5;
|
padding-bottom: 120rpx;
|
}
|
|
/* Loading */
|
.loading-container {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
height: 60vh;
|
}
|
|
.loading-spinner {
|
width: 40rpx;
|
height: 40rpx;
|
border: 4rpx solid #e0e0e0;
|
border-top: 4rpx solid #007aff;
|
border-radius: 50%;
|
animation: spin 1s linear infinite;
|
margin-bottom: 20rpx;
|
}
|
|
.loading-text {
|
font-size: 28rpx;
|
color: #666;
|
}
|
|
@keyframes spin {
|
0% { transform: rotate(0deg); }
|
100% { transform: rotate(360deg); }
|
}
|
|
.review-content {
|
padding: 30rpx;
|
}
|
|
.section-title {
|
font-size: 32rpx;
|
font-weight: 600;
|
color: #333;
|
margin-bottom: 30rpx;
|
display: block;
|
}
|
|
.submission-info,
|
.media-section,
|
.criteria-section,
|
.comment-section,
|
.existing-review {
|
background-color: #fff;
|
border-radius: 16rpx;
|
padding: 30rpx;
|
margin-bottom: 30rpx;
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.1);
|
}
|
|
.info-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 30rpx;
|
}
|
|
.info-title {
|
font-size: 32rpx;
|
font-weight: 600;
|
color: #333;
|
}
|
|
.status-badge {
|
padding: 8rpx 20rpx;
|
border-radius: 20rpx;
|
font-size: 24rpx;
|
font-weight: 500;
|
}
|
|
.status-badge.pending {
|
background-color: #fff3cd;
|
color: #856404;
|
}
|
|
.status-badge.completed {
|
background-color: #d4edda;
|
color: #155724;
|
}
|
|
.submission-title {
|
font-size: 30rpx;
|
font-weight: 600;
|
color: #333;
|
line-height: 1.4;
|
}
|
|
.submission-desc {
|
font-size: 28rpx;
|
color: #666;
|
line-height: 1.5;
|
}
|
|
.participant-info {
|
border-top: 1rpx solid #e0e0e0;
|
padding-top: 20rpx;
|
}
|
|
.participant-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 20rpx;
|
}
|
|
.participant-label {
|
font-size: 26rpx;
|
color: #666;
|
font-weight: 500;
|
}
|
|
.contact-btn {
|
display: flex;
|
align-items: center;
|
gap: 8rpx;
|
padding: 10rpx 24rpx;
|
background: linear-gradient(135deg, #34c759 0%, #2ea043 100%);
|
color: #fff;
|
border-radius: 24rpx;
|
font-size: 24rpx;
|
box-shadow: 0 6rpx 16rpx rgba(46, 160, 67, 0.25);
|
}
|
|
.participant-detail {
|
display: flex;
|
align-items: center;
|
gap: 20rpx;
|
}
|
|
.participant-avatar {
|
width: 96rpx;
|
height: 96rpx;
|
border-radius: 48rpx;
|
background-color: #f0f0f0;
|
}
|
|
.participant-text {
|
display: flex;
|
flex-direction: column;
|
gap: 8rpx;
|
}
|
|
.participant-name {
|
font-size: 28rpx;
|
font-weight: 600;
|
color: #333;
|
}
|
|
.participant-meta {
|
font-size: 24rpx;
|
color: #555;
|
line-height: 1.4;
|
}
|
|
.participant-field {
|
font-size: 24rpx;
|
color: #666;
|
line-height: 1.4;
|
}
|
|
.team-info {
|
margin-top: 20rpx;
|
background-color: #f8f9fa;
|
border-radius: 12rpx;
|
padding: 20rpx;
|
}
|
|
.team-label {
|
font-size: 26rpx;
|
font-weight: 600;
|
color: #333;
|
}
|
|
.team-members {
|
margin-top: 12rpx;
|
display: flex;
|
flex-direction: column;
|
gap: 8rpx;
|
}
|
|
.team-member {
|
font-size: 24rpx;
|
color: #555;
|
}
|
|
.media-list {
|
display: flex;
|
flex-direction: column;
|
gap: 20rpx;
|
}
|
|
.media-item {
|
display: flex;
|
align-items: center;
|
gap: 24rpx;
|
padding: 20rpx;
|
background-color: #f8f9fa;
|
border-radius: 12rpx;
|
}
|
|
.media-thumb-wrapper {
|
width: 120rpx;
|
height: 120rpx;
|
border-radius: 12rpx;
|
overflow: hidden;
|
position: relative;
|
background: #eaeaea;
|
}
|
|
.media-thumb {
|
width: 100%;
|
height: 100%;
|
object-fit: cover;
|
}
|
|
.media-icon {
|
width: 100%;
|
height: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
font-size: 32rpx;
|
font-weight: 600;
|
color: #fff;
|
}
|
|
.media-icon.pdf { background: #e74c3c; }
|
.media-icon.doc { background: #1e88e5; }
|
.media-icon.file { background: #6c757d; }
|
|
.media-play {
|
position: absolute;
|
bottom: 8rpx;
|
right: 8rpx;
|
width: 44rpx;
|
height: 44rpx;
|
background: rgba(0, 0, 0, 0.6);
|
border-radius: 50%;
|
color: #fff;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
font-size: 24rpx;
|
}
|
|
.media-info {
|
flex: 1;
|
min-width: 0;
|
display: flex;
|
flex-direction: column;
|
gap: 6rpx;
|
}
|
|
.media-name {
|
font-size: 28rpx;
|
font-weight: 600;
|
color: #333;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
}
|
|
.media-size {
|
font-size: 22rpx;
|
color: #666;
|
}
|
|
.criteria-list {
|
display: flex;
|
flex-direction: column;
|
gap: 30rpx;
|
margin-bottom: 30rpx;
|
}
|
|
.criterion-item {
|
padding: 24rpx;
|
background-color: #f8f9fa;
|
border-radius: 12rpx;
|
}
|
|
.criterion-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 12rpx;
|
}
|
|
.criterion-name {
|
font-size: 28rpx;
|
font-weight: 600;
|
color: #333;
|
}
|
|
.criterion-score {
|
font-size: 26rpx;
|
color: #007aff;
|
font-weight: 600;
|
}
|
|
.criterion-desc {
|
font-size: 24rpx;
|
color: #666;
|
line-height: 1.4;
|
margin-bottom: 20rpx;
|
display: block;
|
}
|
|
.score-control {
|
display: flex;
|
align-items: center;
|
gap: 20rpx;
|
margin-top: 16rpx;
|
}
|
|
.score-btn {
|
width: 60rpx;
|
height: 60rpx;
|
border-radius: 12rpx;
|
background: #eef2ff;
|
color: #4c60ff;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
font-size: 36rpx;
|
font-weight: 600;
|
}
|
|
.score-input {
|
flex: 1;
|
height: 60rpx;
|
border: 2rpx solid #dcdfe6;
|
border-radius: 12rpx;
|
text-align: center;
|
font-size: 28rpx;
|
padding: 0 12rpx;
|
background: #fff;
|
}
|
|
.total-score {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
gap: 16rpx;
|
padding: 24rpx;
|
background-color: #e3f2fd;
|
border-radius: 12rpx;
|
border: 2rpx solid #007aff;
|
}
|
|
.total-label {
|
font-size: 30rpx;
|
color: #333;
|
font-weight: 600;
|
}
|
|
.total-value {
|
font-size: 32rpx;
|
color: #007aff;
|
font-weight: 700;
|
}
|
|
.comment-input {
|
width: 100%;
|
min-height: 200rpx;
|
padding: 20rpx;
|
background-color: #f8f9fa;
|
border: 2rpx solid #e0e0e0;
|
border-radius: 12rpx;
|
font-size: 26rpx;
|
line-height: 1.5;
|
color: #333;
|
box-sizing: border-box;
|
}
|
|
.comment-counter {
|
text-align: right;
|
margin-top: 12rpx;
|
font-size: 22rpx;
|
color: #999;
|
}
|
|
.existing-review {
|
background-color: #fff7e6;
|
border: 2rpx solid #ffb347;
|
}
|
|
.review-info {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
margin-bottom: 20rpx;
|
font-size: 26rpx;
|
color: #666;
|
}
|
|
.other-reviews-btn {
|
display: flex;
|
align-items: center;
|
gap: 8rpx;
|
padding: 14rpx 24rpx;
|
border-radius: 24rpx;
|
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
color: #fff;
|
font-size: 26rpx;
|
}
|
|
.bottom-actions {
|
position: fixed;
|
left: 0;
|
right: 0;
|
bottom: 0;
|
padding: 20rpx 30rpx;
|
background-color: rgba(255, 255, 255, 0.95);
|
box-shadow: 0 -4rpx 16rpx rgba(0, 0, 0, 0.08);
|
display: flex;
|
justify-content: center;
|
align-items: stretch;
|
}
|
|
.action-btn {
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
gap: 12rpx;
|
padding: 20rpx;
|
border-radius: 12rpx;
|
font-size: 28rpx;
|
font-weight: 500;
|
transition: all 0.3s ease;
|
flex: 1;
|
width: 100%;
|
}
|
|
.submit-btn {
|
background-color: #28a745;
|
color: #fff;
|
}
|
|
.submit-btn.submitting {
|
background-color: #6c757d;
|
}
|
|
.btn-icon {
|
font-size: 24rpx;
|
}
|
|
@media (max-width: 375px) {
|
.container {
|
padding-bottom: 100rpx;
|
}
|
|
.review-content {
|
padding: 20rpx;
|
}
|
|
.submission-info,
|
.media-section,
|
.criteria-section,
|
.comment-section,
|
.existing-review {
|
padding: 20rpx;
|
margin-bottom: 20rpx;
|
}
|
|
.bottom-actions {
|
padding: 15rpx 20rpx;
|
}
|
}
|