123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- page {
- height: 100%;
- background: fff;
- color: #282828;
- }
- .container {
- flex: 1;
- flex-direction: column;
- box-sizing: border-box;
- padding: 0;
- align-items: initial;
- justify-content: first baseline;
- }
- .container-fill {
- height: 100%;
- overflow: hidden;
- }
- .scroll-fullpage {
- height: 100%;
- }
- .section {
- height: 100%;
- }
- .active .cont {
- -webkit-animation-duration: 1.8s;
- animation-duration: 1.8s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-name: fadeInUp;
- animation-name: fadeInUp;
- }
- .cont {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- position: relative;
- }
- .cont .cont-body {
- width: 75%;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .tabbar {
- width: 750rpx;
- border: 1px solid #999;
- height: 100rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- display: flex;
- font-size: 28rpx;
- }
- .tab1 {
- height: 100rpx;
- width: 250rpx;
- text-align: center;
- color: #999999;
- }
- #red{
- background: none;
- color: #999999;
- font-weight: normal;
- width:250rpx;
- height: 100rpx;
- /* border: 1px solid red; */
- line-height:125rpx;
- font-size: 28rpx;
- position: absolute;
- bottom: 0;
- }
|