<?xml version="1.0" encoding="UTF-8"?>

<!--
    $Author:
    $Date: 2018/8/2
    $Revision: 1.0
    微件-资产-进入资金信息查询界面
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application">
    <a:init-procedure/>
    <a:view template="default" package="leaf.ui.std">
        <style>
            html,body{
            width:264px;
            height:264px;
            margin: 0;
            padding: 0;
            color:#000;
            }
            .widget_goquery_fund{
            box-sizing:border-box;
            width:264px;
            height:264px;
            padding:16px;
            background-color:#fff;
            position:relative;
            border:1px solid #F0F0F3;
            cursor:default;
            }
            .widget_goquery_fund .widget_label{
            position:absolute;
            width:40px;
            height:4px;
            top:0;
            left:16px;
            background-color:#5A7FFF;
            }
            .widget_goquery_fund .go_query_fund_img{
            width:232px;
            height:150px;
            display:block;
            text-align:center;
            }
            .widget_goquery_fund .go_query_btn{
            margin-left:24px;
            margin-top:27px;
            height:22px;
            font-family: PingFangSC-Regular;
            font-size: 16px;
            color: #5A7FFF;
            cursor:pointer;
            }
            .widget_goquery_fund .go_query_btn img{
            width:16px;
            margin-left:8px;
            position:relative;
            top:2px;
            }
        </style>
        <script><![CDATA[
        jQuery(document).ready(function(){
            jQuery(".go_query_btn").click(function(){
                //进入资金信息查询界面
            });
        });
            ]]></script>
        <div class="widget_goquery_fund">
            <span class="widget_label"> </span>
            <img class="go_query_fund_img" src="${/request/@context_path}/leafresource/images/widget/go_query_fund.png"/>
            <div class="go_query_btn">
                <span>进入资金信息查询界面</span>
                <img class="icon"  src="${/request/@context_path}/leafresource/images/widget/rightSquare.png"/>
            </div>
        </div>
        <a:screenBody style="display:none"> </a:screenBody>
    </a:view>
</a:screen>