mtm_passage.css 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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[data-setstatus='1']{
  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[data-setstatus='1']::before{
  138. content: "";
  139. }
  140. .wordStyle[data-setstatus='1']::after{
  141. content: "";
  142. }
  143. .border1{
  144. border: dashed 1px #ff6600;
  145. }
  146. .phraseStyle[data-setstatus='1']{
  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[data-setstatus='1']::before{
  155. content: "";
  156. }
  157. .phraseStyle[data-setstatus='1']::after{
  158. content: "";
  159. }
  160. .sentenceStyle[data-setstatus='1']{
  161. border-bottom: 2px solid #78ae43; /*句型*/
  162. z-index: 5;
  163. }
  164. .wordStyle[data-setstatus='1']:hover{
  165. color:#ff7d1e;
  166. font-weight: bold;
  167. background-color: #ffeeb2;
  168. }
  169. .wordStyle[data-setstatus='1'][showflag='0']{
  170. color: #ffffff;
  171. }
  172. .wordStyle[data-setstatus='1'][showflag='0']:hover{
  173. color: #ffffff;
  174. background-color: #ffffff;
  175. }
  176. .wordStyle[data-setstatus='1'][showflag='0'][data-scolor='5']{
  177. color: #f2db8b;
  178. background-color: #f2db8b;
  179. }
  180. .wordStyle[data-setstatus='1'][showflag='0'][data-scolor='5']:hover{
  181. color: #ffeeb2;
  182. background-color: #ffeeb2;
  183. }
  184. .wordStyle[data-setstatus='1'][showflag='0'][data-scolor='6'],.wordStyle[data-setstatus='1'][showflag='0'][data-scolor='6']:hover{
  185. color: #fff;
  186. background-color: #fff;
  187. }
  188. .phraseStyle[data-setstatus='1'][data-lstatus='0']:hover{
  189. background-color: #ffeeb2;
  190. }
  191. .phraseStyle[data-setstatus='1'][data-lstatus='0']:hover .wordStyle[data-setstatus='1'][showflag='0']{
  192. color: #ffeeb2;
  193. background-color: #ffeeb2;
  194. }
  195. .phraseStyle[data-setstatus='1'][showflag='0'] {
  196. background-color: #ffffff;
  197. }
  198. .phraseStyle[data-setstatus='1'][showflag='0']:hover{
  199. background-color: #ffffff;
  200. }
  201. .phraseStyle[data-setstatus='1'][showflag='0']:hover .wordStyle[data-setstatus='1']{
  202. color: #ffffff;
  203. background-color: #ffffff;
  204. }
  205. .sentenceStyle[data-setstatus='1']:hover{
  206. color:#1a6500;
  207. border-color:#83e600;
  208. }
  209. @keyframes living { 0%{
  210. transform: scale(1);
  211. } 50%{
  212. transform: scale(1.2);
  213. } 100%{
  214. transform: scale(1);
  215. opacity: 1;
  216. } }
  217. .klg-selected{
  218. /*display:inline-block;*/
  219. box-shadow: 0 0 10px #0000ff !important;
  220. /*-webkit-animation: living 1.3s linear infinite;*/
  221. }
  222. .imgDel{
  223. position: relative;
  224. display: inline;
  225. }
  226. .imgDel>div {
  227. position: absolute;
  228. width: 15px;
  229. height: 15px;
  230. background-image: url("../image/delete15.png");
  231. margin: 0px -7px 0px -8px;
  232. top: -6px;
  233. right: -7px;
  234. z-index: 1;
  235. }
  236. .imgDel>div:hover{
  237. background-image: url("../image/delete15_hover.png");
  238. }
  239. .titleCss {
  240. /*margin-top: 5px;*/
  241. /* background-color: #dceff7; */
  242. padding-right: 20px;
  243. height: 40px;
  244. display: block;
  245. }
  246. .selGroup {
  247. position: absolute;
  248. display: none;
  249. padding-top: 15px;
  250. top: 35px;
  251. right: 15px;
  252. width: 104px;
  253. height: 132px;
  254. float: right;
  255. background: url("../image/selectBg.png") no-repeat;
  256. z-index: 1024;
  257. -webkit-user-select: none; /* Chrome all / Safari all */
  258. -moz-user-select: none; /* Firefox all */
  259. -ms-user-select: none; /* IE 10+ */
  260. }
  261. .wdSel, .phraseSel, .sentSel {
  262. margin-top: 7px;
  263. margin-left: 15px;
  264. cursor:pointer;
  265. float: left;
  266. }
  267. .ml3 {
  268. margin-left: 3px;
  269. }
  270. .markeg{
  271. position:relative;
  272. top:-4px;
  273. font-size:14px;
  274. color:#333333;
  275. }
  276. .rectImg {
  277. background-image: url(../image/rect.png);
  278. background-repeat: no-repeat;
  279. background-position: center center;
  280. width: 19px;
  281. display: none;
  282. font: bold 6pt;
  283. }
  284. .textcs {
  285. position: relative;
  286. line-height: 1.5;
  287. margin: 5px 5px;
  288. overflow-y : auto;
  289. padding-top: 5px;
  290. }
  291. #textArea {
  292. position: absolute;
  293. left: 0px;
  294. margin: 0 45px;
  295. text-align: justify;
  296. }
  297. /*详细释义*/
  298. .content{
  299. height: 113px;
  300. /*margin:0 5px;*/
  301. clear: right;
  302. padding:0px;
  303. border-bottom: solid 1px #e7e7e7;
  304. overflow-y: auto;
  305. color:#464646;
  306. }
  307. .content .enWordPro,.content font{
  308. font-size:14px;
  309. }
  310. .contentWrap{
  311. height: 150px;
  312. clear: right;
  313. margin: 5px 0px 0px 0px;
  314. padding:5px 0;
  315. overflow-y: auto;
  316. border-bottom: solid 1px #e7e7e7;
  317. }
  318. .contentText {
  319. font-weight: bold;
  320. font-size:20px;
  321. color:#007ac4;
  322. margin-bottom: 8px;
  323. margin-top: -6px;
  324. word-break: break-word;
  325. }
  326. .phonetic .voice{
  327. display:inline-block;
  328. width:18px;
  329. height:16px;
  330. position: relative;
  331. top: 3px;
  332. margin-left: 5px;
  333. background:url(../image/test_practice_icons.png) no-repeat -106px 0px;
  334. cursor: pointer;
  335. }
  336. .phonetic .voice.playing{
  337. background:url(../image/music_playing.gif);
  338. top: 4px;
  339. }
  340. .phonetic .voice.loading{
  341. width:16px;
  342. height:16px;
  343. background:url(loading.gif);
  344. }
  345. .moreDetail,.nextButton{
  346. float: right;
  347. margin: 12px 0;
  348. /*padding: 0 3px;*/
  349. cursor: pointer;
  350. color:#0d8ee3;
  351. font-size:14px;
  352. line-height:1;
  353. }
  354. .nextButton{
  355. float: left;
  356. }
  357. .pickUp{
  358. display: none;
  359. float: right;
  360. margin: 12px 8px;
  361. /*padding: 0 3px;*/
  362. cursor: pointer;
  363. color:#0d8ee3;
  364. font-size:14px;
  365. /*text-decoration:none;*/
  366. line-height:1;
  367. }
  368. .moreDetail:hover ,.pickUp:hover,.nextButton:hover{
  369. opacity: 0.8;
  370. filter: alpha(opacity=80);
  371. }
  372. .sentImagcs{
  373. display:none;
  374. }
  375. .sentImagcs[data-setstatus='1'][data-lstatus='0']{
  376. display: inline;
  377. cursor: pointer;
  378. margin: 0 3px -2px 1px;
  379. /*vertical-align: middle;*/
  380. }
  381. * {
  382. margin: 0px 0px;
  383. padding: 0px 0px;
  384. }
  385. ul {
  386. list-style: none;
  387. /*margin-left: 60px;*/
  388. /*margin-top: -22px;*/
  389. /*margin-right: 5px;*/
  390. }
  391. .ui-dialog a,a:-webkit-any-link,a:link,a:visited,a:hover,a:active{cursor:pointer !important;}