123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* pages/coursePublish/coursePublish.wxss */
- /* 授课科目 */
- .course-container{
- margin-left: 20rpx;
- }
- .course-title{
- margin-top: 20rpx;
- }
- .course-list{
- display: flex;
- margin-top: 20rpx;
- }
- .course{
- width: 20%;
- }
- .course-cho{
- width: 25%;
- }
- .iconImg{
- width: 30rpx;
- height: 30rpx;
- }
- /* 授课时间 */
- .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;
- }
- /* 案例 */
- .suc-exap{
- margin-left: 20rpx;
- }
- .case{
- width: 94%;
- border: 1rpx solid gray;
- padding-left: 10rpx;
- margin-top: 20rpx;
- }
- /* 提交按钮 */
- .subBtn {
- margin-top: 40rpx;
- }
|