pages.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /***** 这里存放通用页面样式 *****/
  2. // 首页
  3. .dljt-index-page{
  4. }
  5. // 专业建设
  6. .zhuanye-page{
  7. .uni-scroll-view-content{height: calc(100vh - 640rpx);}
  8. .zhuanye-list-box{
  9. display: flex;justify-content: space-between;margin: 24rpx 10rpx 36rpx;
  10. .zhuanye-item{
  11. width: 19%;display: flex;flex-direction: column;align-items: center;
  12. border: 1rpx solid #ccc;padding: 24rpx 0;
  13. icon{width: 80rpx;height: 73rpx;display: inline-block;@include dljt-no-repeat-cover;}
  14. text{color: #000;font-size: 26rpx;margin-top: 16rpx}
  15. }
  16. .zhuanye-item.active{
  17. background-color: #0f50a4;position: relative;
  18. text{color: #fff;}
  19. }
  20. .zhuanye-item.active::after{
  21. content: '';width: 0;height: 0;position: absolute;bottom: -20rpx;left: 50%;transform: translateX(-50%);
  22. border-left: 16rpx solid transparent;
  23. border-right: 16rpx solid transparent;
  24. border-top: 16rpx solid #0f50a4;
  25. }
  26. .zhuanye-item:nth-child(1) icon{background-image: url("@/static/images/jyjx/jyjx-icon1.png");}
  27. .zhuanye-item:nth-child(1).active icon{background-image: url("@/static/images/jyjx/jyjx-icon1-a.png");}
  28. .zhuanye-item:nth-child(2) icon{background-image: url("@/static/images/jyjx/jyjx-icon2.png");}
  29. .zhuanye-item:nth-child(2).active icon{background-image: url("@/static/images/jyjx/jyjx-icon2-a.png");}
  30. .zhuanye-item:nth-child(3) icon{background-image: url("@/static/images/jyjx/jyjx-icon3.png");}
  31. .zhuanye-item:nth-child(3).active icon{background-image: url("@/static/images/jyjx/jyjx-icon3-a.png");}
  32. .zhuanye-item:nth-child(4) icon{background-image: url("@/static/images/jyjx/jyjx-icon4.png");}
  33. .zhuanye-item:nth-child(4).active icon{background-image: url("@/static/images/jyjx/jyjx-icon4-a.png");}
  34. .zhuanye-item:nth-child(5) icon{background-image: url("@/static/images/jyjx/jyjx-icon5.png");}
  35. .zhuanye-item:nth-child(5).active icon{background-image: url("@/static/images/jyjx/jyjx-icon5-a.png");}
  36. }
  37. }