12345678910111213141516171819202122232425262728293031323334353637383940 |
- .nav {
- display: flex;
- justify-content: space-around;
- padding-top: 40rpx;
- }
- .bar_view {
- font-size: 30rpx;
- line-height: 60rpx;
- color: #B7BECF;
- text-align: center;
- position: relative;
- }
- .bar_view_focus {
- text-align: center;
- font-size: 30rpx;
- line-height: 60rpx;
- color: #191D3A;
- border-bottom: 6rpx solid #FF5039;
- position: relative;
- }
- .t_show {
- border-radius: 20rpx;
- overflow: hidden;
- padding-bottom: 80rpx;
- }
- page {
- background-color: #f3f3f3;
- }
- .my_bg {
- overflow: hidden;
- }
- .each_data{
- padding-top: 6rpx;
- background-color: #ffffff;
- width: 96%;
- margin-left: 2%;
- box-shadow: 0px 8rpx 8rpx 0px #e3e3e3;
- border-radius: 10px;
- }
|