﻿/**rest**/

body,
ul,
li,
section,
div {
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, Roboto, 'Droid Sans', 'Hiragino Sans GB', STXihei, 'sans-serif';
    width: 100%;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: none;
}

ul,
li {
    list-style: none;
}

img {
    border: 0;
}

.list {
    width: 100%;
    padding: 10px 0;
}

.list li {
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 -1px 2px rgba(0, 0, 0, .1);
}

.list li img {
    width: 100%;
    height: auto;
}


/*弹框样式*/

.imgzoom_pack {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 10;
    display: none;
}

.imgzoom_pack .imgzoom_x {
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background: #000;
    text-align: center;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 10;
    cursor: pointer;
}

.imgzoom_pack .imgzoom_img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.imgzoom_pack .imgzoom_img img {
    width: 100%;
    position: absolute;
    top: 50%;
}