style.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. .o2_appmarket_content {
  2. margin: 40px 20px 0px 40px;
  3. width:100%;
  4. min-width: 1280px;
  5. min-height: 700px;
  6. font-size: 14px;
  7. overflow: auto;
  8. }
  9. .o2_appmarket_recommend {
  10. min-width: 1280px;
  11. min-height: 320px;
  12. height: 40%;
  13. }
  14. .o2_appmarket_recommend_in{
  15. height:100%;
  16. }
  17. .o2_appmarket_app {
  18. min-width: 1280px;
  19. min-height: 380px;
  20. height: 55%;
  21. }
  22. .o2_appmarket_recommendLeft {
  23. float: left;
  24. width:65%;
  25. height:100%;
  26. border-radius:16px;
  27. border:1px solid rgba(151,151,151,1);
  28. margin:0px 10px 0px 0px;
  29. position:relative;
  30. cursor: pointer;
  31. }
  32. .o2_appmarket_recommendBiggestPic{
  33. width:100%;
  34. height:100%;
  35. border-radius:16px;
  36. border:1px solid rgba(151,151,151,1);
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. background-size:cover;
  41. }
  42. .o2_appmarket_recommendBiggestMask{
  43. width:100%;
  44. height:100%;
  45. background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
  46. border-radius:16px;
  47. position:absolute;
  48. left:0px;
  49. top:0px;
  50. }
  51. .o2_appmarket_recommendBiggestTitle{
  52. width:100%;
  53. height:31px;
  54. font-size:24px;
  55. font-family:MicrosoftYaHei;
  56. color:rgba(255,255,255,1);
  57. line-height:31px;
  58. position:absolute;
  59. text-align: center;
  60. top:90%;
  61. }
  62. .o2_appmarket_recommendRight {
  63. float: left;
  64. height: 100%;
  65. width: 35%;
  66. margin-left:10px;
  67. margin-right:30px;
  68. }
  69. .o2_appmarket_recommendRightTop {
  70. height: 49%;
  71. position: relative;
  72. cursor: pointer;
  73. }
  74. .o2_appmarket_recommendRightTopPic{
  75. width:100%;
  76. height:100%;
  77. border-radius:16px;
  78. border:1px solid rgba(151,151,151,1);
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. background-size:cover;
  83. }
  84. .o2_appmarket_recommendRightTopMask{
  85. width:100%;
  86. height:100%;
  87. background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
  88. border-radius:16px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. }
  93. .o2_appmarket_recommendRightTitle{
  94. width:100%;
  95. height:31px;
  96. font-size:24px;
  97. font-family:MicrosoftYaHei;
  98. color:rgba(255,255,255,1);
  99. line-height:31px;
  100. position:absolute;
  101. text-align:center;
  102. top:82%;
  103. }
  104. .o2_appmarket_recommendRightBottom {
  105. height: 49%;
  106. margin-top:10px;
  107. position: relative;
  108. cursor: pointer;
  109. }
  110. .o2_appmarket_recommendRightBottomPic{
  111. width:100%;
  112. height:100%;
  113. border-radius:16px;
  114. border:1px solid rgba(151,151,151,1);
  115. position:absolute;
  116. left:0px;
  117. top:0px;
  118. background-size:cover;
  119. }
  120. .o2_appmarket_recommendRightBottomMask{
  121. width:100%;
  122. height:100%;
  123. background:linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
  124. border-radius:16px;
  125. position:absolute;
  126. left:0px;
  127. top:0px;
  128. }
  129. .o2_appmarket_appcategorys{
  130. text-align:center;
  131. margin-top:60px;
  132. margin-bottom:40px;
  133. display: flex;
  134. justify-content: center;
  135. }
  136. .o2_appmarket_appcategory_current{
  137. color: #4A90E2;
  138. border-color: #4A90E2;
  139. cursor: pointer;
  140. width:80px;
  141. height:26px;
  142. font-size:20px;
  143. font-family:MicrosoftYaHei;
  144. line-height:26px;
  145. margin:40px 20px 40px 20px;
  146. }
  147. .o2_appmarket_appcategory_tab_over {
  148. border-bottom: 1px solid rgba(151,151,151,1);
  149. }
  150. .o2_appmarket_appcategory{
  151. width:80px;
  152. height:26px;
  153. font-size:20px;
  154. font-family:MicrosoftYaHei;
  155. color:rgba(51,51,51,1);
  156. line-height:26px;
  157. margin:40px 20px 40px 20px;
  158. cursor: pointer;
  159. }
  160. .o2_appmarket_app_search_box{
  161. height: 28px;
  162. width: 268px;
  163. border-radius: 20px;
  164. border: 1px solid #DDDDDD;
  165. }
  166. .o2_appmarket_app_search_box_icon{
  167. float: right;
  168. height: 28px;
  169. width: 36px;
  170. background-position: center;
  171. background-repeat: no-repeat;
  172. cursor: pointer;
  173. }
  174. .o2_appmarket_app_icon_search{
  175. background-image: url(../o2_core/o2/xDesktop/$Default/blue/icons/icon_sousuo.png) !important;
  176. }
  177. .o2_appmarket_app_icon_clear{
  178. background-image: url(../o2_core/o2/xDesktop/$Default/blue/icons/icon_clear.png) !important;
  179. }
  180. .o2_appmarket_app_area_search_clear{
  181. float: right;
  182. height: 28px;
  183. width: 16px;
  184. background-image: none;
  185. background-position: center;
  186. background-repeat: no-repeat;
  187. }
  188. .o2_appmarket_app_search_inputArea{
  189. height: 28px;
  190. border-radius: 20px;
  191. padding: 1px 10px;
  192. margin-right: 52px;
  193. }
  194. .o2_appmarket_app_searchinput{
  195. height: 25px;
  196. width: 99%;
  197. line-height: 25px;
  198. border: 0;
  199. border-radius: 20px;
  200. float: left;
  201. background-color: #f0f0f0;
  202. }
  203. .o2_appmarket_applist{
  204. min-width: 1280px;
  205. min-height: 380px;
  206. height: 60%;
  207. }
  208. .o2_appmarket_appcategory_count{
  209. height:28px;
  210. font-size:18px;
  211. font-family:MicrosoftYaHei;
  212. color:rgba(74,144,226,1);
  213. line-height:24px;
  214. margin:20px 80px 20px 0px;
  215. float:right;
  216. }
  217. .o2_appmarket_application{
  218. width:240px;
  219. height:462px;
  220. background:rgba(255,255,255,1);
  221. box-shadow:0px 0px 8px 0px rgba(0,0,0,0.25);
  222. border-radius:16px;
  223. float:left;
  224. margin-bottom:30px;
  225. cursor: pointer;
  226. }
  227. .o2_appmarket_application_icon{
  228. height:65%;
  229. border-top-left-radius: 16px;
  230. border-top-right-radius: 16px;
  231. background-size:cover;
  232. }
  233. .o2_appmarket_application_info{
  234. width:90%;
  235. margin:20px 10px auto 10px;
  236. }
  237. .o2_appmarket_application_info_name{
  238. width:100%;
  239. height:26px;
  240. font-size:20px;
  241. font-family:MicrosoftYaHei;
  242. color:rgba(51,51,51,1);
  243. line-height:26px;
  244. overflow: hidden;
  245. }
  246. .o2_appmarket_application_info_recommend{
  247. width:100%;
  248. height:24px;
  249. font-size:18px;
  250. font-family:MicrosoftYaHei;
  251. color:rgba(102,102,102,1);
  252. line-height:24px;
  253. margin-bottom:20px;
  254. }
  255. .o2_appmarket_application_info_starpic{
  256. width:14px;
  257. height:13px;
  258. }
  259. .o2_appmarket_application_info_category{
  260. width:64px;
  261. height:19px;
  262. font-size:14px;
  263. font-family:MicrosoftYaHei;
  264. color:rgba(153,153,153,1);
  265. line-height:19px;
  266. }
  267. .o2_appmarket_application_info_searchinput{
  268. height: 26px;
  269. line-height: 26px;
  270. border: 0;
  271. border-radius: 20px;
  272. float: left;
  273. }
  274. .o2_appmarket_application_info_bottom{
  275. }
  276. .o2_appmarket_application_info_bottom_free{
  277. width:34px;
  278. height:24px;
  279. font-size:16px;
  280. font-family:MicrosoftYaHei;
  281. color:rgba(51,51,51,1);
  282. line-height:21px;
  283. float:left;
  284. }
  285. .o2_appmarket_application_info_bottom_button{
  286. width:70px;
  287. height:24px;
  288. background:rgba(74,144,226,1);
  289. border-radius:20px;
  290. float:right;
  291. text-align: center;
  292. cursor: pointer;
  293. }
  294. .o2_appmarket_application_info_bottom_button_text{
  295. height:17px;
  296. font-size:12px;
  297. font-family:MicrosoftYaHei;
  298. color:rgba(255,255,255,1);
  299. line-height:16px;
  300. margin:4px auto 3px auto;
  301. }
  302. .moduleLoading {
  303. margin: "auto";
  304. width: "100px";
  305. z-index:9999999999;
  306. },