<!-- feature-forward.swan -->
<view class="wrap">
    <custom chinese-name="功能前置登录页" theme="white"></custom>
    <view class="login-container">
        <view class="brand-atmosphere">
            <image class="app-logo" mode="widthFix" src="{{logoUrl}}"></image>
            <view class="app-title">{{title}}</view>
        </view>
        <view class="functional-part">
            <block s-for="item in descriptions">
                <view class="app-description">{{item}}</view>
                <view class="feature-container">
                    <block s-for="feature in features">
                        <feature-block class="feature-item" feature-image="{{feature.image}}" feature-name="{{feature.name}}"></feature-block>
                    </block>
                </view>
            </block>
        </view>
        <view class="card-area" style="min-height: 320px;">
            <login button-class="buttonClass"></login>
        </view>
    </view>
</view>