| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* pages/buyer/prog-rtu-List/prog-rtu-list.wxss */
- .viewBox {
- width: 100%;
- height: 100%;
- background: white;
- flex: 1;
- }
- .scroll-box {
- height: 100%;
- width: 95%;
- display: flex;
- flex-direction: column;
- }
- .scroll-list {
- width: 90%;
- display: flex;
- flex-direction: column;
- white-space: nowrap;
- margin-top: 10px;
- margin-left: 8px;
- }
- .rtu-list-item-container {
- height: 60px;
- width: 100%;
- display: flex;
- flex-direction: row;
- margin-left: 10px;
- /* margin-bottom: 8rpx; */
- border-bottom: 1px #dddddd solid;
- }
- .rtuInfoBox {
- height: 100%;
- width: 90%;
- margin-top: 2px;
- margin-bottom: 2px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .rtuInfoTop{
- margin-bottom: 5px;
- }
- .rtuName {
- font-size: 17px;
- color: #00528E;
- }
- .rtuInfo {
- font-size: 14px;
- color: #B2B2B2;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .tipsBox {
- height: 60px;
- width: 30px;
- margin-right: 10px;
-
- }
- .tipsImg {
- height: 30px;
- width: 30px;
- margin-top: 10px;
- margin-right: 10px;
- }
- .button-check{
- height: 100%;
- display: flex;
- justify-content: center;
- flex-direction: column;
- }
- .check-btn{
- height: 22px;
- width: 60px;
- background-color: #669999;
- }
- .btn-hover-class{
- background-color:coral;
- }
|