index.blade.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @extends('mobile.module.layouts.health')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('mobile/css/index.css') }}" rel="stylesheet">
  6. <style>
  7. .swiper-container,.swiper-container img{
  8. width: 100%;
  9. }
  10. .nav-list {display:grid;grid-template-columns: 1fr 1fr;}
  11. .nav-list .nav {width:85%;margin:10px auto; padding:20px 0;text-align: center;border-radius: 10px;color:white;text-decoration: none;}
  12. .nav.purple {background: linear-gradient(135deg, #c850c0, #4158d0);}
  13. .nav.blue {background: linear-gradient(135deg, #a1c4fd, #c2e9fb);}
  14. .nav.red {background: linear-gradient(135deg, #ff9a9e, #fad0c4);}
  15. .nav.yellow {background: linear-gradient(135deg, #f6d365, #fda085);}
  16. .nav.green {background: linear-gradient(135deg, #a8e063, #56ab2f);}
  17. .nav.black {background: linear-gradient(135deg, #292a3a, #536976);}
  18. .module-title .module-title-nav {width: 100%;}
  19. .cate_img {width:90%;margin:10px auto;background: white;border-radius: 10px;overflow: hidden;}
  20. .cate_img img {width:100%;}
  21. </style>
  22. <link href="{{ theme_asset('app/css/swiper.min.css') }}" rel="stylesheet">
  23. @endpush
  24. @push('js')
  25. @endpush
  26. @section('content')
  27. {{-- 头部--}}
  28. <div class="headernavfixed">
  29. <div class="headernav font18">
  30. <div class="title">
  31. <div class="n-tit-box">
  32. 招聘分类
  33. </div>
  34. <div class="return js-back for-event" data-href="{{route('mobile.health.index')}}"></div>
  35. </div>
  36. </div>
  37. </div>
  38. {{-- 导航按钮--}}
  39. <div class="nav-list">
  40. <a href="{{route('mobile.health.recruit.list')}}?health_type=1" class="nav purple">高层次人才</a>
  41. <a href="{{route('mobile.health.recruit.list')}}?health_type=2" class="nav blue">紧缺急需</a>
  42. <a href="{{route('mobile.health.recruit.list')}}?health_type=3" class="nav red">统招</a>
  43. <a href="{{route('mobile.health.recruit.list')}}?health_type=4" class="nav yellow">编外</a>
  44. </div>
  45. <div class="cate_img">
  46. <a href="{{route('mobile.health.recruit.will')}}">
  47. <img src="/themes/default/assets/mobile/images/health/recruit_cate.png" alt="">
  48. </a>
  49. </div>
  50. @endsection
  51. @section('script')
  52. @endsection