1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /* pages/invitation/verify/index.wxss */
- .container {
- width: 100%;
- font-size: 26rpx;
- box-sizing: border-box;
- padding: 30rpx 30rpx 60rpx 30rpx;
- }
- .container_title {
- width: 100%;
- /* background: bisque; */
- /* height: 90rpx; */
- /* line-height: 90rpx; */
- /* text-align: center; */
- box-sizing: border-box;
- padding: 0 10rpx;
- font-size: 28rpx;
- font-weight: bolder;
- border-left: 6rpx solid #000000;
- }
- .container_guest {
- margin-top: 30rpx;
- /* background-color: cadetblue; */
- }
- .container_guest-item {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- color: #303133;
- border-bottom: 1px solid #F2F6FC;
- box-sizing: border-box;
- padding: 0 20rpx;
- }
- .container_guest-item view:nth-last-child(odd) {
- color: #909399;
- }
- .container_verifyBtn {
- margin-top: 30rpx;
- width: 100%;
- background-color: #000000;
- color: #FFFFFF;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- }
|