/* Thankyou页面 404页面样式*/
#main-wrap .notice-container {display: flex;justify-content: center;align-items: center;min-height: 10vh;width: 100%;/* 优先使用100%而非100vw */padding: 20px;box-sizing: border-box;}
#main-wrap .notice-text {font-size: clamp(16px, 4vw, 36px);font-weight: 700;line-height: 1.6;max-width: 90%;text-align: center;margin: 0 auto;/* 双重居中保障 */padding: 15px;}

/* 4-0-4页面回到首页按钮*/
#main-wrap .return-home {padding: 15px 30px;background: linear-gradient(135deg, #e9d044, #e74e4e);color: white;border: none;border-radius: 8px;font-size: clamp(12px, 2vw, 20px);font-weight: 700;line-height: 1.6;max-width: 90%;cursor: pointer;transform-style: preserve-3d;transition: all 0.3s;box-shadow: 0 10px 20px rgba(0,0,0,0.2);}
#main-wrap .return-home:hover {transform: translateY(-5px) rotateX(10deg);box-shadow: 0 15px 30px rgba(0,0,0,0.3);}
#main-wrap .return-home:active {transform: translateY(0) rotateX(0);}