index.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. page {
  2. height: 100%;
  3. background: fff;
  4. color: #282828;
  5. }
  6. .container {
  7. flex: 1;
  8. flex-direction: column;
  9. box-sizing: border-box;
  10. padding: 0;
  11. align-items: initial;
  12. justify-content: first baseline;
  13. }
  14. .container-fill {
  15. height: 100%;
  16. overflow: hidden;
  17. }
  18. .scroll-fullpage {
  19. height: 100%;
  20. }
  21. .section {
  22. height: 100%;
  23. }
  24. .active .cont {
  25. -webkit-animation-duration: 1.8s;
  26. animation-duration: 1.8s;
  27. -webkit-animation-fill-mode: both;
  28. animation-fill-mode: both;
  29. -webkit-animation-name: fadeInUp;
  30. animation-name: fadeInUp;
  31. }
  32. .cont {
  33. width: 100%;
  34. height: 100%;
  35. margin: 0 auto;
  36. position: relative;
  37. }
  38. .cont .cont-body {
  39. width: 75%;
  40. position: absolute;
  41. left: 50%;
  42. top: 50%;
  43. transform: translate(-50%, -50%);
  44. }
  45. .tabbar {
  46. width: 750rpx;
  47. border: 1px solid #999;
  48. height: 100rpx;
  49. position: fixed;
  50. bottom: 0;
  51. left: 0;
  52. display: flex;
  53. font-size: 28rpx;
  54. }
  55. .tab1 {
  56. height: 100rpx;
  57. width: 250rpx;
  58. text-align: center;
  59. color: #999999;
  60. }
  61. #red{
  62. background: none;
  63. color: #999999;
  64. font-weight: normal;
  65. width:250rpx;
  66. height: 100rpx;
  67. /* border: 1px solid red; */
  68. line-height:125rpx;
  69. font-size: 28rpx;
  70. position: absolute;
  71. bottom: 0;
  72. }