123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .zhcx-table .zhcx-table-row{
- padding: 0 25upx;
- font-size: 28upx;
- height: 88upx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- }
- .zhcx-table .zhcx-table-row::after{
- width: 200%;
- height:1px;
- transform: scale(0.5);
- background-color: #ccc;
- /* background-color: #eaeaea; */
- position: absolute;
- bottom: 1px;
- left: -50%;
- display: block;
- content: "";
- }
- .zhcx-table .zhcx-table-row.drop-down{
- position: relative;
- }
- .zhcx-table .zhcx-table-row.drop-down::before{
- font-family: "zhcx-iconfont" !important;
- font-size: 18px;
- display: block;
- content: "\e639";
- position: absolute;
- right: 30upx;
- }
- .zhcx-table .zhcx-table-row .name{
- width: 200upx;
- color: #666;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .zhcx-table .zhcx-table-row .text{
- width: 500upx;
- color: #999;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: right;
- }
- .zhcx-table .zhcx-upload {
- width: 150upx;
- height: 120upx;
- background-color: #F1F1F1;
- margin-left: 59upx;
- padding-top: 30upx; }
- .zhcx-table .zhcx-upload .icon {
- width: 50upx;
- height: 50upx;
- margin: 0 auto;
- position: relative; }
- .zhcx-table .zhcx-upload .icon::after {
- width: 4upx;
- height: 50upx;
- display: block;
- content: "";
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background-color: #ccc; }
- .zhcx-table .zhcx-upload .icon::before {
- width: 50upx;
- height: 4upx;
- display: block;
- content: "";
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background-color: #ccc; }
- .zhcx-table .zhcx-upload .uploadTitle {
- text-align: center;
- display: block;
- font-size: 24upx;
- color: #666;
- padding-top: 12upx; }
|