1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* share/pages/buildShare/buildShare.wxss */
- .buildShare {
- width: 100%;
- min-height: 100vh;
- box-sizing: border-box;
- padding: 20rpx;
- }
- .b-name {
- font-size: 38rpx;
- color: #333333;
- font-weight: bold;
- }
- .b-content {
- margin: 10rpx 0rpx 20rpx;
- color: #6C7B8B;
- font-size: 30rpx;
- }
- .videoStyle {
- width: 100%;
- height: 450rpx;
- margin-top: 20rpx;
- }
- .b-imgBox {
- width: 100%;
- }
- .b-img-item {
- width: 150rpx;
- height: 150rpx;
- display: inline-block;
- margin-right: 27rpx;
- position: relative;
- margin-bottom: 20rpx;
- }
- .b-img-item > image {
- width: 100%;
- height: 100%;
- }
- .b-time {
- font-size: 24rpx;
- line-height: 50rpx;
- color: #999999;
- }
- .b-vrBox {
- width: 100%;
- }
- .interVrStyle {
- position: absolute;
- width: 90rpx !important;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- z-index: 9;
- }
|