mtm_passage.css 7.2 KB

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