1234567891011121314151617181920212223242526 |
- .content {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 250rpx;
- }
- .box {
- font-size: 12rpx;
- color: #063D8C;
- display: flex;
- align-items: center;
- }
- .input {
- width: 212rpx;
- height: 28rpx;
- background: #FFFFFF;
- border-radius: 5rpx;
- border: 1px solid #B8EFF3;
- margin-left: 10rpx;
- font-size: 11rpx;
- color: #00A2FF;
- padding-left: 8rpx;
- box-sizing: border-box;
- }
|