123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /* pages/stuNeed/stuNeed.wxss */
- .stuNeedArea{
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- .stuNeedArea:first-child{
- margin-top: 20rpx;
- }
- .stuInfo{
- width: 100%;
- display: flex;
- align-items: center;
- height: 60rpx;
- line-height: 60rpx;
- padding: 0 0 20rpx 20rpx;
- margin: 10rpx 0;
- border-bottom: 1rpx solid gray;
- }
- .stuInfo-title{
- width: 26%;
- }
- .stuInput{
- width: 66%;
- padding: 10rpx 0 10rpx 20rpx;
- border: 1rpx solid rgba(243,243,243,.3);
- background-color: rgba(243,243,243,.3);
- border-radius: 30rpx;
- /* font-size: 28rpx; */
- }
- /* 课程大类和小类 */
- .stuCourse-wrapper,
- .CourseDetail-wrapper{
- display: flex;
- }
- .stuCourse{
- padding-left: 20rpx;
- }
- /* 上课时间 */
- .tr-title{
- display: block;
- margin-left: 20rpx;
- margin-top: 20rpx;
- }
- .tr-container{
- display: flex;
- position: relative;
- width: 96%;
- flex-direction: column;
- font-size: 26rpx;
- /* border: 1rpx solid gray; */
- margin: 20rpx;
- }
- .tr_1 {
- display: flex;
- position: relative;
- height: 80rpx;
- line-height: 80rpx;
- }
- .tr_2{
- display: block;
- height: 80rpx;
- line-height: 80rpx;
- }
- .th_0,
- .th_1,
- .th_2,
- .th2_0,
- .th2_1,
- .th2_2{
- width: 12%;
- height: 80rpx;
- line-height: 80rpx;
- border-right: 1rpx solid gray;
- border-bottom: 1rpx solid gray;
- text-align: center;
- }
- .th_0,
- .th_1,
- .th_2{
- border-top: 1rpx solid gray;
- }
- .th_0,
- .th2_0{
- border-left: 1rpx solid gray;
- }
- .th2_0{
- float: left;
- width: 12%;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- /* background-color: greenyellow; */
- }
- /* 复选框大小 */
- .wx-checkbox-input{
- width: 22rpx !important;
- height: 22rpx !important;
- }
- /* 期望目标 */
- .stuGoal{
- margin-left: 20rpx;
- }
- .goal{
- width: 96%;
- border: 1rpx solid gray;
- margin-top: 20rpx;
- }
- /* 提交按钮样式 */
- .submitBtn{
- margin-top: 40rpx;
- width: 100%;
- }
- /* 底部空白区域 */
- .blank{
- height: 50rpx;
- }
- /* 课程类别下拉内容 */
- /* 空白区(背景) */
- .mask{
- z-index: 2;
- background-color: rgba(0,0,0,.3);
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- /* 内容区 */
- .courseTitle-wrapper{
- z-index: 3;
- width: 100%;
- /* height: 500rpx; */
- background-color: #fff;
- position: fixed;
- bottom: 0;
- }
- /*下拉选项内容区标题部分 */
- .courseTitle-head{
- background-color: rgb(230,230, 230);
- display: flex;
- height: 80rpx;
- line-height: 80rpx;
- align-content: center;
- justify-content: space-between;
- padding-right: 40rpx;
- padding-left: 40rpx;
- }
- /* 下拉选项内容区 */
- .courseTitle-content{
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- border-bottom: 1rpx solid gray;
- }
- .courseTitle-content image{
- width: 50rpx;
- height: 50rpx;
- }
|