12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>拔打电话-易购房</title>
- <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
- <!-- UC强制全屏 -->
- <meta name="full-screen" content="yes">
- <!-- QQ强制全屏 -->
- <meta name="x5-fullscreen" content="true">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no" />
- <link rel="stylesheet" href="/css/public.css">
- <link rel="stylesheet" href="/js/alert/alert.css">
- <script>
- document.title = '拔打电话-易购房';
- </script>
- <style>
- body {background:#F5F7FA;}
- .w-top {background:#fff;height:50px;line-height:50px;position:fixed;top:0;left:0;right:0;}
- .w-top .w-top-r {position:absolute;top:0;left:0;height:50px;line-height:50px;}
- .w-top .w-top-r a {display:inline-block;height:50px;padding:13px;line-height:50px;}
- .w-top .w-top-r a img {display:inline-block;width:13px;height:20px;position:relative;top:-15px;}
- .w-top .w-top-title {text-align:center;font-size:1.0625rem;color:#333;font-weight:bold;}
- .w-con {margin:28% 25px 0;background:#fff;border-radius:15px;overflow:hidden;box-shadow: 0px 0px 10px 0px rgba(177,177,177,0.28);}
- .w-con-img{width: 100%; height:230px;}
- .w-con-img img {display:inline-block;width:100%;height:100%;}
- .w-con-box h2 {text-align:center;max-width:80%;margin: 0 auto; overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
- .w-con-box h2 a{display: block; font-size:1.187rem;font-weight:bold;margin:14px auto; color: #333; text-align: center;}
- .w-con-tel {display:block;width: 80%; text-align: center; margin:0 auto;height:22px;line-height:22px;border-radius:15px;text-align:center;font-size:0.937rem;color:#999;}
- .w-con-tel img {display:inline-block;width:12px;height:12px;margin-right:5px;}
- .youhuixi{width: 80%; margin: 0 auto; text-align: center; margin-top: 15px;}
- .youhuixi span{font-size: 0.937rem; color: #EA2020; line-height: 23px;}
- .w-con-btn {margin:20px 28px 15px;}
- .w-con-btn a {display:block;height:50px;background: #3072F6; border-radius: 30px; line-height:50px;font-size:1.25rem;color:#fff;text-align:center;}
- </style>
- </head>
- <body>
- <div class="w-top">
- <div class="w-top-r">
- <a href="/"><img src="/image/top_w.png" alt=""></a>
- </div>
- <div class="w-top-title">拔打电话</div>
- </div>
- <!-- 楼盘信息 -->
- <?php if (!empty($model['house'])) { ?>
- <div class="w-con">
- <div class="w-con-box">
- <div class="w-con-img">
- <a href="/house/<?= $model['house']['id'] ?>/"><img src="<?= Yii::$app->params['httpImg']['hosts'].Yii::$app->params['httpImg']['houses'].$model['house']['thumb'].'/same';?>" alt=""></a>
- </div>
- <h2><a href="/house/<?= $model['house']['id'] ?>/"><?= $model['house']['name'] ?></a></h2>
- <div class="w-con-tel">
- <span>咨询电话:<?= $model['house']['tel'] ?></span>
- </div>
- <?php if (!empty($model['house']['preferential'])) { ?>
- <div class="youhuixi">
- <span><?= $model['house']['preferential'] ?></span>
- </div>
- <?php } ?>
- <div class="w-con-btn">
- <a href="tel:<?= $model['house']['tel'] ?>">拨打电话</a>
- </div>
- </div>
- </div>
- <?php } ?>
- </body>
- <script src="/js/jquery-3.2.1.min.js"></script>
- <script src="/js/alert/alert.js"></script>
- <script src="/js/applyVerify.js"></script>
- </html>
|