| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- ::v-deep .u-textarea{
- background: #F4F4F4!important;
- border-radius: 8rpx;
- }
- ::v-deep .u-textarea__count{
- background: #F4F4F4!important;
- font-size: 28rpx!important;
- right: 24rpx!important;
- bottom:16rpx!important;
- padding: 0!important;
- }
- .content{
- padding: 64rpx 32rpx;
- .title{
- font-size: 32rpx;
- font-family: PingFang-SC-Bold, PingFang-SC;
- font-weight: bold;
- color: #080F18;
- margin-bottom: 36rpx;
- }
- .picTop{
- display: flex;
- justify-content: space-between;
- align-items: center;
- .count{
- font-size: 28rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color:#999 ;
- }
- }
-
- .phone{
- border-bottom: 1rpx solid #999;
- padding-bottom: 26rpx;
- }
-
- .btn{
- height: 96rpx;
- background: #333333;
- border-radius: 4rpx;
- border: 2rpx solid #333333;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #FFFFFF;
- width: calc(100% - 64rpx);
- position: fixed;
- bottom: 72rpx;
- }
- }
- // 图片上传区域
- .chooscontainer {
- display: flex;
- flex-wrap: wrap;
- position: relative;
- // border-bottom: 1rpx solid #EDEDED;
- margin-bottom: 30rpx;
- .addpicall {
- width: 31%;
- margin-right: 6rpx;
- margin-left: 6rpx;
- margin-top: 15rpx;
- // margin-bottom: 20rpx;
- position: relative;
- z-index: 10;
- &:nth-child(3n) {
- margin-right: 0;
- }
- image {
- width: 100%;
- height: 100%;
- }
- .del_btn {
- font-size: 48rpx;
- position: absolute;
- top: 0rpx;
- right: 30rpx;
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- background: rgba(0, 0, 0, .41);
- color: rgba(255, 255, 255, 1);
- display: flex;
- justify-content: center;
- border-radius:0 15rpx 0 15rpx;
- }
- }
- }
-
- .addpic {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- width: 210rpx;
- height: 210rpx;
- .addPicBox{
- width: 184rpx;
- height:186rpx;
- border-radius: 24rpx;
- // border: 1rpx dashed #E6E6E6;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #F7F8FA;
- image{
- width: 40rpx;
- height: 40rpx;
- }
- }
- text {
- display: block;
- padding: 0;
- font-size: 60rpx;
- }
-
- }
|