city_card/packagecard/cardDetail/cardDetail.wxss

223 lines
3.6 KiB
Plaintext
Raw Permalink Normal View History

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