index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* pages/splash/splash.wxss */
  2. page{
  3. background-color: #fff;
  4. }
  5. .splashImage{
  6. position: absolute;
  7. z-index: 10;
  8. width: 100%;
  9. height: 100%;
  10. top: 0;
  11. left: 0;
  12. }
  13. .splashImage image{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .visit-btn{
  18. text-align: center;
  19. padding-top: 30rpx;
  20. color: var(--themeColor);
  21. }
  22. .user-info{
  23. background-color: var(--themeColor) !important;
  24. color: #ffffff !important;
  25. width: 100% !important;
  26. }
  27. .regbox{
  28. position: absolute;
  29. z-index: 11;
  30. width: 610rpx;
  31. height: 730rpx;
  32. top: 25%;
  33. left: 40rpx;
  34. background-color: #fff;
  35. border-radius: 25rpx;
  36. padding: 0 30rpx;
  37. }
  38. .regbox-title{
  39. margin-top: 50rpx;
  40. font-size: 36rpx;
  41. text-align: center;
  42. font-weight: bold;
  43. margin-bottom: 30rpx;
  44. }
  45. .regbox-input{
  46. width: 100%;
  47. height: 90rpx;
  48. line-height: 90rpx;
  49. overflow: hidden;
  50. margin-bottom: 30rpx;
  51. border-bottom: 1rpx solid #E6E6E6;
  52. }
  53. .regbox-input image{
  54. width: 50rpx;
  55. height: 50rpx;
  56. vertical-align: middle;
  57. }
  58. .regbox-input-view,.regbox-input input{
  59. display: inline-block;
  60. width: 530rpx;
  61. height: 70rpx;
  62. vertical-align: middle;
  63. /* background-color: red; */
  64. padding-left: 20rpx;
  65. color: #222222;
  66. font-size: 34rpx;
  67. overflow: hidden;
  68. }
  69. .regbox-input-view{
  70. margin-top: -20rpx;
  71. color: #808080;
  72. }