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.
117 lines
2.0 KiB
117 lines
2.0 KiB
page{
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #f7f7f7;
|
|
}
|
|
.join-association {
|
|
width:100%;
|
|
height:100%;
|
|
box-sizing: border-box;
|
|
padding: 32rpx 30rpx;
|
|
}
|
|
.join-association .content {
|
|
width:100%;
|
|
height:100%;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
}
|
|
.join-association .introduce {
|
|
width: 100%;
|
|
height: 354rpx;
|
|
border-radius: 16rpx 16rpx 0 0;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.introduce .bgimage {
|
|
width:100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
.introduce .info {
|
|
width:100%;
|
|
height: 100%;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
.introduce .info image {
|
|
width: 116rpx;
|
|
height: 116rpx;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
left: calc(50% - 58rpx);
|
|
margin-top: 45rpx;
|
|
}
|
|
.introduce .info .name {
|
|
font-size: 32rpx;
|
|
line-height: 32rpx;
|
|
margin: 10rpx 0 7rpx 0;
|
|
width:100%;
|
|
text-align:center;
|
|
color: #fff;
|
|
}
|
|
.introduce .info .leader {
|
|
font-size: 20rpx;
|
|
line-height: 20rpx;
|
|
width: 100%;
|
|
text-align:center;
|
|
color: rgba(255,255,255, 0.8);
|
|
}
|
|
.introduce-content {
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
position: relative;
|
|
top: -40rpx;
|
|
max-height: calc(100vh - 600rpx);
|
|
min-height: calc(100vh - 600rpx);
|
|
overflow-y: auto;
|
|
}
|
|
.introduce-content .tip {
|
|
width: 100%;
|
|
font-size: 34rpx;
|
|
line-height: 56rpx;
|
|
color: #333;
|
|
text-indent: 68rpx;
|
|
}
|
|
.introduce-content > .tip + .tip {
|
|
margin-top: 12rpx;
|
|
}
|
|
|
|
.button-view {
|
|
position: fixed;
|
|
width: calc(100% - 60rpx);
|
|
bottom: 100rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
button {
|
|
width: 560rpx;
|
|
height: 84rpx;
|
|
font-size: 34rpx;
|
|
color: #fff;
|
|
background: linear-gradient(90deg,#F40C0C,#FF4E4E);
|
|
}
|
|
.hover-button {
|
|
background: #e64340;
|
|
}
|
|
.button-change {
|
|
position: fixed;
|
|
width: calc(100% - 60rpx);
|
|
bottom: 100rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.button-change button {
|
|
width: 560rpx;
|
|
height: 84rpx;
|
|
font-size: 34rpx;
|
|
color: #fff;
|
|
background: #01C15C;
|
|
}
|
|
.button-change .hover-change {
|
|
background: green;
|
|
}
|