123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .cell {
- position: relative;
- display: flex;
- justify-content: space-between;
- background-color: #fff;
- padding: 30rpx;
- }
- .cell::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .cell-hd,
- .tit {
- color: #000;
- }
- .cell-bd {
- flex: 1;
- }
- .cell-col {
- position: relative;
- background-color: #fff;
- padding: 20rpx 30rpx;
- }
- .cell-col .tit {
- margin-bottom: 20rpx;
- }
- .cell-col::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .image_uploader_selector {
- width: 56px;
- height: 56px;
- border: 1px dashed #ccc;
- display: inline-block;
- }
- .image_uploader_indicate {
- position: absolute;
- font-size: 32px;
- color: #ccc;
- width: 56px;
- height: 56px;
- line-height: 52px;
- text-align: center;
- }
- .cell-ipt {
- text-align: right;
- }
- .cell-textarea {
- width: 100%;
- padding-bottom: 40rpx;
- }
- .wordLimit {
- position: absolute;
- right: 30rpx;
- bottom: 20rpx;
- }
- .image_uploader_image {
- position: relative;
- display: inline-block;
- width: 56px;
- height: 56px;
- border: 1px dashed #e6e6e6;
- padding: 1px;
- box-sizing: border-box;
- margin-right: 12px;
- }
- .image_uploader_image image {
- width: 52px;
- height: auto;
- max-width: 52px;
- max-height: 52px;
- overflow: hidden;
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- .image_uploader_image .image_uploader_image_img_portrait {
- width: auto !important;
- height: 52px !important;
- }
- .image_uploader_image .image_uploader_image_delete {
- border-radius: 50%;
- -webkit-border-radius: 50%;
- position: absolute;
- right: -8px;
- top: -8px;
- background-color: #ff2742;
- line-height: 20px;
- height: 20px;
- width: 20px;
- text-align: center;
- color: #fff;
- font-size: 14px;
- font-weight: bold;
- }
- .submit_button {
- height: 70rpx;
- line-height: 70rpx;
- top: 10px;
- position: relative;
- border-top: 1px solid #eee;
- text-align: center;
- margin: 15px 30rpx 30px;
- }
- .submit_button .span {
- padding: 5px 20px;
- font-size: 15px;
- color: #fff;
- background-color: #F75451;
- position: relative;
- text-align: center;
- border-radius: 5px;
- }
- .addBtn {
- display: inline-block;
- color: #fff;
- padding: 4px 15rpx;
- border-radius: 8rpx;
- background: #F75451;
- margin-top: 20rpx;
- }
- .video-wrap {
- padding: 0 0 10rpx;
- }
- .video-wrap .item {
- position: relative;
- padding: 30rpx 0;
- }
- .video-wrap .item::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .video-wrap .item:last-child::after {
- content: none;
- }
|