login.scss 1.35 KB
.login_main {
	height: 100vh;
	width: 100%;
	background-image: linear-gradient(180deg, rgba(7, 54, 207, .08), rgba(0, 90, 255, 0) 48%);

	.login_content {
		margin: 0 20rpx;
		// height: 100%;
		// width: 100%;

		.login_log {
			display: flex;
			width: 100%;
			justify-content: center;
			align-items: center;
			padding-top: 250rpx;

			// background-image: linear-gradient(180deg, rgba(225, 233, 252, .05) 12%, #f8f8f9);
			// background: red;
			.welcome-logo {
				width: 300rpx; // 100rpx  
				height: 100rpx;// 60rpx
			}
			.logo_text {
				font-size: 40rpx;
				margin-left: 10rpx;
				height: 60rpx;
				line-height: 60rpx;
			}
		}
		.login_form {
			margin-top: 100rpx;
			padding: 0 50rpx;
			position: relative;
			.passwordMargin {
				margin-top: 200rpx;
			}
			.code-img {
				position: absolute;
				bottom: 120rpx;
				right: 50rpx;
				width: 100rpx;
				height: 80rpx;
				// background: red;
			}
			.login_btn {
				margin-top: 20rpx;
				display: flex;
				justify-content: center;
				align-items: center;
				border-radius:10rpx;
				font-size: 40rpx;
				color: #fff;
				text-align: center;
				line-height: 100rpx;
				font-weight: 400;
			
				background: rgba(23,100,255,.9);
				// background-image: linear-gradient(90deg, rgba(23, 100, 255, .5), rgba(23, 100, 255, .5));
				box-shadow: 0 0 1.06667vw 0 rgba(23, 100, 255, .5);
			}
		}
	}


}