锦水志愿者去哪小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

188 lines
3.4 KiB

4 years ago
page {
background-color: #f7f7f7;
}
/* 自定义标题栏 start */
.header {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 999;
}
.header .header-bg {
width: 100%;
height: 100%;
position: absolute;
z-index: 10;
left: 0;
top: 0;
}
.header .navigation {
display: flex;
align-items: center;
position: relative;
z-index: 100;
}
.header .navigation .goback {
width: 40rpx;
padding-left: 14rpx;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.header .navigation .goback image {
width: 16rpx;
height: 28rpx;
}
.header .navigation .title {
display: flex;
align-items: center;
width: calc(100% - 46rpx);
margin-left: 46rpx;
color: rgba(255, 255, 255, 0.9);
font-size: 32rpx;
letter-spacing: 2rpx;
}
/* 自定义标题栏 end */
.top {
width: 100%;
height: 320rpx;
4 years ago
position: relative;
}
.top .show-all {
/* background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.6) 75%, rgba(255, 255, 255, 1) 100%); */
/* background-size: 100% 100%; */
color: #9abded;
}
.top .top-bg-img {
position: absolute;
4 years ago
width: 100%;
height: 110%;
z-index: -1;
4 years ago
}
.top-text {
4 years ago
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding: 0 30rpx 20rpx;
4 years ago
}
.top-text .top-text-title {
width: 690rpx;
4 years ago
font-size: 52rpx;
color: #ffffff;
margin: 18rpx 0;
height: 136rpx;
display: flex;
align-items: center;
justify-content: center;
4 years ago
}
.top-text .top-text-desc {
width: 690rpx;
4 years ago
font-size: 30rpx;
color: #ffffff;
overflow: hidden;
line-height: 40rpx;
}
.top-button {
4 years ago
width: 140rpx;
height: 60rpx;
position: absolute;
right: 0;
z-index: 11;
}
/* tab bar start */
.tab-bar {
width: 100%;
height: 90rpx;
background: #fff;
display: flex;
justify-content: space-around;
position: relative;
padding: 0 40rpx;
box-sizing: border-box;
border-radius: 16rpx 16rpx 0rpx 0rpx;
margin-bottom: 18rpx;
}
.tab-bar .tab {
flex: 1;
height: 90rpx;
line-height: 90rpx;
text-align: center;
width: 50%;
font-size: 32rpx;
font-weight: 500;
color: rgba(153, 153, 153, 1);
}
.tab-bar .select-tab {
color: #E50F00;
font-size: 32rpx;
font-weight: bold;
}
.tab-bar .select-bar {
width: 40rpx;
height: 8rpx;
border-radius: 5rpx;
background: #E50F00;
position: absolute;
bottom: 0rpx;
}
.tab-bar .select-bar.tab1 {
left: 25%;
transition: left linear 0.4s;
}
.tab-bar .select-bar.tab2 {
left: calc(75% - 35rpx);
transition: left linear 0.4s;
}
/* tab bar end */
.content .team-member-list {
display: flex;
padding: 0 25rpx;
}
.team-member-list .member-item {
width: 320rpx;
min-height: 282rpx;
margin: 20rpx 15rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fff;
border-radius: 20rpx;
}
.member-item .member-img {
width: 110rpx;
height: 110rpx;
background-color: #909090;
margin-top: 40rpx;
border-radius: 50%;
}
.member-item .member-name {
font-size: 30rpx;
color: #333333;
margin-top: 20rpx;
}
.member-item .member-intro {
font-size: 26rpx;
color: #c1c1c1;
margin: 18rpx 0 36rpx;
width: 85%;
text-align: center;
/* overflow: hidden;
text-overflow: ellipsis;
word-wrap:break-word;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
display: -webkit-box; */
}