index.wxss 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**index.wxss**/
  2. .flexdstyle{
  3. position: fixed;
  4. width: 100%;
  5. }
  6. .sg-top-box {
  7. color: white;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-around;
  11. padding: 50rpx 15rpx 100rpx 15rpx;
  12. }
  13. .sg-top-item {
  14. display: flex;
  15. align-items: center;
  16. flex-direction: column;
  17. justify-content: center;
  18. padding: 0 15rpx;
  19. }
  20. .sg-top-item .sg-top-name {
  21. margin-top: 15rpx;
  22. }
  23. .sg-right-border {
  24. border-right: 1px solid white;
  25. }
  26. .sg-search-box {
  27. margin: -50rpx 30rpx 0 30rpx;
  28. display: flex;
  29. align-items: center;
  30. background: white;
  31. border-radius: 50rpx;
  32. padding: 15rpx 20rpx;
  33. }
  34. .sg-search-icon {
  35. margin-right: 20rpx;
  36. }
  37. .sg-search-box .sg-search-input {
  38. flex-grow: 1;
  39. }
  40. .sg-box .sg-img {
  41. width: 120rpx;
  42. }
  43. .sg-list .sg-item {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .sg-list .sg-item .sg-right {
  48. flex-grow: 1;
  49. margin-left: 30rpx;
  50. }
  51. .sg-list .sg-item .sg-bottom,
  52. .sg-list .sg-item .sg-top {
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. }