12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* component/teacher/teacherFault/teacherFault.wxss */
- .toptitle {
- display: flex;
- flex-direction: row;
- 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: 24rpx;
- margin-left: 20rpx;
- }
|