| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* pages/login/login.wxss */
- page {
- background: #fff;
- }
- .container {
- padding: 30rpx;
- }
- /* 标题 */
- .title {
- font-size: 42rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #31364c;
- margin-bottom: 45rpx;
- }
- /* 单元格输入框 */
- .cell {
- height: 116rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #eaebee;
- }
- .cell .input {
- flex: 1;
- height: 100rpx;
- display: flex;
- align-items: center;
- margin-right: 15rpx;
- }
- .code {
- font-size: 30rpx;
- color: #3243bd;
- }
- .color {
- color: #888a8e;
- }
- .agreement {
- color: #888a8e;
- font-size: 24rpx;
- margin-top: 30rpx;
- display: flex;
- flex-direction: column;
- }
- .agreement-link {
- color: #3243bd;
- }
|