Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

extend.css 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /*
  2. * 因为换了字体 不在原来的css里面 更改
  3. * 不使用字体 原来的样式是正常的
  4. * 在扩展css里面写
  5. * common.css
  6. */
  7. /**
  8. 增加 分页样式
  9. */
  10. .page{
  11. width:100%;
  12. margin-top: 15px;
  13. margin-bottom: 15px;
  14. float: left;
  15. position: relative;
  16. display: flex;
  17. align-items: center; /* 垂直居中 */
  18. justify-content: center; /* 水平居中 */
  19. color: #6b7386 !important;
  20. }
  21. .page-content{
  22. /*position: absolute;
  23. margin-left: -25%;
  24. left: 50%;*/
  25. display: block;margin:0 auto;
  26. }
  27. .page-a{
  28. width: auto;
  29. margin:0 auto;
  30. height: 30px;
  31. float: left;
  32. }
  33. .page-b{
  34. float: left;
  35. font-size: 14px;
  36. height: 30px;
  37. line-height: 30px;
  38. }
  39. .page li{
  40. float: left;
  41. width: auto;
  42. margin: 0 5px;
  43. text-align: center;
  44. cursor: pointer;
  45. height: 30px !important;
  46. padding-left:0 !important;
  47. list-style: none !important;
  48. }
  49. .page a{
  50. width:auto;
  51. padding: 3px 6px;
  52. text-align: center;
  53. /*padding: 3px 6px;*/
  54. color: #6b7386 !important;
  55. border-radius: 3px;
  56. margin: 3px 5px;
  57. font-family: 微软雅黑;
  58. font-size: 14px;
  59. font-weight: 400;
  60. letter-spacing: 0px;
  61. text-align: center;
  62. }
  63. .page a img{
  64. margin-top:-4px;
  65. }
  66. .page .active-1 a{
  67. border-radius: 2px;
  68. background: rgb(11, 139, 247);
  69. color:#fff !important;
  70. }
  71. /*.page input{
  72. width: 48px;
  73. height: 32px;
  74. border-radius: 4px;
  75. background: rgb(250, 250, 250);
  76. border:none;
  77. margin: 0 8px;
  78. text-align: center;
  79. }*/
  80. .page-mobile{
  81. display: none;
  82. }
  83. /* 在屏幕宽度小于等于768px时应用以下样式 */
  84. @media screen and (max-width: 768px) {
  85. /* CSS样式 */
  86. .page-a{
  87. float: none;
  88. }
  89. .page-b{
  90. width: 100%;
  91. text-align: center;
  92. margin-top: 10px;
  93. font-size: 14px;
  94. float: none;
  95. }
  96. .page-pc{
  97. display: none;
  98. }
  99. .page-mobile{
  100. display: block;
  101. }
  102. /*
  103. 分页自定义下拉框
  104. */
  105. .selectBox{
  106. width: 250px;
  107. margin: 0px auto;
  108. float: left;
  109. }
  110. .viewBox{
  111. width: 100%;
  112. height: 34px;
  113. color: #6b7386 !important;
  114. cursor: pointer;
  115. line-height: 30px;
  116. border: 1px solid #dcdcdc;
  117. }
  118. .viewInput{
  119. width: 100%;
  120. height:30px;
  121. outline: none;
  122. cursor: pointer;
  123. padding-left: 0px;
  124. font-size: 14px;
  125. border: none;
  126. text-align: center;
  127. color: #6b7386 !important;
  128. }
  129. .optionBox{
  130. width: 100%;
  131. display: none;
  132. background: #fdfdfd;
  133. position: relative;
  134. z-index: 5000;
  135. }
  136. .optionBox li{
  137. width: 100%;
  138. height: 30px;
  139. font-size: 14px;
  140. color: #6b7386 !important;
  141. line-height: 30px;
  142. cursor: pointer;
  143. list-style-type: none;
  144. padding-left: 10px;
  145. float: none !important;
  146. margin: 0 0 !important;
  147. }
  148. .optionBox li:hover{
  149. background: #919191;
  150. color: white;
  151. }
  152. .optionBox>li:first-child{
  153. margin-top: 0px;
  154. }
  155. .btnImg{
  156. float: right;
  157. height: 30px;
  158. border-left: 1px solid #dcdcdc;
  159. }
  160. }
  161. /* 在屏幕宽度大于768px且小于等于1024px时应用以下样式 */
  162. @media screen and (min-width: 769px) and (max-width: 1024px) {
  163. /* CSS样式 */
  164. }
  165. /*
  166. 底部导航
  167. */
  168. .footer_Footernav{
  169. display: none !important;
  170. }
  171. .footer_Footernav a small{
  172. margin-top: -6px !important;
  173. }
  174. .div-p{
  175. display: block;
  176. }
  177. .div-m{
  178. display: none;
  179. }
  180. @media screen and (max-width: 768px) {
  181. .footer_Footernav{
  182. display: flex !important;
  183. }
  184. .div-p{
  185. display: none;
  186. }
  187. .div-m{
  188. display: block;
  189. }
  190. .footer_Footernav a i{
  191. font-size: 18px !important;
  192. }
  193. .footer_Footernav a small{
  194. font-size: 14px !important;
  195. }
  196. .footer_Footernav{
  197. padding: 0 7% !important;
  198. }
  199. }
  200. .log-in{
  201. width: 300px;
  202. margin-left: 105px;
  203. margin-top: 18px;
  204. }
  205. #user_nav_z li{
  206. list-style: none;
  207. float: left;
  208. margin-left:10px;
  209. margin-top: 5px;
  210. }
  211. #a_logins_drop-menu{
  212. float: left;
  213. }
  214. #user_nav_z{
  215. float: left;
  216. }
  217. .radius-circle{
  218. width: 40px;
  219. }
  220. .active-a{
  221. color: red;
  222. }
  223. .part .row{
  224. margin-bottom: 15px;
  225. }
  226. .container{
  227. position: relative;
  228. }
  229. #cailiao{
  230. }
  231. .art-title{
  232. margin: 5px 9px !important;max-height:45px !important;
  233. height: 45px !important;
  234. }
  235. .art-title a{
  236. font-size: 14px !important;
  237. }
  238. .mod_price {
  239. text-align: left;
  240. color: red !important;
  241. height: 2em;margin: 5px 9px;
  242. }
  243. .mod_price i {
  244. vertical-align: middle;
  245. font-size: 12px;
  246. font-weight: 700;
  247. font-family: MicrosoftYahei-regular,Arial,Helvetica,sans-serif;
  248. color: red !important;
  249. }
  250. .more2_info_price_txt {
  251. font-size: 20px;
  252. font-weight: 700;
  253. font-family: arial,sans-serif;
  254. color: red !important;
  255. }
  256. .more2_info_price_txt-decimal {
  257. font-size: 12px;
  258. color: red !important;
  259. }
  260. .more2_info_self {
  261. background-color: #e1251b;
  262. border-radius: 2px;
  263. color: #fff;
  264. padding: 0 5px;
  265. margin-right: 4px;
  266. line-height: 16px;
  267. height: 16px;
  268. font-size: 12px;
  269. display: inline-block;
  270. font-family: Helvetica Neue,Hiragino Sans GB,SimSun,serif;
  271. }
  272. @media screen and (max-width: 768px) {
  273. #cailiao .part .row{
  274. padding: 0 5% !important;
  275. }
  276. #cailiao .part .row .col-xs-6{
  277. padding-left: 5px !important;
  278. padding-right: 5px !important;
  279. }
  280. }
  281. #search .pager{
  282. width: 100%;
  283. padding: 0px 20px;
  284. display: flex;
  285. align-items: center; /* 垂直居中 */
  286. justify-content: center; /* 水平居中 */
  287. }
  288. .search-li .item{
  289. padding-left: 7px;
  290. }
  291. #search .pager li {
  292. float: left;
  293. height: 38px;
  294. line-height: 38px;
  295. margin: 0 15px;
  296. text-align: center;
  297. }
  298. #search .active-1 a{
  299. padding: 5px 10px;
  300. background: #0a6999;
  301. color: #fff;
  302. }
  303. @media screen and (max-width: 768px) {
  304. #search .pager li {
  305. float: left;
  306. height: 38px;
  307. line-height: 38px;
  308. margin: 0 2px;
  309. text-align: center;
  310. }
  311. }
  312. #search .pager li span{
  313. margin-right: 0px;
  314. }
  315. #search .layui-unselect{
  316. width: 150px !important;
  317. }
  318. #search .part{
  319. padding-bottom: 20px;
  320. }
  321. #search .layui-input{
  322. text-align: center;
  323. }