mtm_passage.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*html {
  2. overflow: visible;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. body {
  7. font-family: Cambria;
  8. font-size: 12pt;
  9. overflow: auto;
  10. background-color: #ffffff;
  11. color: #000000;
  12. }*/
  13. ::selection
  14. {
  15. background-color: #0099CC;
  16. color:#fff;
  17. }
  18. .mark{
  19. height:30px;
  20. width: 120px;
  21. margin-top: -6px;
  22. background-image: url("../image/mark.png");
  23. }
  24. .mark:hover{
  25. background-image: url("../image/mark_hover.png");
  26. }
  27. .klgList
  28. {
  29. background-color:#fff0e6;
  30. border:1px solid #b77b59;
  31. }
  32. .klgList>div
  33. {
  34. color:#b36a3b;
  35. cursor:pointer;
  36. padding:2px 2px 2px 5px;
  37. }
  38. .klgList>div:hover
  39. {
  40. background-color:#f0dbcd;
  41. }
  42. .selectBtn{
  43. margin-top: 5px;
  44. float: right;
  45. width: 30px;
  46. height: 30px;
  47. background-image: url(../image/selectBtn.png);
  48. cursor: pointer;
  49. }
  50. .toolBar{
  51. height: 40px;
  52. background-color: #dceff7;
  53. }
  54. .toolBar div{
  55. position: relative;
  56. left: 8px;
  57. height: 38px;
  58. width: 114px;
  59. background-image: url("../image/highlight.png");
  60. }
  61. .toolBar div.hover{
  62. background-image: url("../image/highlight_hover.png");
  63. }
  64. .toolBarMenu {
  65. position: absolute;
  66. display: none;
  67. top: 38px;
  68. left: 6px;
  69. width: 120px;
  70. height: 60px;
  71. background: url("../image/toolBarMenu.png") 0 -36px no-repeat;
  72. z-index: 1024;
  73. }
  74. .toolBarMenu ul{
  75. width: 106px;
  76. margin: 0 7px;
  77. }
  78. .toolBarMenu li {
  79. position: relative;
  80. height: 28px;
  81. width: 106px;
  82. line-height: 28px;
  83. font: '微软雅黑' 400 normal 12px;
  84. color: #333333;
  85. cursor: pointer;
  86. /*z-index: inherit;*/
  87. }
  88. .toolBarMenu li:hover{
  89. /*display: block;*/
  90. height: 28px;
  91. width: 106px;
  92. background-color: #DEEAFA;
  93. }
  94. .toolBarMenu li>div {
  95. display: inline-block;
  96. position: relative;
  97. top: 2px;
  98. width: 16px;
  99. height: 16px;
  100. margin-left: 6px;
  101. /*z-index: inherit;*/
  102. background: url("../image/toolUnChecked.png") no-repeat;
  103. }
  104. .toolBarMenu li.checked>div {
  105. background: url("../image/toolChecked.png") no-repeat;
  106. }
  107. .toolBarMenu li span{
  108. position: relative;
  109. top: -2px;
  110. font-family: '微软雅黑 Regular', '微软雅黑';
  111. font-size: 12px;
  112. }
  113. .selGroup div{
  114. display: inline-block;
  115. width: 22px;
  116. height: 22px;
  117. background: url("../image/uncheck.png");
  118. }
  119. .selGroup .wdSel:hover div[check="false"],.selGroup .phraseSel:hover div[check="false"],.selGroup .sentSel:hover div[check="false"]{
  120. background: url("../image/uncheck_hover.png");
  121. }
  122. .selGroup div.checkRect{
  123. background: url("../image/checked.png");
  124. }
  125. .selGroup .wdSel:hover div[check="true"],.selGroup .phraseSel:hover div[check="true"],.selGroup .sentSel:hover div[check="true"]{
  126. opacity:0.5;
  127. }
  128. .wordStyle {
  129. white-space:nowrap;
  130. color: #db5d00;
  131. font-weight: bold;
  132. border-radius:4px;
  133. cursor: pointer;
  134. z-index: 10;
  135. }
  136. .wordStyle::before{
  137. content: "";
  138. }
  139. .wordStyle::after{
  140. content: "";
  141. }
  142. .border1{
  143. border: dashed 1px #ff6600;
  144. }
  145. .phraseStyle {
  146. background-color: #f2db8b;
  147. border-radius:2px;
  148. padding-left:0px;
  149. padding-right:0px;
  150. cursor: pointer;
  151. z-index: 10;
  152. }
  153. .phraseStyle::before{
  154. content: "";
  155. }
  156. .phraseStyle::after{
  157. content: "";
  158. }
  159. .sentenceStyle {
  160. border-bottom: 2px solid #78ae43;
  161. z-index: 5;
  162. }
  163. .wordStyle:hover,.phraseStyle:hover,.sentenceStyle:hover{
  164. /*box-shadow: 0 0 10px #000000;*/
  165. }
  166. .wordStyle:hover{
  167. color:#ff7d1e;
  168. font-weight: bold;
  169. background-color: #ffeeb2;
  170. }
  171. .phraseStyle:hover{
  172. /* color:#8c7a00; */
  173. background-color: #ffeeb2;
  174. }
  175. .sentenceStyle:hover{
  176. color:#1a6500;
  177. border-color:#83e600;
  178. }
  179. @keyframes living { 0%{
  180. transform: scale(1);
  181. } 50%{
  182. transform: scale(1.2);
  183. } 100%{
  184. transform: scale(1);
  185. opacity: 1;
  186. } }
  187. .klg-selected{
  188. /*display:inline-block;*/
  189. box-shadow: 0 0 10px #0000ff !important;
  190. /*-webkit-animation: living 1.3s linear infinite;*/
  191. }
  192. .imgDel{
  193. position: relative;
  194. display: inline;
  195. }
  196. .imgDel>div {
  197. position: absolute;
  198. width: 15px;
  199. height: 15px;
  200. background-image: url("../image/delete15.png");
  201. margin: 0px -7px 0px -8px;
  202. top: -6px;
  203. right: -7px;
  204. z-index: 1;
  205. }
  206. .imgDel>div:hover{
  207. background-image: url("../image/delete15_hover.png");
  208. }
  209. .titleCss {
  210. /*margin-top: 5px;*/
  211. /* background-color: #dceff7; */
  212. padding-right: 20px;
  213. height: 40px;
  214. display: block;
  215. }
  216. .selGroup {
  217. position: absolute;
  218. display: none;
  219. padding-top: 15px;
  220. top: 35px;
  221. right: 15px;
  222. width: 104px;
  223. height: 132px;
  224. float: right;
  225. background: url("../image/selectBg.png") no-repeat;
  226. z-index: 1024;
  227. -webkit-user-select: none; /* Chrome all / Safari all */
  228. -moz-user-select: none; /* Firefox all */
  229. -ms-user-select: none; /* IE 10+ */
  230. }
  231. .wdSel, .phraseSel, .sentSel {
  232. margin-top: 7px;
  233. margin-left: 15px;
  234. cursor:pointer;
  235. float: left;
  236. }
  237. .ml3 {
  238. margin-left: 3px;
  239. }
  240. .markeg{
  241. position:relative;
  242. top:-4px;
  243. font-size:14px;
  244. color:#333333;
  245. }
  246. .rectImg {
  247. background-image: url(../image/rect.png);
  248. background-repeat: no-repeat;
  249. background-position: center center;
  250. width: 19px;
  251. display: none;
  252. font: bold 6pt;
  253. }
  254. .textcs {
  255. position: relative;
  256. line-height: 1.5;
  257. margin: 5px 5px;
  258. overflow-y : auto;
  259. padding-top: 5px;
  260. }
  261. #textArea {
  262. position: absolute;
  263. left: 0px;
  264. margin: 0 45px;
  265. text-align: justify;
  266. }
  267. /*详细释义*/
  268. .content{
  269. height: 113px;
  270. /*margin:0 5px;*/
  271. clear: right;
  272. padding:0px;
  273. border-bottom: solid 1px #e7e7e7;
  274. overflow-y: auto;
  275. color:#464646;
  276. }
  277. .content .enWordPro,.content font{
  278. font-size:14px;
  279. }
  280. .contentWrap{
  281. height: 150px;
  282. clear: right;
  283. margin: 5px 0px 0px 0px;
  284. padding:5px 0;
  285. overflow-y: auto;
  286. border-bottom: solid 1px #e7e7e7;
  287. }
  288. .contentText {
  289. font-weight: bold;
  290. font-size:20px;
  291. color:#007ac4;
  292. margin-bottom: 8px;
  293. margin-top: -6px;
  294. word-break: break-word;
  295. }
  296. .phonetic .voice{
  297. display:inline-block;
  298. width:18px;
  299. height:16px;
  300. position: relative;
  301. top: 3px;
  302. margin-left: 5px;
  303. background:url(../image/test_practice_icons.png) no-repeat -106px 0px;
  304. cursor: pointer;
  305. }
  306. .phonetic .voice.playing{
  307. background:url(../image/music_playing.gif);
  308. top: 4px;
  309. }
  310. .phonetic .voice.loading{
  311. width:16px;
  312. height:16px;
  313. background:url(loading.gif);
  314. }
  315. .moreDetail,.nextButton{
  316. float: right;
  317. margin: 12px 0;
  318. /*padding: 0 3px;*/
  319. cursor: pointer;
  320. color:#0d8ee3;
  321. font-size:14px;
  322. line-height:1;
  323. }
  324. .nextButton{
  325. float: left;
  326. }
  327. .pickUp{
  328. display: none;
  329. float: right;
  330. margin: 12px 8px;
  331. /*padding: 0 3px;*/
  332. cursor: pointer;
  333. color:#0d8ee3;
  334. font-size:14px;
  335. /*text-decoration:none;*/
  336. line-height:1;
  337. }
  338. .moreDetail:hover ,.pickUp:hover,.nextButton:hover{
  339. opacity: 0.8;
  340. filter: alpha(opacity=80);
  341. }
  342. .sentImagcs {
  343. cursor: pointer;
  344. margin: 0 3px -2px 1px;
  345. /*vertical-align: middle;*/
  346. }
  347. * {
  348. margin: 0px 0px;
  349. padding: 0px 0px;
  350. }
  351. ul {
  352. list-style: none;
  353. /*margin-left: 60px;*/
  354. /*margin-top: -22px;*/
  355. /*margin-right: 5px;*/
  356. }
  357. .ui-dialog a,a:-webkit-any-link,a:link,a:visited,a:hover,a:active{cursor:pointer !important;}