auth.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/auth/auth.wxss */
  2. /* 开始 */
  3. page {
  4. height: 100%;
  5. display: table;
  6. }
  7. .auth {
  8. margin-top: 0;
  9. text-align: center;
  10. display: table-cell;
  11. flex-direction: column;
  12. flex-wrap: wrap;
  13. justify-content: center;
  14. align-items: flex-start;
  15. padding: 100rpx;
  16. vertical-align: middle;
  17. }
  18. .img {
  19. border-radius: 50%;
  20. /* border: 1px solid #fff; */
  21. /* background-color: #fff; */
  22. margin: 0 0 60rpx;
  23. display: inline-block;
  24. width: 200rpx;
  25. height: 200rpx;
  26. line-height: 0;
  27. }
  28. .title {
  29. display: inline-block;
  30. width: 100%;
  31. margin: 0 0 60rpx;
  32. }
  33. .describe {
  34. color: #a7aaa9;
  35. font-size: 26rpx;
  36. margin: 0 0 60rpx;
  37. border-radius: 50%;
  38. text-align: center;
  39. display: inline-block;
  40. width: 100%;
  41. }
  42. .btn {
  43. padding: 0 60rpx;
  44. background-color: #19be6b;
  45. color: #ffffff;
  46. margin: 20rpx 0 200rpx;
  47. text-align: center;
  48. vertical-align: middle;
  49. touch-action: manipulation;
  50. cursor: pointer;
  51. background-image: none;
  52. white-space: nowrap;
  53. user-select: none;
  54. font-size: 14px;
  55. border: 0 !important;
  56. position: relative;
  57. text-decoration: none;
  58. height: 44px;
  59. line-height: 44px;
  60. box-shadow: inset 0 0 0 1px #19be6b;
  61. /* background: #fff !important; */
  62. /* color: #19be6b !important; */
  63. display: inline-block;
  64. border-radius: 10rpx;
  65. }