* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; }
body { max-width: 480px; margin: 0 auto; background: #fff; color: #333; min-height: 100vh; padding-bottom: 100px; }
:root { --pri: #008B94; --light: #E6F7F8; --orange: #FF6600; --gray: #666; --border: #eee; }

.page { display: none; }
.page.active { display: block; }

.header { width: 100%; height: 60px; background: var(--pri); color: #fff; font-size: 24px; display: flex; align-items: center; padding: 0 20px; }

.welcome-card { margin: 20px; padding: 30px 20px; background: var(--light); border: 2px dashed var(--orange); border-radius: 8px; }
.welcome-card h1 { font-size: 28px; color: var(--pri); margin-bottom: 20px; }
.welcome-card p { font-size: 18px; line-height: 1.6; margin-bottom: 10px; }
.tip { margin-top: 60px; text-align: center; color: var(--gray); }

.btn { border: none; border-radius: 12px; font-size: 18px; font-weight: 500; cursor: pointer; padding: 15px 30px; }
.btn-pri { background: var(--pri); color: #fff; }
.btn-out { background: #fff; color: var(--pri); border: 1px solid var(--pri); }
.fixed-bottom-right { position: fixed; bottom: 30px; right: 30px; box-shadow: 0 4px 12px rgba(0,139,148,0.3); }
.bottom-group { position: fixed; bottom: 30px; left: 0; right: 0; display: flex; justify-content: space-around; max-width: 480px; margin: 0 auto; }

.publish-box { padding: 30px 20px; }
.progress { width: 100%; height: 6px; background: #eee; border-radius: 3px; margin-bottom: 30px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--pri); transition: width 0.3s; }
.step-title { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 16px; color: var(--gray); margin-bottom: 30px; }
.step-content { min-height: 400px; }
.step-item { display: none; }
.step-item.active { display: block; }

.opt-group { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.opt-item { display: flex; align-items: center; gap: 12px; font-size: 18px; cursor: pointer; padding: 8px 0; }
.opt-item input { width: 20px; height: 20px; accent-color: var(--pri); }

.rating-group { display: flex; flex-direction: column; gap: 15px; }
.rating-item { padding: 20px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; gap: 15px; font-size: 18px; cursor: pointer; }
.rating-item.active { border: 2px dashed var(--orange); background: #FFE0D9; }
.rating-num { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; }

.input { width: 100%; padding: 15px; border: 1px solid var(--border); border-radius: 8px; font-size: 16px; margin-bottom: 20px; resize: none; }
.input:focus { outline: none; border-color: var(--pri); }

.step-btns { display: flex; justify-content: space-between; margin-top: 40px; }

.success-box { padding: 60px 20px; text-align: center; }
.ok-icon { width: 120px; height: 120px; border-radius: 50%; background: #E6F9E6; border: 2px dashed var(--orange); display: flex; align-items: center; justify-content: center; font-size: 40px; color: #009933; margin: 0 auto 30px; }
.success-box h2 { font-size: 26px; margin-bottom: 20px; }
.success-box p { font-size: 16px; color: var(--gray); line-height: 1.6; margin-bottom: 40px; }
.success-btns { display: flex; flex-direction: column; gap: 20px; max-width: 300px; margin: 0 auto; }

.list-box { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.card { padding: 20px; border: 1px solid var(--border); border-radius: 8px; }
.tag { display: inline-block; padding: 4px 12px; background: var(--light); color: var(--pri); border-radius: 4px; font-size: 14px; margin-bottom: 10px; }
.card-content { font-size: 18px; margin-bottom: 15px; }
.agree { text-align: right; color: var(--orange); font-size: 16px; cursor: pointer; }
.expand { text-align: center; color: var(--pri); font-size: 16px; margin: 20px 0; cursor: pointer; }