internaltogether.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966
  1. <template>
  2. <div class="together_one_box">
  3. <div class="u-zy-tit u-zy-tit2">
  4. <div class="w1200">
  5. <div class="tit" id="case-choose-btn">
  6. <div class="fr choose-div">
  7. <span class="choose-ico" @click="callouts"></span>
  8. <div class="choose-rect dis_none" v-show="callout">
  9. <h4>教材选择</h4>
  10. <ul class="clearfix">
  11. <li>
  12. <label class="name">学段: </label>
  13. <p class="li-r case">
  14. <a href="javascript:;" onclick="choosePeriod('xx',this)" class="on">小学</a>
  15. <a href="javascript:;" onclick="choosePeriod('cz',this)">初中</a>
  16. <a href="javascript:;" onclick="choosePeriod('pg',this)">高中</a>
  17. </p>
  18. </li>
  19. <li>
  20. <label class="name">学科: </label>
  21. <Select v-model="model1" style="width:150px;float:left">
  22. <Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
  23. </Select>
  24. </li>
  25. <li>
  26. <label class="name">版本: </label>
  27. <Select v-model="model2" style="width:150px;float:left">
  28. <Option v-for="items in cityList2" :value="items.value" :key="items.value">{{ items.label }}</Option>
  29. </Select>
  30. </li>
  31. </ul>
  32. <p class="t_c mgtb20"><a href="javascript:;" onclick="refreshProductList()" class="u-white-btn">确定</a></p>
  33. </div>
  34. </div>
  35. 小学语文<span class="mglr10">●</span>
  36. <em style="color:#555">
  37. 人教部编版...
  38. </em>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="together_content_start">
  43. <div class="together_content">
  44. <div class="left_box">
  45. <p class="title_name">一年级上册</p>
  46. <div class="ztree_box">
  47. <Tree :data="data1"></Tree>
  48. </div>
  49. </div>
  50. <div class="right_box">
  51. <div class="right_header">
  52. <div class="site-nyCase-rect">
  53. <dl class="nyCase-dl clearfix">
  54. <dt class="nyCase-tit c888">类型:</dt>
  55. <dd class="nyCase-c">
  56. <p class="nyCase-c-a">
  57. <Select v-model="typedefault" style="width:150px" @on-change="clickbtn">
  58. <Option v-for="itemf in typedata" :value="itemf.value" :key="itemf.value">{{ itemf.label }}</Option>
  59. </Select>
  60. </p>
  61. </dd>
  62. </dl>
  63. <dl class="nyCase-dl clearfix">
  64. <dt class="nyCase-tit c888">格式:</dt>
  65. <dd class="nyCase-c">
  66. <p class="nyCase-c-a">
  67. <Select v-model="formatdefault" style="width:150px" @on-change="clickformatdefault">
  68. <Option v-for="itemf in formatdata" :value="itemf.value" :key="itemf.value">{{ itemf.label }}</Option>
  69. </Select>
  70. </p>
  71. </dd>
  72. </dl>
  73. <dl class="nyCase-dl clearfix">
  74. <dt class="nyCase-tit c888">来源:</dt>
  75. <dd class="nyCase-c">
  76. <p class="nyCase-c-a">
  77. <Select v-model="sourcedefault" style="width:150px">
  78. <Option v-for="itemf in sourcedata" :value="itemf.value" :key="itemf.value">{{ itemf.label }}</Option>
  79. </Select>
  80. </p>
  81. </dd>
  82. </dl>
  83. </div>
  84. </div>
  85. <div class="together_resource">
  86. <div class="resource_left">
  87. <div class="resource_left_header">
  88. <p class="resource_title">
  89. <a href="javascript:orderQuery('createTime');" class="on new-upload">最新上传<i></i></a>
  90. <a href="javascript:orderQuery('downCount');" class="new-down">最多下载<i></i></a>
  91. <a href="javascript:orderQuery('marks');" class="new-score">评分最高<i></i></a>
  92. </p>
  93. </div>
  94. <div class="resource_list">
  95. <div class="rank-row" v-for="itemy in listdata">
  96. <a id="dl_PD844627256447598592" target="_blank" href="" class="row-photo">
  97. <img :src="itemy.img" width="66" height="66" alt="">
  98. <i class="z-new-ico"></i>
  99. </a>
  100. <div class="row-r-rect clearfix">
  101. <div class="row-r-col2">
  102. <h4>
  103. <a style="display:inline-block;width:450px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:21px;" target="_blank" :href="itemy.skipurl" :title="itemy.title">{{itemy.title}}</a>
  104. </h4>
  105. <p class="title">
  106. <strong class="c888">简介:</strong>
  107. <a style="display:inline-block;width:540px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:21px;" target="_blank" href="itemy.skipurl">{{itemy.intro}}</a>
  108. </p>
  109. <p class="info">
  110. <span>
  111. <em class="c888">上传时间:</em>{{itemy.time}}
  112. </span>
  113. <span>
  114. <em class="c888">大小:</em>
  115. {{itemy.size}}
  116. </span>
  117. <span><em class="c888">浏览:</em>{{itemy.browse}}</span>
  118. <span><em class="c888">收藏:</em>{{itemy.enshrine}}</span>
  119. <span><em class="c888">下载:</em>{{itemy.upload}}</span>
  120. </p>
  121. </div>
  122. <div class="row-r-col3">
  123. <p class="site_grade"><span class="star"><i style="width:00.0%"></i></span><span class="cfeba1b mgl5" style="color:#feba1b">0.0</span></p>
  124. </div>
  125. </div>
  126. <p class="from">
  127. <i></i>贡献者:
  128. {{itemy.author}}
  129. </p>
  130. </div>
  131. </div>
  132. <div class="pagebtn"><Page :total="100" /></div>
  133. </div>
  134. <div class="resource_right">
  135. <div class="item-recZy">
  136. <h3><strong>推荐资源</strong></h3>
  137. <ul class="clearfix" id="recRes"><li class="first">
  138. <h4 class="name">
  139. <i class="orange">1</i>
  140. <a target="_blank" title="音频:《小蜗牛》课文朗读.mp3" href="">音频:《小蜗牛》课文...</a>
  141. </h4>
  142. <div class="rect">
  143. <img class="photo" src="../../assets/image/resource/tuijian_img.png" width="66" height="66">
  144. <div class="baseInfo">
  145. <p><strong>9025</strong>次浏览</p><p><strong>13</strong>次下载</p>
  146. </div></div></li><li>
  147. <h4 class="name"><i class="orange">2</i><a target="_blank" title="图片:雪景.jpg" href="">图片:雪景.jpg</a></h4><div class="rect"><div class="baseInfo"><p><strong>8288</strong>次浏览</p><p><strong>3</strong>次下载</p></div></div></li><li><h4 class="name"><i class="orange">3</i><a target="_blank" title="视频:蜗牛.mp4" href="">视频:蜗牛.mp4</a></h4><div class="rect"><div class="baseInfo"><p><strong>7655</strong>次浏览</p><p><strong>25</strong>次下载</p></div></div></li><li><h4 class="name"><i class="gray">4</i><a target="_blank" title="视频:小蜗牛.mp4" href="">视频:小蜗牛.mp4</a></h4><div class="rect"><div class="baseInfo"><p><strong>7610</strong>次浏览</p><p><strong>2</strong>次下载</p></div></div></li><li><h4 class="name"><i class="gray">5</i><a target="_blank" title="文档1:《小蜗牛》同步练习.doc" href="">文档1:《小蜗牛》同...</a></h4><div class="rect"><div class="baseInfo"><p><strong>7420</strong>次浏览</p><p><strong>1</strong>次下载</p></div></div></li><li><h4 class="name"><i class="gray">6</i><a target="_blank" title="视频:儿歌《蜗牛与黄鹂鸟》.mp4" href="">视频:儿歌《蜗牛与黄...</a></h4><div class="rect"><div class="baseInfo"><p><strong>7067</strong>次浏览</p><p><strong>2</strong>次下载</p></div></div></li></ul>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </template>
  156. <script>
  157. export default {
  158. data() {
  159. return {
  160. cityList: [
  161. {
  162. value: '语文',
  163. label: '语文'
  164. },
  165. {
  166. value: '数学',
  167. label: '数学'
  168. },
  169. {
  170. value: '英语',
  171. label: '英语'
  172. },
  173. {
  174. value: '品德与生活',
  175. label: '品德与生活'
  176. },
  177. {
  178. value: '品德与社会',
  179. label: '品德与社会'
  180. },
  181. {
  182. value: '体育',
  183. label: '体育'
  184. },
  185. {
  186. value: '道德与法治',
  187. label: '道德与法治'
  188. },
  189. {
  190. value: '科学',
  191. label: '科学'
  192. },
  193. {
  194. value: '音乐',
  195. label: '音乐'
  196. }
  197. ],
  198. cityList2: [
  199. {
  200. value: '人教部编版(新)',
  201. label: '人教部编版(新)'
  202. },
  203. {
  204. value: '延边教育出版社',
  205. label: '延边教育出版社'
  206. },
  207. {
  208. value: '人教课标版',
  209. label: '人教课标版'
  210. },
  211. {
  212. value: '北师大课标版',
  213. label: '北师大课标版'
  214. },
  215. {
  216. value: '鄂教课标版',
  217. label: '鄂教课标版'
  218. },
  219. {
  220. value: '教科课标版',
  221. label: '教科课标版'
  222. },
  223. {
  224. value: '教科课标版(新)',
  225. label: '教科课标版(新)'
  226. },
  227. {
  228. value: '西师大课标版',
  229. label: '西师大课标版'
  230. },
  231. {
  232. value: '语文社课标版',
  233. label: '语文社课标版'
  234. }
  235. ],
  236. model1: '',
  237. model2: '',
  238. callout: false,
  239. data1: [
  240. {
  241. title: '我上学了',
  242. expand: true,
  243. children: [
  244. {
  245. title: '识字',
  246. expand: false,
  247. children: [
  248. {
  249. title: '1 天地人'
  250. },
  251. {
  252. title: '2 金木水火土'
  253. },
  254. {
  255. title: '3 口耳目'
  256. },
  257. {
  258. title: '4 日月水火'
  259. },
  260. {
  261. title: '5 对韵歌'
  262. },
  263. {
  264. title: '口语交际:我说你做'
  265. },
  266. {
  267. title: '语文园地一'
  268. },
  269. {
  270. title: '快乐读书吧'
  271. },
  272. ]
  273. },
  274. {
  275. title: '汉语拼音',
  276. expand: false,
  277. children: [
  278. {
  279. title: '1 a o e'
  280. },
  281. {
  282. title: '2 i u ü y w '
  283. },
  284. {
  285. title: '3 b p m f '
  286. },
  287. {
  288. title: '4 d t n l '
  289. },
  290. {
  291. title: '5 g k h '
  292. },
  293. {
  294. title: '6 j q x '
  295. },
  296. {
  297. title: '7 z c s'
  298. },
  299. {
  300. title: '8 zh ch sh r'
  301. },
  302. {
  303. title: '语文园地二 '
  304. },
  305. {
  306. title: '9 ai ei ui'
  307. },
  308. {
  309. title: '10 ao ou iu'
  310. },
  311. {
  312. title: '11 ie üe er'
  313. },
  314. {
  315. title: '12 an en in un ün'
  316. },
  317. {
  318. title: '13 ang eng ing ong'
  319. },
  320. {
  321. title: '语文园地三'
  322. },
  323. ]
  324. },
  325. {
  326. title: '课文',
  327. expand: false,
  328. children: [
  329. {
  330. title: '1 秋天'
  331. },
  332. {
  333. title: '2 小小的船'
  334. },
  335. {
  336. title: '3 江南'
  337. },
  338. {
  339. title: '4 四季'
  340. },
  341. {
  342. title: '口语交际:我们做朋友'
  343. },
  344. ],
  345. },
  346. {
  347. title: '识字',
  348. expand: false,
  349. children: [
  350. {
  351. title: '6 画'
  352. },
  353. {
  354. title: '7 大小多少'
  355. },
  356. {
  357. title: '8 小书包'
  358. },
  359. {
  360. title: '9 日月明'
  361. },
  362. {
  363. title: '10 升国旗'
  364. },
  365. {
  366. title: '语文园地五'
  367. },
  368. ],
  369. },
  370. {
  371. title: '课文',
  372. expand: false,
  373. children: [
  374. {
  375. title: '5 影子'
  376. },
  377. {
  378. title: '6 比尾巴'
  379. },
  380. {
  381. title: '7 青蛙写诗'
  382. },
  383. {
  384. title: '口语交际:用多大的声音'
  385. },
  386. {
  387. title: '语文园地六'
  388. },
  389. {
  390. title: '9 明天要远足'
  391. },
  392. {
  393. title: '10 大还是小'
  394. },
  395. {
  396. title: '11 项链'
  397. },
  398. {
  399. title: '12 雪地里的小画家'
  400. },
  401. {
  402. title: '13 乌鸦喝水'
  403. },
  404. {
  405. title: '14 小蜗牛'
  406. },
  407. ],
  408. },
  409. {
  410. title: '识字表',
  411. expand: false,
  412. },
  413. {
  414. title: '写字表',
  415. expand: false,
  416. },
  417. {
  418. title: '常用笔画名称表',
  419. expand: false,
  420. },
  421. {
  422. title: '常用偏旁名称表',
  423. expand: false,
  424. },
  425. ]
  426. }
  427. ],
  428. typedata:[
  429. {value: '全部',label: '全部'},
  430. {value: '课件',label: '课件'},
  431. {value: '习题',label: '习题'},
  432. {value: '教案',label: '教案'},
  433. {value: '试卷',label: '试卷'},
  434. {value: '素材',label: '素材'},
  435. {value: '微课',label: '微课'},
  436. {value: '其他',label: '其他'},
  437. ],
  438. typedefault:'全部',
  439. formatdata:[
  440. {value: '全部',label: '全部'},
  441. {value: '文档',label: '文档'},
  442. {value: '图片',label: '图片'},
  443. {value: '音频',label: '音频'},
  444. {value: '视频',label: '视频'},
  445. {value: '动画',label: '动画'},
  446. {value: '压缩包',label: '压缩包'},
  447. {value: '其他',label: '其他'},
  448. ],
  449. formatdefault:'全部',
  450. sourcedata:[
  451. {value: '全部',label: '全部'},
  452. {value: '社会企业',label: '社会企业'},
  453. {value: '教育单位',label: '教育单位'},
  454. {value: '个人共享',label: '个人共享'},
  455. ],
  456. sourcedefault:'全部',
  457. listdata: [
  458. { "id": 1, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《风姑娘送》 教学设计.docx', "intro": '点击查看更多《2金木水火土》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '王佳慧',"skipurl":'/details' },
  459. { "id": 2, "img": require("../../assets/image/resource/document_02.jpg"), "title": '《小溪生病了》同步练习.doc', "intro": '点击查看更多《小蜗牛》同步练习精彩内容', "time": '2018-11-06', "size": '91KB', 'browse': '89', "enshrine": '0', "upload": '0', "author": '任冲',"skipurl":'/details' },
  460. { "id": 3, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《窗外小鸟轻点叫》 教学设计.docx', "intro": '点击查看更多《窗外小鸟轻点叫》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '任冲',"skipurl":'/details' },
  461. { "id": 4, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:柳绿桃红.flv', "intro": '点击查看更多视频:柳绿桃红.flv精彩内容', "time": '2019-02-22', "size": '102.3MB', 'browse': '103', "enshrine": '10', "upload": '5', "author": '李佳',"skipurl":'/videodetails' },
  462. { "id": 5, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:山清水秀的自然风光.mp4', "intro": '点击查看更多视频:山清水秀的自然风光.mp4精彩内容', "time": '2018-12-09', "size": '58MB', 'browse': '206', "enshrine": '10', "upload": '2', "author": '李佳',"skipurl":'/videodetails' },
  463. { "id": 6, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:云、雨、雪的形成.mp4', "intro": '点击查看更多视频:云、雨、雪的形成.mp4精彩内容', "time": '2018-08-16', "size": '85KB', 'browse': '109', "enshrine": '73', "upload": '40', "author": '任冲',"skipurl":'/videodetails' },
  464. { "id": 7, "img": require("../../assets/image/resource/document_02.jpg"), "title": '文档:《对韵歌》拓展学习.ppt', "intro": '点击查看更多文档:《对韵歌》拓展学习.ppt精彩内容', "time": '2018-09-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '任冲',"skipurl":'/details' },
  465. { "id": 8, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《山爷爷和孩子的对话》 教学设计.docx', "intro": '点击查看更多《山爷爷和孩子的对话》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '任冲',"skipurl":'/details' },
  466. { "id": 9, "img": require("../../assets/image/resource/document_03.jpg"), "title": '音频:《对韵歌》课文朗读.mp3', "intro": '点击查看更多音频:《对韵歌》课文朗读.mp3精彩内容', "time": '2019-02-21', "size": '99KB', 'browse': '30', "enshrine": '0', "upload": '0', "author": '王瞿',"skipurl":'/details' },
  467. ],
  468. }
  469. },
  470. methods: {
  471. callouts() {
  472. this.callout = !this.callout //取反
  473. },
  474. clickbtn(){
  475. let newdata=[
  476. { "id": 1, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《风姑娘送》 教学设计.docx', "intro": '点击查看更多《2金木水火土》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '王佳慧' },
  477. { "id": 2, "img": require("../../assets/image/resource/document_02.jpg"), "title": '《小溪生病了》同步练习.doc', "intro": '点击查看更多《小蜗牛》同步练习精彩内容', "time": '2018-11-06', "size": '91KB', 'browse': '89', "enshrine": '0', "upload": '0', "author": '任冲' },
  478. { "id": 3, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《窗外小鸟轻点叫》 教学设计.docx', "intro": '点击查看更多《窗外小鸟轻点叫》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '任冲' },
  479. { "id": 4, "img": require("../../assets/image/resource/document_01.jpg"), "title": '《山爷爷和孩子的对话》 教学设计.docx', "intro": '点击查看更多《山爷爷和孩子的对话》 教学设计.docx精彩内容', "time": '2019-03-15', "size": '65KB', 'browse': '109', "enshrine": '5', "upload": '0', "author": '任冲' },
  480. ];
  481. this.listdata=newdata;
  482. },
  483. clickformatdefault(){
  484. let newdata=[
  485. { "id": 1, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:柳绿桃红.flv', "intro": '点击查看更多视频:柳绿桃红.flv精彩内容', "time": '2019-02-22', "size": '102.3MB', 'browse': '103', "enshrine": '10', "upload": '5', "author": '李佳' },
  486. { "id": 2, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:山清水秀的自然风光.mp4', "intro": '点击查看更多视频:山清水秀的自然风光.mp4精彩内容', "time": '2018-12-09', "size": '58MB', 'browse': '206', "enshrine": '10', "upload": '2', "author": '李佳' },
  487. { "id": 3, "img": require("../../assets/image/resource/document_04.jpg"), "title": '视频:云、雨、雪的形成.mp4', "intro": '点击查看更多视频:云、雨、雪的形成.mp4精彩内容', "time": '2018-08-16', "size": '85KB', 'browse': '109', "enshrine": '73', "upload": '40', "author": '任冲' },
  488. ];
  489. this.listdata=newdata;
  490. },
  491. },
  492. }
  493. </script>
  494. <style scoped>
  495. .together {
  496. width:100%;
  497. }
  498. .together_content_start {
  499. width:1200px;
  500. margin:0 auto;
  501. }
  502. .together_content {
  503. width: 1200px;
  504. height: auto;
  505. float:left;
  506. margin:0 auto;
  507. padding-bottom:30px;
  508. }
  509. .left_box {
  510. width:210px;
  511. display:inline-block;
  512. float:left;
  513. }
  514. .ztree_box {
  515. width: 210px;
  516. border: 0px;
  517. background: #fff;
  518. margin-top: 0px;
  519. padding: 10px 10px;
  520. height: 360px;
  521. overflow-y: auto;
  522. overflow-x: auto;
  523. border: 1px solid #e3e3e3;
  524. }
  525. .right_box {
  526. width: 977px;
  527. float:left;
  528. }
  529. .together_resource {
  530. width:100%;
  531. }
  532. .resource_left {
  533. width: 722px;
  534. float: left;
  535. margin-top: 20px;
  536. margin-left: 10px;
  537. }
  538. .resource_left_header {
  539. height: 47px;
  540. line-height: 47px;
  541. width: 100%;
  542. border: 1px solid #f3f3f3;
  543. background: #fff;
  544. }
  545. .resource_title a {
  546. padding: 0 30px;
  547. display: inline-block;
  548. font-size: 14px;
  549. color: #7d98a9;
  550. }
  551. .resource_title {
  552. float:left;
  553. }
  554. .resource_title a.on, .resource_title a:hover {
  555. background: #56bdff;
  556. color: #fff;
  557. text-decoration: none;
  558. }
  559. .resource_title a i {
  560. width: 10px;
  561. height: 14px;
  562. display: inline-block;
  563. background: url(../../assets/image/resource/arrow_top.png) 0 -26px no-repeat;
  564. margin-left: 5px;
  565. vertical-align: middle;
  566. }
  567. .resource_list {
  568. overflow: hidden;
  569. zoom: 1;
  570. margin-top: 5px;
  571. }
  572. .rank-row {
  573. height: auto !important;
  574. height: 100px;
  575. min-height: 100px;
  576. padding: 20px 35px;
  577. position: relative;
  578. z-index: 0;
  579. background: #fff;
  580. border: #eee solid 1px;
  581. z-index: 0;
  582. margin-bottom: 5px;
  583. }
  584. .row-photo {
  585. width: 66px;
  586. height: 66px;
  587. position: absolute;
  588. left: 35px;
  589. }
  590. .row-r-rect {
  591. margin-left: 95px;
  592. margin-top: -2px;
  593. height: 68px;
  594. position: relative;
  595. }
  596. .row-r-col2 {
  597. color: #222;
  598. line-height: 21px;
  599. }
  600. .row-r-col2 h4 {
  601. font-size: 16px;
  602. font-weight: normal;
  603. color: #222;
  604. }
  605. .row-r-col2 .title {
  606. color: #555;
  607. position: relative;
  608. padding-left: 40px;
  609. margin-top: 5px;
  610. }
  611. .row-r-col2 .title strong {
  612. position: absolute;
  613. top: 0;
  614. left: 0;
  615. font-weight: normal;
  616. }
  617. .row-r-col2 .info span {
  618. margin-right: 25px;
  619. color: #888;
  620. }
  621. .c888, a.c888 {
  622. color: #888;
  623. font-style: normal;
  624. }
  625. .row-r-col3 {
  626. width: 230px;
  627. text-align: right;
  628. position: absolute;
  629. top: -6px;
  630. right: 0;
  631. }
  632. .site_grade {
  633. vertical-align: middle;
  634. display: inline-block;
  635. margin-top: 8px;
  636. }
  637. .site_grade .star {
  638. background: url(../../assets/image/resource/qjf_star.gif) repeat;
  639. width: 70px;
  640. height: 12px;
  641. position: relative;
  642. display: inline-block;
  643. overflow: hidden;
  644. }
  645. .site_grade .star i {
  646. background: url(../../assets/image/resource/qjf_star_r.gif) repeat;
  647. display: inline-block;
  648. height: 12px;
  649. overflow: hidden;
  650. position: absolute;
  651. left: 0;
  652. top: 0;
  653. }
  654. .from {
  655. background: url(../../assets/image/resource/user.gif) no-repeat left center;
  656. padding-left: 20px;
  657. line-height: 26px;
  658. margin-top: 10px;
  659. color: #888;
  660. }
  661. .pagebtn {
  662. width:100%;
  663. margin:0 auto;
  664. padding:0% 25%;
  665. margin-top:5%;
  666. }
  667. .resource_right {
  668. float: right;
  669. width: 240px;
  670. margin-top: 20px;
  671. }
  672. .item-recZy {
  673. border: #eee solid 1px;
  674. background: #fff;
  675. }
  676. .item-recZy h3 {
  677. height: 47px;
  678. border-bottom: #eee solid 1px;
  679. padding: 0 10px;
  680. }
  681. .item-recZy h3 strong {
  682. font-weight: normal;
  683. font-size: 20px;
  684. color: #288add;
  685. line-height: 47px;
  686. border-bottom: #288add solid 1px;
  687. display: inline-block;
  688. padding: 0 5px;
  689. }
  690. .item-recZy ul {
  691. padding: 0 15px;
  692. display: block;
  693. }
  694. .item-recZy li.first {
  695. padding: 7px 0;
  696. }
  697. .item-recZy li {
  698. padding: 30px 0;
  699. }
  700. .item-recZy .name {
  701. color: #3d95d5;
  702. line-height: 1.8em;
  703. }
  704. .item-recZy .name i {
  705. display: inline-block;
  706. width: 32px;
  707. height: 32px;
  708. border-radius: 16px;
  709. text-align: center;
  710. line-height: 32px;
  711. font-size: 20px;
  712. color: #fff;
  713. background: #ff7f39;
  714. font-weight: normal;
  715. margin: 0 10px 0 0;
  716. vertical-align: middle;
  717. background: #ff7f39;
  718. font-style: normal;
  719. }
  720. .u-zy-tit .choose-rect li .case a {
  721. float: left;
  722. padding: 0 11px;
  723. margin-right: 10px;
  724. line-height: 26px;
  725. color: #747474;
  726. border-radius: 5px;
  727. }
  728. a, a:visited {
  729. text-decoration: none;
  730. }
  731. .on{
  732. color: #fff;
  733. background: #9d9d9d;
  734. }
  735. .item-recZy .name a {
  736. font-size: 14px;
  737. font-weight: normal;
  738. color: #555;
  739. }
  740. .item-recZy .first .rect {
  741. height: 80px;
  742. background: #fafafa;
  743. margin-top: 10px;
  744. }
  745. .item-recZy .first .photo {
  746. float: left;
  747. width: 66px;
  748. height: 66px;
  749. padding: 7px 8px;
  750. background: #f0f0f0;
  751. margin-right: -90px;
  752. }
  753. .item-recZy .first .baseInfo {
  754. padding-top: 8px;
  755. margin-left: 90px;
  756. }
  757. .item-recZy .baseInfo p {
  758. float: left;
  759. width: 100px;
  760. margin-right: 4px;
  761. margin-top: 8px;
  762. }
  763. .item-recZy .baseInfo strong {
  764. font-weight: normal;
  765. font-size: 14px;
  766. color: #1d9bdc;
  767. margin-right: 5px;
  768. }
  769. .title_name {
  770. width: 100%;
  771. font-size: 14px;
  772. color: #fff;
  773. padding-left: 25px;
  774. line-height: 45px;
  775. font-weight: normal;
  776. cursor: pointer;
  777. background-color: #3d95d5;
  778. }
  779. .u-zy-tit2 {
  780. width: 100%;
  781. min-width: 1200px;
  782. }
  783. .u-zy-tit {
  784. height: 64px;
  785. line-height: 64px;
  786. }
  787. .u-zy-tit .tit {
  788. font-size: 24px;
  789. color: #7f7f7f;
  790. font-weight: normal;
  791. float: left;
  792. cursor: pointer;
  793. color: #555;
  794. }
  795. .u-zy-tit .choose-div {
  796. position: relative;
  797. font-size: 12px;
  798. z-index: 11;
  799. }
  800. .u-zy-tit2 .tit span {
  801. color: #555;
  802. }
  803. .u-zy-tit .tit span {
  804. font-size: 12px;
  805. color: #7f7f7f;
  806. vertical-align: middle;
  807. }
  808. .u-zy-tit2 .choose-ico {
  809. background: url(../../assets/image/resource/choose_icon.png) no-repeat;
  810. }
  811. .u-zy-tit .choose-ico {
  812. display: block;
  813. width: 16px;
  814. height: 16px;
  815. margin: 25px 0 0 10px;
  816. transition: transform .5s ease-in;
  817. }
  818. .u-zy-tit .choose-rect {
  819. position: absolute;
  820. width: 260px;
  821. padding: 0 20px;
  822. background: #fff;
  823. border: #dedede solid 1px;
  824. border-radius: 5px;
  825. margin-left: -80px;
  826. margin-top: 8px;
  827. }
  828. .u-zy-tit .choose-rect h4 {
  829. font-size: 20px;
  830. line-height: 50px;
  831. border-bottom: #dedede solid 1px;
  832. color: #555;
  833. font-weight: normal;
  834. padding: 0 10px;
  835. }
  836. .u-zy-tit .choose-rect li {
  837. clear: both;
  838. padding-top: 20px;
  839. }
  840. .u-zy-tit .choose-rect li label.name {
  841. float: left;
  842. width: 45px;
  843. text-align: right;
  844. line-height: 26px;
  845. margin-right: 10px;
  846. color: #7f7f7f;
  847. }
  848. label {
  849. vertical-align: middle;
  850. }
  851. .u-zy-tit .choose-rect li .case a {
  852. float: left;
  853. padding: 0 11px;
  854. margin-right: 5px;
  855. line-height: 26px;
  856. color: #747474;
  857. border-radius: 5px;
  858. color: #fff;
  859. background: #9d9d9d;
  860. }
  861. .mgtb20 {
  862. margin-top: 20px;
  863. margin-bottom: 20px;
  864. }
  865. .t_c {
  866. text-align: center;
  867. }
  868. .u-white-btn {
  869. background: #fff;
  870. border: #56b8fd solid 1px;
  871. width: 98px;
  872. height: 30px;
  873. text-align: center;
  874. line-height: 30px;
  875. font-size: 14px;
  876. color: #56b8fd;
  877. display: inline-block;
  878. }
  879. .u-zy-tit2 .tit span {
  880. color: #555;
  881. }
  882. .u-zy-tit .tit span {
  883. font-size: 12px;
  884. color: #7f7f7f;
  885. vertical-align: middle;
  886. width: 158px;
  887. z-index: 3;
  888. }
  889. .u-zy-tit2 .tit em {
  890. color: #555;
  891. }
  892. .u-zy-tit .tit em {
  893. color: #55a3de;
  894. font-size: 20px;
  895. font-style: normal;
  896. }
  897. ol, ul, li {
  898. list-style: none;
  899. }
  900. .site-nyCase-rect {
  901. border: #e4e4e4 solid 1px;
  902. overflow: hidden;
  903. zoom: 1;
  904. padding: 8px 15px 9px 15px;
  905. background: #fff;
  906. margin-left:10px;
  907. }
  908. .site-nyCase-rect .nyCase-tit {
  909. width: 52px;
  910. float: left;
  911. text-align: center;
  912. margin-right: -52px;
  913. line-height: 34px;
  914. font-size: 14px;
  915. color: #888;
  916. }
  917. .site-nyCase-rect .nyCase-c {
  918. margin-left: 76px;
  919. overflow: hidden;
  920. zoom: 1;
  921. width:25%;
  922. float:left;
  923. }
  924. .site-nyCase-rect .nyCase-c-a {
  925. float: left;
  926. margin-right: 100px;
  927. }
  928. .site-nyCase-rect .nyCase-c a.on {
  929. padding: 0 9px;
  930. line-height: 24px;
  931. border: #9d9d9d solid 1px;
  932. background: #9d9d9d;
  933. border-radius: 3px;
  934. color: #fff;
  935. }
  936. .site-nyCase-rect .nyCase-c-a a {
  937. float: left;
  938. padding: 0 10px;
  939. line-height: 26px;
  940. color: #222;
  941. text-decoration: none;
  942. margin: 4px 6px 4px 0;
  943. white-space: nowrap;
  944. }
  945. </style>