作者 Lijianheng

update

@@ -15,6 +15,27 @@ @@ -15,6 +15,27 @@
15 </view> 15 </view>
16 </view> 16 </view>
17 </view> 17 </view>
18 -  
19 - 18 + <!-- 招聘要求 -->
  19 + <view class='item'>
  20 + <view class='item_top'>招聘要求</view>
  21 + <view class='item_bottom'>性别不限/年龄不限/学历不限/经验不限</view>
  22 + </view>
  23 + <!-- 工作地点 -->
  24 + <view class='item'>
  25 + <view class='item_top'>工作地点</view>
  26 + <view class='item_map'>
  27 + <image src='../../img/aicon_18@2x.png'></image>
  28 + </view>
  29 + </view>
  30 + <!-- 招聘信息 -->
  31 + <view class='item'>
  32 + <view class='item_top'>招聘者信息</view>
  33 + <view class='item_infor'>
  34 + <view class='item_infor_left'></view>
  35 + <view class='item_infor_right'>
  36 + <view class='item_infor_right_top'></view>
  37 + <view class='item_infor_right_bottom'></view>
  38 + </view>
  39 + </view>
  40 + </view>
20 </view> 41 </view>
@@ -40,4 +40,39 @@ page{ @@ -40,4 +40,39 @@ page{
40 .text_box{ 40 .text_box{
41 box-sizing: border-box; 41 box-sizing: border-box;
42 padding: 40rpx 40rpx; 42 padding: 40rpx 40rpx;
  43 +}
  44 +
  45 +.item{
  46 + margin-top: 14rpx;
  47 + display: flex;
  48 + flex-flow: column;
  49 + background: #fff;
  50 + box-sizing: border-box;
  51 + padding: 39rpx 32rpx;
  52 +}
  53 +.item_top{
  54 + font-size:32rpx;
  55 + font-family:PingFang-SC-Medium;
  56 + font-weight:500;
  57 + color:rgba(26,26,26,1);
  58 +}
  59 +.item_bottom{
  60 + margin-top: 30rpx;
  61 + font-size:28rpx;
  62 + font-family:PingFang-SC-Regular;
  63 + font-weight:400;
  64 + color:rgba(102,102,102,1);
  65 +}
  66 +.item_map{
  67 + margin-top: 29rpx;
  68 + width:686rpx;
  69 + height:300rpx;
  70 + display: flex;
  71 +}
  72 +.item_map image{
  73 + width: 100%;
  74 + height: 100%;
  75 +}
  76 +.item_infor{
  77 +
43 } 78 }