/* CSS初始化 */
html, body {
    min-width: 1200px !important;
    font-family: consolas, "Microsoft YaHei", "\5fae\8f6f\96c5\9ed1";
    font-size: 14px;
    color: #555555;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

/* 针对老版本浏览器对h5标签兼容不友好的情况 */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    background-color: #ecffff;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: #333;
}

.blue-font{
    color: #1394fc;
}

a:hover {
    color: #ff9900;
}

/* 返回顶部 */
.go-top{
    position: fixed;
    right: 20px;
    bottom: 160px;
    width: 60px;
    height: 60px;
    background: url("../img/go-top.png");
    background-color: rgba(0,0,0,.6);
    cursor: pointer;
}
/*弹窗*/

.confirm-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none
}

.confirm-content {
    width: 398px;
    height: 188px;
    text-align: center;
    color: #999;
    background: #fff;
    padding-top: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.confirm-content p {
    font-size: 20px;
    text-align: center;
    line-height: 80px;
    color: #333333;
}

.confirm-content button {
    width: 138px;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    background: #2997ec;
    color: #fff;
    margin: 10px 15px;
    border: none;
    outline: none;
    cursor: pointer;
}
