123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>企业选择</title>
- <style>
- html,
- body {
- display: block;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- position: relative;
- overflow: auto;
- background-image: url("/static/img/bj.png");
- background-repeat: no-repeat;
- background-attachment: fixed;
- background-position: center;
- }
- .tou {
- background-color: #48afff;
- width: 260px;
- height:48px;
- text-align: center;
- color: white;
- line-height: 48px;
- border-radius: 30px;
- margin: 0 auto;
- margin-top:-24px;
-
- }
- .bjg {
- width: 800px;
- height: 520px;
- margin: 0px auto;
- position: relative;
- border: 1px dashed #2196f3;
- top: 50%;
- margin-top:-260px;
- background: #ffffff ;
- box-shadow: #b4dbff 0px 0px 10px 0px;
- border-radius: 10px;
- background-repeat: no-repeat;
- }
- .shuzi {
- width: 100%;
- text-align: center;
- position: absolute;
- top: 52%;
- transform: translateY(-50%);
- overflow: auto;
- max-height: 90%;
- }
- .item {
- background-color: #e0edf9;
- display: inline-block;
- padding:20px;
- border-radius: 5px;
- margin: 16px 24px;
- color:#333;
- }
-
- .item>div:first-child {
- margin-bottom: 10px;
- }
- .shuzi>div:active {
- background-color: #48afff !important;
- color: white;
- }
- .shuzi>div:hover {
- cursor: pointer;
- background-color: #48afff !important;
- color: white;
- }
- .shuzi a{
- text-decoration:none;
- }
- </style>
- </head>
- <body>
- <div class="bjg">
- <div class="tou">请选择营销数字化平台</div>
- <div class="shuzi a">
- {volist name="companys" id="vo"}
- {if condition="$vo.off eq 1"}
- <div class="item">
- <div>{$vo.company_name}</div>
- <!-- <div>营销数字化平台</div> -->
- <div>{$vo.off_remark}</div>
- </div>
- {else /}
- <a href="{:url('index/company',['rootid'=>$vo.root_id])}">
- <div class="item">
- <div>{$vo.company_name}</div>
- <div>营销数字化平台</div>
- </div>
- </a>
- {/if}
- {/volist}
-
- </div>
- </div>
- </body>
- </html>
|