|
|
|
/* pages/material/subpage/newest/newest.wxss */
|
|
|
|
.search {
|
|
|
|
/* padding-top: 8rpx; */
|
|
|
|
background-color: white;
|
|
|
|
height: 88rpx;
|
|
|
|
width: 750rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
z-index: 999;
|
|
|
|
position: fixed;
|
|
|
|
top: 0rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrap {
|
|
|
|
background-color: #fff;
|
|
|
|
position: fixed;
|
|
|
|
top: 88rpx;
|
|
|
|
width: 100vw;
|
|
|
|
display: flex;
|
|
|
|
z-index: 100;
|
|
|
|
font-size: 24rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrap .item {
|
|
|
|
text-align: center;
|
|
|
|
padding: 20rpx;
|
|
|
|
flex: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrap .active {
|
|
|
|
color: #006BFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectWrap {
|
|
|
|
float: left;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
top: 160rpx;
|
|
|
|
z-index: 90;
|
|
|
|
height: 0px;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectWrap .selectItem {
|
|
|
|
padding: 20rpx;
|
|
|
|
border-bottom: 1px solid #dddddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectWrap .active {
|
|
|
|
color: #006BFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 1;
|
|
|
|
background-color: #4C4C4C;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slidown {
|
|
|
|
0% {
|
|
|
|
transform: translateY(-100%);
|
|
|
|
height: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
height: 100rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
height: auto;
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slidown {
|
|
|
|
display: block;
|
|
|
|
animation: slidown 0.1s ease-in both;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slidup {
|
|
|
|
0% {
|
|
|
|
transform: translateY(0);
|
|
|
|
height: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
height: 100rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: translateY(-100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.slidup {
|
|
|
|
display: block;
|
|
|
|
animation: slidup 0.1s ease-in both;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
background-color: #F9F9F9;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat {
|
|
|
|
padding-top: 32rpx;
|
|
|
|
padding-left: 32rpx;
|
|
|
|
padding-right: 32rpx;
|
|
|
|
background-color: #F9F9F9;
|
|
|
|
position: absolute;
|
|
|
|
width: 686rpx;
|
|
|
|
margin-top: 157rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat_card {
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 16rpx;
|
|
|
|
padding: 32rpx;
|
|
|
|
padding-right: 0rpx;
|
|
|
|
margin-bottom: 16rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_top {
|
|
|
|
height: 32rpx;
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-family: PingFangSC-Semibold, PingFang SC;
|
|
|
|
font-weight: 600;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 32rpx;
|
|
|
|
margin-top: 8rpx;
|
|
|
|
margin-bottom: 32rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
width: 144rpx;
|
|
|
|
height: 144rpx;
|
|
|
|
background: linear-gradient(180deg, #599FFF 0%, #C4DDFF 100%);
|
|
|
|
border-radius: 8rpx;
|
|
|
|
margin-right: 16rpx;
|
|
|
|
margin-bottom: 16rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
position: relative;
|
|
|
|
bottom: 35rpx;
|
|
|
|
left: 10rpx;
|
|
|
|
font-size: 18rpx;
|
|
|
|
font-family: MiSans-Regular, MiSans;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #FFFFFF;
|
|
|
|
line-height: 18rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shouca {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
position: relative;
|
|
|
|
bottom: 145rpx;
|
|
|
|
left: 105rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose.non {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
border: 2rpx solid #FFFFFF;
|
|
|
|
position: relative;
|
|
|
|
bottom: 95rpx;
|
|
|
|
left: 100rpx;
|
|
|
|
border-radius: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choose.active {
|
|
|
|
width: 32rpx;
|
|
|
|
height: 32rpx;
|
|
|
|
background: #006BFF;
|
|
|
|
border: 2rpx solid #FFFFFF;
|
|
|
|
position: relative;
|
|
|
|
bottom: 95rpx;
|
|
|
|
left: 100rpx;
|
|
|
|
border-radius: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.allin {
|
|
|
|
width: 120rpx !important;
|
|
|
|
height: 48rpx !important;
|
|
|
|
background: #F9F9F9;
|
|
|
|
border-radius: 24rpx !important;
|
|
|
|
font-size: 24rpx;
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 24rpx;
|
|
|
|
padding: 0rpx !important;
|
|
|
|
margin: 0rpx !important;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
right: 32rpx;
|
|
|
|
}
|
|
|
|
.operation {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin-top: 122rpx;
|
|
|
|
/* border: red solid 1px; */
|
|
|
|
position: fixed;
|
|
|
|
width: 750rpx;
|
|
|
|
bottom: 0rpx;
|
|
|
|
background-color: white;
|
|
|
|
height: 150rpx;
|
|
|
|
}
|
|
|
|
.one {
|
|
|
|
font-size: 20rpx!important;
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #333333!important;
|
|
|
|
line-height: 20rpx!important;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: auto!important;
|
|
|
|
border: none!important;
|
|
|
|
margin: 0rpx!important;
|
|
|
|
/* padding: 0rpx!important; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column {
|
|
|
|
/* width: 50%; */
|
|
|
|
}
|
|
|
|
|
|
|
|
.column_item {
|
|
|
|
width: 334rpx;
|
|
|
|
background: #fff;
|
|
|
|
margin: 30rpx auto;
|
|
|
|
box-shadow: 5rpx 5rpx 10rpx 0 rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.column_pic {
|
|
|
|
display: block;
|
|
|
|
width: 334rpx;
|
|
|
|
height: 350rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.getmore{
|
|
|
|
margin: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mask-content {
|
|
|
|
background-color: white;
|
|
|
|
border-radius: 8rpx;
|
|
|
|
width: 500rpx;
|
|
|
|
/* height: 250rpx; */
|
|
|
|
padding: 32rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.picker {
|
|
|
|
/* width: 622rpx; */
|
|
|
|
/* height: 80rpx; */
|
|
|
|
padding: 24rpx;
|
|
|
|
background: #F9F9F9;
|
|
|
|
border-radius: 8rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|