108 lines
1.7 KiB
Plaintext
108 lines
1.7 KiB
Plaintext
/* pages/candidate/index.wxss */
|
|
page{
|
|
background: #ffffff;
|
|
}
|
|
.searWrap{
|
|
display: flex;
|
|
/* margin-top: 30rpx; */
|
|
padding: 20rpx 0;
|
|
background: #ffffff;
|
|
}
|
|
.searchBtn{
|
|
/* flex: 2; */
|
|
width: 150rpx;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
color: #131212;
|
|
border-radius: 40rpx;
|
|
margin-right: 20rpx;
|
|
background-color:#faad14 ;
|
|
}
|
|
.infoInput{
|
|
flex: 4;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
border: 1rpx solid #dddddd;
|
|
border-radius: 40rpx;
|
|
margin: 0 20rpx;
|
|
}
|
|
.listWrap{
|
|
padding: 20rpx;
|
|
margin-top: 20rpx;
|
|
box-sizing: border-box;
|
|
background: #ffffff;
|
|
}
|
|
.listTitle{
|
|
height: 70rpx;
|
|
padding-left: 30rpx;
|
|
line-height: 70rpx;
|
|
font-size: 36rpx;
|
|
}
|
|
|
|
.container {
|
|
padding: 0px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.tab {
|
|
display: flex;
|
|
color:#ffffff
|
|
|
|
}
|
|
|
|
.tab-item {
|
|
flex: 1;
|
|
padding: 10px;
|
|
text-align: center;
|
|
background-color: #79be53;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tab-item:hover {
|
|
background-color: #01764a;
|
|
}
|
|
|
|
.tab-content {
|
|
margin-top: 20px;
|
|
padding: 3px;
|
|
}
|
|
|
|
|
|
|
|
.search-input {
|
|
margin-bottom: 16px;
|
|
width: 100%;
|
|
height:40px;
|
|
border-radius: 10rpx;
|
|
color: #131212;
|
|
background-color: rgb(243, 241, 241);
|
|
}
|
|
|
|
.table {
|
|
border: 1px solid #ccc;
|
|
width: 100%;
|
|
}
|
|
|
|
.table-header, .table-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 10px;
|
|
}
|
|
|
|
.table-header {
|
|
background-color: #00adca;
|
|
color: #f7f8f4;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.table-row text {
|
|
border-bottom: 1px solid #eee;
|
|
text-align: center;
|
|
white-space: nowrap; /* 不换行 */
|
|
overflow: hidden; /* 隐藏超出部分 */
|
|
text-overflow: ellipsis; /* 省略号 */
|
|
} |