1234567891011121314151617181920212223242526 |
- .inputContent {
- width: 95%;
- margin: 0 auto;
- height: 80rpx;
- background-color: #F4F4F4;
- border-radius: 5%;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-radius: 60rpx;
- }
- .inputContent input{
- font-size: 28rpx;
- }
- .inputContent button {
- width: 60px;
- height: 60rpx;
- border-radius: 60rpx;
- font-size: 30rpx;
- color: white;
- line-height: 60rpx;
- background-color: orange;
- margin-left: 0 !important;
- margin-right: -30rpx !important;
- }
|