| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /*ä¸Šä¼ å›¾ç‰‡æ’ä»¶çš„æ ·å¼*/
- .img-box {
- margin-top: 40px;
- }
- .img-box .up-p {
- margin-bottom: 20px;
- font-size: 16px;
- color: #555;
- }
- .z_photo {
- padding: 18px;
- border: 2px dashed #E7E6E6;
- /*padding: 18px;*/
- }
- .z_photo .z_file {
- position: relative;
- }
- .z_file .file {
- width: 100%;
- height: 100%;
- opacity: 0;
- position: absolute;
- top: 0px;
- left: 0px;
- z-index: 100;
- }
- .z_photo .up-section {
- position: relative;
- margin-right: 20px;
- margin-bottom: 20px;
- }
- .up-section .close-upimg {
- position: absolute;
- top: 6px;
- right: 8px;
- display: none;
- z-index: 10;
- }
- .up-section .up-span {
- display: block;
- width: 100%;
- height: 100%;
- visibility: hidden;
- position: absolute;
- top: 0px;
- left: 0px;
- z-index: 9;
- background: rgba(0, 0, 0, .5);
- }
- .up-section:hover {
- border: 2px solid #f15134;
- }
- .up-section:hover .close-upimg {
- display: block;
- }
- .up-section:hover .up-span {
- visibility: visible;
- }
- .up-img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .loading {
- border: 1px solid #D1D1D1;
- background: url(/js/lib/imageupload/img/loading.gif) no-repeat center;
- }
- .up-opcity {
- opacity: 0;
- }
- .img-name-p {
- display: none;
- }
- .upimg-div .up-section {
- width: 190px;
- height: 180px;
- }
- .img-box .upimg-div .z_file {
- width: 190px;
- height: 180px;
- }
- .z_file .add-img {
- display: block;
- width: 190px;
- height: 180px;
- }
- /*é®ç½©å±‚æ ·å¼*/
- .mask {
- z-index: 1000;
- display: none;
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, .4);
- }
- .mask .mask-content {
- width: 500px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-left: -250px;
- margin-top: -80px;
- background: white;
- height: 160px;
- text-align: center;
- }
- .mask .mask-content .del-p {
- color: #555;
- height: 94px;
- line-height: 94px;
- font-size: 18px;
- border-bottom: 1px solid #D1D1D1;
- }
- .mask-content .check-p {
- height: 66px;
- line-height: 66px;
- position: absolute;
- bottom: 0px;
- left: 0px;
- width: 100%;
- }
- .mask-content .check-p span {
- width: 49%;
- display: inline-block;
- text-align: center;
- color: #d4361d;
- font-size: 18px;
- }
- .check-p .del-com {
- border-right: 1px solid #D1D1D1;
- }
|