style.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .f-header {
  2. display: -webkit-box;
  3. display: -webkit-flex;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-box-align: center;
  7. -webkit-align-items: center;
  8. -ms-flex-align: center;
  9. align-items: center;
  10. height: 120rpx;
  11. padding: 6rpx 30rpx 8rpx;
  12. background: #fff;
  13. }
  14. .f-header image {
  15. -webkit-flex-shrink: 0;
  16. -ms-flex-negative: 0;
  17. flex-shrink: 0;
  18. width: 80rpx;
  19. height: 80rpx;
  20. margin-right: 20rpx;
  21. }
  22. .f-header .tit-box {
  23. -webkit-box-flex: 1;
  24. -webkit-flex: 1;
  25. -ms-flex: 1;
  26. flex: 1;
  27. display: -webkit-box;
  28. display: -webkit-flex;
  29. display: -ms-flexbox;
  30. display: flex;
  31. -webkit-box-orient: vertical;
  32. -webkit-box-direction: normal;
  33. -webkit-flex-direction: column;
  34. -ms-flex-direction: column;
  35. flex-direction: column;
  36. }
  37. .f-header .tit {
  38. font-size: 34rpx;
  39. line-height: 1.3;
  40. }
  41. .f-header .tit2 {
  42. font-size: 24rpx;
  43. color: #909399;
  44. }
  45. .f-header .icon-you {
  46. font-size: 34rpx;
  47. color: #909399;
  48. }
  49. .bline{
  50. border: 1px dashed #ccc;
  51. }
  52. .btline{
  53. border-top: 1px dashed #ccc;
  54. }