card-mini/packagecard/cardDetail/cardDetail.wxss

210 lines
3.0 KiB
Plaintext
Raw Normal View History

.card {
2021-07-14 14:20:54 +08:00
width: 100%;
height: 0;
position: relative;
box-sizing: border-box;
z-index: 100;
/* text-align: center; */
}
.card-bgImg {
2021-07-14 14:20:54 +08:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.area-box {
2021-07-14 14:20:54 +08:00
white-space: nowrap;
background: none !important;
2021-07-20 16:39:27 +08:00
z-index: 111;
2021-07-14 14:20:54 +08:00
}
.area-box image {
2021-07-14 14:20:54 +08:00
width: 100%;
height: 100%;
}
.card-info {
2021-08-12 09:22:40 +08:00
padding-bottom: 100rpx;
width: 100%;
margin-top: 15rpx;
2021-07-14 14:20:54 +08:00
}
.card-title {
2021-08-09 09:19:56 +08:00
font-size: 30rpx;
background: #ffffff;
2021-08-12 09:22:40 +08:00
width: 100%;
padding: 15rpx;
2021-07-14 14:20:54 +08:00
}
.row {
2021-07-14 14:20:54 +08:00
display: flex;
border-bottom: 1px solid #EEE;
2021-08-09 09:19:56 +08:00
background: #ffffff;
border-bottom: 1rpx solid #f5f5f5;
2021-07-14 14:20:54 +08:00
}
2021-08-09 10:22:34 +08:00
.row-ver {
display: flex;
border-bottom: 1px solid #EEE;
border-bottom: 1rpx solid #f5f5f5;
flex-direction: column;
2021-08-12 09:22:40 +08:00
background-color: #ffffff;
padding: 15rpx;
}
.row-ver:nth-child(1) {
padding: 15rpx 15rpx 7.5rpx 15rpx;
}
.row-ver:last-child {
padding: 7.5rpx 15rpx 15rpx 15rpx;
2021-08-09 10:22:34 +08:00
}
.item-title {
2021-07-14 14:20:54 +08:00
flex: 1;
font-size: 32rpx;
line-height: 50rpx;
color: #808080;
}
2021-08-09 09:19:56 +08:00
.item-title-box {
display: flex;
2021-08-09 10:22:34 +08:00
flex-direction: row;
2021-08-09 09:19:56 +08:00
justify-content: space-between;
align-items: center;
2021-08-12 09:22:40 +08:00
margin-top: 7.5rpx;
2021-08-09 09:19:56 +08:00
}
.item-input {
2021-07-14 14:20:54 +08:00
flex: 4;
box-sizing: border-box;
display: flex;
align-items: center;
2021-08-12 09:22:40 +08:00
margin-top: 15rpx;
2021-07-14 14:20:54 +08:00
}
.item-input input {
2021-07-14 14:20:54 +08:00
width: 100%;
2021-08-09 10:22:34 +08:00
text-align: left;
2021-07-14 14:20:54 +08:00
height: 50rpx;
font-size: 32rpx;
color: #333;
}
.item-input image {
2021-07-14 14:20:54 +08:00
max-width: 70%;
2021-07-20 16:39:27 +08:00
/* max-height: 120rpx; */
2021-07-14 14:20:54 +08:00
}
.item-code-input image {
2021-07-14 14:20:54 +08:00
max-width: 35%;
max-height: 160rpx;
}
2021-08-09 09:19:56 +08:00
.hide-link {
2021-07-14 14:20:54 +08:00
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.6);
2021-07-14 14:20:54 +08:00
z-index: 1000;
}
.hide {
2021-07-14 14:20:54 +08:00
position: absolute;
top: 50%;
left: 50%;
2021-08-12 09:22:40 +08:00
width: 60%;
2021-07-14 14:20:54 +08:00
transform: translate(-50%, -50%);
border-radius: 10rpx;
background: #fff;
2021-08-12 09:22:40 +08:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
2021-07-14 14:20:54 +08:00
}
.hide-btn {
2021-07-14 14:20:54 +08:00
display: flex;
2021-08-12 09:22:40 +08:00
width: 50%;
2021-07-14 14:20:54 +08:00
height: 60rpx;
2021-08-12 09:22:40 +08:00
background: #1d7ff0;
2021-07-14 14:20:54 +08:00
color: #fff;
font-size: 30rpx;
justify-content: center;
align-items: center;
2021-08-12 09:22:40 +08:00
border-bottom-left-radius: 10rpx;
border-bottom-right-radius: 10rpx;
}
.hide-btn:nth-child(1) {
background: #E6B980;
border-bottom-left-radius: 10rpx;
border-bottom-right-radius: 0rpx;
}
.hide-btn:last-child {
border-bottom-left-radius: 0rpx;
border-bottom-right-radius: 10rpx;
2021-07-14 14:20:54 +08:00
}
.hide-text {
2021-08-12 09:22:40 +08:00
font-size: 36rpx;
2021-07-14 14:20:54 +08:00
color: #000;
2021-08-12 09:22:40 +08:00
padding: 50rpx 30rpx;
}
.hide-title {
font-size: 43rpx;
color: #ffC107;
padding: 10rpx;
2021-07-14 14:20:54 +08:00
}
.hide-btn-box {
2021-07-14 14:20:54 +08:00
display: flex;
2021-08-12 09:22:40 +08:00
width: 100%;
2021-07-14 14:20:54 +08:00
justify-content: space-between;
}
.input-box {
2021-07-14 14:20:54 +08:00
width: 100%;
}
2021-08-12 09:22:40 +08:00
.content-box {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 15rpx;
}
.cuIcon-cameraadd {
2021-08-09 09:19:56 +08:00
font-size: 60rpx;
}
.card-img-box {
display: flex;
flex-direction: row;
align-items: center;
margin-right: 40rpx;
2021-08-09 10:22:34 +08:00
justify-content: space-between;
}
.card-img-box image {
width: 200rpx;
height: 200rpx;
2021-08-09 09:19:56 +08:00
}
.hint-txt {
text-align: right;
2021-08-09 10:22:34 +08:00
color: #fd9494;
2021-08-09 09:19:56 +08:00
font-size: 24rpx;
2021-07-14 14:20:54 +08:00
}