12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .project {
- width: 100vw;
- height: 158rpx;
- background-color: #ffffff;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- border-bottom: 1px solid #ddd;
- >view {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- line-height: 36rpx;
- }
- .title {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- margin-bottom: 15rpx;
- width: 550rpx;
- }
- }
- .target {
- height: 270rpx;
- width: 100vw;
- background-color: #ffffff;
- border-top: 1px solid #ddd;
- box-sizing: border-box;
- padding-left: 30rpx;
- >view {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 90rpx;
- border-bottom: 1px solid #ddd;
- box-sizing: border-box;
- padding-right: 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- text {
- color: red;
- margin-right: 8rpx;
- }
- input {
- text-align: right;
- }
- }
- }
- .footer {
- position: fixed;
- width: 100vw;
- height: 130rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- bottom: 0;
- background-color: #fff;
- z-index: 999;
- .but {
- width: 500rpx;
- height: 90rpx;
- background: #FA8C16;
- border-radius: 100rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
|