| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/login/login.wxss */
- .top{
- text-align: center;
- margin-top: 120rpx;
- margin-bottom: 100rpx;
- }
- .top image{
- width: 220rpx;
- height: 220rpx;
- }
- .tab{
- /* width: 80%; */
- margin: 0 auto;
- display: flex;
- justify-content: space-evenly;
- }
- .input{
- width: 690rpx;
- height: 90rpx;
- margin: 0 auto;
- border-bottom: 1rpx solid #e5e5e5;
- }
- .input input{
- width: 100%;
- height: 100%;
- /* text-align: center; */
- padding-left: 30rpx;
- font-size: 30rpx;
- }
- .plac{
- /* text-align: center; */
- line-height: 90rpx;
- font-size: 30rpx;
- }
- .submit{
- margin-top: 80rpx;
- width: 690rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- border-radius: 20rpx;
- background: #01652f;
- font-size:34rpx;
- color: #fff;
- }
- .picker{
- width: 690rpx;
- margin: 0 auto;
-
- }
- .weui-input{
- width: 100%;
- height: 100%;
- line-height: 90rpx;
- /* margin-left: 30rpx; */
- border-bottom: 1rpx solid #e5e5e5;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .weui-input span{
- margin-left: 30rpx;
- }
- .weui-input image{
- width: 26rpx;
- height: 14rpx;
- margin-right: 30rpx;
- }
|