123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- /* pages/groupPage/collage-details/collage-details.wxss */
- .collage-details {
- height: 100%;
- width: 100%;
- background: rgba(240, 241, 245, 1);
- overflow: hidden;
- }
- .step {
- width: 100%;
- height: 250rpx;
- background: #fff;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .step image {
- height: 60rpx;
- width: 70%;
- margin: 0 auto;
- }
- .txt {
- display: flex;
- justify-content: space-around;
- color: #535353;
- font-size: 32rpx;
- padding: 0 46rpx;
- margin-top: 20rpx;
- }
- .details-head {
- width: 100%;
- /* height: 82%; */
- margin-top: 12rpx;
- background: #fff;
- min-height: 84%;
- }
- .headImg {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- padding: 40rpx 0;
- box-sizing: border-box;
- }
- .headImg-item {
- position: relative;
- width: 104rpx;
- height: 104rpx;
- border-radius: 50%;
- margin: 20rpx 22rpx;
- }
- .headImg-item image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .headImg-item .organizerIcon {
- position: absolute;
- bottom: -15rpx;
- width: 86rpx;
- height: 30rpx;
- background: #61ca54;
- border-radius: 20rpx;
- border: 2rpx solid rgba(255, 255, 255, 1);
- font-size: 20rpx;
- /* font-family: PingFangSC-Medium; */
- /* font-weight: 500; */
- color: rgba(255, 255, 255, 1);
- left: 8rpx;
- text-align: center;
- }
- .bg-boder {
- border: 2px solid #61CA54;
- }
- .shengyu {
- display: flex;
- flex-direction: column;
- color: #696969;
- }
- .shengyu-num {
- text-align: center;
- }
- .shengyu-num text {
- color: #FF4330;
- }
- .shengyu-time {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 8rpx;
- }
- .shengyu-time .time {
- position: relative;
- width: 32rpx;
- height: 36rpx;
- margin: 0 8rpx;
- }
- .shengyu-time .time image {
- width: 24rpx;
- height: 40rpx;
- }
- .shengyu-time .time text {
- position: absolute;
- left: 2rpx;
- top: 0;
- z-index: 2;
- color: #fff;
- font-size: 28rpx;
- width: 32rpx;
- height: 36rpx;
- line-height: 36rpx;
- background: #ff9209;
- text-align: center;
- border-radius: 4rpx;
- }
- .invitation-btn {
- /* position: absolute;
- left: 50%;
- top: 55%; */
- /* transform: translate(-50%); */
- width: 434rpx;
- height: 80rpx;
- margin: 80rpx auto 20rpx;
- }
- .invitation-btn image {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .invitation-btn text {
- /* position: absolute; */
- width: 100%;
- height: 100%;
- display: inline-block;
- text-align: center;
- line-height: 80rpx;
- z-index: 2;
- color: #fff;
- background: #ff9209;
- border-radius: 56rpx;
- }
- .rule {
- position: fixed;
- right: 0;
- top: 82%;
- width: 84rpx;
- height: 88rpx;
- z-index: 2;
- }
- .rule image {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .rule text {
- position: absolute;
- left: 30rpx;
- top: 10rpx;
- font-size: 24rpx;
- color: #fff;
- z-index: 2;
- }
- .explain {
- color: #414141;
- width: 100%;
- padding: 0 70rpx;
- box-sizing: border-box;
- text-align: center;
- font-size: 24rpx;
- /* line-height: 50rpx; */
- margin-top:50rpx;
- }
- .explain text {
- display: block;
- font-size: 36rpx;
- }
|