uni-app 微信小程序 弹出输入框 在安卓手机上点击不了

// userFeedbackHidden
//原因是文本域高度的问题
// 这是有问题的
	 .popup_overlay {
	 	position: fixed;
	 	top: 0%;
	 	left: 0%;
	 	width: 100%;
	 	height: 100%;
	 	background-color: black;
	 	z-index: 1001;
	 	-moz-opacity: 0.8;
	 	opacity: .80;
	 	filter: alpha(opacity=88);
	 }

	 .popup_content {
	 	position: fixed;
	 	top: 50%;
	 	left: 50%;
	 	width: 520upx;
	 	height: 500upx;
	 	margin-left: -270upx;
	 	margin-top: -270upx;
	 	border: 10px solid white;
	 	background-color: white;
	 	z-index: 1002;
	 	overflow: auto;
	 	border-radius: 20upx;
	 }

	 .popup_title {
	 	padding-top: 20upx;
	 	width: 480upx;
	 	text-align: center;
	 	font-size: 32upx;
	 }

	 .popup_textarea_item {
	 	padding-top: 5upx;
	 	height: 240upx;
	 	width: 440upx;
	 	background-color: #F1F1F1;
	 	margin-top: 30upx;
	 	margin-left: 20upx;
	 }

	 .popup_textarea {
	 	width: 410upx;
	 	font-size: 26upx;
	 	margin-left: 20upx;
	 }

	 .popup_button {
	 	color: white;
	 	height: 40px;
	 	line-height: 40px;
	 	font-size: 14px;
	 	margin-top: -30px;
	 	background-color: #19BE6B;
	 	border-radius: 20upx;
	 }

// 这是修改后的
.popup_overlay {
	 
			position: fixed;
			top: 0%;
			left: 0%;
			width: 100%;
			height: 100%;
			background-color: black;
			z-index: 1001;
			-moz-opacity: 0.8;
			opacity: .80;
			filter: alpha(opacity=88);
		}
	 
		.popup_content {
			position: fixed;
			top: 50%;
			left: 50%;
			width: 520upx;
			height: 550upx;
			margin-left: -270upx;
			margin-top: -270upx;
			border: 10px solid white;
			background-color: white;
			z-index: 1002;
			overflow: auto;
			border-radius: 20upx;
		}
	 
		.popup_title {
			padding-top: 20upx;
			width: 480upx;
			text-align: center;
			font-size: 32upx;
		}
	 
		.popup_textarea_item {
			padding-top: 5upx;
			height: 240upx;
			width: 440upx;
			background-color: #F1F1F1;
			margin-top: 30upx;
			margin-left: 20upx;
		}
	 
		.popup_textarea {
			width: 410upx;
			font-size: 26upx;
			margin-left: 20upx;
		}
	 
		.popup_button {
			color: white;
			background-color: #19BE6B;
			border-radius: 20upx;
		}

你可能感兴趣的:(知识在于积累,微信小程序,uni-app,android)