12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/ContentDetails/ContentDetails.wxss */
- text {
- padding: 0;
- margin: 0;
- }
- .image {
- height: 300rpx;
- width: 100%;
- overflow: hidden;
- }
- .image image {
- height: 100%;
- width: 100%;
- }
- .content {
- padding: 0 10rpx;
- box-sizing: border-box;
- text-indent: 2em;
- display: block;
- font-size: 24rpx;
- line-height: 48rpx;
- text-align: left;
- letter-spacing: 3rpx;
- margin: 20rpx 0;
- }
- .content_img {
- height: 160rpx;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- letter-spacing: 3rpx;
- margin-top: 10rpx;
- }
- .content_img image {
- height: 100%;
- width: 30%;
- }
- .process {
- height: 930rpx;
- width: 100%;
- background: #fff;
- }
- .process image {
- display: block;
- width: 90%;
- height: 100%;
- margin: 0 auto;
- }
- .phoneCall {
- text-align: center;
- margin: 40rpx 0;
- padding-bottom: 60rpx;
- }
- .phoneCall text {
- color: #fb752c;
- }
|