visitorcheckdetail.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. page {
  2. background-color: #f2f2f2;
  3. }
  4. .list {
  5. width: 100%;
  6. flex-direction: column;
  7. display: flex;
  8. align-items: center;
  9. background-color: #fff;
  10. border-radius: 10rpx;
  11. }
  12. .list .head-img {
  13. width: 180rpx;
  14. height: 180rpx;
  15. border-radius: 10rpx;
  16. margin-top: 30rpx;
  17. margin-bottom: 50rpx;
  18. }
  19. .list .item {
  20. width: 80%;
  21. flex-direction: row;
  22. display: flex;
  23. align-items: center;
  24. margin-bottom: 20rpx;
  25. }
  26. .list .item .key {
  27. width: 180rpx;
  28. font-size: 30rpx;
  29. margin-right: 10rpx;
  30. }
  31. .list .item .value {
  32. font-size: 30rpx;
  33. color: #666;
  34. }
  35. .btn-item{
  36. width: 100%;
  37. flex-direction: row;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. box-sizing: border-box;
  42. padding: 0rpx 40rpx;
  43. position: absolute;
  44. bottom: 100rpx;
  45. }
  46. .btn-item .btn{
  47. width: 300rpx;
  48. height: 80rpx;
  49. font-size: 30rpx;
  50. border-radius: 10rpx;
  51. flex-direction: row;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. }
  56. .btn-item .approve{
  57. background-color: #6282f3;
  58. color: #fff;
  59. }
  60. .btn-item .reject{
  61. background-color: #fff;
  62. color: #6282f3;
  63. border: 2rpx solid #6282f3;
  64. }