国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

base.css 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. * {
  2. font-size: 12px;
  3. font-family: "宋体";
  4. }
  5. td {
  6. line-height: 1.5;
  7. }
  8. body {
  9. font-size: 12px;
  10. line-height: 1.5;
  11. font-family: "宋体";
  12. background-color: #FFF;
  13. }
  14. form,h1,h2,h3,ul,ol,div {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. td,th,div {
  19. word-break: break-all;
  20. word-wrap: break-word;
  21. }
  22. b,strong {
  23. color: #666600;
  24. }
  25. li,dd {
  26. list-style-type: none;
  27. margin: 0px;
  28. padding: 0px;
  29. }
  30. input {
  31. border: 1px solid #ababab;
  32. zoom: expression(function(ele){(ele.type=='button'||ele.type=='submit'||ele.type=='reset') ? ele.className='coolbg':(ele.type=='text' ? ele.className='alltxt':'');
  33. (ele.type=='radio'||ele.type=='checkbox') ? ele.className='np': '';
  34. ele.style.zoom = '1';
  35. }(this));
  36. }
  37. input {
  38. background: url(../images/input.png) repeat-x scroll 0px 0px;
  39. }
  40. select {
  41. height: calc(1.5em + .75rem + 2px);
  42. padding: .375rem .75rem;
  43. font-size: 1rem;
  44. font-weight: 400;
  45. color: #495057;
  46. background-color: #fff;
  47. background-clip: padding-box;
  48. border: 1px solid #ced4da;
  49. border-radius: .25rem;
  50. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  51. }
  52. input[type="button"],input[type="submit"],input[type="reset"] {
  53. border: none;
  54. border-right: 1px solid #ACACAC;
  55. border-bottom: 1px solid #ACACAC;
  56. background-color: #F1F8B4;
  57. padding: 2px;
  58. padding-right: 5px;
  59. padding-left: 5px;
  60. cursor: pointer;
  61. }
  62. input[type="text"],input[type="password"] {
  63. font-size: 1rem;
  64. font-weight: 400;
  65. color: #495057;
  66. background-color: #fff;
  67. background-clip: padding-box;
  68. border: 1px solid #ced4da;
  69. border-radius: .25rem;
  70. height: calc(1.5em + .75rem + 2px);
  71. padding: .375rem .75rem;
  72. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  73. line-height: 18px;
  74. vertical-align: middle;
  75. }
  76. input[type="text"]:focus,input[type="password"]:focus {
  77. border-color: #A5C760;
  78. color: #333;
  79. -moz-box-shadow: 0 0 3px #A5C760;
  80. -webkit-box-shadow: 0 0 3px #A5C760;
  81. box-shadow: 0 0 3px #A5C760;
  82. outline: none;
  83. }
  84. label {
  85. display: inline-block;
  86. margin: .5rem 0;
  87. }
  88. .alltxt {
  89. height: 18px;
  90. line-height: 18px;
  91. padding: 3px 3px 2px 3px;
  92. vertical-align: middle;
  93. border-width: 1px;
  94. border-style: solid;
  95. border-color: #707070 #CECECE #CECECE #707070;
  96. }
  97. textarea {
  98. font-size: 1rem;
  99. font-weight: 400;
  100. color: #495057;
  101. background-color: #fff;
  102. background-clip: padding-box;
  103. border: 1px solid #ced4da;
  104. border-radius: .25rem;
  105. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  106. padding: 2px 4px;
  107. vertical-align: middle;
  108. line-height: 16px;
  109. overflow: auto;
  110. resize: vertical;
  111. }
  112. textarea:focus {
  113. border-color: #A5C760;
  114. color: #333;
  115. -moz-box-shadow: 0 0 3px #A5C760;
  116. -webkit-box-shadow: 0 0 3px #A5C760;
  117. box-shadow: 0 0 3px #A5C760;
  118. }
  119. h1 {
  120. color: #171B16;
  121. font-size: 130%;
  122. font-weight: bold;
  123. }
  124. h2 {
  125. color: #171B16;
  126. font-size: 115%;
  127. font-weight: bold;
  128. }
  129. h3 {
  130. color: #171B16;
  131. font-size: 100%;
  132. font-weight: bold;
  133. }
  134. a:link {
  135. font-size: 9pt;
  136. color: #000000;
  137. text-decoration: none;
  138. font-family: ""宋体"";
  139. }
  140. a:visited {
  141. font-size: 9pt;
  142. color: #000000;
  143. text-decoration: none;
  144. font-family: ""宋体"";
  145. }
  146. a:hover {
  147. color: red;
  148. font-family: ""宋体"";
  149. }
  150. a img {
  151. border-style: none;
  152. }
  153. b a {
  154. color: #666600;
  155. }
  156. strong a {
  157. color: #666600;
  158. }
  159. a b {
  160. color: #666600;
  161. }
  162. a strong {
  163. color: #666600;
  164. }
  165. .pubinputs {
  166. height: 16px;
  167. line-height: 16px;
  168. width: 250px;
  169. padding: 4px 0px 2px 0px;
  170. border-width: 1px;
  171. border-style: solid;
  172. border-color: #999999 #dddddd #dddddd #999999;
  173. }
  174. .iptxt {
  175. height: 14px;
  176. line-height: 14px;
  177. padding: 4px 3px 2px 3px;
  178. border-width: 1px;
  179. border-style: solid;
  180. border-color: #999999 #dddddd #dddddd #999999;
  181. }
  182. .pubinput {
  183. height: 24px;
  184. width: 250px;
  185. padding-top: 3px;
  186. padding-bottom: 0px;
  187. }
  188. .pubinputl {
  189. height: 24px;
  190. width: 350px;
  191. padding-top: 3px;
  192. padding-bottom: 0px;
  193. }
  194. .np {
  195. border: none;
  196. }
  197. .linerow {
  198. border-bottom: 1px solid #ACACAC;
  199. }
  200. .coolbg {
  201. border: none;
  202. border-right: 1px solid #ACACAC;
  203. border-bottom: 1px solid #ACACAC;
  204. padding: 2px;
  205. padding-right: 5px;
  206. padding-left: 5px;
  207. background: #CCC url(../images/allbtbg2.gif);
  208. cursor: pointer;
  209. }
  210. .coolbg2 {
  211. border: 1px solid #000000;
  212. background-color: #DFDDD2;
  213. height: 18px
  214. }
  215. .ll {
  216. border-right: 2px solid #ACACAC;
  217. border-bottom: 2px solid #ACACAC;
  218. background-color: #E6E6E6
  219. }
  220. .bline {
  221. border-bottom: 1px dotted #BCBCBC;
  222. height: 36px;
  223. background-color: #FFFFFF;
  224. }
  225. #uploadfield {
  226. float: left;
  227. }
  228. .bline2 {
  229. border-bottom: 1px solid #BCBCBC;
  230. }
  231. .coolbt {
  232. border-left: 1px solid #EFEFEF;
  233. border-top: 1px solid #EFEFEF;
  234. border-right: 1px solid #ACACAC;
  235. border-bottom: 1px solid #ACACAC;
  236. background-color: #E4F7D7;
  237. cursor: pointer;
  238. }
  239. .coolbt2 {
  240. border-left: 1px solid #EFEFEF;
  241. border-top: 1px solid #EFEFEF;
  242. border-right: 1px solid #ACACAC;
  243. border-bottom: 1px solid #ACACAC;
  244. background-color: #F7FCDA
  245. }
  246. .coolbg3 {
  247. border: 1px solid #BDC5B4;
  248. background-color: #DFDDD2;
  249. height: 20px;
  250. width: 140px;
  251. text-align: right;
  252. }
  253. .coolbg61 {
  254. line-height: 26px;
  255. width: 380px;
  256. border-top: 1px solid #BDC5B4;
  257. border-left: 1px solid #BDC5B4;
  258. border-right: 1px solid #BDC5B4;
  259. height: 26px;
  260. text-align: right;
  261. background-color: #E7F3B1;
  262. }
  263. .coolbg62 {
  264. border: 1px solid #BDC5B4;
  265. background-color: #F8FDF0;
  266. height: 300px;
  267. width: 380px;
  268. padding: 5px;
  269. }
  270. .coolbg4 {
  271. border-bottom: 1px solid #C9CFC1;
  272. background-color: #F9FCDC;
  273. background: url(../images/dlgtitle.gif) repeat-x;
  274. height: 24px;
  275. line-height: 24px;
  276. width: 190px;
  277. text-align: right;
  278. }
  279. .coolbg5 {
  280. border-top: 1px solid #BDC5B4;
  281. background-color: #F9FCDC;
  282. font-size: 1pt;
  283. height: 6px;
  284. width: 190px;
  285. }
  286. .wsselect {
  287. height: 60px;
  288. line-height: 24px
  289. overflow-y:auto;
  290. overflow: auto;
  291. background-color: #FCFEF1;
  292. scrollbar-face-color: #ffffff;
  293. scrollbar-highlight-color: #919192;
  294. scrollbar-shadow-color: #919192;
  295. scrollbar-3dlight-color: #ffffff;
  296. scrollbar-arrow-color: #919192;
  297. scrollbar-track-color: #ffffff;
  298. scrollbar-darkshadow-color: #ffffff;
  299. }
  300. .dlg {
  301. border: 2px solid #749F4D;
  302. background-color: #F0FAEB;
  303. padding: 2px;
  304. width: 360px;
  305. line-height: 160%;
  306. }
  307. .pubdlg {
  308. z-index: 8888;
  309. border: 5px solid #749F4D;
  310. background-color: #fff;
  311. }
  312. .pubdlg .title {
  313. border-bottom: 1px solid #C9CFC1;
  314. background-color: #F9FCDC;
  315. background: url(../images/dlgtitle.gif) repeat-x;
  316. height: 28px;
  317. line-height: 28px;
  318. text-align: left;
  319. cursor: move;
  320. }
  321. .pubdlg .titLeft {
  322. float: left;
  323. padding-left: 8px;
  324. line-height: 28px;
  325. font-weight: bold;
  326. color: #555;
  327. }
  328. .pubdlg .titRight {
  329. float: right;
  330. padding: 0px;
  331. }
  332. .fullpagediv {
  333. z-index: 1999;
  334. top: 0;
  335. left: 0;
  336. background: #cdcdcd;
  337. filter: Alpha(opacity=50);
  338. -moz-opacity: .5;
  339. opacity: 0.5;
  340. position: absolute;
  341. width: 100%;
  342. height: 120%;
  343. }
  344. .quicksel {
  345. z-index: 10005;
  346. width: 680px;
  347. height: 420px;
  348. margin-left: 5px;
  349. margin-top: 5px;
  350. overflow: auto;
  351. scrollbar-face-color: #ffffff;
  352. scrollbar-highlight-color: #919192;
  353. scrollbar-shadow-color: #919192;
  354. scrollbar-3dlight-color: #ffffff;
  355. scrollbar-arrow-color: #919192;
  356. scrollbar-track-color: #ffffff;
  357. scrollbar-darkshadow-color: #ffffff;
  358. }
  359. .quickselfoot {
  360. padding-top: 8px;
  361. border-top: 1px dashed #C0CC9D;
  362. }
  363. .quickselItem {
  364. margin-bottom: 8px;
  365. }
  366. .quickselItem .topcat {
  367. font-weight: bold;
  368. clear: both;
  369. line-height: 24px;
  370. border-bottom: 1px dashed #ccc;
  371. background: #FBFEEF;
  372. padding-left: 5px;
  373. }
  374. .quickselItem .soncat {
  375. padding-left: 10px;
  376. }
  377. .quickselItem .item {
  378. float: left;
  379. margin-right: 8px;
  380. }
  381. .mysource,.mywriter {
  382. z-index: 10001;
  383. border: 5px solid #749F4D;
  384. background-color: #F0FAEB;
  385. padding: 2px;
  386. width: 280px;
  387. line-height: 160%;
  388. }
  389. .dlgws div {
  390. width: 100%;
  391. }
  392. .dlgTesttitle {
  393. border: 2px solid #749F4D;
  394. background-color: #F0FAEB;
  395. padding: 2px;
  396. width: 300px;
  397. line-height: 150%;
  398. }
  399. #_mysource {
  400. z-index: 10003;
  401. }
  402. #_mywriter {
  403. z-index: 10004;
  404. }
  405. #uploadwait {
  406. z-index: 19999;
  407. }
  408. .option1 {
  409. background-color: #DCECA6;
  410. }
  411. .option2 {
  412. background-color: #F7FBD2;
  413. }
  414. .option3 {
  415. background-color: #FFFFFF;
  416. }
  417. .ininput {
  418. width: 96%;
  419. height: 20px;
  420. border: 1px solid #ffffff;
  421. }
  422. .nbt {
  423. padding: 1px;
  424. background-image: url('../images/allbtbg.gif');
  425. background-color: #ffffff;
  426. border: 1px solid #A5AF83;
  427. }
  428. .tdt {
  429. padding-left: 6px;
  430. }
  431. .waitpage {
  432. top: 0;
  433. left: 0;
  434. filter: Alpha(opacity=70);
  435. -moz-opacity: 0.7;
  436. position: absolute;
  437. z-index: 10000;
  438. background: url(../../images/loading1.gif) #ababab center no-repeat;
  439. }
  440. .divpre img {
  441. max-width: 150px;
  442. max-height: 100px;
  443. }
  444. .divpre {
  445. overflow: hidden;
  446. }
  447. .autoinput {
  448. padding-left: 3px;
  449. width: 90%;
  450. }
  451. .bodytitle {
  452. margin: auto;
  453. height: 28px;
  454. border: 1px dotted #BFD67C;
  455. background: url('../images/wbg.gif');
  456. margin-bottom: 6px;
  457. width: 98%;
  458. font-weight: bold;
  459. }
  460. .bodytitle div {
  461. float: left
  462. }
  463. .bodytitletxt {
  464. padding-left: 6px;
  465. line-height: 28px;
  466. }
  467. .tbtitle td {
  468. padding: 3px;
  469. }
  470. .tblist td {
  471. background: #FFFFFF;
  472. padding: 6px;
  473. }
  474. .tblist td.tbsname {
  475. background: #F9FFE6;
  476. padding: 6px;
  477. }
  478. .colordlg {
  479. width: 100px;
  480. z-index;10005;border: 2px dashed #749F4D;
  481. background-color: #F0FAEB;
  482. padding: 2px;
  483. line-height: 160%;
  484. }
  485. option.alltype {
  486. height: 18px;
  487. line-height: 18px;
  488. font-size: 12px;
  489. padding-left: 16px;
  490. background: url(../images/arr4.gif) 3px 4px no-repeat;
  491. }
  492. option.btype {
  493. height: 18px;
  494. line-height: 18px;
  495. font-size: 12px;
  496. padding-left: 16px;
  497. background: url(../images/arr4.gif) 3px 4px no-repeat;
  498. }
  499. option.stype {
  500. height: 18px;
  501. line-height: 18px;
  502. font-size: 12px;
  503. padding-left: 24px;
  504. background: url(../images/arrr.gif) 11px 4px no-repeat;
  505. }
  506. .ilist {
  507. border-top: 1px dashed #BCBCBC;
  508. border-bottom: 1px dashed #BCBCBC;
  509. border-left: 1px dashed #BCBCBC;
  510. }
  511. .ilist td {
  512. border-right: 1px dashed #BCBCBC;
  513. }
  514. #typeid2 {
  515. border: 0px;
  516. padding: 0px;
  517. background: #ccc;
  518. height: 18px;
  519. font-size: 12px;
  520. padding-left: 10px;
  521. background: url(../images/typeid2bg.gif) no-repeat;
  522. float: left;
  523. }
  524. .litpic_span {
  525. width: 77px;
  526. overflow: hidden;
  527. height: 21px;
  528. *vertical-align: 3px;
  529. margin-left: -60px;
  530. *margin-left: -75px;
  531. cursor: pointer;
  532. }
  533. #litpic {
  534. width: 85px;
  535. height: 20px;
  536. margin-left: -20px;
  537. filter: alpha(opacity=00);
  538. -moz-opacity: .0;
  539. opacity: 0.0;
  540. cursor: pointer;
  541. }
  542. #starttime,#endtime,#pubdate {
  543. background: url(../images/calendar.gif) 3px no-repeat;
  544. padding-left: 23px;
  545. }
  546. #title {
  547. background: url(../images/ruler.gif) repeat-x 0px 10px;
  548. }
  549. .spec {
  550. width: 60px;
  551. }
  552. .gtab a {
  553. width: 80px;
  554. text-align: center;
  555. display: block;
  556. float: left;
  557. height: 26px;
  558. line-height: 26px;
  559. }
  560. .albCt img {
  561. cursor: pointer;
  562. }
  563. img {
  564. vertical-align: baseline;
  565. }
  566. .maintable {
  567. width: 98%!important;
  568. }
  569. a.btn {
  570. color: white!important;
  571. }