access.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* pages/access/access.wxss */
  2. .access {
  3. width: 100%;
  4. height: 100%;
  5. padding: 0 30rpx;
  6. box-sizing: border-box;
  7. background: #eaeaea;
  8. }
  9. .photo {
  10. display: flex;
  11. flex-wrap: wrap;
  12. }
  13. .img {
  14. position: relative;
  15. width: 332rpx;
  16. height: 241rpx;
  17. border-radius: 20rpx;
  18. margin-bottom: 30rpx;
  19. }
  20. .img image{
  21. width: 100%;
  22. height: 100%;
  23. border-radius: 20rpx;
  24. }
  25. .img .delect {
  26. position: absolute;
  27. top: 15rpx;
  28. right: 15rpx;
  29. width: 53rpx;
  30. height: 53rpx;
  31. }
  32. .img:nth-child(even) {
  33. margin-left: 26rpx;
  34. }
  35. .information-item {
  36. display: flex;
  37. align-items: center;
  38. width: 100%;
  39. padding: 20rpx 25rpx;
  40. box-sizing: border-box;
  41. }
  42. .information-item image {
  43. width: 193rpx;
  44. height: 193rpx;
  45. border-radius: 50%;
  46. margin-right: 55rpx;
  47. }
  48. .access-name {
  49. display: flex;
  50. flex-direction: column;
  51. }
  52. .access-name .name {
  53. color: #424242;
  54. font-size: 40rpx;
  55. }
  56. .access-name text {
  57. font-size: 32rpx;
  58. color: #fe1000;
  59. margin-top: 20rpx;
  60. }
  61. .stick {
  62. position: absolute;
  63. right: 25rpx;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. width: 145rpx;
  68. height: 145rpx;
  69. background: orange;
  70. color: #fff;
  71. border-radius: 50%;
  72. }