btnbar.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .btnbar {
  2. position: absolute;
  3. /* width: 100%; */
  4. left:0;
  5. right: calc(100% - 100px);
  6. min-height: 40px;
  7. bottom: 30px;
  8. z-index: 9999;
  9. }
  10. .btnbar_panel {
  11. width: 900px;
  12. height: 40px;
  13. margin: 0 auto;
  14. }
  15. .btnbar_items_panel {
  16. width: 800px;
  17. height: 40px;
  18. display: inline-block;
  19. position: relative;
  20. overflow: hidden;
  21. }
  22. .btnbar_items_panel_scroll {
  23. position: absolute;
  24. width: 2000px;
  25. height: 40px;
  26. left: 0px;
  27. }
  28. .btnbar_item {
  29. font: 16px "Microsoft YaHei";
  30. color: rgba(255, 255, 255, 1);
  31. pointer-events: auto;
  32. display: inline-block;
  33. width: 170px;
  34. height: 40px;
  35. line-height: 40px;
  36. text-align: center;
  37. background: url(img/button.png) no-repeat;
  38. background-size: 100% 100%;
  39. margin-right: 40px;
  40. }
  41. .btnbar_item_select {
  42. background: url(img/button_select.png) no-repeat;
  43. background-size: 100% 100%;
  44. }
  45. .btnbar_left {
  46. width: 40px;
  47. height: 40px;
  48. display: inline-block;
  49. background: url(img/left.png) center center / 70% 70% no-repeat;
  50. }
  51. .btnbar_right {
  52. width: 40px;
  53. height: 40px;
  54. display: inline-block;
  55. background: url(img/right.png) center center / 70% 70% no-repeat;
  56. }
  57. /**info*/
  58. .infoview-js {
  59. left: auto;
  60. right: 60px;
  61. height: calc(100% - 50px);
  62. width: 40%;
  63. background: none;
  64. border: none;
  65. box-shadow: none;
  66. }
  67. .infoview_panel {
  68. height: 100%;
  69. width: 100%;
  70. color: #ffffff;
  71. padding: 10px;
  72. background: url(img/infoBox.png) no-repeat;
  73. background-size: 100% 100%;
  74. margin-right: 5px;
  75. font-size: 20px;
  76. }
  77. .infoview_panel_scroll {
  78. height: 98%;
  79. width: 99%;
  80. overflow-y: auto;
  81. }
  82. .infoview_panel div {
  83. margin-top: 5px;
  84. }
  85. .infoview_panel label {
  86. color: #03dae7;
  87. display: inline-block;
  88. margin-bottom: 5px;
  89. font-weight: bold;
  90. line-height: 35px;
  91. }
  92. .infoview_panel span {
  93. padding-left: 8px;
  94. line-height: 35px;
  95. }
  96. .infoview_panel .title {
  97. color: #ffec48;
  98. font-size: 28px;
  99. text-align: center;
  100. font-weight: bold;
  101. line-height: 50px;
  102. }