index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. }
  5. .main .one {
  6. position: relative;
  7. height: 90px;
  8. overflow: hidden;
  9. padding: 10px;
  10. background-color: #2E36431f;
  11. }
  12. .main .one_1 {
  13. position: relative;
  14. height: 90px;
  15. background-image: linear-gradient(to right, #409eff9f, #9198e5);
  16. border-radius: 15px;
  17. }
  18. .main .one .left {
  19. float: left;
  20. width: 66px;
  21. margin: 10px;
  22. }
  23. .main .one .left button {
  24. padding: 0;
  25. background-color: transparent;
  26. border-radius: 50%;
  27. }
  28. .main .one .left .image {
  29. display: block;
  30. width: 66px;
  31. height: 66px;
  32. overflow: hidden;
  33. border-radius: 50%;
  34. background-color: transparent;
  35. }
  36. .main .one .right {
  37. float: left;
  38. margin: 18px 0;
  39. }
  40. .main .one .right .name {
  41. margin: 0 0 5px 0;
  42. }
  43. .main .one .right .name text:first-child {
  44. font-size: 18px;
  45. color: #fff;
  46. }
  47. .main .one .right .name text:last-child {
  48. font-size: 14px;
  49. color: #000;
  50. margin: 0 0 0 5px;
  51. }
  52. .main .one .right .other {
  53. color: #fff;
  54. }
  55. .main .two {
  56. position: relative;
  57. padding: 10px;
  58. }
  59. .main .two .list {
  60. float: left;
  61. width: 22.6%;
  62. text-align: center;
  63. box-shadow: 0 0 5px #ccc;
  64. margin: 0 10px 10px 0;
  65. border-radius: 10px;
  66. }
  67. .main .two .list:nth-child(4n) {
  68. margin: 0 0 10px 0;
  69. }
  70. .main .two .list .icon {
  71. font-size: 30px;
  72. margin: 10px 0 5px 0;
  73. }
  74. .main .two .list .title {
  75. font-size: 10px;
  76. margin: 0 0 10px 0;
  77. }