btnAuth.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. view, text {
  2. font-family: PingFangSC-Light, helvetica, 'Heiti SC';
  3. font-size: 29rpx;
  4. color: #333;
  5. }
  6. .hd {
  7. display: flex;
  8. width: 100%;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .hd .logo {
  14. width: 260rpx;
  15. height: 260rpx;
  16. margin-top: 40rpx;
  17. }
  18. .hd .title {
  19. text-align: center;
  20. font-size: 36rpx;
  21. color: #000;
  22. }
  23. .bd {
  24. width: 100%;
  25. padding: 50rpx;
  26. }
  27. .bd .top_line {
  28. width: 100%;
  29. height: 1rpx;
  30. background: #ccc;
  31. margin-top: 20rpx;
  32. margin-bottom: 50rpx;
  33. }
  34. .bd .m_name {
  35. display: block;
  36. font-size: 36rpx;
  37. color: #000;
  38. }
  39. .bd .s_name {
  40. margin-top: 25rpx;
  41. display: block;
  42. font-size: 34rpx;
  43. color: #8a8a8a;
  44. }
  45. .btn {
  46. padding: 120rpx 50rpx 0;
  47. }
  48. .weui_btn_primary {
  49. background-color: #04be02;
  50. }
  51. .weui_btn {
  52. position: relative;
  53. display: block;
  54. margin-left: auto;
  55. margin-right: auto;
  56. padding-left: 14px;
  57. padding-right: 14px;
  58. box-sizing: border-box;
  59. font-size: 18px;
  60. text-align: center;
  61. text-decoration: none;
  62. color: #fff;
  63. line-height: 2.33333333;
  64. border-radius: 5px;
  65. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  66. overflow: hidden;
  67. }
  68. .weui_btn:after {
  69. content: " ";
  70. width: 200%;
  71. height: 200%;
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. border: 1px solid rgba(0, 0, 0, 0.2);
  76. -webkit-transform: scale(0.5);
  77. -ms-transform: scale(0.5);
  78. transform: scale(0.5);
  79. -webkit-transform-origin: 0 0;
  80. -ms-transform-origin: 0 0;
  81. transform-origin: 0 0;
  82. box-sizing: border-box;
  83. border-radius: 10px;
  84. }