兼兼街租房小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

145 lines
2.3 KiB

  1. // 页面容器
  2. .container {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .ant-font-24{
  7. font-size: 24rpx;
  8. }
  9. .ant-flex-line{
  10. display: flex;
  11. align-items: center;
  12. line-height: 20rpx;
  13. overflow-x: auto;
  14. }
  15. // 签名
  16. .content-end {
  17. padding: 60rpx 0;
  18. text-align: center;
  19. position: relative;
  20. }
  21. .line {
  22. position: absolute;
  23. top: 74rpx;
  24. z-index: 1;
  25. width: 100%;
  26. border: 1rpx solid;
  27. border-image: linear-gradient(45deg, #F3F0F3, #c8cccc, #F3F0F3) 1
  28. }
  29. .center {
  30. position: absolute;
  31. top: 60;
  32. left: calc(50% - 99rpx);
  33. z-index: 2;
  34. background-color: #FFF;
  35. color: #A9A9A9;
  36. width: 198rpx;
  37. font-size: 18rpx;
  38. line-height: 28rpx;
  39. }
  40. // 测试使用
  41. .jtest {
  42. border: 1px dashed #3c9cff;
  43. }
  44. //查看密码
  45. .uni-eye-active {
  46. color: #007AFF;
  47. margin: 35rpx auto;
  48. width: 28rpx;
  49. height: 28rpx;
  50. background: url("/static/image/eshow.png") no-repeat center center;
  51. background-size: 100% 100%;
  52. }
  53. .uni-eye {
  54. margin: 35rpx auto;
  55. width: 28rpx;
  56. height: 28rpx;
  57. background: url("/static/image/ehide.png") no-repeat center center;
  58. background-size: 100% 100%;
  59. }
  60. //空列表
  61. .no-something {
  62. width: 413rpx;
  63. height: 520rpx;
  64. padding: 200rpx 0;
  65. margin: 0 auto;
  66. }
  67. .no-image {
  68. width: 413rpx;
  69. height: 361rpx;
  70. margin: 0 auto;
  71. }
  72. .no-tip {
  73. width: 413rpx;
  74. line-height: 62rpx;
  75. text-align: center;
  76. font-size: 26rpx;
  77. color: #808080;
  78. }
  79. .upload-button {
  80. width: 262rpx;
  81. height: 80rpx;
  82. line-height: 80rpx;
  83. border-radius: 40rpx;
  84. text-align: center;
  85. color: #1B55E2;
  86. border: 1px solid #1B55E2;
  87. margin: 60rpx auto;
  88. }
  89. //弹窗
  90. .alert-container{
  91. min-height: 100vh;
  92. min-width: 100vw;
  93. position: fixed;
  94. z-index: 100;
  95. top: 0;
  96. left: 0;
  97. background: rgba(0,10,35,0.3);
  98. }
  99. .card-container{
  100. width: 500rpx;
  101. height: 250rpx;
  102. border-radius: 16rpx;
  103. background: white;
  104. position: fixed;
  105. z-index: 101;
  106. top: calc(50vh - 325rpx);
  107. left: calc(50vW - 250rpx);
  108. opacity: 1;
  109. }
  110. .card-success {
  111. width: 80rpx;
  112. height: 80rpx;
  113. /*border-radius: 50%;*/
  114. margin: 56rpx auto 28rpx;
  115. background: #FFFFFF url("/static/image/success.png") no-repeat center center;
  116. background-size: contain;
  117. }
  118. .card-text {
  119. line-height: 30rpx;
  120. font-size: 30rpx;
  121. font-family: PingFangSC-Medium, PingFang SC;
  122. font-weight: 500;
  123. color: #000000;
  124. text-align: center;
  125. margin: 0 auto;
  126. }