| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- .new-footer {
- position: fixed;
- display: flex;
- justify-content: flex-end;
- left: 0;
- bottom: 0;
- width: 100%;
- padding: 20rpx 30rpx;
- padding-top: 10rpx;
- box-sizing: border-box;
- background-color: #fff;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
- }
- .new-submit {
- width: 180rpx;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 8rpx !important;
- font-size: 32rpx;
- background-color: #3874F6;
- color: #fff;
- }
- .head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .count {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- .but {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 60rpx;
- height: 60rpx;
- background-color: #3874F6;
- color: #fff;
- border-radius: 50%;
- }
- .product-list {
- padding: 20rpx;
- background-color: #F4F5F7;
- }
- /* 页面背景颜色 */
- page {
- background-color: #F4F5F7;
- }
- .product-item {
- margin-bottom: 20rpx;
- background-color: #fff;
- border-radius: 8rpx;
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
- overflow: hidden;
- }
- .product-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- background-color: #e8e8e8;
- border-bottom: 1rpx solid #d9d9d9;
- }
- .product-name {
- font-size: 30rpx;
- font-weight: bold;
- color: #333;
- flex: 1;
- }
- .product-actions {
- display: flex;
- gap: 20rpx;
- }
- .product-actions van-icon {
- font-size: 32rpx;
- color: #999;
- }
- .product-body {
- padding: 20rpx;
- }
- .product-desc {
- display: flex;
- flex-wrap: wrap;
- gap: 20rpx;
- font-size: 24rpx;
- color: #666;
- margin-bottom: 20rpx;
- }
- .product-edit {
- display: flex;
- flex-wrap: wrap;
- gap: 20rpx;
- margin-bottom: 20rpx;
- }
- .edit-item {
- display: flex;
- align-items: center;
- flex: 1;
- min-width: 45%;
- }
- .label {
- font-size: 24rpx;
- color: #666;
- margin-right: 10rpx;
- white-space: nowrap;
- }
- .input {
- flex: 1;
- height: 60rpx;
- padding: 0 10rpx;
- border: 1rpx solid #e8e8e8;
- border-radius: 4rpx;
- font-size: 24rpx;
- color: #333;
- background-color: #f9f9f9;
- max-width: 100%;
- box-sizing: border-box;
- }
- .textarea {
- flex: 1;
- padding: 20rpx;
- border: 1rpx solid #e8e8e8;
- border-radius: 4rpx;
- font-size: 24rpx;
- color: #333;
- background-color: #f9f9f9;
- max-width: 100%;
- box-sizing: border-box;
- resize: none;
- }
- .product-remarks {
- display: flex;
- align-items: flex-start;
- gap: 10rpx;
- width: 100%;
- box-sizing: border-box;
- margin-top: 10rpx;
- }
- .product-remarks .textarea {
- flex: 1;
- min-width: 0;
- }
- .product-remarks .label {
- margin-top: 10rpx;
- }
- /* 附件上传样式 */
- .upload-container {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #F4F5F7;
- padding: 20rpx;
- margin-bottom: 10rpx;
- .upload-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- .upload-buttons {
- display: flex;
- gap: 20rpx;
- }
- .upload-button {
- display: flex;
- align-items: center;
- background-color: #fff;
- border: 1rpx dashed #e8e8e8;
- border-radius: 8rpx;
- transition: all 0.3s ease;
- font-size: 24rpx;
- padding: 8rpx 14rpx;
- .iconfont {
- color: #999;
- margin-bottom: 8rpx;
- }
- .upload-text {
- color: #999;
- margin-left: 12rpx;
- }
- &:hover {
- border-color: #3874F6;
- box-shadow: 0 2rpx 8rpx rgba(56, 116, 246, 0.1);
- .iconfont,
- .upload-text {
- color: #3874F6;
- }
- }
- }
- }
- /* 附件列表样式 */
- #Yl_files {
- background-color: #F4F5F7;
- padding: 0 20rpx 20rpx;
- min-height: 200rpx;
- }
|