joinSuc.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. height: 100%;
  13. }
  14. .content {
  15. width: 750rpx;
  16. height: 100%;
  17. background-color: #f8f6f6;
  18. display: -webkit-box;
  19. display: -webkit-flex;
  20. display: flex;
  21. -webkit-box-pack: center;
  22. -webkit-justify-content: center;
  23. justify-content: center;
  24. -webkit-box-align: center;
  25. -webkit-align-items: center;
  26. align-items: center;
  27. }
  28. .content .box {
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: flex;
  32. -webkit-box-orient: vertical;
  33. -webkit-box-direction: normal;
  34. -webkit-flex-direction: column;
  35. flex-direction: column;
  36. -webkit-box-align: center;
  37. -webkit-align-items: center;
  38. align-items: center;
  39. }
  40. .content .box .img {
  41. height: 181rpx;
  42. width: 180rpx;
  43. }
  44. .content .box .img image {
  45. height: 181rpx;
  46. width: 180rpx;
  47. }
  48. .content .box .info {
  49. margin-top: 67rpx;
  50. display: -webkit-box;
  51. display: -webkit-flex;
  52. display: flex;
  53. -webkit-box-orient: vertical;
  54. -webkit-box-direction: normal;
  55. -webkit-flex-direction: column;
  56. flex-direction: column;
  57. -webkit-box-align: center;
  58. -webkit-align-items: center;
  59. align-items: center;
  60. }
  61. .content .box .info .succeed {
  62. color: #333;
  63. font-size: 32rpx;
  64. }
  65. .content .box .info .wait {
  66. color: #707070;
  67. font-size: 28rpx;
  68. margin-top: 18rpx;
  69. }
  70. .content .box button {
  71. width: 464rpx;
  72. height: 77rpx;
  73. background-color: #cb3f33;
  74. border-radius: 38px;
  75. color: #FFFFFF;
  76. font-size: 34rpx;
  77. margin-top: 48rpx;
  78. }