index.wxss 985 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .container{
  2. background-color: #f8f8f8;
  3. width: 100%;
  4. }
  5. .avatar{
  6. width: 100%;
  7. height: 200px;
  8. background-color: #0767c8;
  9. }
  10. .flex{
  11. display: -webkit-flex;
  12. display: -ms-flex;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: center;
  17. }
  18. .avatar image{
  19. width: 80px;
  20. height: 80px;
  21. border-radius: 50%;
  22. margin-bottom: 10px;
  23. }
  24. .login{
  25. font-size: 18px;
  26. color: #fff;
  27. border: 1px solid #fff;
  28. padding: 6px 18px;
  29. border-radius: 3px;
  30. }
  31. .cells{
  32. width: 100%;
  33. margin-top: 16px;
  34. background-color: #fff;
  35. font-size: 16px;
  36. border-bottom: 1px solid #dadada;
  37. }
  38. .cell{
  39. display: -webkit-flex;
  40. display: -ms-flex;
  41. display: flex;
  42. padding: 10px 10px;
  43. border-top: 1px solid #dadada;
  44. box-sizing: border-box;
  45. }
  46. .cell .cell-bd{
  47. flex: 1;
  48. }
  49. .cell-ft:after{
  50. content: '';
  51. display: inline-block;
  52. width: 6px;
  53. height: 6px;
  54. border-width: 2px 2px 0 0;
  55. border-color: #c8c8cd;
  56. border-style: solid;
  57. transform: rotate(45deg);
  58. }