/*
 * @Author: fuy
 * @Date: 2020-06-22 10:54:15
 * @LastEditTime: 2020-06-24 16:39:19
 * @LastEditors: fuy
 * @Description: 公共样式
 * @FilePath: /lihua/css/common.css
 */

* {
    box-sizing: border-box;
}

html {
    font-family: '微软雅黑', Arial, Helvetica, sans-serif;
    font-size: 16px;
}

body {
    min-width: 1200px;
    padding-top: 145px;
}

a {
    text-decoration: none;
    color: black;
}
a:hover {
    text-decoration: none;
    cursor: pointer;
} /*a标签鼠标经过mouseover时的样式*/
a:link {
    text-decoration: none;
    cursor: pointer;
} /*a标签未访问时的样式*/
a:visited {
    text-decoration: none;
    cursor: pointer;
} /*a标签访问过之后样式*/
a:active {
    text-decoration: none;
    cursor: pointer;
} /*a标签鼠标按下mousedown时的样式*/

.container {
    width: 1100px;
    height: auto;
    margin: 0 auto;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '';
    height: 0;
    display: block;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

img {
    vertical-align: middle;
}

/* header */
.header {
    width: 100%;
    height: 145px;
    position: fixed;
    top: 0;
    z-index: 10;
}

.header-top {
    height: 45px;
    line-height: 45px;
    background: #0082d6;
}

.header-top span {
    font-size: 14px;
    color: #ffffff;
    margin-left: 5px;
}

.header-bottom {
    height: 100px;
    background: rgb(255, 255, 255, .8);
    filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7FFFFFFF,endcolorstr=#7FFFFFFF);
}

.nav {
    margin-top: 24px;
}

.nav > li {
    float: left;
    list-style: none;
    font-size: 16px;
    margin-left: 40px;
    line-height: 40px;
    position: relative;
}

.nav > li.active {
    border-bottom: 3px solid #0082d6;
}

.nav > li:hover {
    border-bottom: 3px solid #0082d6;
}

.nav-drop-list {
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    z-index: 5;
    top: 43px;
    left: -27px;
    display: none;
    padding: 10px 0;
}

.nav-drop-list li {
    width: 120px;
    list-style: none;
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
}

.nav-drop-list li:hover {
    background: #0082d6;
}

.nav-drop-list li:hover a {
    color: #ffffff;
}
/* header end */

/* footer */
.footer {
    width: 100%;
    height: 148px;
    background: #d2d2d2;
    padding-top: 40px;
}

.footer p {
    width: 100%;
    font-size: 16px;
    color: #545353;
    line-height: 35px;
    text-align: center;
}

/* common list */
.cont-l {
    width: 232px;
    float: left;
    border: 1px solid #ededed;
    box-shadow: 9.193px 7.713px 9.9px 0.1px rgba(224, 226, 228, 0.32);
    margin-top: 50px;
}

.cont-l-title {
    width: 100%;
    height: 92px;
    line-height: 92px;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    background: url(../images/bg-06.png) no-repeat 100% 100%;
}

.cont-l-list {
    padding-top: 35px;
    padding-bottom: 40px;
}

.cont-l-list ul li {
    width: 172px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #ededed;
    list-style: none;
    margin: 0 auto;
    margin-bottom: 21px;
}

.cont-l-list ul li a {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    color: #333333;
}

.cont-l-list ul li.active, .cont-l-list ul li:hover {
    background: #0082d6;
}

.cont-l-list ul li.active a, .cont-l-list ul li:hover a {
    color: #ffffff;
}

.cont-r {
    width: 840px;
    /* height: 1130px; */
    margin-top: 50px;
    float: left;
    margin-left: 27px;
    border: 1px solid #ededed;
    box-shadow: 9.193px 7.713px 9.9px 0.1px rgba(224, 226, 228, 0.32);
    padding: 20px 11px;
}

.cont-r-top {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 5px;
}

.cont-r-title {
    float: left;
    background: url(../images/ic-07.png) no-repeat center left;
    background-size: 10px 10px;
    padding-left: 20px;
    font-size: 20px;
}

.cont-r-location {
    font-size: 16px;
    float: right;
    color: #787878;
}

.cont-r-list {
    padding-top: 20px;
}

.cont-pager {
    width: 100%;
    height: 100px;
    margin-top: 50px;
    text-align: right;
}
/* common list end */
