123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- .wrapper {
- width: 100%;
- padding-top: 30rpx;
- }
- .width-690 {
- width: 690rpx;
- margin: 0 auto;
- }
- form {
- display: block;
- width: 100%;
- }
- label {
- display: flex;
- align-items: center;
- text {
- line-height: 42rpx;
- font-size: 28rpx;
- color: rgba(51, 51, 51, 1);
- &:nth-of-type(2) {
- margin-left: 10rpx;
- color: rgba(153, 153, 153, 1);
- }
- }
- }
- .photo {
- .value {
- width: 142rpx;
- height: 91rpx;
- margin: 30rpx 0 45rpx;
- overflow: hidden;
- }
- image {
- display: block;
- width: 100%;
- height: 100%;
- background: pink;
- }
- }
- .video {
- .value {
- margin-top: 43rpx;
- }
- }
- .btn-upload {
- width: 93rpx;
- height: 94rpx;
- background: pink;
- }
- .tip {
- width: 100%;
- padding-bottom: 20rpx;
- margin-top: 40rpx;
- line-height: 42rpx;
- font-size: 24rpx;
- color: rgba(153, 153, 153, 1);
- border-bottom: 2rpx solid rgba(231, 231, 231, 1);
- }
- .name {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 40rpx 0 30rpx;
- .value {
- width: calc(100% - 84rpx);
- }
- input {
- display: block;
- width: 100%;
- height: 44rpx;
- font-size: 28rpx;
- color: rgba(51, 51, 51, 1);
- text-align: right;
- }
- }
- .placeholder {
- color: rgba(153, 153, 153, 1);
- }
- .describe {
- position: relative;
- left: 0;
- top: 0;
- textarea {
- display: block;
- width: 100%;
- padding: 17rpx 21rpx;
- min-height: 186rpx;
- border-radius: 20rpx;
- background: rgba(245, 245, 245, 1);
- line-height: 38rpx;
- font-size: 28rpx;
- color: rgba(51, 51, 51, 1);
- }
- }
- .words-limit {
- position: absolute;
- bottom: 17rpx;
- right: 21rpx;
- z-index: 1;
- line-height: 28rpx;
- font-size: 24rpx;
- color: rgba(153, 153, 153, 1);
- }
- .type {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 22rpx 0 16rpx;
- border-bottom: 2rpx solid rgba(231, 231, 231, 1);
- .value {
- width: 568rpx;
- line-height: 42rpx;
- font-size: 28rpx;
- color: rgba(107, 133, 89, 1);
- text-align: right;
- &.placeholder {
- color: rgba(153, 153, 153, 1);
- }
- }
- .arrow {
- width: 9rpx;
- height: 15rpx;
- background: pink;
- }
- }
- button.btn-submit {
- width: 627rpx;
- height: 80rpx;
- margin: 40rpx auto 0;
- border-radius: 40rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- &.edit {
- background-color: rgba(46, 129, 255, 1);
- }
- &.send {
- background-color: rgba(145, 179, 121, 1);
- }
- }
|