1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/student/facephoto/facephoto.wxss */
- page{
- background: #f5f5f5;
- }
- button{
- width: 690rpx;
- height: 90rpx;
- background: #6282f4;
- color: #fff;
- border-radius: 10rpx;
- position: fixed;
- left: 0;
- right: 0;
- margin:0 auto;
- bottom: 140rpx;
- }
- .photo{
- margin: auto;
- width: 690rpx;
- background: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin-top: 30rpx;
- padding: 60rpx 0rpx 40rpx 0rpx;
- border-radius: 10rpx;
- }
- .photo-title{
- color: #333;
- font-size: 34rpx;
- }
- .photo-content{
- color: #666;
- font-size: 24rpx;
- margin-top: 30rpx;
- }
- .photo-images{
- width: 240rpx;
- height: 240rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- background: #f5f5f5;
- border-radius: 30rpx;
- margin-top: 40rpx;
-
- }
- .photo-images text{
- margin-top: 20rpx;
- font-size: 24rpx;
- color:#333;
- }
- .photo-images image{
- width: 86rpx;
- height: 70rpx;
- }
- .photo-text{
- text-align: center;
- margin-top: 20rpx;
- font-size: 30rpx;
- color: #333;
- }
- .photo-file{
- width: 240rpx;
- height: 240rpx;
- border-radius: 30rpx;
- margin-top:40rpx;
- }
|