|
|
@@ -0,0 +1,375 @@
|
|
|
+/* pages/fulltime/index.wxss */
|
|
|
+
|
|
|
+page {
|
|
|
+ background-color: #f5f5f5;
|
|
|
+}
|
|
|
+
|
|
|
+/* 顶部筛选 */
|
|
|
+
|
|
|
+.head {
|
|
|
+ display: flex;
|
|
|
+ height: 100rpx;
|
|
|
+ width: 100%;
|
|
|
+ flex: 1 0 auto;
|
|
|
+ align-items: center;
|
|
|
+ background-color: #fff;
|
|
|
+ border-bottom: 2rpx solid #ddd;
|
|
|
+}
|
|
|
+
|
|
|
+.head .map {
|
|
|
+ display: flex;
|
|
|
+ white-space: nowrap;
|
|
|
+ flex-grow: 1;
|
|
|
+ font-size: 30rpx;
|
|
|
+ justify-content: center;
|
|
|
+ height: 40rpx;
|
|
|
+ align-items: center;
|
|
|
+ color: #525255;
|
|
|
+}
|
|
|
+
|
|
|
+.head .map .location {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 20rpx;
|
|
|
+ height: 24rpx;
|
|
|
+ padding-right: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.map .location image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.head .salay {
|
|
|
+ display: flex;
|
|
|
+ flex-grow: 1;
|
|
|
+ white-space: nowrap;
|
|
|
+ font-size: 26rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ color: #868b92;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.salay .salayname {
|
|
|
+ padding-right: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.salay .arrow {
|
|
|
+ display: flex;
|
|
|
+ width: 14rpx;
|
|
|
+ height: 8rpx;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.salay .arrow image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.salay .active {
|
|
|
+ color: #1e62a7;
|
|
|
+}
|
|
|
+
|
|
|
+/* 列表 */
|
|
|
+
|
|
|
+.box-body {
|
|
|
+ width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.box_title {
|
|
|
+ padding: 17rpx 0 17rpx 40rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666;
|
|
|
+ border-bottom: 2rpx solid #ddd;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item {
|
|
|
+ display: flex;
|
|
|
+ padding: 35rpx 40rpx 30rpx 40rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #232327;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background-color: #fff;
|
|
|
+ border-bottom: 16rpx solid #f5f5f5;
|
|
|
+}
|
|
|
+
|
|
|
+.item-hover {
|
|
|
+ background: #f5f5f5;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .box-item-img {
|
|
|
+ display: flex;
|
|
|
+ flex: 0 0 auto;
|
|
|
+ width: 150rpx;
|
|
|
+ height: 150rpx;
|
|
|
+ border-radius: 6rpx;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .box-item-info {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ flex-grow: 1;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .one {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ color: #232327;
|
|
|
+ flex-direction: row;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .one .left {
|
|
|
+ display: flex;
|
|
|
+ flex-grow: 1;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-family: SourceHanSansCN-Regular;
|
|
|
+ font-weight: 400;
|
|
|
+ color: rgba(35, 35, 39, 1);
|
|
|
+ width: 60%;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .one .salary {
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-family: Arial-BoldMT;
|
|
|
+ font-weight: bold;
|
|
|
+ color: rgba(30, 98, 167, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .one .salary image {
|
|
|
+ width: 18rpx;
|
|
|
+ height: 24rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ color: #909090;
|
|
|
+ font-size: 24rpx;
|
|
|
+ margin-top: 30rpx;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-grow: 1;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 30rpx;
|
|
|
+ width: 80%;
|
|
|
+ color: #868b92;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit image {
|
|
|
+ width: 18rpx;
|
|
|
+ height: 18rpx;
|
|
|
+ margin-right: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit i-tag {
|
|
|
+ /* margin-left: 10rpx; */
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit text {
|
|
|
+ margin-left: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit_1 {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-grow: 1;
|
|
|
+ overflow: hidden;
|
|
|
+ width: 80%;
|
|
|
+ color: #868b92;
|
|
|
+ flex-wrap: wrap;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit_1 image {
|
|
|
+ width: 18rpx;
|
|
|
+ height: 18rpx;
|
|
|
+ margin-right: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit_1 i-tag {
|
|
|
+ /* margin-left: 10rpx; */
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .limit_1 text {
|
|
|
+ margin-left: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .two .time {
|
|
|
+ color: #706f6f;
|
|
|
+ font-size: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.tag-class {
|
|
|
+ background: #e2f4fe !important;
|
|
|
+ margin-right: 6rpx;
|
|
|
+ white-space: nowrap;
|
|
|
+ border: none !important;
|
|
|
+ background: rgba(245, 245, 245, 1) !important;
|
|
|
+ border-radius: 14px !important;
|
|
|
+ padding: 4rpx 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 20rpx;
|
|
|
+ margin-top: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three image {
|
|
|
+ width: 16rpx;
|
|
|
+ height: 19rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .area {
|
|
|
+ color: #868b92;
|
|
|
+ font-size: 24rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .area .area-name {
|
|
|
+ margin-left: 10rpx;
|
|
|
+ color: #868b92;
|
|
|
+ font-size: 24rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .limit {
|
|
|
+ display: flex;
|
|
|
+ flex-grow: 1;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 10rpx;
|
|
|
+ width: 80%;
|
|
|
+ flex-direction: row;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .limit i-tag {
|
|
|
+ margin-left: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .time {
|
|
|
+ flex: 0 0 auto;
|
|
|
+ color: #868b92;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .time image {
|
|
|
+ width: 18rpx;
|
|
|
+ height: 18rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .time text {
|
|
|
+ margin-left: 6rpx;
|
|
|
+ font-size: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .fan {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ color: #ff400e;
|
|
|
+ font-size: 20rpx;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .three .fan image {
|
|
|
+ width: 24rpx;
|
|
|
+ height: 24rpx;
|
|
|
+ margin-right: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ color: #909090;
|
|
|
+ font-size: 22rpx;
|
|
|
+ margin-top: 18rpx;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .limit {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-grow: 1;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 30rpx;
|
|
|
+ width: 80%;
|
|
|
+ color: #868b92;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .limit image {
|
|
|
+ width: 18rpx;
|
|
|
+ height: 18rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .limit i-tag {
|
|
|
+ margin-left: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .limit text {
|
|
|
+ margin-left: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .time {
|
|
|
+ color: #706f6f;
|
|
|
+ font-size: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .commpany {
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: #a0a4a9;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .area {
|
|
|
+ color: #868b92;
|
|
|
+ font-size: 24rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .area image {
|
|
|
+ width: 16rpx;
|
|
|
+ height: 19rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.box-item .four .area .area-name {
|
|
|
+ margin-left: 10rpx;
|
|
|
+ color: #868b92;
|
|
|
+ font-size: 22rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.loading_no {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 60rpx;
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: #696969;
|
|
|
+}
|
|
|
+
|
|
|
+/* 空白页 */
|
|
|
+
|
|
|
+.no_data {
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 20%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.white {
|
|
|
+ width: 125px;
|
|
|
+ height: 125px;
|
|
|
+}
|
|
|
+
|
|
|
+.no_text {
|
|
|
+ color: #ccc;
|
|
|
+ font-size: 32rpx;
|
|
|
+ margin-top: 48rpx;
|
|
|
+}
|