index.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .ant-container {
  2. border-radius: 8px;
  3. margin-bottom: 12px;
  4. }
  5. .ant-container-headerInBox {
  6. background-color: #ffffff;
  7. }
  8. .ant-container-headerInBox .ant-container-header {
  9. padding: 0 12px;
  10. }
  11. .ant-container-headerInBox .ant-container-header .ant-container-header-title,
  12. .ant-container-headerInBox .ant-container-header .ant-container-header-right {
  13. position: relative;
  14. }
  15. .ant-container-headerInBox .ant-container-header .ant-container-header-title::after,
  16. .ant-container-headerInBox .ant-container-header .ant-container-header-right::after {
  17. content: '';
  18. position: absolute;
  19. background-color: #eeeeee;
  20. display: block;
  21. top: auto;
  22. right: 0;
  23. bottom: 0;
  24. left: 0;
  25. height: 1px;
  26. transform: scaleY(0.5);
  27. }
  28. .ant-container-content {
  29. padding: 12px;
  30. background-color: #ffffff;
  31. border-radius: 8px;
  32. }
  33. .ant-container-header {
  34. display: flex;
  35. }
  36. .ant-container-header-title {
  37. font-size: 16px;
  38. font-weight: bold;
  39. color: #333333;
  40. display: flex;
  41. align-items: center;
  42. height: 48px;
  43. flex: 1;
  44. }
  45. .ant-container-header-title:empty {
  46. display: none;
  47. }
  48. .ant-container-header-right {
  49. color: #999999;
  50. display: flex;
  51. align-items: center;
  52. height: 48px;
  53. justify-content: flex-end;
  54. }
  55. .ant-container-header-right:empty {
  56. display: none;
  57. }
  58. .ant-container-header .ant-container-header-title:empty + .ant-container-header-right:not(:empty) {
  59. flex: 1;
  60. }