index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. font-size: 20px;
  42. color: #fff;
  43. margin: 0 0 5px 0;
  44. }
  45. .main .one .right .other {
  46. color: #fff;
  47. }
  48. .main .two {
  49. position: relative;
  50. padding: 10px;
  51. }
  52. .main .two .list {
  53. float: left;
  54. width: 22.6%;
  55. text-align: center;
  56. box-shadow: 0 0 5px #ccc;
  57. margin: 0 10px 10px 0;
  58. border-radius: 10px;
  59. }
  60. .main .two .list:nth-child(4n) {
  61. margin: 0 0 10px 0;
  62. }
  63. .main .two .list .icon {
  64. font-size: 30px;
  65. margin: 10px 0 5px 0;
  66. }
  67. .main .two .list .title {
  68. font-size: 10px;
  69. margin: 0 0 10px 0;
  70. }