@charset "utf-8";
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/*Html5*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
/*Base*/
html {
    font-family: "-apple-system-font","Microsoft YaHei","Helvetica Neue","Hiragino Sans GB","\9ED1\4F53",Arial,sans-serif;
    color: #666;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
}
* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    background: transparent; /*修正win8系统IE连接灰色背景*/
    outline:none;
    blr:expression(this.onFocus=this.blur());
}
a:focus {
    outline: thin dotted;
    -webkit-tap-highlight-color: transparent;
}
a:active,
a:hover {
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    /*transition:text-shadow 500ms ease-in 0ms, color 500ms ease-in 0ms;*/
}
img {
    border: 0;
    -ms-interpolation-mode:bicubic
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input.submit {
    border: 0;
    margin: 0;
    cursor: pointer;
}
input.radio,
input.checkbox{
    float: left;
    display: inline;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
i,em {
    font-style: normal;
}
/*清除浮动*/
.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}
.clearfix {
    *zoom: 1;
    *width: 100%;
    *line-height: 0;
}
.fl {
    float:left;
}
.fr {
    float:right;
}
.m-t-10 {
    margin-top: 10px;
}
.t-c {
    text-align: center;
}
.t-l {
    text-align: left;
}
.hide {
    display: none;
}
/*链接样式*/
a {
    color:#666666;
    text-decoration:none;
}


/*提示弹出框 删除确认*/
.alert-popmenu{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    transition: background-color .2s ease-in-out;
    overflow: hidden;
}
.pop-content-main {
    position: absolute;
    top: 50%;
    left: 20%;
    background-color: #ffffff;
    width: 60%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
@media screen and (max-width: 360px) {
    .pop-content-main {
        width: 80%;
        left: 10%;
    }
}
.pop-txt {
    padding: 30px 20px;
    border-bottom: 1px solid #dddddd;
    color: #333333;
}
.pop-footer-btn {
    width: 100%;
}
.pop-footer-btn a {
    display: inline-block;
    float: left;
    height: 44px;
    line-height: 44px;
    width: 50%;
    text-align: center;
    color: #2C74E2;
}
.pop-footer-btn a.line-left {
    border-left: 1px solid #DDDDDD;
    margin-left: -1px;
}