logins.wxss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .goodslist_boxs {
  2. margin: 0rpx 30rpx;
  3. width: calc(100% - 60rpx);
  4. height: calc( 100vh - 40rpx);
  5. }
  6. .input-group {
  7. display: flex;
  8. flex-direction: column;
  9. margin-bottom: 20rpx;
  10. }
  11. .input-group label {
  12. font-size: 32rpx;
  13. color: #333;
  14. margin-bottom: 10rpx;
  15. }
  16. .input-group input {
  17. height: 80rpx;
  18. background: #fff;
  19. border: 1px solid #ddd;
  20. border-radius: 4rpx;
  21. padding: 0 20rpx;
  22. font-size: 28rpx;
  23. border-radius: 12rpx;
  24. }
  25. .confirm-btn {
  26. background-color: #409eff;
  27. color: white;
  28. border: none;
  29. border-radius: 40rpx;
  30. width: calc( 100% - 60rpx) !important;
  31. height: 80rpx;
  32. font-size: 30rpx;
  33. margin-top: 50rpx;
  34. position: fixed;
  35. bottom: 40rpx;
  36. }
  37. navigator {
  38. text-align: center;
  39. font-size: 24rpx;
  40. color: #007aff;
  41. margin-top: 50rpx;
  42. }
  43. /* 标题样式 */
  44. .van-dialog__header {
  45. text-align: center !important;
  46. font-size: 18px !important;
  47. font-weight: bold !important;
  48. }
  49. /* 内容样式 */
  50. .van-dialog__message-text {
  51. width: 100% !important;
  52. /* text-align: center !important; */
  53. font-size: 18px !important;
  54. color: #333 !important;
  55. }
  56. /* 确认按钮样式 */
  57. .van-dialog__confirm {
  58. color: #1989fa !important; /* 蓝色 */
  59. font-size: 16px !important;
  60. }
  61. wx-button:not([size=mini]) {
  62. margin-left: auto;
  63. margin-right: auto;
  64. width: 100%; /* 根据内容自适应 */
  65. }
  66. .van-dialog__button {
  67. flex: 1;
  68. text-align: center;
  69. }
  70. /* 按钮容器居中 */
  71. .van-dialog__footer {
  72. align-content: center !important;
  73. display: flex !important;
  74. justify-content: center !important;
  75. }
  76. .van-dialog__message {
  77. text-align: left !important;
  78. padding: 14rpx 60rpx 30rpx 60rpx !important;
  79. line-height: 1.8 !important; /* 调大行距 */
  80. }