index.wxss 764 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**index.wxss**/
  2. .container {
  3. width: 100%;
  4. height: 100%;
  5. position: relative;
  6. }
  7. .con{
  8. width: 80%;
  9. position: absolute;
  10. top: 45%;
  11. left: 50%;
  12. transform: translate(-50%,-50%);
  13. }
  14. .nav {
  15. width: 100%;
  16. height: 82rpx;
  17. display: flex;
  18. justify-content: center;
  19. background: #FFFFFF;
  20. overflow: hidden;
  21. box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.65);
  22. margin-top: 10%;
  23. border-radius: 10rpx 10rpx 0rpx 0rpx;
  24. }
  25. .line{
  26. width: 1rpx;
  27. height: 100%;
  28. background: #1C2E4C;
  29. opacity: 0.4;
  30. }
  31. .nav .cur {
  32. background: linear-gradient(to top, #1C2E4C 0%, #38A2D7 100%);
  33. color: #FFFFFF;
  34. }
  35. .list {
  36. box-sizing: border-box;
  37. width: 100%;
  38. font-size: 28rpx;
  39. font-weight: 400;
  40. line-height: 82rpx;
  41. text-align: center;
  42. color: #1C2E4C;
  43. }