12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* 创业指引 */
- page {
- min-height: calc(100vh - 88rpx);
- background-color: #f2f2f2;
- }
- .entrepreneurship {
- font-family: PingFangSC-Regular, PingFang SC;
- &-list {
- padding: 30rpx;
- &-item {
- background-color: #fff;
- padding: 31rpx 32rpx;
- margin-bottom: 20rpx;
- &-title {
- font-size: 32rpx;
- color: #000;
- margin-bottom: 14rpx;
- }
- &-content {
- color: #545454;
- font-size: 24rpx;
- margin-bottom: 14rpx;
- overflow : hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- &-bottom {
- display: flex;
- justify-content: space-between;
- .right {
- color: #9F9F9F;
- font-size: 22rpx;
- }
- .left {
- font-size: 22rpx;
- }
- .waiting {
- color: #EF6622;
- }
- .had {
- color: #028DFE;
- }
- }
- }
- }
- }
- .bottom-btn {
- position: fixed;
- bottom: 0;
- width: 100%;
- height: 166rpx;
- background-color: #fff;
- display: flex;
- justify-content: center;
- &-box {
- background-color: #709078;
- width: calc(100% - 60rpx);
- height: 80rpx;
- line-height: 80rpx;
- margin-top: 26rpx;
- text-align: center;
- font-size: 30rpx;
- color: #fff;
- }
- }
|