1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* pages/access/access.wxss */
- .access {
- width: 100%;
- height: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #eaeaea;
- }
- .photo {
- display: flex;
- flex-wrap: wrap;
- }
- .img {
- position: relative;
- width: 332rpx;
- height: 241rpx;
- border-radius: 20rpx;
- margin-bottom: 30rpx;
- }
- .img image{
- width: 100%;
- height: 100%;
- border-radius: 20rpx;
- }
- .img .delect {
- position: absolute;
- top: 15rpx;
- right: 15rpx;
- width: 53rpx;
- height: 53rpx;
- }
- .img:nth-child(even) {
- margin-left: 26rpx;
- }
- .information-item {
- display: flex;
- align-items: center;
- width: 100%;
- padding: 20rpx 25rpx;
- box-sizing: border-box;
- }
- .information-item image {
- width: 193rpx;
- height: 193rpx;
- border-radius: 50%;
- margin-right: 55rpx;
- }
- .access-name {
- display: flex;
- flex-direction: column;
- }
- .access-name .name {
- color: #424242;
- font-size: 40rpx;
- }
- .access-name text {
- font-size: 32rpx;
- color: #fe1000;
- margin-top: 20rpx;
- }
- .stick {
- position: absolute;
- right: 25rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 145rpx;
- height: 145rpx;
- background: orange;
- color: #fff;
- border-radius: 50%;
- }
|