card-mini/pages/mine/myCardDetail/myCardDetail.wxss

208 lines
2.9 KiB
Plaintext
Raw Normal View History

2021-07-20 15:45:29 +08:00
page {
2021-08-09 09:19:56 +08:00
background: #fdfdfd;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.card {
2021-07-14 14:20:54 +08:00
width: 100%;
height: 0;
position: relative;
box-sizing: border-box;
background: #fff;
z-index: 100;
/* text-align: center; */
}
2021-07-20 15:45:29 +08:00
.card-bgImg {
2021-07-14 14:20:54 +08:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
2021-07-20 15:45:29 +08:00
.area-box {
2021-07-14 14:20:54 +08:00
white-space: nowrap;
background: none !important;
2021-07-20 15:45:29 +08:00
z-index: 111;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.area-box image {
2021-07-14 14:20:54 +08:00
width: 100%;
height: 100%;
}
2021-07-20 15:45:29 +08:00
.card-info {
2021-08-09 09:19:56 +08:00
padding: 10rpx;
2021-08-09 10:22:34 +08:00
margin-bottom: 100rpx;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.card-title {
2021-08-09 09:19:56 +08:00
font-size: 30rpx;
background: #ffffff;
2021-07-14 14:20:54 +08:00
line-height: 70rpx;
2021-08-09 09:19:56 +08:00
padding: 10rpx 20rpx;
margin: 0rpx 10rpx;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.row {
2021-07-14 14:20:54 +08:00
display: flex;
2021-08-09 09:19:56 +08:00
padding: 15rpx 10rpx;
2021-07-14 14:20:54 +08:00
border-bottom: 1px solid #EEE;
2021-08-09 09:19:56 +08:00
background: #ffffff;
2021-08-09 10:22:34 +08:00
border-bottom: 1rpx solid #f5f5f5;
}
.row-ver {
display: flex;
padding: 15rpx 20rpx;
border-bottom: 1px solid #EEE;
border-bottom: 1rpx solid #f5f5f5;
flex-direction: column;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +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 10:22:34 +08:00
}
.item-title-box {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.item-input {
2021-07-14 14:20:54 +08:00
flex: 4;
box-sizing: border-box;
display: flex;
align-items: center;
}
2021-07-20 15:45:29 +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;
2021-08-09 09:19:56 +08:00
padding-right: 20rpx;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.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
}
2021-07-20 15:45:29 +08:00
.item-code-input image {
2021-07-14 14:20:54 +08:00
max-width: 35%;
max-height: 160rpx;
}
2021-07-20 15:45:29 +08:00
.share {
2021-07-14 14:20:54 +08:00
padding: 20rpx 15rpx;
text-align: center;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
z-index: 1000;
}
2021-07-20 15:45:29 +08:00
.share .btn {
2021-07-14 14:20:54 +08:00
display: inline-block;
width: 32% !important;
background: #0054bd;
color: #fff;
margin-right: 2%;
2021-07-20 15:45:29 +08:00
font-size: 28rpx;
2021-07-14 14:20:54 +08:00
font-weight: normal;
height: 70rpx;
line-height: 70rpx;
text-align: center;
border-radius: 10rpx;
}
2021-07-20 15:45:29 +08:00
2021-08-09 09:19:56 +08:00
.share .btn:nth-child(1) {
background: coral;
}
2021-07-20 15:45:29 +08:00
.share .btn:last-child {
2021-07-14 14:20:54 +08:00
margin-right: 0;
2021-08-09 09:19:56 +08:00
background: #ff2525;
2021-07-14 14:20:54 +08:00
}
2021-07-20 15:45:29 +08:00
.hide-link {
2021-07-14 14:20:54 +08:00
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 0 15rpx;
2021-07-20 15:45:29 +08:00
background: rgba(0, 0, 0, 0.6);
2021-07-14 14:20:54 +08:00
z-index: 1000;
}
2021-07-20 15:45:29 +08:00
.hide {
2021-07-14 14:20:54 +08:00
position: absolute;
top: 50%;
left: 50%;
width: 90%;
transform: translate(-50%, -50%);
padding: 20rpx;
border-radius: 10rpx;
background: #fff;
}
2021-07-20 15:45:29 +08:00
.hide-btn {
2021-07-14 14:20:54 +08:00
display: flex;
width: 49%;
height: 60rpx;
background: #1296db;
color: #fff;
font-size: 30rpx;
border-radius: 10rpx;
justify-content: center;
align-items: center;
}
2021-07-20 15:45:29 +08:00
.hide-text {
2021-07-14 14:20:54 +08:00
font-size: 30rpx;
color: #000;
margin-bottom: 20rpx;
}
2021-07-20 15:45:29 +08:00
.hide-btn-box {
2021-07-14 14:20:54 +08:00
display: flex;
justify-content: space-between;
}
2021-07-20 15:45:29 +08:00
.input-box {
2021-07-14 14:20:54 +08:00
width: 100%;
}
2021-07-20 15:45:29 +08:00
.cuIcon-cameraadd {
2021-07-14 14:20:54 +08:00
font-size: 60rpx;
2021-08-09 09:19:56 +08:00
}
.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;
2021-08-09 09:19:56 +08:00
}
.card-img-box image {
width: 200rpx;
height: 200rpx;
}
.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;
padding: 10rpx 32rpx;
2021-07-14 14:20:54 +08:00
}