pages.scss 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /***** 这里存放通用页面样式 *****/
  2. // iframe{z-index: 3;}
  3. // 首页
  4. .dljt-index-page{
  5. width: 100%;height: auto;position: relative;padding:120rpx 0 0;
  6. .index-swiper-box{width: 100%;margin-bottom: 52rpx;}
  7. uni-image{width: 100%;height: 340rpx;}
  8. .index-content-box{width: 92%;margin: 0 auto 50rpx;}
  9. .index-background-box{background-color: #f5f5f5;padding:36rpx 0 10rpx;}
  10. .index-more-btn{
  11. text-align: right;font-size: 28rpx;cursor: pointer;color: #333;
  12. icon{width: 32rpx;height: 32rpx;@include dljt-no-repeat-cover;display: inline-block;vertical-align: middle;
  13. background-image: url("@/static/images/index/more-black-icon1.png");margin-left: 4rpx;}
  14. text{display: inline-block;vertical-align: middle;margin-left: 8rpx;}
  15. }
  16. .more-btn-top{margin-top: 24rpx;}
  17. .tab-item{
  18. width: 100%;color: #1460b6;text-align: center;margin-bottom: 36rpx;
  19. padding: 12rpx 0;font-size: 32rpx;cursor: pointer;font-weight: bold;
  20. icon{width: 64rpx;height: 64rpx;@include dljt-no-repeat-cover;display: inline-block;
  21. vertical-align: middle;margin-right: 16rpx;position: relative;}
  22. .tzgg-icon{background-image: url("@/static/images/index/tz-icon.png");}
  23. .xwgk-icon{background-image: url("@/static/images/index/xw-icon.png");}
  24. .zsjy-icon{background-image: url("@/static/images/index/zsjy-icon.png");}
  25. }
  26. .index-list-item{
  27. color: #fff;padding:32rpx 6rpx 24rpx;border-bottom: 1rpx dashed #666;cursor: pointer;line-height: 1;color: #333;
  28. .list-createTime{font-size: 24rpx;margin-bottom: 20rpx;}
  29. .list-title{font-size: 28rpx;@include single-line-ellipsis;height: 32rpx;}
  30. }
  31. .zsjy-box{
  32. .zsjy-tab-item{margin: 56rpx 0 10rpx;}
  33. .wnlqfs-box,.xqhz-box{
  34. width: 700rpx;height: 409rpx;@include dljt-no-repeat-cover;
  35. position: relative;
  36. .zsjy-text{position: absolute;bottom:0;left: 0;right: 0;
  37. text-align:center;padding: 12rpx 0;color:#fff}
  38. }
  39. .wnlqfs-box{background-image: url("@/static/images/index/zsjy-img1.png");margin-bottom: 36rpx;}
  40. .xqhz-box{background-image: url("@/static/images/index/zsjy-img2.png");}
  41. }
  42. }
  43. // 专业建设
  44. .zhuanye-page{
  45. .dljt-scroll-view{
  46. height: calc(100vh - 630rpx);
  47. .uni-scroll-view-content{height: calc(100vh - 630rpx);}
  48. }
  49. .zhuanye-list-box{
  50. display: flex;justify-content: space-between;margin: 24rpx 10rpx 36rpx;
  51. .zhuanye-item{
  52. width: 19%;display: flex;flex-direction: column;align-items: center;
  53. border: 1rpx solid #ccc;padding: 24rpx 0;
  54. icon{width: 80rpx;height: 73rpx;display: inline-block;@include dljt-no-repeat-cover;}
  55. text{color: #000;font-size: 26rpx;margin-top: 16rpx}
  56. }
  57. .zhuanye-item.active{
  58. background-color: #0f50a4;position: relative;
  59. text{color: #fff;}
  60. }
  61. .zhuanye-item.active::after{
  62. content: '';width: 0;height: 0;position: absolute;bottom: -20rpx;left: 50%;transform: translateX(-50%);
  63. border-left: 16rpx solid transparent;
  64. border-right: 16rpx solid transparent;
  65. border-top: 16rpx solid #0f50a4;
  66. }
  67. .zhuanye-item:nth-child(1) icon{background-image: url("@/static/images/jyjx/jyjx-icon1.png");}
  68. .zhuanye-item:nth-child(1).active icon{background-image: url("@/static/images/jyjx/jyjx-icon1-a.png");}
  69. .zhuanye-item:nth-child(2) icon{background-image: url("@/static/images/jyjx/jyjx-icon2.png");}
  70. .zhuanye-item:nth-child(2).active icon{background-image: url("@/static/images/jyjx/jyjx-icon2-a.png");}
  71. .zhuanye-item:nth-child(3) icon{background-image: url("@/static/images/jyjx/jyjx-icon3.png");}
  72. .zhuanye-item:nth-child(3).active icon{background-image: url("@/static/images/jyjx/jyjx-icon3-a.png");}
  73. .zhuanye-item:nth-child(4) icon{background-image: url("@/static/images/jyjx/jyjx-icon4.png");}
  74. .zhuanye-item:nth-child(4).active icon{background-image: url("@/static/images/jyjx/jyjx-icon4-a.png");}
  75. .zhuanye-item:nth-child(5) icon{background-image: url("@/static/images/jyjx/jyjx-icon5.png");}
  76. .zhuanye-item:nth-child(5).active icon{background-image: url("@/static/images/jyjx/jyjx-icon5-a.png");}
  77. }
  78. }
  79. // 招生就业
  80. .zsjy-page{
  81. .dljt-form-box{height: calc(100vh - 446rpx);display: block;overflow-y: auto;padding-top: 36rpx;}
  82. .dljt-input-row{
  83. width: 80%;margin:0 auto 36rpx;
  84. .input-title{color: #333;font-size: 30rpx;}
  85. .form-input{
  86. height: 70rpx;line-height: 70rpx;font-size: 26rpx;border: 1rpx solid #ccc;
  87. border-radius: 6rpx;padding: 0 10rpx;margin-top: 10rpx;color: #333;
  88. .uni-input-placeholder{color: #999;}
  89. }
  90. .form-select{
  91. font-size: 26rpx;margin-top: 10rpx;
  92. .uni-select{border: 1rpx solid #ccc;border-radius: 6rpx;padding: 0 10rpx;}
  93. .uni-select__input-box{height: 70rpx;line-height: 1;}
  94. .uni-select__input-placeholder{color: #999;font-size: 26rpx;}
  95. }
  96. .form-btn-box{
  97. background-color: #01356e;color: #fff;font-size: 30rpx;margin: 82rpx 0;
  98. }
  99. }
  100. .require-row{position: relative;}
  101. .require-row::after{content: '*';color: red;
  102. position: absolute;top: 66rpx;right: -30rpx;font-size: 36rpx;}
  103. }
  104. // 联系方式
  105. .lxfs-page{
  106. .lxfs-content-box{height: calc(100vh - 410rpx);box-sizing: border-box;padding: 0 6rpx 12rpx;overflow-y: auto;}
  107. .lxfs-map{
  108. width: 656rpx;height: 518rpx;@include dljt-no-repeat-cover;margin: 0 auto;
  109. background-image: url("@/static/images/xygk/xywh-lxfs-img.png");
  110. }
  111. .lxfs-tel-box{font-size: 28rpx;color: #333;margin: 36rpx 0;box-sizing: border-box;padding-left: 16rpx;}
  112. .lxsf-code-box{
  113. display: flex;justify-content: space-evenly;color: #444;text-align: center;margin: 82rpx 0;
  114. >view{width: 33%;}
  115. uni-image{width:200rpx;height: 200rpx;}
  116. .code-text-box{box-sizing: border-box;padding:0 24rpx;word-break: break-all;}
  117. }
  118. }
  119. // 优秀毕业生
  120. .yxbys-page{
  121. .yxbys-detail-box .yxbys-name{color: #01359b;font-size: 28rpx;font-weight: normal;}
  122. }
  123. // 学院文化
  124. .dljt-xywh-page{
  125. padding: 32rpx 0 5rpx;
  126. .xywh-title{margin: 36rpx 0 32rpx;}
  127. .xywh-name{color: #333;font-size: 40rpx;font-weight: bold;}
  128. .xywh-name::after{content:'';width:70rpx;height:2rpx;background-color: #1361a6;display: block;margin:10rpx 0 24rpx;}
  129. .list-name{color: #000;font-size: 16rpx;@include single-line-ellipsis;}
  130. .xywh-row-content{
  131. width: 560rpx;position: absolute;top: 470rpx;font-size: 25rpx;color: #333;left: 40rpx;
  132. .xywh-title{
  133. font-family: '楷体', serif;color: #00339c;font-size: 42rpx;font-weight: bold;margin:24rpx 0 64rpx;text-align:center;}
  134. .xywh-text{
  135. line-height: 1;margin-bottom: 26rpx;
  136. text{width: 140rpx;display: inline-block;color: #003497;}
  137. }
  138. .left-text-two{margin-left: 76rpx;}
  139. .left-text{margin-left: 130rpx;}
  140. }
  141. .xywh-row{width: 600rpx;height: 1012rpx;@include dljt-no-repeat-cover;margin: 0 auto 56rpx;position: relative;}
  142. .xx-row{
  143. background-image: url("@/static/images/xygk/xywh-row-bj1.png");
  144. }
  145. .xh-row{
  146. height: 1083rpx;background-image: url("@/static/images/xygk/xywh-row-bj2.png");
  147. .xywh-row-content{right: 36rpx;left: unset;}
  148. }
  149. .xg-row{
  150. height: 1379rpx;background-image: url("@/static/images/xygk/xywh-row-bj3.png");
  151. .xywh-row-content{top: 450rpx;}
  152. }
  153. }
  154. // 下载中心
  155. .xzzx-page{
  156. .xzzx-search-box{display: flex;align-items: center;}
  157. .xzzx-search-btn{background-color: #1a6ac3;flex-shrink: 0;font-size: 24rpx;color: #fff;
  158. border-radius: 6rpx;margin-left: 16rpx;padding: 18rpx 24rpx;}
  159. .dljt-scroll-view{
  160. height: calc(100vh - 630rpx);
  161. // .uni-scroll-view-content{height: calc(100vh - 410rpx);}
  162. }
  163. .uni-load-more{border-top: 1rpx solid #ccc;}
  164. }