| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- page{
- --border: 1px solid rgba(0, 0, 0, 0.1);
- --textColor: #111;
- --subColor: #A3A4A5;
- --statusColor: #F9A718;
- --tbH:22%;
- }
- .subtxt{
- font-size: 22rpx;
- color: var(--subColor);
- }
- .detail-con{
- padding: 40rpx;
- }
- .d-item{
- min-height: 300rpx;
- /* box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2); */
- border: var(--border);
- border-radius: 8rpx;
- margin-top: 40rpx;
- padding: 0 20rpx;
- display: flex;
- flex-direction: column;
- color: var(--textColor);
- }
- .i-top{
- padding: 20rpx 0;
- border-bottom: var(--border);
- font-size: 30rpx;
- font-weight: bold;
- }
- .i-con{
- padding: 20rpx 0;
- }
- .i-con .ic-top{
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 22rpx;
- color: var(--subColor);
- }
- .i-con .ic-top text:not(.star){
- color: var(--textColor);
- font-size: 30rpx;
- margin-right: 20rpx;
- font-weight: bold;
- display: inline-block;
- /* width: 90rpx; */
- }
- .ic-middle{
- color: var(--textColor);
- border-bottom: var(--border);
- font-size: 22rpx;
- padding-bottom: 20rpx;
- position: relative;
- }
- .ic-middle >view{
- line-height: 40rpx;
- height: 40rpx;
- }
- .ic-middle >view:first-of-type{
- margin-top: 36rpx;
- }
- .ic-middle .icm-top{
- font-size: 30rpx;
- }
- .ic-middle > text{
- display: inline-block;
- padding-top: 20rpx;
- font-weight: bold;
- font-size: 30rpx;
- }
- .ic-middle .info-status{
- position: absolute;
- right: 0;
- bottom: 20rpx;
- color: var(--statusColor);
- }
- .demand >view{
- display: inline-block;
- }
- .i-bottom{
- padding-bottom: 20rpx;
- }
- .i-bottom .ib-item{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .i-bottom .ib-item >view{
- display: flex;
- align-items: center;
- }
- .i-bottom .ib-item >view:first-of-type{
- font-size: 30rpx;
- font-weight: bold;
- }
- .i-bottom .ib-item >view > text{
- font-size: 18rpx;
- margin-left: 10rpx;
- color:var(--subColor)
- }
- .i-bottom .rm_detail{
- margin-top: 20rpx;
- font-size: 22rpx;
- color: var(--textColor);
- }
- .hover-btn{
- width: 100%;
- padding: 20rpx 40rpx;
- display: flex;
- justify-content: space-between;
- position: fixed;
- bottom: 0;
- left: 0;
- box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
- }
- .edit-icon text {
- font-size: 40rpx;
- color: var(--subColor);
- font-weight: normal;
- line-height: 40rpx;
- }
|