123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /* component/teacher/teacherFault/teacherFault.wxss */
- @import "../../../pages/register/register.wxss";
- @import "../../../pages/login/login.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: 152rpx;
- }
- .scroll_item_bg {
- display: flex;
- justify-content: center;
- }
- /* 故障报修样式 */
- .fault_info_textarea {
- font-size: 30rpx;
- width: 580rpx;
- word-wrap: break-word;
- white-space: pre-line;
- height: 84rpx;
- margin-top: 52rpx;
- background-color: #f1f1f1;
- }
- .fault_info_scroll {
- width: 580rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- margin-top: 25rpx;
- }
- .fault_info_layout {
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- }
- .fault_info_scroll_item {
- width: 167rpx;
- height: 93rpx;
- margin-left: 10rpx;
- margin-right: 10rpx;
- }
- .submitFault_layout {
- width: 100;
- display: flex;
- margin-top: 150rpx;
- justify-content: center;
- align-items: center;
- }
- .submitFault {
- width: 327rpx;
- height: 73rpx;
- font-size: 30rpx;
- font-weight: 600;
- text-align: center;
- background-color: #7DB0FF;
- color: #FFFFFF;
- border-radius: 7rpx;
- }
|