main0.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. .sidecontent {
  2. position: fixed;
  3. left: -750px;
  4. width: auto;
  5. display: none;
  6. background: rgba(0, 0, 0, 0.8);
  7. top: 70px;
  8. height: 100%;
  9. color: rgba(255, 255, 255, 1);
  10. }
  11. .sidecontent h1 {
  12. font-size: 14px;
  13. width: 90%;
  14. margin: 0px auto;
  15. text-align: center;
  16. height: 50px;
  17. line-height: 50px;
  18. position: relative;
  19. }
  20. .sidecontent h1 span {
  21. font-size: 12px;
  22. font-weight: normal;
  23. position: absolute;
  24. right: -10px;
  25. cursor: pointer;
  26. border: #ebebeb solid 1px;
  27. width: 40px;
  28. height: 40px;
  29. line-height: 40px;
  30. border-radius: 20px;
  31. text-align: center;
  32. }
  33. #text {
  34. float: left;
  35. width: auto;
  36. font-size: 18px;
  37. letter-spacing: 2px;
  38. margin: 30px;
  39. max-width: 600px;
  40. height: 500px;
  41. max-height: 630px;
  42. line-height: 22px;
  43. font-family: '宋体';
  44. }
  45. #sideimg {
  46. margin: 5px 20px 30px 10px;
  47. float: left;
  48. }
  49. #gui-modes-map div img {
  50. width: 48px;
  51. height: 48px;
  52. }
  53. iframe {
  54. border: none;
  55. }
  56. #popup {
  57. text-align: center;
  58. padding: 0;
  59. position: relative;
  60. width: 100%;
  61. height: 100%;
  62. /* margin: 80px auto; */
  63. display: none;
  64. z-index: 999999;
  65. background: rgba(0, 0, 0, 0.6);
  66. }
  67. .popup-wrap {
  68. position: absolute;
  69. top: 50%;
  70. left: 50%;
  71. max-width: 950px;
  72. width: 100%;
  73. height: 530px;
  74. transform: translate(-50%, -50%);
  75. }
  76. .popup-content {
  77. position: relative;
  78. overflow: hidden;
  79. height: 100%;
  80. }
  81. #id1 {
  82. width: 100%;
  83. height: 100%;
  84. }
  85. #popup.wait {
  86. opacity: 0.1;
  87. }
  88. #closepop {
  89. background: url(../../images/close2.png) no-repeat;
  90. width: 25px;
  91. height: 25px;
  92. cursor: pointer;
  93. position: absolute;
  94. right: 30px;
  95. top: 30px;
  96. text-indent: -999em;
  97. background-size: 100% 100%;
  98. }
  99. .specialTitle {
  100. bottom: 65%;
  101. width: 100%;
  102. padding: 0 25px;
  103. display: block;
  104. font-family: OpenSans, 'Helvetica Neue', sans-serif;
  105. text-align: center;
  106. font-size: 40px;
  107. font-weight: 100;
  108. letter-spacing: 0.75px;
  109. text-shadow: 0 0 10px rgba(15, 16, 17, 1);
  110. color: rgba(255, 255, 255, 1);
  111. margin: 0;
  112. position: absolute;
  113. hyphens: auto;
  114. word-wrap: break-word;
  115. line-height: 45px;
  116. }
  117. .dropdown {
  118. position: relative;
  119. display: inline-block;
  120. float: right;
  121. height: 40px;
  122. line-height: 40px;
  123. right: 10px;
  124. }
  125. .floor {
  126. width: 100px;
  127. text-align: center;
  128. display: block;
  129. height: 30px;
  130. background: rgba(0, 0, 0, 0.4);
  131. line-height: 30px;
  132. margin-top: 10px;
  133. cursor: pointer;
  134. }
  135. .dropdown-content {
  136. display: none;
  137. position: absolute;
  138. background: rgba(0, 0, 0, 0.6);
  139. min-width: 100px;
  140. box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  141. text-align: center;
  142. }
  143. .dropdown:hover .dropdown-content {
  144. display: block;
  145. }
  146. a {
  147. text-decoration: none;
  148. }
  149. #YY,
  150. #SZZ {
  151. display: none;
  152. }
  153. @media only screen and (max-width: 487px) {
  154. .dropdown {
  155. height: 30px;
  156. line-height: 30px;
  157. right: 5px;
  158. }
  159. .floor {
  160. width: 80px;
  161. height: 20px;
  162. line-height: 20px;
  163. margin-top: 5px;
  164. }
  165. .dropdown-content {
  166. min-width: 80px;
  167. }
  168. }
  169. @media screen and (max-width: 1600px) {
  170. /*#popup {
  171. width: 816px;
  172. height: 510px;
  173. margin: -255px auto auto -408px;
  174. }*/
  175. .specialTitle {
  176. bottom: 65%;
  177. font-size: 34px;
  178. }
  179. }
  180. @media screen and (max-width: 1400px) {
  181. /*#popup {
  182. width: 714px;
  183. height: 446px;
  184. margin: -223px auto auto -357px;
  185. }*/
  186. .specialTitle {
  187. bottom: 65%;
  188. font-size: 30px;
  189. }
  190. }
  191. @media screen and (max-width: 1200px) {
  192. .specialTitle {
  193. bottom: 66%;
  194. font-size: 26px;
  195. }
  196. }
  197. @media screen and (max-width: 1000px) {
  198. .popup-wrap {
  199. width: 90%;
  200. height: 55%;
  201. }
  202. }
  203. @media screen and (max-width: 768px) {
  204. .specialTitle {
  205. bottom: 62%;
  206. font-size: 26px;
  207. line-height: 40px;
  208. }
  209. #special-gui-name {
  210. display: none;
  211. }
  212. }
  213. @media screen and (max-width: 736px) {
  214. #title-toggle {
  215. padding-top: 18px;
  216. height: 42px;
  217. }
  218. .pinTop {
  219. top: 8px;
  220. }
  221. }
  222. @media screen and (max-width: 667px) {
  223. #closepop {
  224. background: url(../../images/close1.png) no-repeat;
  225. background-size: cover;
  226. width: 35px;
  227. height: 35px;
  228. top: unset;
  229. left: 50%;
  230. right: unset;
  231. bottom: -55px;
  232. transform: translateX(-50%);
  233. }
  234. #title-toggle {
  235. padding-top: 17px;
  236. height: 40px;
  237. }
  238. #musicImg .fa-2x {
  239. font-size: 1.5em;
  240. }
  241. .pinTop {
  242. top: 8px;
  243. }
  244. }
  245. @media screen and (max-width: 568px) {
  246. #title-toggle {
  247. padding-top: 17px;
  248. height: 38px;
  249. }
  250. #musicImg .fa-2x {
  251. font-size: 1.5em;
  252. }
  253. .pinTop {
  254. top: 8px;
  255. }
  256. }
  257. @media screen and (max-width: 414px) {
  258. #title-toggle {
  259. padding-top: 17px;
  260. height: 40px;
  261. }
  262. }
  263. @media screen and (max-width: 375px) {
  264. #title-toggle {
  265. padding-top: 17px;
  266. height: 38px;
  267. }
  268. .pinTop {
  269. top: 5px;
  270. }
  271. }
  272. @media screen and (max-width: 320px) {
  273. /*#popup {
  274. width: 200px;
  275. height: 380px;
  276. margin: -200px auto auto -100px;
  277. }*/
  278. #title-toggle {
  279. padding-top: 16px;
  280. height: 36px;
  281. }
  282. .pinTop {
  283. top: 0px;
  284. }
  285. }