1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/new_teacher/new_teacher.wxss */
- .list {
- background: #fff;
- /* border-bottom: solid 1rpx #f4f4f4; */
- padding:0 30rpx;
- }
- .li {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 35rpx 0;
- /* border-bottom: solid 1rpx #f4f4f4; */
- }
- .li-label {
- font-size: 30rpx;
- color: #393939;
- }
- .li-content {
- text-align: right;
- }
- .li-contents {
- text-align: right;
- width: 50rpx;
- height: 38rpx;
- }
- .input-placeholder,
- .li-input {
- /* background: #bfbfbf; */
- font-size: 28rpx;
- color: #7e7e7e;
- }
- .li-label-star{
- color: #FF6465
- }
- .ul{
- padding: 25rpx 0;
- }
- .li-tips{
- background:rgba(219,219,219,1);
- border-radius:10rpx;
- padding: 15rpx 40rpx;
- font-size: 30rpx;
- color: #fff;
- text-align: center;
- display: inline-block;
- margin: 20rpx 10rpx 20rpx 0;
- }
- .li-tips-active{
- background: #FF6465 !important;
- }
|