123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- @charset "UTF-8";
- /**
- * uni-app内置的常用样式变量
- */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- page {
- background-color: #f5f5f5;
- }
- .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;
- }
|