level.html 3.23 KB
<!DOCTYPE html>
<html lang="zh_CN">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="format-detection" content="telephone=no">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>会员等级说明</title>
    <style>
        html {
            font-family: PingFang SC, miui, system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
        }

        .content {
            width: 100%;
            max-width: 750px;
            margin: 0 auto;
            font-size: 12px;
            line-height: 1.5;
            color: #444;
        }

        .content p {
            -webkit-margin-before: 0.5em;
            -webkit-margin-after: 0.5em;
        }

        table,
        table tr th,
        table tr td {
            border: 1px solid #eee;
        }

        table tr th {
            background: #eee;
            line-height: 1.8;
        }

        table {
            width: 92%;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            border-collapse: collapse;
        }
    </style>
</head>

<body>
    <div class="content">
        <p>
            <b>等级有效期</b>
            <br> 会员等级有效期为一年。若有效期内用户升级,则从升级当天开始计算新的周期。
        </p>
        <p>
            <b>升降级规则</b>
            <br> 用户在等级有效期内当前成长值达到升级门槛值,则新等级立即生效;等级有效期到期后,用户等级将根据当前成长值重新计算。
            <br> 若订单发生退货,则扣除对应的成长值。
            <br> 若该笔退货订单下单时间和退货时间不在同一个等级周期内,且退货扣除成长值后当前成长值小于当前等级的门槛时,则进行降级。
        </p>
        <p>
            <b>成长值说明</b>
            <br> 在线支付订单完成后后即可获得成长值奖励,货到付款订单发货15天后获得成长值奖励,成长值按照该订单实付金额1:1发放。
            <br> 当前成长值仅计算近一年(365天)内获取的成长值。
        </p>
        <p>
            <b>会员等级对应表</b>
            <table>
                <tr>
                    <th>会员等级</th>
                    <th>对应成长值</th>
                </tr>
                <tr>
                    <td>普通会员</td>
                    <td>0-600</td>
                </tr>
                <tr>
                    <td>银卡会员</td>
                    <td>600-2000</td>
                </tr>
                <tr>
                    <td>金卡会员</td>
                    <td>2000-5000</td>
                </tr>
                <tr>
                    <td>白金会员</td>
                    <td>5000以上</td>
                </tr>
            </table>
        </p>
        <p>
            <b>特别说明:</b>等级截止日期在2018/3/27 15:00至2018/10/15 24:00的用户,系统会将有效期延长至2018/10/15 24:00。
        </p>
        <p>
            会员制度详细说明可见 <b>我的->服务与反馈->账户问题->有货会员制度</b>
        </p>
    </div>
</body>

</html>