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.

77 lines
1.3 KiB

1 year ago
  1. /* pagesA/faceinfo/faceinfo.wxss */
  2. .faceinfo{
  3. width: 100%;
  4. height: 100vh;
  5. background-color: #F5F5F5;
  6. padding: 30rpx 0;
  7. }
  8. .lock-message{
  9. background-color: #ffffff;
  10. padding: 10rpx;
  11. }
  12. .lock-message-item{
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. padding: 20rpx;
  17. border-bottom: 1px solid #eee;
  18. }
  19. .lock-message-item:last-child{
  20. border-bottom: none;
  21. }
  22. .start-end-date{
  23. margin-top: 20rpx;
  24. background-color: #fff;
  25. padding: 10rpx;
  26. }
  27. .date-item{
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 20rpx;
  32. }
  33. .date-item:first-child{
  34. border-bottom: 1px solid #eee;
  35. }
  36. .date-item-left{
  37. width: 80%;
  38. display: flex;
  39. align-items: center;
  40. justify-content: space-between;
  41. }
  42. .item-left-date{
  43. color: #999999;
  44. }
  45. .picmessage{
  46. margin-top: 20rpx;
  47. background-color: #ffffff;
  48. padding: 20rpx;
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. }
  53. .btn{
  54. width: 80%;
  55. margin: 0 auto;
  56. height: 100rpx;
  57. margin-top: 80rpx;
  58. background-color: #00B7FF;
  59. line-height: 100rpx;
  60. text-align: center;
  61. border-radius: 20rpx;
  62. color: #ffffff;
  63. font-size: 38rpx;
  64. }
  65. .d-position-fixed{
  66. position: fixed;
  67. width: 100%;
  68. box-shadow: 10px 10px 10px #4e4e4e;
  69. top: auto;
  70. }
  71. .bottom-fixed-0{
  72. bottom: 0;
  73. }
  74. .left-fixed-0{
  75. left: 0;
  76. }