| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .new-footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- z-index: 9999999;
- .new-submit {
- width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-right: 30rpx;
- }
- .query {
- border: 1rpx solid #CCCCCC !important;
- background-color: #fff !important;
- color: #666666 !important;
- }
- }
- .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;
- .tag-box {
- margin-top: 10rpx;
- .tag {
- height: 40rpx;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- padding: 0 12rpx;
- margin-right: 8rpx;
- }
- }
- &_title {
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .exp {
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 8rpx;
- }
- }
- }
|