index.wxss 797 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/style/style.wxss */
  2. /* 公共样式 */
  3. .main {
  4. float: left;
  5. width: 100%;
  6. margin: 100rpx 0;
  7. }
  8. .titleTop {
  9. text-align: center;
  10. }
  11. /* tab选项卡样式 */
  12. .swiper-tab {
  13. width: 100%;
  14. border-bottom: 2rpx solid #ccc;
  15. text-align: center;
  16. height: 80rpx;
  17. line-height: 80rpx;
  18. display: flex;
  19. flex-flow: row;
  20. justify-content: space-between;
  21. }
  22. .swiper-tab-item {
  23. width: 50%;
  24. color: #434343;
  25. }
  26. .active {
  27. color: #25b6ed;
  28. border-bottom: 2rpx solid #25b6ed;
  29. }
  30. /* 点击上下效果 */
  31. .hide {
  32. display: none;
  33. }
  34. .show {
  35. display: block;
  36. }
  37. .viewTakePhoto {
  38. flex: 1;
  39. height: 100%;
  40. text-align: center;
  41. line-height: 50px;
  42. }
  43. .btnImg {
  44. width: 100rpx;
  45. height: 100rpx;
  46. margin-top: 430px;
  47. margin-left: 310rpx;
  48. }
  49. .camera {
  50. width: 100%;
  51. height: 550px;
  52. }