123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- page {
- padding: 20rpx;
- box-sizing: border-box;
- text-align: center;
- }
- .page {
- width: 100%;
- background-color: #fff;
- border-radius: 14rpx;
- box-sizing: border-box;
- padding: 20rpx;
- }
- .textarea {
- width: 100%;
- height: 180rpx;
- padding: 16rpx;
- box-sizing: border-box;
- font-size: 26rpx;
- color: #585657;
- text-align: left;
- border: 1px solid #cbcbcb;
- border-radius: 10rpx;
- margin-top: 20rpx;
- }
- .place {
- font-size: 26rpx;
- color: #a6a6a6;
- }
- .sub {
- font-size: 30rpx;
- line-height: 90rpx;
- }
- .images {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- padding-top: 30rpx;
- }
- .images .add-box {
- position: relative;
- }
- /* .images .add-box::before{content:'';width:73rpx;height:4rpx;background-color:#b2b0b1;position:absolute;left:50%;top:68rpx;margin-left:-36rpx;}
- .images .add-box::after{content:'';width:4rpx;height:74rpx;background-color:#b2b0b1;position:absolute;left:50%;top:34rpx;margin-left:-2rpx;} */
- .images-col {
- width: 140rpx;
- height: 140rpx;
- margin: 12rpx;
- }
- .images-col .image {
- width: 100%;
- height: 100%;
- }
- .imgbox {
- position: relative;
- }
- .delBox {
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- right: -15rpx;
- top: -15rpx;
- z-index: 1;
- }
- .del {
- width: 32rpx;
- height: 32rpx;
- border: 1px solid #fff;
- background-color: #ee3a43;
- border-radius: 50%;
- position: relative;
- }
- .del::after {
- content: '';
- width: 20rpx;
- height: 4rpx;
- background-color: #fff;
- border-radius: 1px;
- transform: rotate(45deg);
- position: absolute;
- left: 6rpx;
- top: 14rpx;
- }
- .del::before {
- content: '';
- width: 20rpx;
- height: 4rpx;
- background-color: #fff;
- border-radius: 1px;
- transform: rotate(-45deg);
- position: absolute;
- left: 6rpx;
- top: 14rpx;
- }
- .tip {
- font-size: 28rpx;
- text-align: left;
- margin: 10rpx 0;
- }
- .btn {
- background-color: #F5F5F4;
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 1000;
- }
- .sub {
- font-size: 30rpx;
- line-height: 90rpx;
- width: 80%;
- margin: 20rpx 0;
- border-radius: 20rpx;
- }
|