index.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <include file="appapi@head"/>
  5. <title>身份认证</title>
  6. <style type="text/css">
  7. *{margin: 0;padding: 0;font-family: Helvetica;}
  8. *{
  9. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  10. -moz-tap-highlight-color:rgba(0, 0, 0, 0);
  11. -ms-tap-highlight-color:rgba(0, 0, 0, 0);
  12. -o-tap-highlight-color:rgba(0, 0, 0, 0);
  13. tap-highlight-color:rgba(0, 0, 0, 0);
  14. }
  15. body{
  16. background: #FFF;
  17. }
  18. .top_img{
  19. margin-top:1.6rem;
  20. margin-bottom:0.5rem;
  21. text-align:center;
  22. }
  23. .top_img img{
  24. width:4rem;
  25. }
  26. .title1{color: #526165;text-align: center;}
  27. .title2{color: #969696;text-align: center;margin-top: 0.3rem;}
  28. .btn{
  29. color: #fff;
  30. width: 74%;
  31. margin:0 auto;
  32. height: 0.92rem;
  33. line-height: 0.92rem;
  34. text-align: center;
  35. border-radius: 1.1rem;
  36. margin-top: 1rem;
  37. }
  38. a:nth-of-type(3){text-decoration: none;color: #ffdd00;}
  39. a:nth-of-type(1){text-decoration: none;color: #03CACF;}
  40. .button_default1{
  41. background: -webkit-linear-gradient(left,#03cacf, #01e8d4) !important;
  42. background: -o-linear-gradient(left,#03cacf, #01e8d4) !important;
  43. background: -moz-linear-gradient(left,#03cacf, #01e8d4) !important;
  44. background: linear-gradient(to right,#03cacf, #01e8d4) !important;
  45. }
  46. .title4{
  47. text-align: center;
  48. margin-top: 0.4rem;
  49. color: #969696;
  50. }
  51. .color_default1{
  52. color: #03CACF;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div class="top_img">
  58. <img src="__STATIC__/appapi/images/auth/auth_index.png">
  59. </div>
  60. <div class="title1">亲爱的用户</div>
  61. <div class="title2">收到付费礼物可领取劳务费</div>
  62. <div class="title2">为保证<span style="color:#03CACF">资金安全</span></div>
  63. <div class="title2">开播前请通过<span style="color:#03CACF">身份认证</span>绑定账户</div>
  64. <div class="title2">通过认证可以获得更好的体验</div>
  65. <div class="btn button_default1">立即认证</div>
  66. <div class="title4">认证即同意 <a class="color_default1" href="/portal/page/index?id=10">主播协议</a></div>
  67. <include file="appapi@footer"/>
  68. <script type="text/javascript">
  69. $(function(){
  70. $(".button_default1").click(function(){
  71. location.href="auth://";
  72. });
  73. });
  74. </script>
  75. </body>
  76. </html>