12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- button::after{
- border: none;
- }
- button{
- background-color: #fff;
- padding: 0;
- border-radius: 0;
- text-align: inherit;
- }
- .search-view{
- display: flex;
- width: 550rpx;
- height: 70rpx;
- background: #F6F7F8;
- border-radius: 35px;
- }
- .search-view>image{
- height: 30rpx;
- width: 30rpx;
- margin: 20rpx;
- }
- .search-view>input{
- margin: 14rpx 0;
- width: 450rpx;
- height: 42rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- }
- .line{
- width: 100%;
- height: 1rpx;
- background-color: #eeeeee;
- }
- .question{
- width: 750rpx;
- height: 100rpx;
- display: flex;
- }
- .question>text{
- width: 640rpx;
- font-family: PingFangSC-Regular;
- font-size: 32rpx;
- color: #333333;
- margin: auto 8rpx auto 30rpx;
- line-height: 100rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .question>image{
- width: 16rpx;
- /* height: 26rpx; */
- margin: auto 30rpx auto 26rpx;
- }
|