| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /* pages/deviceCheck/report/deviceCheckReport.wxss */
- page {
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .viewBody {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .baseInfoView {
- height: 260rpx;
- width: 100%;
- background: #efeff4;
- /* padding-top: 10rpx;
- padding-left: 10rpx;
- padding-right: 10rpx; */
- }
- .listContainer {
- width: 100%;
- flex-grow: 1;
- }
- .scroll-box {
- width: 100%;
- }
- .scroll-body {
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- white-space: nowrap;
- }
- .report-btn {
- height: 80rpx;
- background-color: #FD7400;
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-left: 20rpx;
- margin-right: 20rpx;
- margin-top: 20rpx;
- }
- .new-report-btn-text {
- text-align: center;
- color: whitesmoke;
- font-size: 1rem;
- }
- .index-list-item-container {
- width: 100%;
- height: 145rpx;
- margin: 0;
- padding: 0;
- position: relative;
- background: white;
- border-radius: 4px;
- margin-bottom: 5px;
- }
- .index-list-item-box {
- height: 100%;
- width: 100%;
- display: flex;
- flex-direction: row;
- margin-top: 5px;
- margin-left: 5px;
- }
- .index-list-item-info-box {
- width: 80%;
- display: flex;
- flex-direction: column;
- }
- .index-list-item-info-box .suggest-text {
- width: 100%;
- height: 60%;
- }
- .index-list-item-info-box .suggest-text text{
- font-size: 1rem;
- color: black;
- }
- .index-list-item-info-box .createInfo {
- width: 100%;
- height: 40%;
- display: flex;
- flex-direction: row;
- }
- .index-list-item-info-box .createInfo .createUser {
- width: 50%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .index-list-item-info-box .createInfo .createUser text{
- font-size: 0.8rem;
- color: #181818;
- }
- .index-list-item-info-box .createInfo .createTime {
- width: 49%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- .index-list-item-info-box .createInfo .createTime text{
- font-size: 0.7rem;
- color: #426666;
- }
- .index-list-item-box-right {
- width: 19%;
- height: 100%;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .index-list-item-box-right .imageBox {
- width: 20px;
- height: 100%;
- display: flex;
- margin-right: 20rpx;
- flex-direction: column;
- justify-content: center;
- }
- .index-list-item-box-right .imageBox image {
- width: 20px;
- height: 20px;
- }
- .index-list-item-container .bottombar {
- width: 100%;
- height: 30rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 2px;
- }
- .index-list-item-container .bottombar .starBox {
- width: 80%;
- height: 30rpx;
- margin-left: 15rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .index-list-item-container .bottombar .starBox text {
- color: darkgray;
- font-size: 24rpx;
- }
|