index.less 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* nova-werun/pages/home/signin/index.wxss */
  2. .all{
  3. width: 100vw;
  4. background: linear-gradient(to bottom, #4F9AF7, #FFFFFF);
  5. .picture{
  6. width: 100%;
  7. height: 980rpx;
  8. border: gray solid 1px;
  9. image{
  10. width: 746rpx;
  11. height: 980rpx;
  12. }
  13. }
  14. .textbox{
  15. width: 100%;
  16. height: 350rpx;
  17. .text{
  18. width: 100%;
  19. height: 220rpx;
  20. display: flex;
  21. .chick {
  22. width: 50%;
  23. height: 220rpx;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: center;
  27. align-items: center;
  28. .chick-text {
  29. font-size: 30rpx;
  30. margin-bottom: 30rpx;
  31. }
  32. .numberbox {
  33. display: flex;
  34. height: 80rpx;
  35. font-size: 28rpx;
  36. .number {
  37. font-size: 46rpx;
  38. height: 80rpx;
  39. display: flex;
  40. align-items: flex-end; /* 确保数字靠下对齐 */
  41. margin: 0; /* 去掉默认的外边距 */
  42. padding: 0; /* 去掉默认的内边距 */
  43. }
  44. .number-text {
  45. height: 80rpx;
  46. display: flex;
  47. align-items: flex-end; /* 确保文本靠下对齐 */
  48. margin: 0; /* 去掉默认的外边距 */
  49. padding: 0; /* 去掉默认的内边距 */
  50. padding-bottom: 6rpx;
  51. }
  52. }
  53. }
  54. }
  55. .submitbox{
  56. width: 100%;
  57. height: 120rpx;
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. .submit{
  62. width: 70%;
  63. height: 86rpx;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. border-radius: 45rpx;
  68. color: white;
  69. background-color: #69A9F8;
  70. }
  71. .submit2{
  72. width: 70%;
  73. height: 86rpx;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. border-radius: 45rpx;
  78. background-color: gray;
  79. }
  80. }
  81. }
  82. }