| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* 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;
- }
|