index.less 2.2 KB

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