indexNew.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  1. <template>
  2. <view class="content">
  3. <pcNav :data="indexName" :itemName="topName" @getIndexList="getIndexList"
  4. @gosearchlist="gosearchlist"
  5. @getChildList = "getChildList"></pcNav>
  6. <view v-show="indexShow">
  7. <view style="height: 72px;"></view>
  8. <view class="swiperBox" v-if="recommendList.length>0">
  9. <view class="swiperCont">
  10. <view class="tuijbox">
  11. <image src="../../static/pcimg/icon_tuijian@2x.png" mode="" class="tuijImg"></image>
  12. <span class="tuijTitle">推荐文章</span>
  13. </view>
  14. <swiper class="swiper" :autoplay="false" :circular="true" :current="swpIndex">
  15. <swiper-item v-for="(item,index) in recommendList" v-if="(index+1)%4!=0">
  16. <view class="mainwzbox2" >
  17. <view class="mainwzline" @click="goDetailswp(recommendList[index])" >
  18. <view class="mainwzImgBox">
  19. <img :src="item.logoImg" alt="" class="mainwzImg">
  20. </view>
  21. <view class="wztitle">{{item.name}}</view>
  22. <view class="wztime">{{item.CreateTime.slice(0,10)}}</view>
  23. </view>
  24. <view class="mainwzline" v-if="recommendList[index+1]" @click="goDetailswp(recommendList[index+1])" >
  25. <view class="mainwzImgBox">
  26. <img :src="recommendList[index+1].logoImg" alt="" class="mainwzImg">
  27. </view>
  28. <view class="wztitle">{{recommendList[index+1].name}}</view>
  29. <view class="wztime">{{recommendList[index+1].CreateTime.slice(0,10)}}</view>
  30. </view>
  31. <view class="mainwzline" v-if="recommendList[index+2]" @click="goDetailswp(recommendList[index+2])" >
  32. <view class="mainwzImgBox">
  33. <img :src="recommendList[index+2].logoImg" alt="" class="mainwzImg">
  34. </view>
  35. <view class="wztitle">{{recommendList[index+2].name}}</view>
  36. <view class="wztime">{{recommendList[index+2].CreateTime.slice(0,10)}}</view>
  37. </view>
  38. <view class="mainwzline mainwzlineR" v-if="recommendList[index+3]" @click="goDetailswp(recommendList[index+3])" >
  39. <view class="mainwzImgBox">
  40. <img :src="recommendList[index+3].logoImg" alt="" class="mainwzImg">
  41. </view>
  42. <view class="wztitle">{{recommendList[index+3].name}}</view>
  43. <view class="wztime">{{recommendList[index+3].CreateTime.slice(0,10)}}</view>
  44. </view>
  45. </view>
  46. <!-- <view class="swpCont">
  47. <view class="swiper-item" @click="goDetail(item)">
  48. <view class="swpimgBox swpBr">
  49. <image :src="item.logoImg" mode="" class="swpimg"></image>
  50. </view>
  51. <view class="swpTitleBox">
  52. <view class="swpTitle">{{item.title}}</view>
  53. <view class="categoryName" @click.stop="goList(item)">{{item.categoryName.substring(0,5)}}</view>
  54. </view>
  55. </view>
  56. <view class="swiper-item" v-if="(index+1)<recommendList.length" @click="goDetail(recommendList[index+1])">
  57. <view class="swpimgBox swpBr">
  58. <image :src="recommendList[index+1].logoImg" mode="" class="swpimg"></image>
  59. </view>
  60. <view class="swpTitleBox">
  61. <view class="swpTitle">{{recommendList[index+1].title}}</view>
  62. <view class="categoryName">{{recommendList[index+1].categoryName.substring(0,5)}}</view>
  63. </view>
  64. </view>
  65. </view> -->
  66. </swiper-item>
  67. </swiper>
  68. <image src="../../static/pcimg/icon_arrow_zuo_sel@2x.png" mode="" class="swpImgleft" @click="swpBtnLeft"></image>
  69. <image src="../../static/pcimg/legtspx.png" mode="" class="swpImgright" @click="swpBtnRight"></image>
  70. </view>
  71. </view>
  72. <view class="main">
  73. <view class="mainCont">
  74. <view class="mainline" :class="{'mainline1':index==0}" v-for="(item,index) in indexData.categoryList" v-if="item.children.length>0">
  75. <view class="mainlineTop">
  76. <view class="mainlineTopleft">
  77. <view class="mainlineTitle">{{item.name}}</view>
  78. <view class="mainlinecount">共{{item.count}}篇文章</view>
  79. </view>
  80. <view class="mainlineMore" @click="mainMore(item)">查看更多
  81. <image src="../../static/pcimg/icon_list_arrow_def@2x.png" mode="" class="linegdImg1"></image>
  82. <image src="../../static/pcimg/icon_list_arrow_sel@2x.png" mode="" class="linegdImg2"></image>
  83. </view>
  84. </view>
  85. <view class="mainwzbox" v-if="item.children.length>0">
  86. <view class="mainwzline" v-for="(wz,wzindex) in item.children" @click="goDetail2(wz,item)" v-if="wzindex<4" :class="{'mainwzlineR':wzindex!=3}">
  87. <view class="mainwzImgBox">
  88. <img :src="wz.logoImg" alt="" class="mainwzImg">
  89. </view>
  90. <view class="wztitle">{{wz.title}}</view>
  91. <view class="wztime">{{wz.CreateTime.slice(0,10)}}</view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <!-- 列表页 -->
  99. <view v-show="listShow">
  100. <view style="height: 72px;"></view>
  101. <view class="top">
  102. <view class="topName">{{topName}}</view>
  103. <view class="comment listtopC" v-if="comment">{{comment}}</view>
  104. </view>
  105. <view class="main">
  106. <view class="dynamicCol">
  107. <view class="dynamicColLeft">
  108. <view class="dynamicColLIne" :class="{'activeTab':tabIndex==index}" v-for="(item,index) in dynamicCol" @click="tabBtn(index,item)">{{item.name}}</view>
  109. </view>
  110. <view class="dynamicColRight">
  111. <image src="../../static/pcimg/icon_kapian_def@2x.png" v-show="qhIndex==2" class="qhImg" @click="qhIndex=1"></image>
  112. <image src="../../static/pcimg/icon_kapian_sel@2x.png" v-show="qhIndex==2" class="qhImg"></image>
  113. <image src="../../static/pcimg/icon_liebiao_sel@2x.png" v-show="qhIndex==1" class="qhImg" ></image>
  114. <image src="../../static/pcimg/qh2.png" v-show="qhIndex==1" class="qhImg" @click="qhIndex=2"></image>
  115. </view>
  116. </view>
  117. <view class="cont2">
  118. <view class="contBox">
  119. <view class="contf" v-if="qhIndex==2&&list.length>0">
  120. <view class="mainwzline" v-for="(wz,wzindex) in list" :class="{'mainwzlineR2':(wzindex+1)%4==0&&wzindex!=0}" @click="goDetail3(wz)">
  121. <view class="mainwzImgBox">
  122. <img :src="wz.LogoImg" alt="" class="mainwzImg">
  123. </view>
  124. <view class="wztitle">{{wz.Title}}</view>
  125. <view class="wztime">2022-3-30</view>
  126. </view>
  127. </view>
  128. <view class="contL" v-if="qhIndex==1&&list.length>0">
  129. <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail3(wz)">
  130. <view class="wzLineLeft">
  131. <image :src="wz.LogoImg" class="wzLeftIMg"></image>
  132. </view>
  133. <view class="wzLineRight">
  134. <view class="wzTitle2">{{wz.Title}}</view>
  135. <view class="wzComment">{{wz.Comment}}</view>
  136. </view>
  137. </view>
  138. </view>
  139. <view class="nodata" v-show="list.length==0">
  140. <image src="../../static/pcimg/listnodata.png" mode="" class="nodataImg"></image>
  141. <view class="nodataTitle">暂无数据</view>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. <view class="pageView" v-show="TotalSize">
  147. <page-pagination :pageSize="pageSize" :size="'small'" :total="TotalSize" :numAround="true" @change="pageChange"></page-pagination>
  148. </view>
  149. </view>
  150. <view class="gotop" @click="gotoTop">
  151. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  152. </view>
  153. <view>
  154. <newDetail ref="newDetailV" @getChildList="getChildList"
  155. v-show="newDetailShow" :newid='newDetailID' :data="newDetailItem" @getIndexList="getIndexList"></newDetail>
  156. <newgroupingList @getIndexList="getIndexList"
  157. @getChildList="getChildList" @goDetail="goDetail"
  158. v-show="newgroupingListShow" :newcode="newgroupingcode" :data="newgroupingdata"></newgroupingList>
  159. <newsearchlist v-show="newsearchShow" @goDetail="goDetail" @goDetail4="goDetail4"></newsearchlist>
  160. </view>
  161. </view>
  162. </template>
  163. <script>
  164. import pcNav from '../../components/pcNav/pcNav.vue'
  165. import newDetail from './newDetail.vue'
  166. import newgroupingList from './newgroupingList.vue'
  167. import newsearchlist from './newsearchlist.vue'
  168. export default {
  169. components: {
  170. pcNav,newDetail,newgroupingList,newsearchlist
  171. },
  172. data() {
  173. return {
  174. title: 'Hello',
  175. allCategory:[],
  176. navMoret:false,
  177. swpIndex:0,
  178. indexData:'',
  179. recommendList:[],
  180. list:[],
  181. comment:'',
  182. topName:'',
  183. parentCode:'',
  184. topCode:'',
  185. page:1,
  186. dynamicCol:[],
  187. qhIndex:1,
  188. tabIndex:0,
  189. TotalSize:0,
  190. pageSize:20,
  191. indexShow:true,
  192. listShow:false,
  193. indexName:'index',
  194. newDetailShow:false,
  195. newgroupingListShow:false,
  196. newsearchShow:false,
  197. newDetailID:'',
  198. newDetailItem:'',
  199. newgroupingcode:'',
  200. newgroupingdata:'',
  201. }
  202. },
  203. onLoad(opt) {
  204. if(opt.id){
  205. this.newDetailID=opt.id;
  206. var item={
  207. categoryName:opt.topName,
  208. comment:opt.comment,
  209. parentCode:'',
  210. twoName:'',
  211. id:opt.id
  212. }
  213. console.log(item)
  214. this.goDetail(item)
  215. }
  216. this.getindexData()
  217. },
  218. created(){
  219. //this.getindexData()
  220. },
  221. methods: {
  222. getIndexList(){
  223. this.indexShow=true;
  224. this.listShow=false;
  225. this.newDetailShow=false;
  226. this.newgroupingListShow=false;
  227. this.newsearchShow=false;
  228. this.indexName='index';
  229. this.topName=''
  230. },
  231. gosearchlist(){
  232. this.indexShow=false;
  233. this.listShow=false;
  234. this.newDetailShow=false;
  235. this.newgroupingListShow=false;
  236. this.newsearchShow=true;
  237. this.indexName='';
  238. this.topName=''
  239. },
  240. getChildList(item){
  241. console.log(item);
  242. this.indexName=''
  243. this.topName=item.name;
  244. this.comment=item.comment;
  245. this.topCode=item.code;
  246. this.parentCode=item.code;
  247. //this.parentCode='';
  248. this.getcategoryPageData();
  249. uni.setNavigationBarTitle({
  250. title: this.topName
  251. });
  252. this.indexShow=false;
  253. this.listShow=true;
  254. this.newDetailShow=false;
  255. this.newgroupingListShow=false;
  256. this.newsearchShow=false;
  257. this.tabIndex=0;
  258. },
  259. goList(item){
  260. console.log(item)
  261. this.getChildList(item)
  262. uni.pageScrollTo({
  263.    scrollTop: 0, duration: 100
  264. });
  265. /* uni.navigateTo({
  266. url:'list?code='+item.code+'&topName='+item.categoryName//+'&comment='+item.comment
  267. }) */
  268. },
  269. goDetail(item){
  270. console.log(item)
  271. this.indexShow=false;
  272. this.listShow=false;
  273. this.newDetailShow=true;
  274. this.newgroupingListShow=false;
  275. this.newsearchShow=false;
  276. this.newDetailID=item.id;
  277. this.newDetailItem=item;
  278. //this.$refs.newDetailV.test()
  279. //this.$refs.newDetailV.newidfn()
  280. /* uni.navigateTo({
  281. url:'detail?id='+item.id+'&topName='+item.categoryName+"&comment="+item.comment+'&parentCode='+item.code
  282. }) */
  283. },
  284. goDetail2(wz,item){
  285. console.log(item)
  286. console.log(wz)
  287. if (wz.type == 1) {
  288. this.newgroupingcode=wz.code;
  289. var newgroupingdata={
  290. parentCode:item.code,
  291. name:wz.name,
  292. title:wz.title,
  293. topName:item.name,
  294. comment:item.comment
  295. }
  296. console.log(newgroupingdata)
  297. this.indexShow=false;
  298. this.listShow=false;
  299. this.newDetailShow=false;
  300. this.newgroupingListShow=true;
  301. this.newsearchShow=false;
  302. this.newgroupingdata=newgroupingdata
  303. }else{
  304. this.indexShow=false;
  305. this.listShow=false;
  306. this.newDetailShow=true;
  307. this.newgroupingListShow=false;
  308. this.newsearchShow=false;
  309. this.newDetailID=wz.id;
  310. var item={
  311. categoryName:item.name,
  312. twoName:'',
  313. comment:item.comment,
  314. code:item.code
  315. }
  316. this.newDetailItem=item;
  317. }
  318. /* uni.navigateTo({
  319. url:'detail?id='+wz.id+'&topName='+item.name+"&comment="+item.comment+'&parentCode='+item.code
  320. }) */
  321. },
  322. goDetail3(wz){
  323. // 1分类2文章
  324. if (wz.Type == 1) {
  325. /* uni.navigateTo({
  326. url:'groupingList?parentCode='+this.topCode+'&code='+wz.Code+'&name='+wz.Name+'&title='+wz.Title+'&topName='+this.topName+"&comment="+this.comment
  327. }) */
  328. this.newgroupingcode=wz.Code;
  329. var newgroupingdata={
  330. parentCode:this.topCode,
  331. name:wz.Name,
  332. title:wz.Title,
  333. topName:this.topName,
  334. comment:this.comment
  335. }
  336. console.log(newgroupingdata)
  337. this.indexShow=false;
  338. this.listShow=false;
  339. this.newDetailShow=false;
  340. this.newgroupingListShow=true;
  341. this.newsearchShow=false;
  342. this.newgroupingdata=newgroupingdata
  343. }else{
  344. this.indexShow=false;
  345. this.listShow=false;
  346. this.newDetailShow=true;
  347. this.newgroupingListShow=false;
  348. this.newsearchShow=false;
  349. this.newDetailID=wz.ID;
  350. var item={
  351. categoryName:this.topName,
  352. twoName:this.dynamicCol[this.tabIndex].name,
  353. comment:this.comment,
  354. code:wz.Code
  355. }
  356. this.newDetailItem=item;
  357. /* uni.navigateTo({
  358. url:'detail?id='+wz.ID+'&topName='+this.topName+'&twoName='+this.dynamicCol[this.tabIndex].name+"&comment="+this.comment+'&parentCode='+wz.Code
  359. }) */
  360. }
  361. //console.log(wz)
  362. },
  363. goDetail4(item){
  364. this.newgroupingcode=item.Code;
  365. var newgroupingdata={
  366. parentCode:item.parentCode,
  367. name:item.Name,
  368. title:item.Title,
  369. topName:item.topName,
  370. comment:''
  371. }
  372. console.log(newgroupingdata)
  373. this.indexShow=false;
  374. this.listShow=false;
  375. this.newDetailShow=false;
  376. this.newgroupingListShow=true;
  377. this.newsearchShow=false;
  378. this.newgroupingdata=newgroupingdata
  379. },
  380. goDetailswp(item){
  381. //console.log(itme)
  382. this.indexShow=false;
  383. this.listShow=false;
  384. this.newDetailShow=true;
  385. this.newgroupingListShow=false;
  386. this.newsearchShow=false;
  387. this.newDetailID=item.id;
  388. var item={
  389. categoryName:item.categoryName,
  390. twoName:'',
  391. comment:item.comment,
  392. code:item.code
  393. }
  394. this.newDetailItem=item;
  395. },
  396. gotoTop(){
  397. uni.pageScrollTo({
  398.    scrollTop: 0, duration: 300
  399. });
  400. },
  401. swpBtnRight(){
  402. var length=this.recommendList.length;
  403. var num=Math.ceil(length/4)-1
  404. console.log(num+'---'+this.swpIndex)
  405. if(this.swpIndex<num){
  406. this.swpIndex++
  407. }
  408. },
  409. swpBtnLeft(){
  410. if(this.swpIndex==0){
  411. }else{
  412. this.swpIndex--
  413. }
  414. },
  415. getindexData(){
  416. uni.showLoading({
  417. title: '加载中'
  418. })
  419. this.$http('/trainingOpenApi/indexData', {}, 'GET').then(res => {
  420. uni.hideLoading();
  421. this.indexData = res.data;
  422. this.recommendList=this.indexData.recommendList
  423. })
  424. },
  425. mainMore(item){
  426. console.log(item)
  427. this.getChildList(item)
  428. /* uni.navigateTo({
  429. url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
  430. }) */
  431. },
  432. gotoTop(){
  433. uni.pageScrollTo({
  434.    scrollTop: 0, duration: 300
  435. });
  436. },
  437. tabBtn(index,item){
  438. this.tabIndex=index;
  439. console.log(item)
  440. this.parentCode=item.code;
  441. this.getcategoryPageData()
  442. },
  443. pageChange(e){
  444. console.log(e)
  445. this.page=e;
  446. this.getcategoryPageData()
  447. },
  448. getcategoryPageData(){
  449. console.log(this.parentCode)
  450. if(this.parentCode){
  451. var params={
  452. parentCode:this.parentCode,
  453. topCode:this.topCode,
  454. limit:this.pageSize,
  455. page:this.page,
  456. }
  457. var url='trainingOpenApi/categoryPageDataNew'
  458. this.$http(url, params, 'GET').then(res => {
  459. uni.hideLoading();
  460. this.list=res.data.Items;
  461. this.TotalSize=res.data.TotalSize;
  462. var arr=[
  463. {
  464. 'name':'全部','code':'',
  465. }
  466. ]
  467. this.dynamicCol=arr.concat(res.data.dynamicCol);
  468. })
  469. }else{
  470. var params = {
  471. page: this.page,
  472. limit: 10,
  473. parentCode: this.topCode,
  474. }
  475. var url='trainingOpenApi/groupPageData'
  476. this.$http(url, params, 'GET').then(res => {
  477. uni.hideLoading();
  478. this.list=res.data.Items;
  479. this.TotalSize=res.data.TotalSize;
  480. })
  481. }
  482. uni.showLoading({
  483. title: '加载中'
  484. })
  485. //trainingOpenApi/categoryPageData
  486. }
  487. }
  488. }
  489. </script>
  490. <style scoped>
  491. .content{
  492. background: #F4F5F7;
  493. min-height: 100vh;
  494. font-family: PingFangSC-Regular, PingFang SC;
  495. min-width: 1200px;
  496. }
  497. .swiperBox{
  498. /* height: 280px; */
  499. /* background: #F3F8FF; */
  500. width: 100%;
  501. }
  502. .swiperCont{
  503. width: 1230px;
  504. margin: 0 auto;
  505. position: relative;
  506. }
  507. .tuijImg{
  508. width: 24px;height: 24px;
  509. }
  510. .tuijbox{
  511. display: flex;padding-top: 32px;/* padding-bottom: 20px; */
  512. padding-left: 15px;
  513. }
  514. .tuijTitle{
  515. font-size: 22px;
  516. font-family: PingFangSC-Medium, PingFang SC;
  517. font-weight: 500;
  518. color: #3C3C3C;
  519. padding-left: 7px;
  520. line-height: 24px;
  521. }
  522. .swpImgleft{
  523. width: 44px;
  524. height: 44px;
  525. position: absolute;
  526. top: 170px;
  527. left: -60px;
  528. cursor: pointer;
  529. }
  530. .swpImgright{
  531. width: 44px;
  532. height: 44px;
  533. position: absolute;
  534. top: 170px;
  535. right: -60px;
  536. cursor: pointer;
  537. }
  538. .swiper-item{
  539. width: 590px;
  540. height: 163px;
  541. background: #FFFFFF;
  542. margin-left: 16px;
  543. margin-right: 12px;
  544. border-radius: 6px;
  545. margin-top: 14px;
  546. position: relative;
  547. cursor: pointer;
  548. }
  549. .swiper-item:hover{
  550. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.25);
  551. }
  552. .swpCont{
  553. display: flex;
  554. height: 210px;
  555. justify-content: space-between;
  556. }
  557. .swpimg{
  558. width: 284px;
  559. height: 160px;
  560. }
  561. .swpimgBox{
  562. width: 284px;
  563. height: 160px;
  564. position: absolute;
  565. left: 0;
  566. top: -14px;
  567. }
  568. .swpBr{
  569. width: 284px;
  570. height: 160px;
  571. border-radius: 7px;
  572. overflow: hidden;
  573. }
  574. .swiper{
  575. height: 280px;
  576. }
  577. .swpTitleBox{
  578. padding-left: 304px;
  579. display: flex;
  580. flex-direction: column;
  581. justify-content: space-between;
  582. height: 140px;
  583. padding-top: 10px;
  584. }
  585. .swpTitle{
  586. width: 240px;
  587. height: 44px;
  588. font-size: 16px;
  589. color: #3C3C3C;
  590. line-height: 22px;
  591. text-overflow: -o-ellipsis-lastline;
  592. overflow: hidden;
  593. text-overflow: ellipsis;
  594. display: -webkit-box;
  595. -webkit-line-clamp: 2;
  596. line-clamp: 2;
  597. -webkit-box-orient: vertical;
  598. }
  599. .swpTitleBox:hover .swpTitle{
  600. color: #FF4F00;
  601. }
  602. .categoryName{
  603. line-height: 24px;
  604. width: 84px;
  605. height: 24px;
  606. background: rgba(63, 144, 247, 0.1);
  607. border-radius: 14px;
  608. font-size: 14px;
  609. color: #3F90F7;
  610. text-align: center;
  611. white-space: nowrap;
  612. overflow: hidden;
  613. text-overflow: ellipsis;
  614. }
  615. .mainCont{
  616. width: 1200px;
  617. margin: 0 auto;
  618. padding-bottom: 20px;
  619. }
  620. .mainline{
  621. padding-top: 34px;
  622. }
  623. .mainlineTop{
  624. display: flex;
  625. justify-content: space-between;
  626. }
  627. .mainlineTopleft{
  628. display: flex;
  629. }
  630. .mainlineTitle{
  631. font-size: 22px;
  632. font-weight: 500;
  633. color: #3C3C3C;
  634. line-height: 33px;
  635. font-family: PingFangSC-Medium, PingFang SC;
  636. }
  637. .mainlinecount{
  638. font-size: 14px;
  639. font-weight: 400;
  640. color: #999999;
  641. line-height: 33px;
  642. padding-left: 16px;
  643. }
  644. .mainlineMore{
  645. font-size: 14px;
  646. color: #999999;
  647. }
  648. .mainwzbox{
  649. display: flex;
  650. /* padding-top: 20px; */
  651. }
  652. .mainwzbox2{
  653. display: flex;
  654. padding: 0 15px;
  655. }
  656. .mainwzImg{
  657. width: 284px;
  658. height: 160px;
  659. }
  660. .mainwzImgBox{
  661. border-top-left-radius: 6px;
  662. border-top-right-radius: 6px;
  663. overflow: hidden;
  664. height: 160px;
  665. border: 1px solid #eeeeee;
  666. }
  667. .mainwzline{
  668. width: 284px;
  669. height: 244px;
  670. background: #FFFFFF;
  671. border-radius: 6px;
  672. }
  673. .mainwzlineR{
  674. margin-right: 22px;
  675. }
  676. .wztitle{
  677. width: 256px;
  678. font-size: 16px;
  679. color: #333333;
  680. line-height: 22px;
  681. height: 22px;
  682. text-overflow: -o-ellipsis-lastline;
  683. overflow: hidden;
  684. text-overflow: ellipsis;
  685. display: -webkit-box;
  686. -webkit-line-clamp: 1;
  687. line-clamp: 1;
  688. -webkit-box-orient: vertical;
  689. padding:0 13px ;
  690. padding-top: 16px;
  691. }
  692. .wztime{
  693. font-size: 14px;
  694. color: #999999;
  695. padding-left: 14px;
  696. padding-top: 10px;
  697. }
  698. .mainwzline:hover{
  699. background: #FFFFFF;
  700. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  701. border-radius: 6px;
  702. cursor: pointer;
  703. }
  704. .mainwzline:hover .wztitle{
  705. color: #FF4F00;
  706. }
  707. .mainlineMore:hover{
  708. color: #FF4F00;
  709. cursor: pointer;
  710. }
  711. .gotopImg{
  712. width: 60px;
  713. height: 60px;
  714. }
  715. .gotop{
  716. position: fixed;
  717. right:5vh ;
  718. bottom: 60px;
  719. cursor: pointer;
  720. }
  721. .linegdImg1{
  722. width: 6px;
  723. height: 10px;
  724. margin-top: 5px;
  725. margin-left: 4px;
  726. }
  727. .linegdImg2{
  728. width: 6px;
  729. height: 10px;
  730. display: none;
  731. margin-top: 5px;
  732. margin-left: 4px;
  733. }
  734. .mainlineMore{
  735. display: flex;
  736. }
  737. .mainlineMore:hover .linegdImg1{
  738. display: none;
  739. }
  740. .mainlineMore:hover .linegdImg2{
  741. display: block;
  742. }
  743. .mainline1{
  744. padding-top: 20px;
  745. }
  746. .content{
  747. background: #F4F5F7;
  748. min-height: 100vh;
  749. font-family: PingFangSC-Regular, PingFang SC;
  750. }
  751. .contBox{
  752. min-height: 58vh;
  753. }
  754. .gotopImg{
  755. width: 60px;
  756. height: 60px;
  757. }
  758. .gotop{
  759. position: fixed;
  760. right:5vh ;
  761. bottom: 60px;
  762. cursor: pointer;
  763. }
  764. .topName{
  765. text-align: center;
  766. font-size: 22px;
  767. font-weight: 500;
  768. color: #3C3C3C;
  769. line-height: 33px;
  770. padding-top: 20px;
  771. font-family: PingFangSC-Medium, PingFang SC;
  772. padding-bottom: 10px;
  773. }
  774. .comment{
  775. text-align: center;
  776. font-size: 14px;
  777. font-weight: 400;
  778. color: #999999;
  779. line-height: 20px;
  780. width: 500px;
  781. margin: 0 auto;
  782. }
  783. .main{
  784. width: 1200px;
  785. margin: 0 auto;
  786. /* padding-top: 30px; */
  787. }
  788. .dynamicColLeft{
  789. display: flex;
  790. }
  791. .dynamicColLIne{
  792. padding-right: 44px;
  793. font-size: 16px;
  794. color: #3C3C3C;
  795. cursor: pointer;
  796. line-height: 32px;
  797. }
  798. .qhImg{
  799. width: 28px;
  800. height: 28px;
  801. margin-left: 8px;
  802. cursor: pointer;
  803. }
  804. .dynamicCol{
  805. display: flex;
  806. justify-content: space-between;
  807. background: #FFFFFF;
  808. padding:15px 20px;
  809. border-radius: 8px;
  810. }
  811. .activeTab{
  812. color: #FF4F00;
  813. }
  814. .mainwzImg{
  815. width: 284px;
  816. height: 160px;
  817. }
  818. .mainwzImgBox{
  819. border-top-left-radius: 6px;
  820. border-top-right-radius: 6px;
  821. overflow: hidden;
  822. height: 160px;
  823. border: 1px solid #eeeeee;
  824. }
  825. .contf{
  826. display: flex;
  827. flex-wrap: wrap;
  828. }
  829. .mainwzline{
  830. width: 284px;
  831. height: 244px;
  832. background: #FFFFFF;
  833. margin-right: 21px;
  834. margin-top: 20px;
  835. cursor: pointer;
  836. border-radius: 6px;
  837. }
  838. .wztime{
  839. font-size: 14px;
  840. color: #999999;
  841. padding-left: 14px;
  842. padding-top: 10px;
  843. }
  844. .mainwzline:hover{
  845. box-shadow: 0px 0px 16px 0px rgba(153, 153, 153, 0.2);
  846. }
  847. .mainwzlineR2{
  848. margin-right: 0px;
  849. }
  850. .wztitle{
  851. width: 256px;
  852. font-size: 16px;
  853. color: #333333;
  854. line-height: 22px;
  855. height: 22px;
  856. text-overflow: -o-ellipsis-lastline;
  857. overflow: hidden;
  858. text-overflow: ellipsis;
  859. display: -webkit-box;
  860. -webkit-line-clamp: 1;
  861. line-clamp: 1;
  862. -webkit-box-orient: vertical;
  863. padding:0 13px ;
  864. padding-top: 16px;
  865. }
  866. .wzLeftIMg{
  867. width: 200px;
  868. height: 112px;
  869. }
  870. .contL{
  871. background: #FFFFFF;
  872. margin-top: 20px;
  873. border-radius: 8px;
  874. padding: 0 20px;
  875. }
  876. .wxLine{
  877. display: flex;
  878. padding: 20px 0px;
  879. cursor: pointer;
  880. border-bottom: 1px solid #EEEEEE;
  881. }
  882. .wzLineLeft{
  883. border-radius: 6px;
  884. overflow: hidden;
  885. width: 200px;
  886. height: 112px;
  887. }
  888. .wzLineRight{
  889. padding-left: 16px;
  890. width: 788px;
  891. }
  892. .wzTitle2{
  893. font-size: 16px;
  894. color: #3C3C3C;
  895. width: 948px;
  896. height: 20px;
  897. line-height: 20px;
  898. text-overflow: -o-ellipsis-lastline;
  899. overflow: hidden;
  900. text-overflow: ellipsis;
  901. display: -webkit-box;
  902. -webkit-line-clamp: 1;
  903. line-clamp: 1;
  904. -webkit-box-orient: vertical;
  905. }
  906. .wzComment{
  907. font-size: 14px;
  908. font-family: PingFangSC-Regular, PingFang SC;
  909. font-weight: 400;
  910. color: #999999;
  911. line-height: 20px;
  912. padding-top: 10px;
  913. width: 948px;
  914. height: 80px;
  915. text-overflow: -o-ellipsis-lastline;
  916. overflow: hidden;
  917. text-overflow: ellipsis;
  918. display: -webkit-box;
  919. -webkit-line-clamp: 4;
  920. line-clamp: 4;
  921. -webkit-box-orient: vertical;
  922. }
  923. .pageView{
  924. margin-top: 20px;
  925. cursor: pointer;
  926. padding-bottom: 20px;
  927. }
  928. .nodataImg{
  929. width: 300px;
  930. height: 203px;
  931. }
  932. .nodata{
  933. text-align: center;
  934. padding-top: 100px;
  935. }
  936. .nodataTitle{
  937. font-size: 16px;
  938. padding-top: 16px;
  939. font-weight: 400;
  940. color: #999999;
  941. }
  942. .listtopC{
  943. padding-bottom: 10px;
  944. }
  945. </style>