| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @import "./modules/list/index";
- .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;
- }
- }
- }
|