1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* component/teacher/teacherFault/teacherFault.wxss */
- .page {
- display: flex;
- flex-direction: column;
- height: 100%;
- align-items: center;
- justify-content: flex-start;
- }
- .toptitle {
- display: flex;
- flex-direction: row;
- width: 100%;
- justify-content: space-between;
- align-items: center;
- }
- .toptitle_left {
- margin-left: 36rpx;
- font-weight: 600;
- font-size: 36rpx;
- color: #474747;
- }
- .toptitle_right {
- width: 197rpx;
- height: 56rpx;
- background-color: #f5a725;
- border-radius: 13rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin-right: 14rpx;
- }
- .toptitle_right_text {
- font-size: 25rpx;
- font-weight: 400;
- color: #ffffff;
- line-height: 31px;
- }
- .toptitle_right_icon {
- width: 24rpx;
- height: 14rpx;
- margin-left: 20rpx;
- }
- .scrollview {
- margin-top: 25rpx;
- flex: 1;
- height: 0;
- width: 100%;
- margin-bottom: 112rpx;
- }
- .scroll_item_bg {
- display: flex;
- justify-content: center;
- }
|