1
0

btnAuth.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* @import '/style/weui.wxss'; */
  2. .page {
  3. line-height: 1.6;
  4. font-family: -apple-system-font, Helvetica Neue, sans-serif;
  5. }
  6. .hd {
  7. padding: 10px 15px 0;
  8. }
  9. .page_title {
  10. text-align: center;
  11. font-size: 34px;
  12. color: #3CC51F;
  13. font-weight: 400;
  14. margin: 10% 25% 0% 25%;
  15. }
  16. .bd {
  17. margin: 10% 25% 0% 25%;
  18. padding-left: 20px;
  19. }
  20. .weui_btn_primary {
  21. background-color: #04be02;
  22. }
  23. .weui_btn {
  24. position: relative;
  25. display: block;
  26. margin-left: auto;
  27. margin-right: auto;
  28. padding-left: 14px;
  29. padding-right: 14px;
  30. box-sizing: border-box;
  31. font-size: 18px;
  32. text-align: center;
  33. text-decoration: none;
  34. color: #FFFFFF;
  35. line-height: 2.33333333;
  36. border-radius: 5px;
  37. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  38. overflow: hidden;
  39. }
  40. .weui_btn:after {
  41. content: " ";
  42. width: 200%;
  43. height: 200%;
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. border: 1px solid rgba(0, 0, 0, 0.2);
  48. -webkit-transform: scale(0.5);
  49. -ms-transform: scale(0.5);
  50. transform: scale(0.5);
  51. -webkit-transform-origin: 0 0;
  52. -ms-transform-origin: 0 0;
  53. transform-origin: 0 0;
  54. box-sizing: border-box;
  55. border-radius: 10px;
  56. }