12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* pages/mask/mask.wxss */
- page{
- padding: 20rpx 20rpx 0 20rpx;
- }
- .invitation{
- display: flex;
- }
- .invitationTitle{
- border: 1rpx solid gray;
- padding: 10rpx 20rpx;
- border-radius: 30rpx;
- }
- /* 以下是蒙层样式 */
- .maskWrapper{
- z-index: 3;
- margin-left: -20rpx;
- padding: 20rpx;
- position: absolute;
- height: 70%;
- bottom: 0;
- background-color: #D1D1D1;
- border-top-left-radius: 30rpx;
- border-top-right-radius: 30rpx;
- }
- /* 可滚动区域 */
- .scrollVertical{
- height: 76%;
- }
- /* 选项区 */
- .chooseList{
- display: flex;
- flex-direction: column;
- }
- /* 单个选项样式 */
- .chooseDetail{
- width: 94%;
- padding: 10rpx;
- margin: 10rpx 0;
- border: 1rpx solid gray;
- border-radius: 20rpx;
- background-color: #DEEBF7;
- }
- /* 设置选项与圆圈的距离 */
- .courseTitle{
- margin-left: 30rpx;
- }
- /* 课程号、辅导科目详情 */
- .courseDetail{
- margin-left: 20rpx;
- font-weight: bold;
- }
- /* 底部按钮 */
- .commitAndCancel{
- display: flex;
- width: 100%;
- justify-content: space-around;
- position: fixed;
- bottom: 40rpx;
- }
- .cancel,
- .commit{
- font-size: 40rpx;
- border: 1rpx solid gray;
- padding: 10rpx 60rpx;
- border-radius: 40rpx;
- background-color: #8FAADC;
- color: white;
- }
|