        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        body {
            background-color: #f0f6ff;
            min-height: 100vh;
            padding: 10px 16px;
            padding-bottom: 20px;
            overflow-y: auto;
        }

        .banner {
            width: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(0, 101, 255, 0.1));
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #2968e9;
            text-align: center;
            padding: 10px 16px;
            font-size: 14px;
            border-radius: 10px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border: 1px solid rgba(41, 104, 233, 0.15);
            position: sticky;
            top: 10px;
            z-index: 99;
        }
        .banner-success {
            background: linear-gradient(135deg, #FFF4D9 0%, #ACFFE0 100%);
            color: #065f46;
            border-color: #22c55e;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
        }
        .banner-error {
            background: linear-gradient(135deg, #FAE7E9 0%, #FFCBD0 100%);
            color: #b91c1c;
            border-color: #f87171;
            box-shadow: 0 2px 8px rgba(248, 113, 113, 0.2);
        }

        .banner-icon-img {
            width: 23px;
            height: 23px;
            object-fit: contain;
            display: inline-block;
        }

        /* 新增Banner样式 */
        .header-banner {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(41,104,233,0.08);
        }
        .header-banner img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .header-desc {
            text-align: center;
            font-size: 15px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* 美化选项卡 */
        .tabs {
            display: flex;
            position: relative;
            background: #fff;
            border-radius: 16px;
            padding: 4px;
            margin-bottom: 20px;
            box-shadow: 0 2px 12px rgba(41,104,233,0.08);
        }
        .tab-item {
            flex: 1;
            text-align: center;
            padding: 12px 0;
            font-size: 16px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
            border-radius: 12px;
        }
        .tab-item.active {
            color: #fff;
        }
        .tab-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: calc(50% - 4px);
            height: calc(100% - 8px);
            background: #2968e9;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
            z-index: 1;
        }

        .form-card {
            background: #fff;
            border-radius: 18px;
            padding: 28px 22px;
            box-shadow: 0 2px 15px rgba(41,104,233,0.06);
            margin-bottom: 24px;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from{opacity:0;transform: translateY(6px);}
            to{opacity:1;transform: translateY(0);}
        }

        .form-group {
            margin-bottom: 22px;
        }
        .form-label {
            font-size: 15px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }
        .input-wrap {
            position: relative;
        }
        .form-input {
            width: 100%;
            height: 50px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 0 16px 0 50px;
            font-size: 15px;
            background-color: #f9fafb;
            outline: none;
            transition: border 0.2s;
            -webkit-appearance: none;
            appearance: none;
        }
        input[type="date"].form-input {
            height: 50px !important;
            line-height: 50px;
            padding: 0 16px 0 50px;
        }
        input[type="date"]::-webkit-datetime-edit {
            padding: 0;
            font-size: 15px;
        }
        .form-input:focus {
            border-color: #2968e9;
            background-color: #fff;
        }
        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            color: #2968e9;
            z-index: 1;
        }

        .btn-subscribe {
            width: 100%;
            height: 50px;
            background-color: #2968e9;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        .btn-subscribe:hover {
            background-color: #1a57d8;
            box-shadow: 0 4px 12px rgba(41, 104, 233, 0.25);
        }
        .btn-subscribe:active{
            transform: scale(0.98);
        }

        .form-tip {
            text-align: center;
            font-size: 13px;
            color: #888;
        }
        .btn-row {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        .btn-bottom {
            flex: 1;
            height: 50px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            border: none;
        }
        .btn-query {
            background: #2968e9;
            color: #ffffff;
            border: 1px solid #2968e9;
        }
        .btn-query:hover {
            background: #2968e9;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(41,104,233,0.12);
        }
        .btn-unsubscribe {
            background: #FEE7E7;
            color: #D92D2D;
            border: 1px solid #f87171;
        }
        .btn-unsubscribe:hover {
            background: #FED7D7;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(248,113,113,0.12);
        }

        .footer-agree{
            text-align:center;
            font-size:12px;
            color:#999;
        }
        .footer-agree .agree-link{
            color:#2968e9;
            text-decoration:none;
            cursor: pointer;
        }

        /* 退订自定义确认弹窗 */
        .confirm-modal{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .confirm-box{
            background: #fff;
            width: 100%;
            max-width: 320px;
            border-radius: 16px;
            overflow: hidden;
            text-align: center;
            padding: 24px 20px;
            animation: scaleIn 0.25s ease;
        }
        @keyframes scaleIn {
            from{transform: scale(0.9);opacity:0;}
            to{transform: scale(1);opacity:1;}
        }
        .confirm-title{
            font-size: 17px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        .confirm-desc{
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.5;
        }
        .confirm-btns{
            display: flex;
            gap: 10px;
        }
        .confirm-btn{
            flex:1;
            height: 44px;
            border-radius: 10px;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .confirm-cancel{
            background: #f5f5f5;
            color: #666;
        }
        .confirm-ok{
            background: #D92D2D;
            color: #fff;
        }

        /* 协议弹窗 */
        .modal{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-content{
            background: #fff;
            border-radius: 16px;
            width: 100%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 24px;
            position: relative;
        }
        .modal-title{
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #333;
        }
        .modal-body{
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
        .modal-close{
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 20px;
            color: #999;
            cursor: pointer;
        }

        /* 新增：祝福语样式 */
        .blessing-card {
            background: #fff;
            border-radius: 18px;
            padding: 28px 22px;
            box-shadow: 0 2px 15px rgba(41,104,233,0.06);
            margin-bottom: 24px;
        }
        .blessing-title {
            font-size: 18px;
            color: #2968e9;
            margin-bottom: 16px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .blessing-refresh {
            background: #f0f6ff;
            border: none;
            color: #2968e9;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .blessing-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }
        .blessing-item {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .blessing-content {
            flex: 1;
            font-size: 15px;
            color: #333;
            line-height: 1.5;
        }
        .blessing-copy {
            background: #2968e9;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.2s;
        }
        .blessing-copy:hover {
            background: #1a57d8;
        }
        .blessing-empty {
            text-align: center;
            padding: 20px;
            color: #9ca3af;
            font-size: 15px;
        }