1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- background: #f8f6f6;
- height: 100%;
- }
- page .content {
- background: #f8f6f6;
- height: 100%;
- }
- .equity_box {
- border-radius: 10rpx;
- padding: 25rpx 25rpx;
- margin: 25rpx 0rpx;
- background: #ffffff;
- }
- .equity_box .text-box {
- height: 200rpx;
- }
- .equity_box .text-box textarea {
- font-size: 25rpx;
- width: 100%;
- height: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 5;
- }
- .submit-btn {
- margin: 102rpx auto 0;
- width: 560rpx;
- height: 85rpx;
- background: #24a17d;
- border-radius: 43px;
- text-align: center;
- font-size: 36rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #ffffff;
- line-height: 85rpx;
- }
- .add-img-box {
- width: 100%;
- flex-direction: row;
- flex-wrap: wrap;
- margin-top: 50rpx;
- }
- .add-img-item {
- width: 180rpx;
- height: 180rpx;
- border-radius: 24rpx;
- position: relative;
- margin: 0rpx 20rpx;
- margin-bottom: 25rpx;
- }
- .add-img-item .add-img {
- width: 100%;
- height: 100%;
- }
- .add-img-camera {
- flex: 1;
- }
- .add-img-del {
- position: absolute;
- width: 40rpx;
- height: 40rpx;
- left: 155rpx;
- bottom: 155rpx;
- border-radius: 20rpx;
- }
- .address-time {
- width: 484rpx;
- height: 88rpx;
- background-color: whitesmoke;
- opacity: 1;
- border-radius: 24rpx;
- text-align: center;
- font-size: 35rpx;
- font-weight: 500;
- color: #333333;
- }
- .line {
- width: 750rpx;
- height: 1px;
- -webkit-transform: scaleY(0.3);
- transform: scaleY(0.3);
- background-color: rgba(0, 0, 0, 0.5);
- }
|