mirror of
https://gitee.com/tawords/tawords
synced 2025-09-13 22:01:39 +08:00
48 lines
964 B
PHP
48 lines
964 B
PHP
<?php
|
|
/*
|
|
* 组件: 正在建设中 提示
|
|
* 版本号: 1.0.0
|
|
* 修改时间: 2020.08.15
|
|
* 备注: --
|
|
*/
|
|
?>
|
|
|
|
<style>
|
|
@charset "utf-8";
|
|
#construct>*{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#construct>h1{
|
|
padding-top: 5px;
|
|
font-size: 36px;
|
|
text-align: center;
|
|
}
|
|
#construct>p{
|
|
margin: 0 62px;
|
|
font-size: 18px;
|
|
text-indent: 36px;
|
|
line-height: 40px;
|
|
}
|
|
#construct>p span{
|
|
color: #ff6500;
|
|
}
|
|
#construct>.notice-foot{
|
|
margin-top: 24px;
|
|
}
|
|
#construct>.notice-foot p{
|
|
font-size: 18px;
|
|
color: #666;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<div id="construct" style="margin-top:50px;">
|
|
<h1>该功能正在建设中</h1>
|
|
<p style="text-align: center;">
|
|
尊敬的访客,您好,该<span><?=$page ?></span>功能正在建设中,请过一段时间再来看看吧。<br />
|
|
感谢您对<span><?=$title ?></span>的支持
|
|
</p>
|
|
<div class="notice-foot">
|
|
<p><?=$title ?></p>
|
|
</div>
|
|
</div>
|