| 1 | @charset "utf-8";
|
|---|
| 2 | /* ===================================================================
|
|---|
| 3 | CSS information
|
|---|
| 4 |
|
|---|
| 5 | file name :contents.css
|
|---|
| 6 | style info :コンテンツ用(商品一覧/検索結果/商品詳細)
|
|---|
| 7 |
|
|---|
| 8 | =================================================================== */
|
|---|
| 9 | /* -----------------------------------------------
|
|---|
| 10 | 商品一覧・商品詳細・商品検索結果共通
|
|---|
| 11 | ----------------------------------------------- */
|
|---|
| 12 | .pagenumberarea{
|
|---|
| 13 | margin-top:10px;
|
|---|
| 14 | padding:10px 0;
|
|---|
| 15 | box-shadow:0 1px 1px 1px rgba(255,255,255,1) inset;
|
|---|
| 16 | -webkit-box-shadow:0 1px 1px 0 rgba(255,255,255,1) inset;
|
|---|
| 17 | -moz-box-shadow: 0 1px 1px rgba(255,255,255,1) inset;
|
|---|
| 18 | border-top: 1px solid #CCC;
|
|---|
| 19 | border-bottom: 1px solid #CCC;
|
|---|
| 20 | background:#EEE;
|
|---|
| 21 | display:block;
|
|---|
| 22 | }
|
|---|
| 23 | .pagenumberarea ul{
|
|---|
| 24 | width:95%;
|
|---|
| 25 | margin:0 auto;
|
|---|
| 26 | border:#A9ABAD solid 1px;
|
|---|
| 27 | border-radius: 5px;
|
|---|
| 28 | -webkit-border-radius: 5px;
|
|---|
| 29 | -moz-border-radius: 5px;
|
|---|
| 30 | display:block;
|
|---|
| 31 | }
|
|---|
| 32 | .pagenumberarea li {
|
|---|
| 33 | color: #000;
|
|---|
| 34 | font-size:16px;
|
|---|
| 35 | font-weight:bold;
|
|---|
| 36 | margin:0;
|
|---|
| 37 | padding:0;
|
|---|
| 38 | display:inline;
|
|---|
| 39 | float: left;
|
|---|
| 40 | width: 50%;
|
|---|
| 41 | text-align:center;
|
|---|
| 42 | color:#FFF;
|
|---|
| 43 | background:#5393c5;
|
|---|
| 44 | background: -moz-linear-gradient(center top, #5393c5 10%,#80b6e2 100%);
|
|---|
| 45 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5393c5),color-stop(1, #80b6e2));
|
|---|
| 46 | text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
|
|---|
| 47 | }
|
|---|
| 48 | .pagenumberarea li a:link,.pagenumberarea li a:visited{
|
|---|
| 49 | color:#000;
|
|---|
| 50 | }
|
|---|
| 51 | .pagenumberarea li a {
|
|---|
| 52 | color: #FFF;
|
|---|
| 53 | display: block;
|
|---|
| 54 | padding:5px 0;
|
|---|
| 55 | text-decoration: none;
|
|---|
| 56 | text-shadow: 1px 1px 1px rgba(255,255,255,1);
|
|---|
| 57 | }
|
|---|
| 58 | .pagenumberarea li.on_number{
|
|---|
| 59 | color: #FFF;
|
|---|
| 60 | display: block;
|
|---|
| 61 | padding:5px 0;
|
|---|
| 62 | text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
|
|---|
| 63 | }
|
|---|
| 64 | .pagenumberarea li:first-child{
|
|---|
| 65 | border-radius: 5px 0 0 5px;
|
|---|
| 66 | -moz-border-radius: 5px 0 0 5px;
|
|---|
| 67 | -webkit-border-radius: 5px 0 0 5px;
|
|---|
| 68 | }
|
|---|
| 69 | .pagenumberarea li:last-child{
|
|---|
| 70 | border-radius: 0 5px 5px 0;
|
|---|
| 71 | -moz-border-radius: 0 5px 5px 0;
|
|---|
| 72 | -webkit-border-radius: 0 5px 5px 0;
|
|---|
| 73 | }
|
|---|
| 74 | .pagenumberarea li:first-child a{
|
|---|
| 75 | border-radius: 5px 0 0 5px;
|
|---|
| 76 | -moz-border-radius: 5px 0 0 5px;
|
|---|
| 77 | -webkit-border-radius: 5px 0 0 5px;
|
|---|
| 78 | border-right:#A9ABAD solid 1px;
|
|---|
| 79 | text-shadow: 1px 1px 1px rgba(255,255,255,1);
|
|---|
| 80 | background:#FDFDfD;
|
|---|
| 81 | background: -moz-linear-gradient(center top, #FDFDFD 0%,#D7DDE3 100%);
|
|---|
| 82 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FDFDFD),color-stop(1, #D7DDE3));
|
|---|
| 83 | }
|
|---|
| 84 | .pagenumberarea li:last-child a{
|
|---|
| 85 | border-radius: 0 5px 5px 0;
|
|---|
| 86 | -moz-border-radius: 0 5px 5px 0;
|
|---|
| 87 | -webkit-border-radius: 0 5px 5px 0;
|
|---|
| 88 | border-left:#FFF solid 1px;
|
|---|
| 89 | text-shadow: 1px 1px 1px rgba(255,255,255,1);
|
|---|
| 90 | background:#FDFDfD;
|
|---|
| 91 | background: -moz-linear-gradient(center top, #FDFDFD 0%,#D7DDE3 100%);
|
|---|
| 92 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FDFDFD),color-stop(1, #D7DDE3));
|
|---|
| 93 | box-shadow: 1px 0px 1px 1px rgba(255,255,255,1) inset;
|
|---|
| 94 | -webkit-box-shadow: 1px 0px 1px 0px rgba(255,255,255,1) inset;
|
|---|
| 95 | -moz-box-shadow: 1px 1px 1px 0px rgba(255,255,255,1) inset;
|
|---|
| 96 | }
|
|---|
| 97 | .pagenumberarea li.on_number{
|
|---|
| 98 | color:#FFF;
|
|---|
| 99 | text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
|
|---|
| 100 | background:#5393c5;
|
|---|
| 101 | background: -moz-linear-gradient(center top, #5393c5 10%,#80b6e2 100%);
|
|---|
| 102 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5393c5),color-stop(1, #80b6e2));
|
|---|
| 103 | }
|
|---|
| 104 | ul.status_icon {
|
|---|
| 105 | clear:both;
|
|---|
| 106 | }
|
|---|
| 107 | ul.status_icon li{
|
|---|
| 108 | color:#FFF;
|
|---|
| 109 | background:#9AAABD;
|
|---|
| 110 | display:inline;
|
|---|
| 111 | float:left;
|
|---|
| 112 | margin-right :5px;
|
|---|
| 113 | margin-bottom:2px;
|
|---|
| 114 | padding:2px 5px;
|
|---|
| 115 | font-size:11px;
|
|---|
| 116 | text-shadow:none;
|
|---|
| 117 | }
|
|---|
| 118 | /* -----------------------------------------------
|
|---|
| 119 | 商品一覧
|
|---|
| 120 | ----------------------------------------------- */
|
|---|
| 121 | #product_list{
|
|---|
| 122 | padding-bottom:35px;
|
|---|
| 123 | }
|
|---|
| 124 |
|
|---|
| 125 | /* アイテムリスト(div)の処理
|
|---|
| 126 | ----------------------------------------------- */
|
|---|
| 127 | .list_area {
|
|---|
| 128 | margin: 0;
|
|---|
| 129 | padding:10px 5px 15px 10px;
|
|---|
| 130 | background-color:#FEFEFE;
|
|---|
| 131 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FEFEFE),color-stop(1, #EEEEEE));
|
|---|
| 132 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FEFEFE),color-stop(1, #EEEEEE));
|
|---|
| 133 | border-top:#FFF solid 1px;
|
|---|
| 134 | border-bottom:#CCC solid 1px;
|
|---|
| 135 | display:block;
|
|---|
| 136 | clear:both;
|
|---|
| 137 | position:relative;
|
|---|
| 138 | cursor:pointer;
|
|---|
| 139 | }
|
|---|
| 140 | .list_area ul.status_icon{
|
|---|
| 141 | margin-bottom:5px;
|
|---|
| 142 | }
|
|---|
| 143 | .listphoto{
|
|---|
| 144 | margin:0 10px 10px 0;
|
|---|
| 145 | float:left;
|
|---|
| 146 | clear:left;
|
|---|
| 147 | }
|
|---|
| 148 | .listrightblock {
|
|---|
| 149 | width:67%;
|
|---|
| 150 | float:right;
|
|---|
| 151 | padding-right:10px;
|
|---|
| 152 | }
|
|---|
| 153 | .listrightblock h3{
|
|---|
| 154 | font-size:15px;
|
|---|
| 155 | clear:both;
|
|---|
| 156 | }
|
|---|
| 157 | .listrightblock .listcomment{
|
|---|
| 158 | line-height:1.4;
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| 161 | /* -----------------------------------------------
|
|---|
| 162 | 商品詳細
|
|---|
| 163 | ----------------------------------------------- */
|
|---|
| 164 | #product_detail{
|
|---|
| 165 | padding-bottom:35px;
|
|---|
| 166 | }
|
|---|
| 167 | /*商品情報*/
|
|---|
| 168 | #detailarea {
|
|---|
| 169 | background:#F0F0F1;
|
|---|
| 170 | padding:20px 10px 35px 10px;
|
|---|
| 171 | }
|
|---|
| 172 | #detailrightblock{
|
|---|
| 173 | margin-top:25px;
|
|---|
| 174 | padding:0;
|
|---|
| 175 | background:#FFF;
|
|---|
| 176 | border:#CCC solid 1px;
|
|---|
| 177 | border-radius:7px;
|
|---|
| 178 | -moz-border-radius:7px;
|
|---|
| 179 | -webkit-border-radius:7px;
|
|---|
| 180 | }
|
|---|
| 181 | #detailrightblock div:after {
|
|---|
| 182 | content: ".";
|
|---|
| 183 | display: block;
|
|---|
| 184 | clear: both;
|
|---|
| 185 | height: 0;
|
|---|
| 186 | visibility: hidden;
|
|---|
| 187 | }
|
|---|
| 188 | #detailrightblock div{
|
|---|
| 189 | border-bottom:#CCC solid 1px;
|
|---|
| 190 | }
|
|---|
| 191 | #detailrightblock div:last-child{
|
|---|
| 192 | border-bottom:none;
|
|---|
| 193 | border-radius:0 0 7px 7px;
|
|---|
| 194 | -moz-border-radius: 0 0 7px 7px;
|
|---|
| 195 | -webkit-border-radius: 0 0 7px 7px;
|
|---|
| 196 | }
|
|---|
| 197 | /*ステータスアイコン*/
|
|---|
| 198 | #detailrightblock .status_icon{
|
|---|
| 199 | padding:10px 12px;
|
|---|
| 200 | border-bottom:#CCC solid 1px;
|
|---|
| 201 | }
|
|---|
| 202 | /*商品情報(テキストなど)*/
|
|---|
| 203 | #detailrightblock .product_detail{
|
|---|
| 204 | padding:12px;
|
|---|
| 205 | border-bottom:#CCC solid 1px;
|
|---|
| 206 | }
|
|---|
| 207 | #detailrightblock h3{
|
|---|
| 208 | font-size:14px;
|
|---|
| 209 | clear:both;
|
|---|
| 210 | }
|
|---|
| 211 | #detailrightblock .price{
|
|---|
| 212 | font-size:14px;
|
|---|
| 213 | }
|
|---|
| 214 | #detailrightblock .normal_price{
|
|---|
| 215 | font-size:11px;
|
|---|
| 216 | }
|
|---|
| 217 | .relative_cat{
|
|---|
| 218 | font-size:12px;
|
|---|
| 219 | margin-bottom:10px;
|
|---|
| 220 | }
|
|---|
| 221 |
|
|---|
| 222 | /*商品情報(規格部分)*/
|
|---|
| 223 | .cart_area{
|
|---|
| 224 | padding:12px;
|
|---|
| 225 | }
|
|---|
| 226 | .cart_area dl {
|
|---|
| 227 | margin: 0;
|
|---|
| 228 | padding:0;
|
|---|
| 229 | }
|
|---|
| 230 | .cart_area dt {
|
|---|
| 231 | margin: 0;
|
|---|
| 232 | font-weight: bold;
|
|---|
| 233 | line-height: 1.3;
|
|---|
| 234 | }
|
|---|
| 235 | .cart_area dd {
|
|---|
| 236 | padding:0;
|
|---|
| 237 | clear:both;
|
|---|
| 238 | padding-bottom:5px;
|
|---|
| 239 | }
|
|---|
| 240 | .cart_area dd:last-child {
|
|---|
| 241 | padding-bottom:0;
|
|---|
| 242 | }
|
|---|
| 243 |
|
|---|
| 244 | /*商品情報(数量)*/
|
|---|
| 245 | .cartin_btn{
|
|---|
| 246 | padding:15px;
|
|---|
| 247 | background:#F1F0E7;
|
|---|
| 248 | border-top:#FFF solid 1px;
|
|---|
| 249 | }
|
|---|
| 250 | .cartin_btn dl{
|
|---|
| 251 | width:40%;
|
|---|
| 252 | float:left;
|
|---|
| 253 | clear:left;
|
|---|
| 254 | }
|
|---|
| 255 | .cartin_btn dt{
|
|---|
| 256 | width:2em;
|
|---|
| 257 | float:left;
|
|---|
| 258 | padding:15px 5px 5px;
|
|---|
| 259 | vertical-align:bottom;
|
|---|
| 260 | line-height:1.1;
|
|---|
| 261 | font-weight:bold;
|
|---|
| 262 | }
|
|---|
| 263 | .cartin_btn dd{
|
|---|
| 264 | width:3.2em;
|
|---|
| 265 | display:inline;
|
|---|
| 266 | float:left;
|
|---|
| 267 | }
|
|---|
| 268 | .detail_quantity dd .quantitybox{
|
|---|
| 269 | width:3em;
|
|---|
| 270 | }
|
|---|
| 271 | .cartbtn_default{
|
|---|
| 272 | width:54%;
|
|---|
| 273 | float:right;
|
|---|
| 274 | clear:right;
|
|---|
| 275 | }
|
|---|
| 276 |
|
|---|
| 277 | /*お気に入り*/
|
|---|
| 278 | .btn_favorite{
|
|---|
| 279 | padding:10px 15px;
|
|---|
| 280 | background:#F1F0E7;
|
|---|
| 281 | }
|
|---|
| 282 | /*サブエリア*/
|
|---|
| 283 | .subarea{
|
|---|
| 284 | padding:10px;
|
|---|
| 285 | border-bottom:#CCC solid 1px;
|
|---|
| 286 | clear:both;
|
|---|
| 287 | }
|
|---|
| 288 | .subarea h3{
|
|---|
| 289 | margin-bottom:10px;
|
|---|
| 290 | padding:5px 0;
|
|---|
| 291 | border-bottom:#CCC solid 1px;
|
|---|
| 292 | clear:both;
|
|---|
| 293 | }
|
|---|
| 294 | .subphotoimg{
|
|---|
| 295 | margin-left:10px;
|
|---|
| 296 | float:right;
|
|---|
| 297 | clear:right;
|
|---|
| 298 | }
|
|---|
| 299 | #sub_area div:last-child{
|
|---|
| 300 | border-bottom:none;
|
|---|
| 301 | }
|
|---|
| 302 | /*商品詳細メイン画像スライド*/
|
|---|
| 303 | #detailphotoblock {
|
|---|
| 304 | width: 100%;
|
|---|
| 305 | background-color: #ffffff;
|
|---|
| 306 | text-align:center;
|
|---|
| 307 | -webkit-box-shadow: 1px 5px 5px #ccc;
|
|---|
| 308 | -moz-box-shadow: 1px 5px 5px #ccc;
|
|---|
| 309 | position:relative;
|
|---|
| 310 | }
|
|---|
| 311 | #detailphotoblock div.moveWrap {
|
|---|
| 312 | width:200px;
|
|---|
| 313 | height:auto;
|
|---|
| 314 | margin:0 auto;
|
|---|
| 315 | position:relative;
|
|---|
| 316 | overflow:hidden;
|
|---|
| 317 | -webkit-box-sizing:border-box;
|
|---|
| 318 | }
|
|---|
| 319 | #detailphotoblock ul.moveWrapBG {
|
|---|
| 320 | width:200px;
|
|---|
| 321 | height:auto;
|
|---|
| 322 | visibility:hidden;
|
|---|
| 323 | display:inline-block;
|
|---|
| 324 | position:relative;
|
|---|
| 325 | -webkit-box-sizing:border-box;
|
|---|
| 326 | margin:0 auto;
|
|---|
| 327 | padding:0;
|
|---|
| 328 | }
|
|---|
| 329 | #detailphotoblock li{
|
|---|
| 330 | width:200px;
|
|---|
| 331 | }
|
|---|
| 332 | #detailphotoblock div.slideMask {
|
|---|
| 333 | position:absolute;
|
|---|
| 334 | top:0;
|
|---|
| 335 | left:0;
|
|---|
| 336 | /*border:4px #FFF solid;*/
|
|---|
| 337 | -webkit-box-sizing:border-box;
|
|---|
| 338 | margin-right:0!important;
|
|---|
| 339 | }
|
|---|
| 340 | #detailphotoblock div.moveWrap>ul.move {
|
|---|
| 341 | margin:0;
|
|---|
| 342 | padding:0;
|
|---|
| 343 | position:relative;
|
|---|
| 344 | left:0;
|
|---|
| 345 | top:0;
|
|---|
| 346 | list-style:none;
|
|---|
| 347 | width:2000px;
|
|---|
| 348 | -webkit-transition:all 0.6s ease-in-out;
|
|---|
| 349 | -webkit-transform:translate3d(0,0,0);
|
|---|
| 350 | -webkit-transition-duration: 400ms;
|
|---|
| 351 | -webkit-transition-property: -webkit-transform;
|
|---|
| 352 | margin:0;
|
|---|
| 353 | padding:0;
|
|---|
| 354 | display:none;
|
|---|
| 355 | }
|
|---|
| 356 | #detailphotoblock div.moveWrap>ul.move li.slideUnit {
|
|---|
| 357 | margin:0px;
|
|---|
| 358 | padding:0;
|
|---|
| 359 | float:left;
|
|---|
| 360 | list-style:none;
|
|---|
| 361 | text-align:center;
|
|---|
| 362 | -webkit-box-sizing:border-box;
|
|---|
| 363 | }
|
|---|
| 364 | #detailphotoblock li.slideUnit>div {
|
|---|
| 365 | padding:0px;
|
|---|
| 366 | display:inline-block;
|
|---|
| 367 | vertical-align:middle;
|
|---|
| 368 | text-align:center;
|
|---|
| 369 | -webkit-box-sizing:border-box;
|
|---|
| 370 | }
|
|---|
| 371 | #detailphotoblock div.flickSlideBottom {
|
|---|
| 372 | width:100%;
|
|---|
| 373 | margin-top:5px;
|
|---|
| 374 | }
|
|---|
| 375 | #detailphotoblock div.flickSlideBottom div.bottomLeft,#detailphotoblock div.flickSlideBottom div.bottomRight {
|
|---|
| 376 | padding:0 10px;
|
|---|
| 377 | display:table-cell;
|
|---|
| 378 | vertical-align:middle;
|
|---|
| 379 | }
|
|---|
| 380 | #detailphotoblock div.flickSlideBottom div.bottomRight {
|
|---|
| 381 | font-size:24px;
|
|---|
| 382 | font-weight: bold;
|
|---|
| 383 | color:#7F7F7F;
|
|---|
| 384 | background-color:transparent;
|
|---|
| 385 | right:5px;
|
|---|
| 386 | top:100px;
|
|---|
| 387 | position:absolute;
|
|---|
| 388 | }
|
|---|
| 389 | #detailphotoblock div.flickSlideBottom div.bottomLeft {
|
|---|
| 390 | font-size:24px;
|
|---|
| 391 | font-weight: bold;
|
|---|
| 392 | color:#7F7F7F;
|
|---|
| 393 | background-color:transparent;
|
|---|
| 394 | left:5px;
|
|---|
| 395 | top:100px;
|
|---|
| 396 | position:absolute;
|
|---|
| 397 | }
|
|---|
| 398 | #detailphotoblock div.flickSlideBottom div.bottomLeft:after {
|
|---|
| 399 | font-size:12px;
|
|---|
| 400 | padding:5px;
|
|---|
| 401 | text-align:left;
|
|---|
| 402 | display:table-cell;
|
|---|
| 403 | }
|
|---|
| 404 | #detailphotoblock div.flickSlideBottom div.bottomLeft:before {
|
|---|
| 405 | padding:5px;
|
|---|
| 406 | text-align:left;
|
|---|
| 407 | display:table-cell;
|
|---|
| 408 | }
|
|---|
| 409 | #detailphotoblock div.flickSlideBottom div.bottomRight:before {
|
|---|
| 410 | font-size:12px;
|
|---|
| 411 | padding:5px;
|
|---|
| 412 | text-align:right;
|
|---|
| 413 | display:table-cell;
|
|---|
| 414 | }
|
|---|
| 415 | #detailphotoblock div.flickSlideBottom div.bottomRight:after {
|
|---|
| 416 | padding:5px;
|
|---|
| 417 | text-align:right;
|
|---|
| 418 | display:table-cell;
|
|---|
| 419 | }
|
|---|
| 420 | #detailphotoblock div.flickSlideBottom ul.slidePager {
|
|---|
| 421 | display:block;
|
|---|
| 422 | width:auto;
|
|---|
| 423 | text-align:center;
|
|---|
| 424 | margin:0 auto;;
|
|---|
| 425 | padding:0;
|
|---|
| 426 | }
|
|---|
| 427 | #detailphotoblock div.flickSlideBottom ul.slidePager li.slidePagerPointer {
|
|---|
| 428 | font-size:11px;
|
|---|
| 429 | width:6px;
|
|---|
| 430 | height:6px;
|
|---|
| 431 | margin:12px 6px 6px 6px;
|
|---|
| 432 | display:inline-block;
|
|---|
| 433 | background-color:#CCC;
|
|---|
| 434 | border-radius: 6px;
|
|---|
| 435 | -webkit-border-radius: 6px;
|
|---|
| 436 | -moz-border-radius: 6px;
|
|---|
| 437 | }
|
|---|
| 438 | #detailphotoblock div.flickSlideBottom ul.slidePager li.slidePagerPointer.active {
|
|---|
| 439 | background-color:#333;
|
|---|
| 440 | }
|
|---|
| 441 |
|
|---|
| 442 | /*その他オススメ商品スライド*/
|
|---|
| 443 | #product_detail .title_box_sub:last-child{
|
|---|
| 444 | margin-top:20px;
|
|---|
| 445 | }
|
|---|
| 446 | #whobought_area{
|
|---|
| 447 | width:100%;
|
|---|
| 448 | margin-top:30px;
|
|---|
| 449 | margin-bottom:15px;
|
|---|
| 450 | clear:both;
|
|---|
| 451 | position:relative;
|
|---|
| 452 | }
|
|---|
| 453 | #whobought_area h3{
|
|---|
| 454 | clear:both;
|
|---|
| 455 | line-height:1.2;
|
|---|
| 456 | }
|
|---|
| 457 | /*liの長さ追加*/
|
|---|
| 458 | #whobought_area li{
|
|---|
| 459 | width:80px;
|
|---|
| 460 | }
|
|---|
| 461 | #whobought_area li img{
|
|---|
| 462 | margin-bottom:5px;
|
|---|
| 463 | clear:both;
|
|---|
| 464 | }
|
|---|
| 465 | #whobought_area .sale_price{
|
|---|
| 466 | clear:both;
|
|---|
| 467 | float:right;
|
|---|
| 468 | text-align:right;
|
|---|
| 469 | }
|
|---|
| 470 | #whobought_area div.moveWrap {
|
|---|
| 471 | width:80%;
|
|---|
| 472 | height:auto;
|
|---|
| 473 | position:relative;
|
|---|
| 474 | margin:0 auto;
|
|---|
| 475 | overflow:hidden;
|
|---|
| 476 | -webkit-box-sizing:border-box;
|
|---|
| 477 | }
|
|---|
| 478 | #whobought_area ul.moveWrapBG {
|
|---|
| 479 | width:auto;
|
|---|
| 480 | height:auto;
|
|---|
| 481 | display:inline-block;
|
|---|
| 482 | position:relative;
|
|---|
| 483 | visibility:hidden;
|
|---|
| 484 | -webkit-box-sizing:border-box;
|
|---|
| 485 | margin:0;
|
|---|
| 486 | padding:0;
|
|---|
| 487 | }
|
|---|
| 488 | #whobought_area div.slideMask {
|
|---|
| 489 | position:absolute;
|
|---|
| 490 | top:0;
|
|---|
| 491 | left:0;
|
|---|
| 492 | border:4px #FFF solid;
|
|---|
| 493 | -webkit-box-sizing:border-box;
|
|---|
| 494 | margin-right:1px;
|
|---|
| 495 | }
|
|---|
| 496 | #whobought_area div.moveWrap>ul.move {
|
|---|
| 497 | width:600px;
|
|---|
| 498 | margin:0;
|
|---|
| 499 | padding:0;
|
|---|
| 500 | position:relative;
|
|---|
| 501 | left:0;
|
|---|
| 502 | top:0;
|
|---|
| 503 | list-style:none;
|
|---|
| 504 | -webkit-transition:all 0.6s ease-in-out;
|
|---|
| 505 | -webkit-transform:translate3d(0,0,0);
|
|---|
| 506 | /*-webkit-transition-duration: 400ms;
|
|---|
| 507 | -webkit-transition-property: -webkit-transform;
|
|---|
| 508 | */
|
|---|
| 509 | margin:0;
|
|---|
| 510 | padding:0;
|
|---|
| 511 | display:none;
|
|---|
| 512 | }
|
|---|
| 513 | #whobought_area div.moveWrap>ul.move li.slideUnit {
|
|---|
| 514 | width:85px!important;
|
|---|
| 515 | float:left;
|
|---|
| 516 | display:inline;
|
|---|
| 517 | list-style:none;
|
|---|
| 518 | padding:4px 8px 4px 0;
|
|---|
| 519 | margin-right:0px;
|
|---|
| 520 | -webkit-box-sizing:border-box;
|
|---|
| 521 | }
|
|---|
| 522 | #whobought_area li.slideUnit>div {
|
|---|
| 523 | padding:4px;
|
|---|
| 524 | display:inline;
|
|---|
| 525 | vertical-align:middle;
|
|---|
| 526 | -webkit-box-sizing:border-box;
|
|---|
| 527 | }
|
|---|
| 528 | #whobought_area div.flickSlideBottom {
|
|---|
| 529 | width:100%;
|
|---|
| 530 | margin-top:5px;
|
|---|
| 531 | }
|
|---|
| 532 | #whobought_area div.flickSlideBottom div.bottomLeft,#whobought_area div.flickSlideBottom div.bottomRight {
|
|---|
| 533 | padding:0 10px;
|
|---|
| 534 | display:table-cell;
|
|---|
| 535 | vertical-align:middle;
|
|---|
| 536 | }
|
|---|
| 537 | #whobought_area div.flickSlideBottom div.bottomRight {
|
|---|
| 538 | font-size:16px;
|
|---|
| 539 | font-weight: bold;
|
|---|
| 540 | color:#7F7F7F;
|
|---|
| 541 | background-color:transparent;
|
|---|
| 542 | right:0;
|
|---|
| 543 | top:80px;
|
|---|
| 544 | position:absolute;
|
|---|
| 545 | }
|
|---|
| 546 | #whobought_area div.flickSlideBottom div.bottomLeft {
|
|---|
| 547 | font-size:16px;
|
|---|
| 548 | font-weight: bold;
|
|---|
| 549 | color:#7F7F7F;
|
|---|
| 550 | background-color:transparent;
|
|---|
| 551 | left:0;
|
|---|
| 552 | top:80px;
|
|---|
| 553 | position:absolute;
|
|---|
| 554 | }
|
|---|
| 555 | #whobought_area div.flickSlideBottom div.bottomLeft:after {
|
|---|
| 556 | font-size:10px;
|
|---|
| 557 | padding:0;
|
|---|
| 558 | text-align:left;
|
|---|
| 559 | display:table-cell;
|
|---|
| 560 | }
|
|---|
| 561 | #whobought_area div.flickSlideBottom div.bottomLeft:before {
|
|---|
| 562 | padding:0;
|
|---|
| 563 | text-align:left;
|
|---|
| 564 | display:table-cell;
|
|---|
| 565 | }
|
|---|
| 566 | #whobought_area div.flickSlideBottom div.bottomRight:before {
|
|---|
| 567 | font-size:10px;
|
|---|
| 568 | padding:0;
|
|---|
| 569 | text-align:right;
|
|---|
| 570 | display:table-cell;
|
|---|
| 571 | }
|
|---|
| 572 | #whobought_area div.flickSlideBottom div.bottomRight:after {
|
|---|
| 573 | padding:0;
|
|---|
| 574 | text-align:right;
|
|---|
| 575 | display:table-cell;
|
|---|
| 576 | }
|
|---|
| 577 | #whobought_area div.flickSlideBottom ul.slidePager {
|
|---|
| 578 | display:block;
|
|---|
| 579 | width:auto;
|
|---|
| 580 | text-align:center;
|
|---|
| 581 | margin:0 auto;
|
|---|
| 582 | padding:0;
|
|---|
| 583 | }
|
|---|
| 584 | #whobought_area div.flickSlideBottom ul.slidePager li.slidePagerPointer {
|
|---|
| 585 | display:none;
|
|---|
| 586 | }
|
|---|
| 587 |
|
|---|