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

217 lines
3.3 KiB
Plaintext
Raw Normal View History

2021-06-22 16:14:04 +08:00
/* pages/mine/index/index.wxss */
.UCenter-bg {
background-size: cover;
height: 400rpx;
display: flex;
justify-content: center;
overflow: hidden;
flex-direction: column;
align-items: flex-start;
color: #fff;
font-weight: 300;
top: 0;
text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
width: 100%;
}
.UCenter-bg .user-info {
width: 85%;
height: 200rpx;
position: absolute;
align-self: center;
display: flex;
flex-direction: row;
align-items: center;
}
.user-info .user-icon {
width: 136rpx;
height: 136rpx;
border-radius: 50%;
}
.user-content {
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 30rpx;
}
.user-content .title {
2021-07-14 14:20:54 +08:00
font-size: 38rpx;
2021-06-22 16:14:04 +08:00
color: #fff;
font-weight: bold;
}
.user-content .des {
font-size: 28rpx;
color: #fff;
background-color: #3175c9;
text-align: center;
}
.UCenter-bg image {
width: 100%;
height: 400px;
}
2021-07-20 15:45:29 +08:00
.UCenter-bg .icon {
width: 48rpx;
height: 48rpx;
z-index: 10;
top: 200rpx;
position: absolute;
right: 48rpx;
}
2021-06-22 16:14:04 +08:00
.scroll-content {
width: 100%;
display: flex;
2021-07-14 14:20:54 +08:00
flex-direction: column;
2021-06-22 16:14:04 +08:00
z-index: 99;
min-height: 300rpx;
}
.UCenter-bg .gif-wave {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
z-index: 99;
mix-blend-mode: screen;
height: 100rpx;
}
map,
.mapBox {
left: 0;
z-index: 99;
mix-blend-mode: screen;
height: 100rpx;
}
map,
.mapBox {
width: 750rpx;
height: 300rpx;
}
.play-box {
display: flex;
margin-left: 20rpx;
flex-direction: column;
width: 80%;
background-color: white;
border-radius: 15rpx;
align-items: center;
justify-content: center;
padding: 10rpx 0rpx;
box-shadow: 10px 10px 5px #cacaca;
}
.play-box image {
width: 60rpx;
height: 60rpx;
}
.creat-card {
position: fixed;
right: 20rpx;
bottom: 20rpx;
padding: 20rpx;
2021-08-05 11:18:59 +08:00
background: #E6B980;
border-radius: 50%;
box-sizing: border-box;
align-items: center;
justify-content: center;
flex-direction: column;
width: 140rpx;
height: 140rpx;
z-index: 100;
}
.creat-card image {
width: 80rpx;
height: 60rpx;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2021-08-12 09:22:40 +08:00
}
.item-box {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
height: 128rpx;
background-color: #ffffff;
padding: 15rpx;
}
.item-img {
width: 96rpx;
height: 96rpx;
}
.item-content {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 128rpx;
padding: 15rpx;
width: 80%;
}
.group-box {
margin-left: 15rpx;
margin-right: 15rpx;
margin-top: 15rpx;
background-color: #ffffff;
}
.ver-box {
display: flex;
flex-direction: column;
}
.ver-box-title {
font-size: 32rpx;
color: black;
font-weight: bold;
padding: 15rpx 15rpx 0rpx 15rpx;
}
.ver-box-list {
display: flex;
flex-direction: row;
padding-left: 15rpx;
align-items: flex-start;
justify-content: flex-start;
}
.ver-box-items {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 15rpx 15rpx 15rpx 15rpx;
}
.ver-box-items text {
margin-top: 15rpx;
font-size: 24rpx;
max-width: 96rpx;
}
.ver-box-items:nth-child(1) {
margin: 15rpx 15rpx 15rpx 0rpx;
}
.ver-box-items image {
/* align-self: flex-start; */
height: 96rpx;
width: 96rpx;
border-radius: 10rpx;
2021-06-22 16:14:04 +08:00
}