statusBar.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* component/statusBar/statusBar.wxss */
  2. .flex_center {
  3. position: fixed;
  4. width: 100%;
  5. top: 0;
  6. left: 0;
  7. height: 91rpx;
  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 .back{
  24. width: 17rpx;
  25. height: 30rpx;
  26. }
  27. .custom .iconv .text {
  28. color: #fff;
  29. font-size: 30rpx;
  30. margin-right: 12rpx;
  31. }
  32. .custom .iconv .arrow {
  33. margin-top: -11rpx;
  34. width: 19rpx;
  35. height: 19rpx;
  36. border-right: solid 2rpx #fff;
  37. border-bottom: solid 2rpx #fff;
  38. transform: rotate(45deg);
  39. }
  40. .custom .title {
  41. color: #fff;
  42. font-size: 36rpx;
  43. font-weight: 400;
  44. min-width: 350rpx;
  45. max-width: 420rpx;
  46. line-height: 45px;
  47. text-align: center;
  48. text-overflow: ellipsis;
  49. overflow: hidden;
  50. white-space: nowrap;
  51. }
  52. .custom .titlev {
  53. color: #333;
  54. font-size: 34rpx;
  55. font-weight: 500;
  56. width: 500rpx;
  57. line-height: 45px;
  58. text-align: center;
  59. text-overflow: ellipsis;
  60. overflow: hidden;
  61. white-space: nowrap;
  62. margin-left: 50rpx;
  63. }
  64. .empty_custom {
  65. height: 46px;
  66. width: 100%;
  67. background: #12C962;
  68. }