/* ========== 全局样式 ========== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #333;
  background: #f5f6f8;
  line-height: 1.5;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
button { border: none; outline: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { outline: none; border: none; font-family: inherit; font-size: 14px; }
img { max-width: 100%; display: block; }

/* ========== 页面容器 ========== */
.page {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: #f5f6f8;
  position: relative;
  padding-bottom: 60px;
}
.page.no-tab { padding-bottom: 0; }

/* ========== 顶部导航栏 ========== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 44px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  position: relative;
}
.nav-bar .nav-title {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}
.nav-bar .nav-back {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-bar .nav-back::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  margin-right: 4px;
}
.nav-bar .nav-right {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #409eff;
}

/* ========== 底部 Tab 导航 ========== */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 60px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s;
}
.tab-item.active { color: #409eff; }
.tab-item .tab-icon {
  font-size: 22px;
  margin-bottom: 2px;
  line-height: 1;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #409eff, #66b1ff);
  color: #fff;
}
.btn-primary:active { opacity: 0.85; }
.btn-outline {
  background: #fff;
  color: #409eff;
  border: 1px solid #409eff;
}
.btn-outline:active { background: #ecf5ff; }
.btn-danger {
  background: #fef0f0;
  color: #f56c6c;
  border: 1px solid #fbc4c4;
}
.btn-block {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  font-size: 16px;
}
.btn-sm {
  height: 28px;
  padding: 0 14px;
  font-size: 12px;
  border-radius: 14px;
}

/* ========== 卡片 ========== */
.card {
  background: #fff;
  border-radius: 12px;
  margin: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ========== 列表项 ========== */
.list-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.list-item:last-child { border-bottom: none; }
.list-item:active { background: #f9f9f9; }
.list-item .item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}
.list-item .item-content { flex: 1; min-width: 0; }
.list-item .item-title {
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-item .item-desc {
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-item .item-arrow {
  color: #ccc;
  font-size: 14px;
  margin-left: 8px;
  flex-shrink: 0;
}
.list-item .item-arrow::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ccc;
  border-top: 2px solid #ccc;
  transform: rotate(45deg);
}

/* ========== 表单 ========== */
.form-group {
  background: #fff;
  margin-bottom: 12px;
}
.form-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
  min-height: 50px;
}
.form-item:last-child { border-bottom: none; }
.form-item .form-label {
  width: 90px;
  font-size: 14px;
  color: #333;
  flex-shrink: 0;
}
.form-item .form-label.required::before {
  content: '*';
  color: #f56c6c;
  margin-right: 4px;
}
.form-item .form-control {
  flex: 1;
  font-size: 14px;
  color: #333;
  text-align: right;
}
.form-item .form-control input,
.form-item .form-control select,
.form-item .form-control textarea {
  width: 100%;
  text-align: right;
  color: #333;
  background: transparent;
}
.form-item .form-control textarea {
  text-align: left;
  min-height: 80px;
  resize: none;
  line-height: 1.6;
}
.form-item.textarea-item {
  flex-direction: column;
  align-items: flex-start;
}
.form-item.textarea-item .form-label {
  width: 100%;
  margin-bottom: 10px;
}
.form-item.textarea-item .form-control {
  width: 100%;
}
.form-item.textarea-item .form-control textarea {
  text-align: left;
}
.form-tip {
  padding: 8px 16px;
  font-size: 12px;
  color: #999;
}

/* ========== 状态标签 ========== */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.6;
}
.tag-success { background: #f0f9eb; color: #67c23a; }
.tag-warning { background: #fdf6ec; color: #e6a23c; }
.tag-info { background: #ecf5ff; color: #409eff; }
.tag-danger { background: #fef0f0; color: #f56c6c; }
.tag-default { background: #f4f4f5; color: #909399; }

/* ========== 弹窗 ========== */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-mask.show { display: flex; }
.modal {
  width: 80%;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.modal-header {
  padding: 20px 16px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.modal-body {
  padding: 0 16px 20px;
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}
.modal-footer {
  display: flex;
  border-top: 1px solid #eee;
}
.modal-btn {
  flex: 1;
  height: 48px;
  font-size: 16px;
  color: #666;
  background: #fff;
  border: none;
  cursor: pointer;
}
.modal-btn:active { background: #f9f9f9; }
.modal-btn.primary { color: #409eff; font-weight: 500; }
.modal-btn + .modal-btn { border-left: 1px solid #eee; }

/* 底部弹窗 */
.modal-bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
  display: none;
}
.modal-bottom.show { display: block; }
.modal-bottom .modal-bottom-header {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
.modal-bottom .modal-bottom-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}
.modal-bottom .modal-bottom-body {
  padding: 16px;
}

/* ========== Toast ========== */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 2000;
  display: none;
  max-width: 80%;
  text-align: center;
}
.toast.show { display: block; animation: toastFade 0.3s; }
@keyframes toastFade {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* ========== 登录页 ========== */
.login-page {
  background: #fff;
  min-height: 100vh;
  padding: 60px 30px 30px;
}
.login-logo {
  text-align: center;
  margin-bottom: 40px;
}
.login-logo .logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #409eff, #66b1ff);
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.login-logo .logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.login-logo .logo-sub {
  font-size: 13px;
  color: #999;
}
.login-form .form-item {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.login-form .form-item .form-label {
  width: 70px;
  font-size: 14px;
  color: #333;
}
.login-form .form-item .form-control input {
  text-align: left;
}
.login-form .form-item .verify-code {
  display: flex;
  align-items: center;
}
.login-form .form-item .verify-code input {
  flex: 1;
}
.login-form .form-item .code-btn {
  font-size: 12px;
  color: #409eff;
  padding-left: 12px;
  border-left: 1px solid #eee;
  margin-left: 12px;
  flex-shrink: 0;
}
.login-btn {
  margin-top: 40px;
}
.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}
.login-footer a { color: #409eff; }

/* ========== 工作台首页 ========== */
.home-header {
  background: linear-gradient(135deg, #409eff, #66b1ff);
  padding: 20px 16px 30px;
  color: #fff;
  position: relative;
}
.home-user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.home-user .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 12px;
}
.home-user .user-info .user-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.home-user .user-info .user-role {
  font-size: 12px;
  opacity: 0.85;
}
.home-stats {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 0;
}
.home-stats .stat-item {
  flex: 1;
  text-align: center;
}
.home-stats .stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.2);
}
.home-stats .stat-value {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.home-stats .stat-label {
  font-size: 12px;
  opacity: 0.85;
}

/* 状态 Tab */
.status-tabs {
  display: flex;
  background: #fff;
  border-radius: 12px 12px 0 0;
  margin: -18px 12px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.status-tab {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.status-tab.active {
  color: #409eff;
  font-weight: 600;
}
.status-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #409eff;
  border-radius: 2px;
}

/* 积分包列表 */
.package-list {
  padding: 0 12px 12px;
  background: #fff;
  margin: 0 12px 12px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 200px;
}
.package-card {
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.package-card:last-child { border-bottom: none; }
.package-card:active { opacity: 0.8; }
.package-card .package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.package-card .package-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}
.package-card .package-info {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}
.package-card .package-info span { margin-right: 16px; }
.package-card .package-info .points {
  color: #f56c6c;
  font-weight: 600;
  font-size: 14px;
}
.package-card .package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-card .package-progress {
  flex: 1;
  margin-right: 12px;
}
.package-card .progress-bar {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.package-card .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #409eff, #66b1ff);
  border-radius: 3px;
}
.package-card .progress-text {
  font-size: 11px;
  color: #999;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 14px;
}
.empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}

/* ========== 任务大厅 ========== */
.task-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
}
.task-category-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.task-category-card:active { transform: scale(0.97); }
.task-category-card .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.task-category-card .cat-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.task-category-card .cat-desc {
  font-size: 12px;
  color: #999;
}

/* 子任务列表 */
.subtask-list {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.subtask-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.subtask-item:last-child { border-bottom: none; }
.subtask-item:active { background: #f9f9f9; }
.subtask-item .subtask-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ecf5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}
.subtask-item .subtask-info { flex: 1; }
.subtask-item .subtask-name {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}
.subtask-item .subtask-desc {
  font-size: 12px;
  color: #999;
}
.subtask-item .subtask-points {
  font-size: 14px;
  color: #f56c6c;
  font-weight: 600;
  margin-right: 8px;
}

/* ========== 任务详情页 ========== */
.task-detail-header {
  background: #fff;
  padding: 16px;
  margin-bottom: 12px;
}
.task-detail-header .task-title {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.task-detail-header .task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #999;
}
.task-detail-header .task-meta span {
  background: #f5f6f8;
  padding: 4px 10px;
  border-radius: 10px;
}
.task-section {
  background: #fff;
  margin-bottom: 12px;
}
.task-section-title {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}
.submit-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  z-index: 100;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

/* 图片上传占位 */
.upload-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
}
.upload-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  border: 1px dashed #ddd;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.upload-item .upload-icon {
  font-size: 24px;
  color: #ccc;
  margin-bottom: 4px;
}
.upload-item .upload-text {
  font-size: 11px;
  color: #999;
}
.upload-item.uploaded {
  border: none;
  background: #e8f4ff;
}
.upload-item.uploaded::before {
  content: '📄';
  font-size: 28px;
}

/* 定位打卡 */
.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background: #ecf5ff;
  color: #409eff;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin: 14px 16px;
}
.location-btn:active { background: #d9ecff; }
.location-btn .location-icon {
  font-size: 18px;
  margin-right: 6px;
}

/* ========== 我的页面 ========== */
.mine-header {
  background: linear-gradient(135deg, #409eff, #66b1ff);
  padding: 40px 20px 50px;
  color: #fff;
  display: flex;
  align-items: center;
}
.mine-header .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}
.mine-header .user-info { flex: 1; }
.mine-header .user-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mine-header .platform-name {
  font-size: 12px;
  opacity: 0.85;
}
.mine-section {
  background: #fff;
  margin: -20px 12px 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  z-index: 10;
}
.mine-section .section-title {
  padding: 12px 16px 8px;
  font-size: 13px;
  color: #999;
  font-weight: normal;
}

/* ========== 资讯页 ========== */
.news-list {
  padding: 12px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.news-card:active { opacity: 0.85; }
.news-card .news-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #66b1ff, #409eff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}
.news-card .news-body {
  padding: 12px 14px;
}
.news-card .news-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-summary {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
}

/* 资讯详情 */
.news-detail {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.news-detail .news-detail-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-detail .news-detail-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2;
}
.news-detail .news-detail-content {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}
.news-detail .news-detail-content p { margin-bottom: 16px; }
.share-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  padding: 10px 16px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 12px;
  z-index: 100;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.share-bar .btn { flex: 1; }

/* ========== 合规测评 ========== */
.quiz-container {
  padding: 16px;
}
.quiz-question {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.quiz-question .q-number {
  font-size: 12px;
  color: #409eff;
  margin-bottom: 8px;
  font-weight: 600;
}
.quiz-question .q-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #f5f6f8;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.quiz-option:active { background: #eef0f3; }
.quiz-option.selected {
  background: #ecf5ff;
  border-color: #409eff;
  color: #409eff;
}
.quiz-option .option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-option.selected .option-radio {
  border-color: #409eff;
}
.quiz-option.selected .option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #409eff;
}

/* ========== 协议页 ========== */
.agreement-content {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  padding: 20px 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.agreement-content h3 {
  font-size: 16px;
  margin: 16px 0 8px;
  color: #333;
}
.agreement-content p { margin-bottom: 10px; }

/* ========== 通知列表 ========== */
.notification-list {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.notification-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.notification-item:last-child { border-bottom: none; }
.notification-item:active { background: #f9f9f9; }
.notification-item .notif-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification-item .notif-title .notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f56c6c;
  flex-shrink: 0;
}
.notification-item .notif-content {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.5;
}
.notification-item .notif-time {
  font-size: 11px;
  color: #999;
}

/* ========== 客服页 ========== */
.customer-service {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.customer-service .cs-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ecf5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.customer-service .cs-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.customer-service .cs-desc {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}
.customer-service .cs-info {
  text-align: left;
  background: #f5f6f8;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* ========== 任务完成记录 ========== */
.record-list {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.record-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
}
.record-item:last-child { border-bottom: none; }
.record-item .record-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.record-item .record-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.record-item .record-info {
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: space-between;
}

/* ========== 图标颜色 ========== */
.icon-blue { background: #ecf5ff; color: #409eff; }
.icon-green { background: #f0f9eb; color: #67c23a; }
.icon-orange { background: #fdf6ec; color: #e6a23c; }
.icon-red { background: #fef0f0; color: #f56c6c; }
.icon-purple { background: #f3eaff; color: #9c6ade; }
.icon-cyan { background: #e6f7f7; color: #13c2c2; }
