* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}
html, body {
    height: 100%;
}
.container {
    min-height: 100%;
    display: flex; /* 容器为flex布局 */
    flex-direction: column; /* 方向为纵向，保持正常的从上到下文档流 */
}

footer {
    margin-top: auto; /* 设置footer的上外边距为auto */
}
ol,
ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
video {
    width: 100%;
    height: auto;
    /*max-height: 800px;*/
}
h3 {
    font-family: "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.1;
}
input {
    background:none;
    outline:none;
    border:none;
}
button {
    border: none;
}
button:focus {
    outline: none;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.top-header {
    margin-top: 90px;
}
@media (max-width:1129px) {
    .top-header {
        margin-top: 70px;
    }
}
.weight-normal {
    font-weight: normal;
}


/*a:active {*/
/*    color: orange; !*鼠标点击时的颜色*!*/
/*}*/
.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}
.clearfix {
    zoom:1;
}
.form-control {
    display: block;
    max-width: 150px;
    height: 36px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.enlarge {
    overflow: hidden;
}
.enlarge img, .enlarge span {
    width:100%;
    height: auto;
    cursor: pointer;
    transition: all 0.6s;
    -ms-transition: all 0.8s;
}
.enlarge img:hover, .article-txt:hover>.enlarge>span {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.panel-body p img,.article-content p img, .article-content table {
    max-width: 100%;
    height: auto !important;
}

