12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @charset "UTF-8";
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- page {
- background-color: #f5f5f5;
- }
- .line {
- width: 2rpx;
- height: 24rpx;
- background: #CDCDCD;
- margin: 0 24rpx;
- }
- .code {
- font-size: 30rpx;
- color: #4775EA;
- }
- .code.act {
- color: #666666;
- }
- .pwd-retrieve-container {
- padding: 10rpx 36rpx;
- }
- .pwd .rbtn {
- width: 100%;
- height: 98rpx;
- background: #1f57e6;
- border-radius: 49rpx;
- text-align: center;
- line-height: 98rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #FFFEFE;
- margin-top: 68rpx;
- }
- .pwd .uni-forms-item {
- height: 126rpx;
- background: #FFFFFF;
- border-radius: 18rpx;
- margin-top: 30rpx;
- padding: 0 40rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- margin-bottom: 0;
- }
- .pwd .uni-forms-item__label {
- font-size: 32rpx;
- font-weight: 500;
- color: #161616;
- flex: 0 0 auto;
- width: auto !important;
- }
- .pwd .uni-easyinput {
- flex: 1;
- text-align: right;
- font-size: 32rpx;
- color: #161616;
- }
- .pwd .uni-forms-item__content {
- display: flex;
- align-items: center;
- flex-direction: row;
- }
- .pwd .uni-easyinput__placeholder-class {
- font-size: 30rpx;
- }
- .pwd .uni-easyinput__content-input {
- font-size: 30rpx;
- }
- .pwd .uni-forms-item__error {
- margin-top: 20rpx;
- left: auto;
- right: 0;
- }
|