123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* pages/teachAuthentication/teachAuthentication.wxss */
- .teachContainer{
- margin-left: 20rpx;
- }
- .input-item{
- display: flex;
- height: 100rpx;
- line-height: 100rpx;
- margin-right: 20rpx;
- border-bottom: 1rpx solid gray;
- }
- /* 输入框样式 */
- .userInput{
- height: 100rpx;
- line-height: 100rpx;
- padding-left: 20rpx;
- }
- /* 姓名输入样式 */
- .input-name{
- display: flex;
- flex-direction: column;
- margin-right: 20rpx;
- margin-top: 20rpx;
- border-bottom: 1rpx solid gray;
- }
- .input-yourName{
- display: flex;
- height: 100rpx;
- line-height: 100rpx;
- }
- .input-yourName .userInput{
- width: 170rpx;
- margin-right: 30rpx;
- }
- .input-yourName .input-ming{
- height: 100rpx;
- line-height: 100rpx;
- width: 300rpx;
- }
- /* 身份证照片样式 */
- .idCard{
- position: relative;
- }
- .idImag-tit{
- display: block;
- margin-top: 20rpx;
- }
- .explain{
- display: block;
- font-size: 22rpx;
- color: gray;
- margin: 20rpx 0 20rpx 20rpx;
- }
- .idImagUp{
- display: flex;
- }
- .idImag{
- display: flex;
- flex-direction: column;
- width: 45%;
- }
- .idImag .iconfont{
- display: block;
- height: 200rpx;
- border: 1rpx solid red;
- line-height: 200rpx;
- font-size: 100rpx;
- color: gray;
- margin-bottom: 20rpx;
- }
- .idImag text{
- text-align: center;
- }
- /* 毕业证/学生证,头像 */
- .myCard,
- .myHead{
- display: flex;
- margin: 20rpx 0;
- flex-direction: column;
- }
- .myCard .iconfont,
- .myHead .iconfont{
- display: block;
- width: 50%;
- height: 200rpx;
- border: 1rpx solid red;
- line-height: 200rpx;
- font-size: 100rpx;
- color: gray;
- margin-top: 20rpx;
- text-align: center;
- }
- /* 老师属性 */
- .teachAttribute{
- padding-left: 20rpx;
- }
- /* 籍贯输入样式 */
- .input-jiguan{
- display: flex;
- height: 100rpx;
- line-height: 100rpx;
- }
- .input-jiguan input{
- width: 130rpx;
- padding-left: 10rpx;
- }
- /* 提交审核按钮样式 */
- .submit{
- margin-top: 100rpx;
- }
|