123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- page {
- padding: 400rpx 0 0;
- background: #f4f4f4;
- }
- .header_view{
- position: fixed;
- top: 0;
- left: 0;
- z-index: 2;
- width: 100vw;
- background: #fff;
- padding: 0 30rpx;
- }
- .header_view_top>view{
- margin: 24rpx 0;
- width: 210rpx;
- height: 112rpx;
- border-radius: 8rpx;
- background: #F8F8F8;
- }
- .header_view_top>view>view:nth-child(1){
- font-size: 40rpx;
- color: #333;
- margin-bottom: 2rpx;
- }
- .header_view_top>view>view:nth-child(2){
- font-size: 24rpx;
- color: #999;
- }
- .input_select_left{
- flex: 1;
- height: 80rpx;
- border-radius: 8rpx;
- background: #f6f6f6;
- }
- .input_select_left>view:nth-child(1){
- margin: 0 30rpx;
- justify-content: center;
- font-size: 24rpx;
- color: #666;
- }
- .input_select_left>view:nth-child(2){
- flex: 1;
- height: 80rpx;
- font-size: 24rpx;
- color: #333;
- }
- .select_inp_input{
- width: 100%;
- height: 100%;
- }
- .input_select_right{
- margin-left: 30rpx;
- width: 136rpx;
- height: 68rpx;
- border-radius: 8rpx;
- background: #52A1FF;
- font-size: 28rpx;
- color: #fff;
- }
- .input_select_view{
- margin: 24rpx 0;
- }
- .select_inp_icon{
- width: 20rpx;
- height: 20rpx;
- display: inline-block;
- margin-left: 6rpx;
- }
- .header_bottom{
- font-size: 28rpx;
- color: #333;
- height: 88rpx;
- }
- .header_bottom>view{
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- border-right: 1rpx solid #ededed;
- }
- .header_bottom>view:nth-last-child(1){
- border-right: 0 solid #ededed;
- }
- .header_bottom_icon{
- display: inline-block;
- width: 24rpx;
- height: 24rpx;
- margin-left: 6rpx;
- }
- .item_view{
- margin: 0 30rpx 24rpx;
- padding: 30rpx;
- background: #fff;
- border-radius: 8rpx;
- }
- .item_view_tit>view:nth-child(1){
- font-size: 28rpx;
- font-weight: bold;
- color: #333;
- }
- .item_view_tit>view:nth-child(2){
- font-size: 24rpx;
- color: #FF4D19;
- }
- .item_cont_left{
- flex: 1;
- font-size: 24rpx;
- color: #999;
- }
- .item_cont_left>view{
- margin-top: 20rpx;
- }
- .item_cont_left>view:nth-child(1)>view:nth-child(1){
- margin-right: 60rpx;
- }
- .color_view{
- width: 28rpx;
- height: 28rpx;
- margin-right: 16rpx;
- }
- .item_icon{
- width: 24rpx;
- height: 24rpx;
- display: inline-block;
- margin-left: 20rpx;
- }
- .font_maxw{
- max-width: 180rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- }
|