1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
| <style type="text/css"> .gray{ width:100%; height:100%; background:rgba(0,0,0,0.3); position:absolute; top:0px; left:0; display:none; z-index:99; } .popup{ width:532px; height:auto; background-color:#fff; position:absolute; z-index:100; border:1px solid #ebeaea; left:400px; top:96px; display:none; } .popup .top_nav{ width:532px; height:46px; background-image: url(images/popup_top_bj.jpg); border-bottom:1px solid #ebeaea; position:relative; cursor:move; } .popup .top_nav i{ width:35px; height:35px; background: #ccc; position:absolute; top:6px; left:8px; display:block; } .popup .top_nav span{ font:18px/18px 'microsoft yahei'; color:#707070; display:block; position:absolute; top:13px; left:50px; } .popup .top_nav a.guanbi { background:url(images/popup_guanbi.png) repeat 0px 0px; width:35px; height: 35px; display: block; position:absolute; top:8px; right:10px; cursor:pointer; } .popup .top_nav a.guanbi span { display: none;} .popup .top_nav a.guanbi:hover{ background: url(images/popup_guanbi.png) repeat 0px -35px; } .popup .min{height:auto;padding: 20px;} .box_mid{ width: 100%; height: 50px; margin-top: 20px; border-bottom: 1px solid silver; } .checkbox { position: relative; display: inline-block; } .checkbox input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 5; opacity: 0; cursor: pointer; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } .checkbox label { } .checkbox label { width: 55px; height: 25px; background: #ccc; position: relative; display: inline-block; border-radius: 46px; -webkit-transition: 0.4s; transition: 0.4s; } .checkbox label:after { content: ''; position: absolute; width: 25px; height: 25px; border-radius: 100%; left: 0; top: 0px; z-index: 2; background: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: 0.4s; transition: 0.4s; } .checkbox input:checked + label { background: #4BD865; } .checkbox input:checked + label:after { left: 30px; } .box_mid span{ position: relative; top: -10px; color: #888; left: 20px; } .qr_code{ width: 100%; height:200px; } .qr_code .left_box{ width: 50%; height:100%; float: left; } .left_box{ justify-content: center; align-items: center; display: -webkit-flex; } .right_box{ width: 50%; height: 100%; float: right; } .right_box img{ width: 160px; height: 160px; margin-top: 30px; margin-left: 40px; } .box_mids{ margin-top: 0px; border:0px; height: 100%; } .foot p{ } </style>
|