123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- @import '../../../../styles/base.less';
- page{
- font-size: 30rpx;
- color: #333;
- line-height: 1.5;
- background: white;
- height: 100%;
- }
-
- .container {
- background-color: #fff;
- align-items: stretch;
- overflow-x: hidden;
- width: 100%;
- padding: 100rpx 40rpx 0;
- }
- .input_wrapper {
- display: flex;
- align-items: center;
- margin: 20rpx 0;
- margin-bottom: 40rpx;
- }
- .code {
- display: flex;
- align-items: center;
- margin: 20rpx 0;
- margin-bottom: 40rpx;
- justify-content: space-between;
- }
- .input_wrapper text {
- width: 150rpx;
- text-align: right;
- }
- .input_wrapper input {
- background-color: #f2f2f2;
- /* border: 1rpx #f1f1f1 solid; */
- }
- .code input {
- background-color: #f2f2f2;
- width: 60%;
- /* border: 1rpx #f1f1f1 solid; */
- }
-
- .input_wrapper input {
- background-color: #f2f2f2;
- /* border: 1rpx #f1f1f1 solid; */
- }
- .code .get_code {
- background-color: #009de1;
- color: #fff;
- height: 76rpx;
- border-radius: 10rpx;
- width: 30%;
- text-align: center;
- line-height: 80rpx;
-
- }
-
- .van-count-down {
- color: #fff!important;
- line-height: 80rpx!important;
- }
- .input_wrapper input ::placeholder {
- font-size: 36rpx;
- font-family: Arial, Helvetica, sans-serif;
- font-weight: 600;
- width: 150rpx;
- text-align: right;
- }
- input {
- width: 100%;
- height: 60rpx;
- line-height: 60rpx;
- padding: 10rpx;
- border: 2px solid #fafafa;
- border-radius: 10rpx;
- }
- .desc{
- width: 100%;
- height: 80rpx;
- margin-top: 40rpx;
- font-size: 28rpx;
- color: #999;
- text-align: center;
- }
-
- .btn-login{
- margin: 40rpx auto;
- display: flex;
- justify-content: center;
- height: 80rpx;
- width: 100%;
- background: #009de1;
- border-radius: 20rpx;
- color: #fff;
- align-items: center;
- cursor: pointer;
- font-size: 40rpx;
- /* font-weight: 700; */
- }
-
-
- .bottom{
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- /* position: absolute;
- bottom:40rpx;
- border-right: 4rpx solid red; */
- }
|