/* CSS Reset */
body {
    font: 14px/1.5 "noto sans sc";
}
body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #333;
    text-decoration: none;
    cursor: Pointer;
}
img {
    max-width: 100%;
    max-height: 100%;
    border: none;
}
table {
    border-collapse: collapse;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}
textarea {
    resize: none;
    font: 14px/1.5 "noto sans sc";
}
input:focus{
    outline: medium;
}
input {
    text-indent: 10px;
    outline: none;
    font: 14px/1.5 "noto sans sc";
}
span {
    display: block;
}
/**, *:before, *:after {
    box-sizing: border-box;
}*/

/* CSS Layout */
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {    /*清除浮动*/
    zoom: 1;
}
.clearfix::after {
    content: '';
    clear: both;
    display: block;
    height: 0;
    line-height: 0;
}
.pos_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.frame_center {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.bgimg_style {
    background-size: inherit;
    background-position: center center;
    background-repeat: no-repeat;
}
/*单行超出隐藏*/
.ofont_hidden {
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
/*多行超出隐藏*/
.tfont_hidden {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/*安全标识*/
#jvs-cert{
    display: inline-block!important;
    width: 80px;
}
#jvs-cert img{
    top: -20px!important;
}