123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- page {
- background-color: #fff !important;
- }
- .ceiling {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1000;
- background-color: #fff;
- padding: 20rpx;
- padding-bottom: 0;
- width: 100%;
- box-sizing: border-box;
- }
- .modal-label {
- padding: 20rpx;
- background-color: #fff;
- }
- .order-card {
- box-sizing: border-box;
- position: relative;
- }
- .order-card-main {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .order-card-main>image {
- flex-shrink: 0;
- width: 180rpx;
- height: 180rpx;
- border-radius: 20rpx;
- }
- .order-card-content {
- display: flex;
- flex-direction: column;
- flex-shrink: 1;
- width: 100%;
- }
- .listTitle {
- font-size: 28rpx;
- overflow: hidden;
- font-weight: 600;
- text-overflow: ellipsis;
- display: -webkit-box;
- /* height: 84rpx; */
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .photo-date-list {
- display: flex;
- align-items: center;
- color: #595757;
- }
- .photo-date-list-title {
- box-sizing: border-box;
- padding: 10rpx 0 28rpx 0;
- text-align: center;
- }
- .date-tabs-wrap {
- flex: 1;
- overflow: auto;
- -webkit-overflow-scrolling: touch;
- }
- .date-img-wrap {
- max-height: 1330rpx;
- }
- .date-tabs {
- position: relative;
- padding: 0rpx 0 18rpx 0;
- }
- .date-tabs-item {
- display: inline-block;
- font-size: 24rpx;
- line-height: 20rpx;
- margin-left: 40rpx;
- text-align: center;
- }
- .scoreImg {
- width: 100%;
- text-align: justify;
- /* margin-bottom: 90rpx; */
- /* padding-bottom: 280rpx; */
- }
- /* 多选框按钮 */
- .scoreImg .icon {
- position: absolute;
- top: -8rpx;
- right: -8rpx;
- z-index: 555;
- background: #fff;
- border-radius: 50%;
- font-size: 36rpx;
- color: #EE3A43;
- z-index: 2;
- }
- .btn-bottom {
- width: calc(100% - 40rpx);
- position: fixed;
- bottom: 0;
- display: flex;
- justify-content: space-around;
- background: #fff;
- padding: 20rpx;
- font-size: 36rpx;
- z-index: 999;
- }
- .btn-bottom view:first-child {
- border: 1rpx solid #EE3A43;
- color: #EE3A43;
- line-height: 2;
- padding: 0 20rpx;
- border-radius: 10rpx;
- }
- .btn-bottom view:last-child {
- color: #fff;
- line-height: 2;
- padding: 0 40rpx;
- background: #EE3A43;
- border-radius: 10rpx;
- flex: 1;
- margin-left: 40rpx;
- text-align: center;
- }
- .save-photo {
- position: fixed;
- right: 20rpx;
- bottom: 200rpx;
- color: #EE3A43;
- background: #fff;
- border: 1rpx solid #EE3A43;
- border-radius: 50%;
- font-size: 28rpx;
- width: 80rpx;
- height: 80rpx;
- text-align: center;
- padding: 10rpx;
- z-index: 99;
- }
- /* 瀑布流布局 */
- .content {
- text-align: justify;
- }
- .item {
- display: inline-block;
- width: 98%;
- border-radius: 20rpx;
- overflow: hidden;
- position: relative;
- }
- .item image {
- width: 100%;
- }
- #left,
- #right {
- display: inline-block;
- vertical-align: top;
- width: 50%;
- }
|