index.wxss 777 B

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