123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /* new 20190711 */
- .goods {
- background-color: #fff;
- }
- .goods-item {
- position: relative;
- display: flex;
- padding: 30rpx;
- }
- .goods-item::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .goods-item-r {
- flex: 1;
- margin-left: 20rpx;
- width: 0;
- }
- .show-img {
- width: 120rpx;
- height: 120rpx;
- }
- .name {
- font-size: 26rpx;
- color: #444;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .mount {
- font-size: 22rpx;
- color: #aaa;
- margin-top: 8rpx;
- }
- .goods-item .price {
- display: block;
- font-size: 28rpx;
- color: #444;
- margin-top: 14rpx;
- }
- .cell {
- position: relative;
- display: flex;
- justify-content: space-between;
- background-color: #fff;
- padding: 30rpx;
- align-items: center;
- }
- .cell::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .cell-hd,
- .tit {
- color: #000;
- }
- .cell-col {
- position: relative;
- background-color: #fff;
- padding: 20rpx 30rpx;
- }
- .cell-col .tit {
- margin-bottom: 20rpx;
- }
- .cell-col::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- border-bottom: 1px solid #e5e5e5;
- transform-origin: 0 0;
- transform: scaleY(0.5);
- }
- .image_uploader_selector {
- width: 56px;
- height: 56px;
- border: 1px dashed #ccc;
- display: inline-block;
- }
- .image_uploader_indicate {
- position: absolute;
- font-size: 32px;
- color: #ccc;
- width: 56px;
- height: 56px;
- line-height: 52px;
- text-align: center;
- }
- .cell-ipt {
- text-align: right;
- }
- .cell-textarea {
- width: 100%;
- }
- .submit_button {
- height: 70rpx;
- line-height: 70rpx;
- top: 10px;
- position: relative;
- border-top: 1px solid #eee;
- text-align: center;
- margin: 15px 30rpx 30px;
- }
- .submit_button .span {
- padding: 5px 20px;
- font-size: 15px;
- color: #fff;
- background-color: #F75451;
- position: relative;
- text-align: center;
- border-radius: 5px;
- }
- .note {
- padding: 30rpx 30rpx 100rpx;
- }
- .note-tit {
- font-weight: bold;
- margin-bottom: 10rpx;
- font-size: 28rpx;
- }
- .article .p {
- font-size: 24rpx;
- color: #666;
- line-height: 1.6;
- }
- .image_uploader_image {
- position: relative;
- display: inline-block;
- width: 56px;
- height: 56px;
- border: 1px dashed #e6e6e6;
- padding: 1px;
- box-sizing: border-box;
- margin-right: 12px;
- }
- .image_uploader_image image {
- width: 52px;
- height: auto;
- max-width: 52px;
- max-height: 52px;
- overflow: hidden;
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- .image_uploader_image .image_uploader_image_img_portrait {
- width: auto !important;
- height: 52px !important;
- }
- .image_uploader_image .image_uploader_image_delete {
- border-radius: 50%;
- -webkit-border-radius: 50%;
- position: absolute;
- right: -8px;
- top: -8px;
- background-color: #ff2742;
- line-height: 20px;
- height: 20px;
- width: 20px;
- text-align: center;
- color: #fff;
- font-size: 14px;
- font-weight: bold;
- }
- .checkbox {
- width: 50rpx;
- height: 50rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .checkbox .checkbox-img {
- width: 48rpx;
- height: 48rpx;
- }
- .isrefund {
- text-decoration: line-through;
- }
|