123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>绑定微信号</title>
- <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
- <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
- <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
- <style>
- body{
- background: #fff;
- }
- .header{
- width: 100%;
- height: 160px;
- text-align:center;
- line-height: 160px;
- font-size: 55px;
- background: rgb(40,125,180);
- color:#fff;
- background: -webkit-linear-gradient(left, rgb(255,172,20) , rgb(235,127,20)); /* Safari 5.1 - 6.0 */
- background: -o-linear-gradient(right, rgb(255,172,20) , rgb(235,127,20)); /* Opera 11.1 - 12.0 */
- background: -moz-linear-gradient(right,rgb(255,172,20) , rgb(235,127,20)); /* Firefox 3.6 - 15 */
- background: linear-gradient(to right, rgb(255,172,20) , rgb(235,127,20)); /* 标准的语法 */
- }
- .txtbox{
- width: 100%;
- height: 450px;
- }
- .txtbox .title{
- display: inline-block;
- width: 100%;
- height: 120px;
- text-align: center;
- line-height: 120px;
- font-size: 45px;
- }
- .txtbox .input{
- width: 60%;
- height: 100px;
- margin: 50px 20% 70px 20%;
- font-size: 40px;
- border: 1px solid #999;
- border-radius: 60px;
- text-indent: 60px;
- }
- .txtbox button{
- width: 80%;
- height: 120px;
- line-height: 120px;
- font-size: 45px;
- font-weight: 600;
- text-align: center;
- margin-left: 10%;
- border: none;
- border-radius: 20px;
- background: rgba(0,0,0,0.1);
- color: #666;
- margin-top: 100px;
- }
- </style>
- </head>
- <body>
- <div class="header">绑定成功</div>
- <div class="container" style="padding: 40px;width: 100%;height: 100%;">
- <div class="row visible-on">
- <div class="txtbox">
- <div class="title">您的微信号已经成功绑定!</div>
- <!-- <input class="input" type="text" placeholder="请输入手机号">
- <button>确认绑定</button> -->
- </div>
- </div>
- </div>
- </body>
- </html>
|