general.css 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. /*list.html declare.html*/
  2. @charset 'utf-8' body {
  3. font-family: Tahoma, Arial, Verdana;
  4. /*color: #eee;*/
  5. }
  6. .panel-body ul {
  7. padding: 0;
  8. margin: 0;
  9. list-style: none;
  10. }
  11. .panel-body .news-item {
  12. padding: 4px 4px;
  13. margin: 0;
  14. /* border-bottom: 1px dotted #ddd;*/
  15. /*新增new_1*/
  16. overflow: hidden;
  17. /*自动隐藏文字*/
  18. text-overflow: ellipsis;
  19. /*文字隐藏后添加省略号*/
  20. }
  21. .news-item a {
  22. font-size: 12px;
  23. color: #666666;
  24. }
  25. /*微改*/
  26. .news-item a:hover {
  27. color: #FF0000;
  28. text-decoration: none;
  29. }
  30. .news-item a:focus {
  31. color: #FF0000;
  32. text-decoration: none;
  33. }
  34. /*微改*/
  35. .news-item .info-title {
  36. /*float: left;*/
  37. width: 170px;
  38. display: inline-block;
  39. white-space: nowrap;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. /*padding-right: 30px;*/
  43. }
  44. /*.news-item .notice-title{
  45. width: 550px;
  46. display:inline-block;
  47. white-space: nowrap;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. } */
  51. /*微改*/
  52. .news-item .notice-title {
  53. width: 500px;
  54. display: inline-block;
  55. white-space: nowrap;
  56. overflow: hidden;
  57. text-overflow: ellipsis;
  58. }
  59. .news-item .notice-title1 {
  60. width: 450px;
  61. display: inline-block;
  62. white-space: nowrap;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. }
  66. .news-item .notice-title3 {
  67. width: 850px;
  68. display: inline-block;
  69. white-space: nowrap;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. }
  73. .news-item span {
  74. margin-left: 8px;
  75. }
  76. .panel-footer {
  77. padding-bottom: 0px;
  78. }
  79. /*declare.html*/
  80. .declare {
  81. overflow: hidden;
  82. margin-top: 20px;
  83. margin-bottom: 40px;
  84. }
  85. .declare-bordered {
  86. padding: 5px 5px 0;
  87. list-style: none;
  88. }
  89. .declare-bordered .declare-item {
  90. padding: 0px;
  91. margin: 5px;
  92. border: 1px solid #eee;
  93. box-shadow: none;
  94. transition: all 0.6s ease;
  95. }
  96. .declare-bordered .am-gallery-title {
  97. text-align: center;
  98. padding: 20px 0px;
  99. }
  100. .mask {
  101. position: absolute;
  102. top: 0;
  103. width: 100%;
  104. height: 100%;
  105. background-color: rgba(0, 0, 0, 0.5);
  106. transform: translateY(-103%);
  107. -webkit-transform: translateY(-103%);
  108. -moz-transform: translateY(-103%);
  109. -ms-transform: translateY(-103%);
  110. -o-transform: translateY(-103%);
  111. transition: all 0.4s ease-in-out;
  112. -webkit-transition: all 0.4s ease-in-out;
  113. -moz-transition: all 0.4s ease-in-out;
  114. -ms-transition: all 0.4s ease-in-out;
  115. -o-transition: all 0.4s ease-in-out;
  116. }
  117. .mask span {
  118. display: block;
  119. width: 100%;
  120. height: 100%;
  121. }
  122. .declare-item:hover .mask {
  123. -webkit-transform: translateY(0);
  124. -moz-transform: translateY(0);
  125. -ms-transform: translateY(0);
  126. -o-transform: translateY(0);
  127. }
  128. .declare-bordered .declare_1:hover .mask {
  129. opacity: 1;
  130. }
  131. .declare-bordered li .declare-item {
  132. background-color: #5B9BD5;
  133. }
  134. .declare-bordered li:hover .declare-item {
  135. background-color: #23a6e8;
  136. }
  137. .declare-bordered li .declare-item a h3,
  138. .declare-bordered li:hover .declare-item a h3 {
  139. color: #fff;
  140. font-weight: 700;
  141. text-decoration: none;
  142. }
  143. .img-wrap {
  144. position: relative;
  145. padding: 0;
  146. max-height: 230px;
  147. overflow: hidden;
  148. }
  149. /*小屏幕(平板,大于等于768px)*/
  150. @media (min-width: 768px) {
  151. #logo h2 {
  152. color: #2e6da4;
  153. font-size: 26px;
  154. font-weight: 900;
  155. }
  156. .main_nav .nav-pills li a {
  157. font-size: 14px;
  158. }
  159. }
  160. /*中等屏幕(桌面显示器,大于等于992px)*/
  161. @media (min-width: 992px) {
  162. #logo h2 {
  163. color: #2e6da4;
  164. font-size: 30px;
  165. font-weight: 900;
  166. }
  167. .main_nav .nav-pills li a {
  168. font-size: 16px;
  169. }
  170. }
  171. @media only screen and (min-width: 1025px) {
  172. .declare .declare-bordered .am-gallery-title {
  173. font-size: 16px;
  174. }
  175. .declare .declare-bordered>li {
  176. padding: 10px;
  177. }
  178. }
  179. /*大屏幕(大桌面显示器,大于等于1200px)*/
  180. @media (min-width: 1200px) {
  181. #logo h2 {
  182. color: #2e6da4;
  183. font-size: 34px;
  184. font-weight: 900;
  185. }
  186. .main_nav .nav-pills li a {
  187. font-size: 20px;
  188. }
  189. }
  190. /*修改*/
  191. .info1 {
  192. height: 460px;
  193. }
  194. #n1 {
  195. height: 300px;
  196. }
  197. #n2 {
  198. margin-top: 20px;
  199. }
  200. #bg {
  201. background-color: #5B9BD5;
  202. }
  203. .panel-heading span {
  204. /* 之前 color: #2e6da4;*/
  205. color: white;
  206. padding-right: 10px;
  207. }
  208. .more a {
  209. float: right;
  210. color: white;
  211. text-decoration:none;
  212. font-size:12px;
  213. padding-top:1px;
  214. }
  215. /*news-2修改*/
  216. #x {
  217. height: 541px;
  218. }
  219. .xxf {
  220. /*height: 255px;*/
  221. }
  222. #mbx {
  223. margin-left: 106px;
  224. }
  225. #re {
  226. height: 571px;
  227. }
  228. /*通知通告滚动条*/
  229. #x1 {
  230. width: 740px;
  231. background: #FFFFFF;
  232. margin-left: 15px;
  233. /*min-height: 574px;*/
  234. /*微改 增加overflow*/
  235. /*overflow: auto;*/
  236. }
  237. #x1 p {
  238. /*overflow: auto;*/
  239. width: 700px;
  240. text-overflow: ellipsis;
  241. /* white-space: nowrap;*/
  242. word-wrap: break-word;
  243. padding-top: 10px;
  244. padding-left: 5px;
  245. }
  246. /*网上调查滚动条*/
  247. #x2 {
  248. width: 160px;
  249. /*height: 230px;*/
  250. /*微改 增加overflow*/
  251. /*overflow: auto;*/
  252. }
  253. #x2 p {
  254. /*overflow: auto;*/
  255. width: 120px;
  256. text-overflow: ellipsis;
  257. /* white-space: nowrap;*/
  258. word-wrap: break-word;
  259. padding-top: 10px;
  260. padding-left: 5px;
  261. }
  262. .qxz {
  263. /*overflow: auto;*/
  264. width: 120px;
  265. text-overflow: ellipsis;
  266. /* white-space: nowrap;*/
  267. word-wrap: break-word;
  268. padding-top: 10px;
  269. padding-left: 5px;
  270. }
  271. .xj {
  272. margin-top: 10px;
  273. margin-left: 100px;
  274. }
  275. #re1 {
  276. height: 573px;
  277. }
  278. /*新增*/
  279. /*微改新增面包屑导航栏*/
  280. .weizhi {
  281. width: 98%;
  282. /*微改 border-bottom去掉*/
  283. /*border-bottom: 1px solid #eae8e8;*/
  284. background: #FFF;
  285. }
  286. /*微改backgroud#F9F2F4;img路径改为img;weizhi .content的width改为1140px;*/
  287. .weizhi .conent {
  288. width: 1140px;
  289. height: 20px;
  290. line-height: 10px;
  291. margin: 0 auto;
  292. background: url(../img/wei.jpg) no-repeat 0px #FFFFFF;
  293. padding-left: 20px;
  294. padding-bottom: 10px;
  295. }
  296. .weizhi a {
  297. color: #8E8D8D;
  298. }
  299. .weizhi span {
  300. color: #8e8d8d;
  301. }
  302. /*微改新增面包屑导航栏*/
  303. .weizhi_3 {
  304. width: 98%;
  305. /*微改 border-bottom去掉*/
  306. /*border-bottom: 1px solid #eae8e8;*/
  307. background: #FFF;
  308. }
  309. /*微改backgroud#F9F2F4;img路径改为img;weizhi .content的width改为1140px;*/
  310. .weizhi_3 .conent {
  311. width: 1140px;
  312. height: 20px;
  313. line-height: 10px;
  314. margin: 0 auto;
  315. background: #FFFFFF;
  316. padding-left: 20px;
  317. padding-bottom: 10px;
  318. }
  319. .weizhi_3 a {
  320. color: #8E8D8D;
  321. }
  322. .weizhi_3 span {
  323. color: #8e8d8d;
  324. }
  325. /*微改新增.notice-time时间右飘 新增font-size和color*/
  326. .notice-time {
  327. float: right;
  328. /*width: 50%;*/
  329. /*width: 140px;*/
  330. white-space: nowrap;
  331. }
  332. .notice-time1 {
  333. float: right;
  334. /*width: 400px;*/
  335. }
  336. .notice-time p {
  337. float: right;
  338. font-size: 12px;
  339. color: #666666;
  340. }
  341. /*微改 产业要闻tab项目hover*/
  342. .li_click {
  343. width: 374px;
  344. text-align: center;
  345. margin-left: 15px;
  346. margin-right: -2px;
  347. }
  348. .container_form {
  349. width: 700px;
  350. height: 400px;
  351. }
  352. .div_signin {
  353. width: 720px;
  354. height: 200px;
  355. overflow: hidden;
  356. text-overflow: ellipsis;
  357. }
  358. .div_signin ul {
  359. width: 720px;
  360. text-indent: 14px;
  361. margin-left: -10px;
  362. margin-top: 10px;
  363. font-size: 18px;
  364. line-height: 25px;
  365. list-style-type: none;
  366. text-overflow: ellipsis;
  367. overflow: hidden;
  368. white-space: nowrap;
  369. }
  370. .li_hover {
  371. width: 249px;
  372. text-align: center;
  373. margin-right: -2px;
  374. }
  375. .div_signin a {
  376. font-size: 12px;
  377. color: #666666;
  378. }
  379. .div_signin a:hover {
  380. color: red;
  381. text-decoration: none;
  382. }
  383. .div_signin a.info-title {
  384. text-overflow: ellipsis;
  385. }
  386. /*限制新闻首页左2栏的高度*/
  387. .info-list_1 {
  388. /* width: 500px*/
  389. height: 380px;
  390. display: block;
  391. overflow: hidden;
  392. }
  393. .info-list_4 {
  394. display: block;
  395. overflow: hidden;
  396. }
  397. /*徐-新闻首页修改点击事件*/
  398. .gn {
  399. width: 400%;
  400. margin-left: 5px;
  401. }
  402. .sn {
  403. float: right;
  404. width: 370px;
  405. margin-right: -650px;
  406. }
  407. .js {
  408. width: 240px;
  409. margin-left: -30px;
  410. }
  411. .cp {
  412. float: left;
  413. width: 240px;
  414. margin-left: -20px;
  415. }
  416. .fw {
  417. width: 240px;
  418. margin-left: 476px;
  419. float: left;
  420. margin-top: -40px;
  421. }
  422. .more1 {
  423. float: right;
  424. margin-right: 5px;
  425. height: 30px;
  426. width: 10%;
  427. font-size: 5px;
  428. /*text-align: center;*/
  429. /*padding-bottom: 9px;*/
  430. }
  431. .nav-pills>li.active>a,
  432. .nav-pills>li.active>a:focus,
  433. .nav-pills>li.active>a:hover {
  434. color: #337ab7;
  435. background-color: #f2f2f2;
  436. }
  437. * {
  438. margin: 0;
  439. padding: 0;
  440. list-style-type: none;
  441. }
  442. /*清楚内外默认边距*/
  443. .rd {
  444. width: 145px;
  445. min-height: 700px;
  446. overflow: hidden;
  447. }
  448. .rd ul li {
  449. width: 145px;
  450. height: 145px;
  451. float: left;
  452. margin-top: 10px;
  453. position: relative;
  454. overflow: hidden;
  455. cursor: pointer;
  456. }
  457. .rd .txt {
  458. width: 140px;
  459. height: 50px;
  460. background: url(../img/1px.png) repeat;
  461. position: absolute;
  462. left: 0;
  463. bottom: 0;
  464. color: #fff;
  465. font-family: "微软雅黑";
  466. }
  467. .rd .txt h3 {
  468. font-size: 14px;
  469. font-weight: 100;
  470. height: 30px;
  471. text-align: center;
  472. line-height: 30px;
  473. }
  474. .rd .txt p {
  475. font-size: 14px;
  476. text-align: center;
  477. }
  478. .rd ul li a {
  479. text-decoration: none;
  480. color: #FFFFFF;
  481. }
  482. /*徐加*/
  483. /*商品列表页*/
  484. .thumbnail img {
  485. height: 200px;
  486. width: 300px;
  487. }
  488. .caption p {
  489. font-size: 14px;
  490. color: #555454;
  491. line-height: 33px;
  492. width: 222px;
  493. display: inline-block;
  494. overflow: hidden;
  495. white-space: nowrap;
  496. margin: 0 auto;
  497. }
  498. .caption p span {
  499. font-size: 18px;
  500. color: #0E8ED8;
  501. margin-top: 5px;
  502. float: left;
  503. }
  504. .caption a img {
  505. height: 30px;
  506. width: 80px;
  507. margin-right: 80px;
  508. }
  509. .thumbnail {
  510. height: 370px;
  511. }
  512. #sp {
  513. margin-top: 10px;
  514. }
  515. .new_input {
  516. border-left: 5px solid #5b9bdf;
  517. margin-left: 30px;
  518. margin-top: 30px;
  519. padding-left: 5px;
  520. }
  521. .inputhr {
  522. margin-top: -5px;
  523. margin-left: 30px;
  524. margin-right: 20px;
  525. }
  526. .info-list_5 {
  527. margin-left: 30px;
  528. margin-right: 30px;
  529. height: 200px;
  530. line-height: 25px;
  531. }
  532. .more_input {
  533. float: right;
  534. margin-top: 30px;
  535. margin-right: 20px;
  536. }
  537. .more_input a {
  538. text-decoration: none;
  539. font-size:12px;
  540. }
  541. .more_input1 {
  542. float: right;
  543. margin-top: 20px;
  544. margin-right: 20px;
  545. }
  546. .more_input1 a {
  547. text-decoration: none;
  548. font-size:12px;
  549. }
  550. .caret{
  551. cursor:pointer;
  552. }