| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @import "./modules/list/index";
- @import "./detail.skeleton.wxss";
- .popup {
- .title {
- position: sticky;
- height: 80rpx;
- line-height: 80rpx;
- width: 100%;
- text-align: center;
- border-bottom: 1rpx solid #ddd;
- font-weight: 600;
- color: #333;
- top: 0;
- background-color: #fff;
- .icon {
- position: absolute;
- right: 28rpx;
- top: 22rpx;
- color: #999;
- }
- }
- .enterprise {
- width: 100%;
- box-sizing: border-box;
- padding-left: 30rpx;
- padding-right: 10rpx;
- padding-bottom: 10rpx;
- border-bottom: 1rpx solid #ddd;
- margin-top: 10rpx;
- &_title {
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .tag-box {
- margin-top: 10rpx;
- .tag {
- height: 40rpx;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- padding: 0 12rpx;
- margin-right: 8rpx;
- }
- }
- .exp {
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 8rpx;
- }
- }
- }
|