address.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. }
  7. .content {
  8. box-sizing: border-box;
  9. padding: 24rpx 20rpx 0;
  10. height: 100%;
  11. }
  12. .content > .item {
  13. width: 100%;
  14. height: 260rpx;
  15. background: #ffffff;
  16. box-sizing: border-box;
  17. padding: 36rpx 0 0 40rpx;
  18. box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.03);
  19. margin-bottom: 24rpx;
  20. }
  21. .content > .person > view:first-child {
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .content > .person > view:first-child > text:first-child {
  26. font-family: PingFangSC-Semibold;
  27. font-size: 32rpx;
  28. text-align: justify;
  29. margin-bottom: 18rpx;
  30. }
  31. .content > .person > view:first-child > text:last-child {
  32. font-size: 28rpx;
  33. color: #666666;
  34. text-align: justify;
  35. margin-bottom: 30rpx;
  36. }
  37. .content > .person > .line {
  38. height: 2rpx;
  39. background: #eeeeee;
  40. margin-bottom: 30rpx;
  41. }
  42. .content > .person > .icon {
  43. display: flex;
  44. justify-content: flex-end;
  45. }
  46. .content > .person > .icon > image {
  47. width: 32rpx;
  48. height: 32rpx;
  49. }
  50. .content > .person > .icon > image:first-child {
  51. margin-right: 74rpx;
  52. }
  53. .content > .person > .icon > image:last-child {
  54. margin-right: 40rpx;
  55. }
  56. .content > .add {
  57. padding: 0;
  58. display: flex;
  59. align-items: center;
  60. justify-content: space-around;
  61. font-size: 30rpx;
  62. color: #3296fb;
  63. }
  64. .content > .add > view {
  65. display: flex;
  66. align-items: center;
  67. }
  68. .content > .add image {
  69. width: 24rpx;
  70. height: 24rpx;
  71. margin-right: 16rpx;
  72. }