invite-detail.wxss 3.7 KB
@charset "UTF-8";
/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
/**
 * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
 */
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.container.data-v-6eadf19c {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5e9 0%, #b2dfdb 100%);
  padding: 40rpx;
  box-sizing: border-box;
}
.detail-card.data-v-6eadf19c {
  background: #fff;
  border-radius: 32rpx;
  box-shadow: 0 8rpx 32rpx rgba(76, 175, 80, 0.1);
  overflow: hidden;
}
.card-header.data-v-6eadf19c {
  background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
  padding: 32rpx 40rpx;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2rpx;
  font-size: 32rpx;
}
.detail-content.data-v-6eadf19c {
  padding: 40rpx;
}
.loading.data-v-6eadf19c {
  text-align: center;
  padding: 80rpx 40rpx;
  color: #6a9c6a;
  font-size: 28rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20rpx;
}
.loading-text.data-v-6eadf19c {
  font-size: 28rpx;
}
.error-state.data-v-6eadf19c {
  text-align: center;
  padding: 80rpx 40rpx;
  color: #c62828;
}
.error-text.data-v-6eadf19c {
  font-size: 28rpx;
  margin-bottom: 24rpx;
}
.retry-btn.data-v-6eadf19c {
  margin-top: 24rpx;
  background: #43a047;
  color: #fff;
  border-radius: 16rpx;
  padding: 16rpx 32rpx;
  font-size: 28rpx;
}
.info-sections.data-v-6eadf19c {
  display: block;
}
.info-section.data-v-6eadf19c {
  margin-bottom: 48rpx;
}
.info-section.data-v-6eadf19c:last-child {
  margin-bottom: 0;
}
.section-title.data-v-6eadf19c {
  font-size: 32rpx;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 32rpx;
  padding-bottom: 16rpx;
  border-bottom: 4rpx solid #e8f5e9;
}
.info-grid.data-v-6eadf19c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32rpx;
}
.info-item.data-v-6eadf19c {
  display: flex;
  flex-direction: column;
}
.info-item.full-width.data-v-6eadf19c {
  grid-column: 1/-1;
}
.info-label.data-v-6eadf19c {
  font-size: 24rpx;
  color: #6a9c6a;
  margin-bottom: 8rpx;
  font-weight: 500;
}
.info-value.data-v-6eadf19c {
  font-size: 28rpx;
  color: #2e7d32;
  font-weight: 500;
  padding: 16rpx 24rpx;
  background: #f8fff8;
  border-radius: 16rpx;
  border: 2rpx solid #e8f5e9;
  word-break: break-all;
}
.expansion-link.data-v-6eadf19c {
  color: #43a047 !important;
  text-decoration: underline;
  cursor: pointer;
}
.contact-record.data-v-6eadf19c {
  min-height: 120rpx;
  white-space: pre-wrap;
  line-height: 1.6;
}
.status-badge.data-v-6eadf19c {
  display: inline-block;
  padding: 8rpx 24rpx;
  border-radius: 40rpx;
  font-size: 24rpx;
  font-weight: 500;
  text-align: center;
  margin-top: 8rpx;
}
.status-badge.success.data-v-6eadf19c {
  background: #e8f5e9;
  color: #2e7d32;
  border: 2rpx solid #c8e6c9;
}
.status-badge.failed.data-v-6eadf19c {
  background: #ffebee;
  color: #c62828;
  border: 2rpx solid #ffcdd2;
}
.status-badge.pending.data-v-6eadf19c {
  background: #fff3e0;
  color: #ef6c00;
  border: 2rpx solid #ffe0b2;
}