123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /* pages/studentLogin/studentLogin.wxss */
- .wrapper{
- position:relative;
- z-index: 90;
- padding-bottom: 40rpx;
- }
- /* LOGO样式 */
- .left-top-sign{
- font-size: 120rpx;
- color: #f8f8f8;
- position:relative;
- left: -16rpx;
- }
- /* 欢迎字体样式 */
- .welcome{
- position:relative;
- left: 50rpx;
- top: -90rpx;
- font-size: 46rpx;
- color: #555;
- }
- .input-content{
- padding: 0 60rpx;
- }
- .input-item{
- display:flex;
- flex-direction: column;
- align-items:flex-start;
- justify-content: center;
- padding: 0 30rpx;
- background:#f8f6fc;
- height: 120rpx;
- border-radius: 4px;
- margin-bottom: 50rpx;
- }
- .input-item:last-child{
- margin-bottom: 0;
- }
- /* 账号、密码字体样式 */
- .input-item .tit{
- height: 50rpx;
- line-height: 56rpx;
- font-size: 30rpx;
- color: #606266;
- }
- /* 输入框样式 */
- .input-item input{
- height: 60rpx;
- font-size: 30rpx;
- color: #303133;
- width: 100%;
- }
- .confirm-btn{
- width: 630rpx!important;
- height: 76rpx;
- line-height: 76rpx;
- border-radius: 50rpx;
- margin-top: 70rpx;
- background: #d43c33;
- color: #fff;
- font-size: 32rpx;
- padding: 0;
- }
- .confirm-btn2:after{
- border-radius: 100px;
- }
- /* 忘记密码样式 */
- .forget-section{
- font-size: 28rpx;
- color: #4399fc;
- text-align: center;
- margin-top: 40rpx;
- }
- /* 下方文字样式 */
- .register-section{
- position:absolute;
- left: 0;
- bottom: 50rpx;
- width: 100%;
- font-size: 28rpx;
- color: #606266;
- text-align: center;
- }
- .register-section text{
- color: #4399fc;
- margin-left: 10rpx;
- }
|