| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- van-tabbar-item{
- background-color: #B1181B;
- position: relative;
- view{
- font-size: 25rpx;
- text-align: center;
- margin-top: 3rpx;
- }
- .active{
- position: absolute;
- top: -20rpx;
- left: 50%;
- transform:translate(-50%,-50%)
- }
- }
- .model {
- width: 100vw;
- height: 100vh;
- position: fixed;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- top: 0;
- left: 0;
- display: flex;
- background: rgb(0 0 0 / 40%);
- z-index: 9999;
- .signIn{
- width: 500rpx;
- height: 248rpx;
- // background:rgba(#ff9901, 1) ;
- background-image: linear-gradient(#ff9901,#f8e4c6);
- border-radius: 20rpx;
- .title{
- font-size: 50rpx;
- font-weight: bold;
- color: white;
- text-align: center;
- margin: 20rpx;
- }
- .subhead{
- padding: 6rpx;
- text-align: center;
- background: white;
- width: 200rpx;
- margin: auto;
- // padding: 0 10rpx;
- border-radius:50rpx;
- color: #ff9901;
- font-size: 26rpx;
- }
- .days{
- margin-top: 20rpx;
- width: 500rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- .day{
- font-size: 26rpx;
- width: 100rpx;
- height: 100rpx;
- background: #ffd390;
- margin: 8rpx;
- padding: 10rpx;
- border-radius: 25rpx;
- color: #ff9900;
- }
- }
- .qianDao{
- width: 100%;
- height: 76rpx;
- background: #ff9901;
- margin-top: 20rpx;
- border-radius: 25rpx;
- text-align: center;
- line-height: 76rpx;
- color: white;
- }
- }
- }
|