123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- page {
- // background: #ededed;
- }
-
- .detailBox{
- padding-top: 30rpx;
- padding-bottom: 200rpx;
- .label1{
- font-size: 32rpx;
- padding-left: 30rpx;
- }
- .textArea{
- padding:0 30rpx;
- padding-top: 30rpx;
- // height: 200rpx;
- .textarea{
- width: 100%;
- // height: auto;
- height: 200rpx;
- }
- }
- .line{
- padding: 0 30rpx;
- .lineCon{
- height: 4rpx;
- border-bottom: 3rpx solid #eee;
- }
- }
- .label2{
- font-size: 32rpx;
- padding-left: 30rpx;
- margin-top: 30rpx;
- margin-bottom: 20rpx;
- }
-
- .kefuAndBtn{
- position: fixed;
- bottom: 0;
- display: flex;
- align-items: center;
- background: #fff;
- padding: 30rpx;
- width: 100%;
- z-index: 9999999999999;
- .btn{
- width: 100%;
- background: #26B3A0;
- height: 100rpx;
- border-radius: 20rpx;
- font-size: 30rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-weight: 600;
- }
- }
- }
-
-
- // 图片上传区域
- .chooscontainer {
- display: flex;
- flex-wrap: wrap;
- position: relative;
- // border-bottom: 1rpx solid #EDEDED;
- margin-bottom: 48rpx;
- padding: 0 20rpx;
- .addpicall {
- width: 31%;
- margin-right: 6rpx;
- margin-left: 6rpx;
- margin-top: 15rpx;
- position: relative;
- z-index: 10;
-
- &:nth-child(3n) {
- margin-right: 0;
- }
-
- image {
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- }
-
- .del_btn {
- position: absolute;
- top: 10rpx;
- right: 45rpx;
- width: 36rpx;
- height: 36rpx;
- // background: #6C5A44;
- border-radius: 18rpx;
- // color: #B99874;
- background: rgba(0, 0, 0, .41);
- color: rgba(255, 255, 255, 1);
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
-
-
- }
-
- .addpic {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 210rpx;
- height: 210rpx;
- .addPicBox{
- width: 184rpx;
- height:186rpx;
- border-radius: 14rpx;
- border: 1rpx solid #E6E6E6;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #F7F8FA;
- image{
- width: 40rpx;
- height: 40rpx;
- }
- }
- text {
- display: block;
- padding: 0;
- font-size: 60rpx;
- }
-
- }
- ::v-deep .uni-textarea-textarea {
- color: #2C2C2C;
- font-size: 30rpx;
- }
-
- ::v-deep .uni-input-input {
- color: #2C2C2C;
- font-size: 28rpx;
- }
-
- //封面
- .cover {
- width: 230rpx;
- height: 290rpx;
- border-radius: 8rpx;
- position: absolute;
- display: flex;
- justify-content: center;
- top: -64rpx;
- left: -8rpx;
- color: #fff;
- background-color: #000;
- z-index: 2;
-
- }
- // 图片上传区域结束
-
-
-
|