facephoto.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/student/facephoto/facephoto.wxss */
  2. page{
  3. background: #f5f5f5;
  4. }
  5. button{
  6. width: 690rpx;
  7. height: 90rpx;
  8. background: #6282f4;
  9. color: #fff;
  10. border-radius: 10rpx;
  11. position: fixed;
  12. left: 0;
  13. right: 0;
  14. margin:0 auto;
  15. bottom: 140rpx;
  16. }
  17. .photo{
  18. margin: auto;
  19. width: 690rpx;
  20. background: #fff;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. flex-direction: column;
  25. margin-top: 30rpx;
  26. padding: 60rpx 0rpx 40rpx 0rpx;
  27. border-radius: 10rpx;
  28. }
  29. .photo-title{
  30. color: #333;
  31. font-size: 34rpx;
  32. }
  33. .photo-content{
  34. color: #666;
  35. font-size: 24rpx;
  36. margin-top: 30rpx;
  37. }
  38. .photo-images{
  39. width: 240rpx;
  40. height: 240rpx;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. flex-direction: column;
  45. background: #f5f5f5;
  46. border-radius: 30rpx;
  47. margin-top: 40rpx;
  48. }
  49. .photo-images text{
  50. margin-top: 20rpx;
  51. font-size: 24rpx;
  52. color:#333;
  53. }
  54. .photo-images image{
  55. width: 86rpx;
  56. height: 70rpx;
  57. }
  58. .photo-text{
  59. text-align: center;
  60. margin-top: 20rpx;
  61. font-size: 30rpx;
  62. color: #333;
  63. }
  64. .photo-file{
  65. width: 240rpx;
  66. height: 240rpx;
  67. border-radius: 30rpx;
  68. margin-top:40rpx;
  69. }