|
@@ -191,3 +191,77 @@
|
|
|
.invitation .tips2 {
|
|
|
color: #2DCE66;
|
|
|
}
|
|
|
+.popBox {
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ background-color: #FFA31D;
|
|
|
+ border-top-left-radius: 20rpx;
|
|
|
+ border-top-right-radius: 20rpx;
|
|
|
+ padding-bottom: 30rpx;
|
|
|
+}
|
|
|
+.popBox .header {
|
|
|
+ position: relative;
|
|
|
+ padding: 30rpx 0;
|
|
|
+ letter-spacing: 2rpx;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: white;
|
|
|
+ background-color: #FFA31D;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+.popBox .header .close {
|
|
|
+ position: absolute;
|
|
|
+ right: 20rpx;
|
|
|
+ top: 26rpx;
|
|
|
+ width: 50rpx;
|
|
|
+ height: 50rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+.popBox .list {
|
|
|
+ height: calc(100% - 100rpx);
|
|
|
+ padding: 0px 20rpx 20rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.popBox .list .item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ padding: 10rpx 30rpx;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.popBox .list .item .left {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.popBox .list .item .left .num {
|
|
|
+ font-size: 30rpx;
|
|
|
+ width: 60rpx;
|
|
|
+}
|
|
|
+.popBox .list .item .left .avatar {
|
|
|
+ width: 68rpx;
|
|
|
+ height: 68rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #D9D9D9;
|
|
|
+}
|
|
|
+.popBox .list .item .left .nickName {
|
|
|
+ width: 200rpx;
|
|
|
+ margin-left: 16rpx;
|
|
|
+}
|
|
|
+.popBox .list .item .time {
|
|
|
+ font-size: 26rpx;
|
|
|
+}
|
|
|
+.popBox .list .copywriting {
|
|
|
+ width: 100%;
|
|
|
+ margin: 100rpx 0rpx;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.popBox .list .copywriting .text {
|
|
|
+ margin-bottom: 40rpx;
|
|
|
+}
|
|
|
+.popBox .list .inviteBtn {
|
|
|
+ padding: 30rpx 0;
|
|
|
+ width: 390rpx;
|
|
|
+ height: 68rpx;
|
|
|
+}
|