123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- html,
- body {
- background: #FAFAFA;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- .tips {
- background: #fdf8ec;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- padding: 22rpx 32rpx;
- }
- .tips > view {
- display: flex;
- }
- .tips > view > text:first-child {
- background: #ff801a;
- display: block;
- width: 4px;
- height: 4px;
- border-radius: 50%;
- margin: 14rpx 16rpx 0 0;
- }
- .tips > view > text:last-child {
- font-size: 24rpx;
- display: block;
- width: 660rpx;
- color: #ff801a;
- line-height: 18px;
- text-align: justify;
- }
- .tabbar {
- background: #ffffff;
- }
- .tabbar > view {
- height: 100rpx;
- font-size: 32rpx;
- color: #666666;
- display: flex;
- justify-content: space-between;
- position: relative;
- }
- .tabbar > view >view{
- width: 360rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- }
- .tabbar > view > .selected {
- color: #3296FB;
- }
- .tabbar > view > .blueline {
- position: absolute;
- left: 80rpx;
- bottom: 0;
- background: #3296FB;
- border-radius: 2rpx;
- width: 200rpx;
- height: 4rpx;
- }
- .tabbar .choosed{
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- color: #3296FB;
- }
- .tabbar .choosed >text:first-child{
- font-size: 24rpx;
- line-height: 34rpx;
- }
- .tabbar .choosed >text:last-child{
- font-size: 36rpx;
- line-height: 44rpx;
- }
- .yearItem .year {
- height: 108rpx;
- line-height: 108rpx;
- text-align: center;
- }
- .yearItem .monthBox {
- width: 750rpx;
- height: 414rpx;
- background: #ffffff;
- box-sizing: border-box;
- padding: 64rpx 64rpx 64rpx 0;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-content: space-between;
- font-size: 38rpx;
- }
- .yearItem .monthBox >view{
- width: 136rpx;
- height: 50rpx;
- text-align: right;
- position: relative;
- }
- .yearItem .monthBox >view>text{
- position: relative;
- z-index: 10
- }
- .yearItem .selectedMonth>text{
- color: #ffffff;
- }
- .yearItem .selectedMonth>.bluebg{
- width: 76rpx;
- height: 76rpx;
- background: #3296FB;
- border-radius: 50%;
- position: absolute;
- right: -6rpx;
- top: -16rpx;
- z-index: 1;
- }
- .yearItem .selectedMonth>.bluebg>text{
- position: absolute;
- left: 16rpx;
- bottom:-36rpx;
- font-size: 24rpx;
- color: #3296FB;
- background: #ffffff;
- }
- .yearItem .disable{
- color: #CCCCCC;
- }
|