作者 Lijianheng

update

... ... @@ -15,6 +15,27 @@
</view>
</view>
</view>
<!-- 招聘要求 -->
<view class='item'>
<view class='item_top'>招聘要求</view>
<view class='item_bottom'>性别不限/年龄不限/学历不限/经验不限</view>
</view>
<!-- 工作地点 -->
<view class='item'>
<view class='item_top'>工作地点</view>
<view class='item_map'>
<image src='../../img/aicon_18@2x.png'></image>
</view>
</view>
<!-- 招聘信息 -->
<view class='item'>
<view class='item_top'>招聘者信息</view>
<view class='item_infor'>
<view class='item_infor_left'></view>
<view class='item_infor_right'>
<view class='item_infor_right_top'></view>
<view class='item_infor_right_bottom'></view>
</view>
</view>
</view>
</view>
... ...
... ... @@ -40,4 +40,39 @@ page{
.text_box{
box-sizing: border-box;
padding: 40rpx 40rpx;
}
.item{
margin-top: 14rpx;
display: flex;
flex-flow: column;
background: #fff;
box-sizing: border-box;
padding: 39rpx 32rpx;
}
.item_top{
font-size:32rpx;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(26,26,26,1);
}
.item_bottom{
margin-top: 30rpx;
font-size:28rpx;
font-family:PingFang-SC-Regular;
font-weight:400;
color:rgba(102,102,102,1);
}
.item_map{
margin-top: 29rpx;
width:686rpx;
height:300rpx;
display: flex;
}
.item_map image{
width: 100%;
height: 100%;
}
.item_infor{
}
\ No newline at end of file
... ...