statusBar.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* component/statusBar/statusBar.wxss */
  2. .flex_center {
  3. position: fixed;
  4. width: 100%;
  5. top: 0;
  6. left: 0;
  7. height: 45px;
  8. background: #12C962;
  9. z-index: 999;
  10. display: flex;
  11. }
  12. .custom .iconv {
  13. max-width: 150rpx;
  14. min-width: 80rpx;
  15. text-align: center;
  16. display: flex;
  17. border-radius: 60rpx;
  18. margin: 12rpx 10rpx;
  19. justify-content: space-around;
  20. align-items: center;
  21. padding: 0 10rpx;
  22. }
  23. .custom .iconv .text {
  24. color: #fff;
  25. font-size: 30rpx;
  26. margin-right: 12rpx;
  27. }
  28. .custom .iconv .arrow {
  29. margin-top: -11rpx;
  30. width: 19rpx;
  31. height: 19rpx;
  32. border-right: solid 2rpx #fff;
  33. border-bottom: solid 2rpx #fff;
  34. transform: rotate(45deg);
  35. }
  36. .custom .title {
  37. color: #fff;
  38. font-size: 36rpx;
  39. font-weight: 400;
  40. min-width: 350rpx;
  41. max-width: 420rpx;
  42. line-height: 45px;
  43. text-align: center;
  44. text-overflow: ellipsis;
  45. overflow: hidden;
  46. white-space: nowrap;
  47. }
  48. .custom .titlev {
  49. color: #333;
  50. font-size: 34rpx;
  51. font-weight: 500;
  52. width: 500rpx;
  53. line-height: 45px;
  54. text-align: center;
  55. text-overflow: ellipsis;
  56. overflow: hidden;
  57. white-space: nowrap;
  58. margin-left: 50rpx;
  59. }
  60. .empty_custom {
  61. height: 45px;
  62. width: 100%;
  63. }