listman.wxss 659 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**人物介绍列表页**/
  2. page {
  3. background: #F5F5F5;
  4. padding:10rpx 0;
  5. }
  6. /**每个人物 box**/
  7. .itemman-container {
  8. width: 630rpx;
  9. height: 106rpx;
  10. background: #fff;
  11. box-shadow: 0 4rpx 6rpx 0 #e2e2e2;
  12. margin: 30rpx auto;
  13. border-radius: 10rpx;
  14. padding: 30rpx 40rpx;
  15. }
  16. .itemman-pic {
  17. width: 106rpx;
  18. height: 106rpx;
  19. float: left;
  20. }
  21. .itemman-pic image {
  22. width: 106rpx;
  23. height: 106rpx;
  24. }
  25. .itemman-text {
  26. float: left;
  27. margin-left: 30rpx;
  28. }
  29. .itemman-text .name {
  30. color: #333;
  31. font-size: 34rpx;
  32. display: block;
  33. margin-top: 5rpx;
  34. margin-bottom: 10rpx;
  35. }
  36. .itemman-text .intro {
  37. color: #b3b3b3;
  38. font-size: 28rpx;
  39. }