| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .top,.temperature{
- padding: 30rpx;
- display: flex;
- justify-content: space-between;
- background: #fff;
- }
- .top > view{
- color: #999;
- text-align: right;
- }
- .ewarning{
- margin: 25rpx 0;
- }
- .temperature{
- align-items: center;
- border-top: 2.5rpx solid #F5F5F5;
- }
- .temperature > view {
- width: 70%;
- display: flex;
- align-items: center;
- }
- .temperature > view >input{
- text-align: center;
- height: 22rpx;
- line-height: 22rpx;
- border: 2.5rpx solid #E5E5E5;
- }
- .temperature > view >view{
- color: #e5e5e5;
- padding: 0 15rpx;
- }
- .foot{
- text-align: center;
- padding: 30rpx;
- position: fixed;
- bottom: 0;
- width: 100%;
- background-color: var(--color);
- color: #fff;
- }
- .submit{
- width: 100%;
- padding: 30rpx 0 !important;
- background-color: #fff;
- margin-bottom: 150rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .submit image{
- width: 40rpx;
- height: 40rpx;
- margin-right: 25rpx;
- }
|