index.css 890 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .container-box {
  2. background-color: #efeff4;
  3. height: 100vh;
  4. }
  5. .img-box {
  6. padding: 32rpx;
  7. background-color: #fff;
  8. border-bottom: 1rpx solid #e5e5e5;
  9. position: relative;
  10. }
  11. .img-box image {
  12. width: 686rpx;
  13. height: 686rpx;
  14. background-color: #f9f9f9;
  15. }
  16. .input-row {
  17. margin: 30rpx auto;
  18. border-bottom: 1rpx solid #e5e5e5;
  19. border-top: 1rpx solid #e5e5e5;
  20. display: flex;
  21. align-items: center;
  22. height: 88rpx;
  23. padding: 0 32rpx;
  24. background-color: #fff;
  25. font-size: 34rpx;
  26. color: #000;
  27. }
  28. .input-row input {
  29. margin-left: 100rpx;
  30. flex: 1;
  31. }
  32. .mybtn {
  33. width: 686rpx;
  34. margin: 60rpx auto;
  35. background-color: #3677f0;
  36. color: #fff;
  37. }
  38. .mask {
  39. position: fixed;
  40. top: 0;
  41. left: 0;
  42. z-index: 3;
  43. width: 100%;
  44. height: 100%;
  45. opacity: 0;
  46. }