






#import "ProxyBottomPushUnderlineForwardsCell.h"
#import "SubBondFour.h"
#import "Masonry.h"

@implementation ProxyBottomPushUnderlineForwardsCell

-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if(self){
        
        self.backgroundColor = UIColor.whiteColor;
        self.contentView.backgroundColor = UIColor.whiteColor;
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        
        
        self.modalTableView = [UIImageView new];
        self.modalTableView.tintColor = [SubBondFour routeHeapColor];
        self.modalTableView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.modalTableView];
        [self.modalTableView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(SubBondFour.nodeFourteen.potassiumTop);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(SubBondFour.nodeFourteen.masteringLaw);
        }];
        
        
        self.wakeSortName = [UILabel new];
        self.wakeSortName.font = [UIFont boldSystemFontOfSize:16];
        self.wakeSortName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.wakeSortName];
        [self.wakeSortName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.modalTableView.mas_right).offset(SubBondFour.nodeFourteen.potassiumTop);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.jobOtherEarTime = [UILabel new];
        self.jobOtherEarTime.font =  [UIFont systemFontOfSize:11];
        self.jobOtherEarTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.jobOtherEarTime];
        [self.jobOtherEarTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(SubBondFour.nodeFourteen.oldDoneHigh);
            make.left.equalTo(self.wakeSortName);
        }];
    }
    return self;
}

@end
