1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/style/style.wxss */
- /* 公共样式 */
- .main {
- float: left;
- width: 100%;
- margin: 100rpx 0;
- }
- .titleTop {
- text-align: center;
- }
- /* tab选项卡样式 */
- .swiper-tab {
- width: 100%;
- border-bottom: 2rpx solid #ccc;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- display: flex;
- flex-flow: row;
- justify-content: space-between;
- }
- .swiper-tab-item {
- width: 50%;
- color: #434343;
- }
- .active {
- color: #25b6ed;
- border-bottom: 2rpx solid #25b6ed;
- }
- /* 点击上下效果 */
- .hide {
- display: none;
- }
- .show {
- display: block;
- }
- .viewTakePhoto {
- flex: 1;
- height: 100%;
- text-align: center;
- line-height: 50px;
- }
- .btnImg {
- width: 100rpx;
- height: 100rpx;
- margin-top: 430px;
- margin-left: 310rpx;
- }
- .camera {
- width: 100%;
- height: 550px;
- }
|