* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    color: #6f6f6f;
    font-family: "Microsoft YaHei", "Times New Roman", Times, serif;
    font-size: 14px;
    height: 100%;
    background: #fff;

}

ul li {
    list-style: none;
}

a {
    text-decoration: none;

}
input ,button{
    outline: none;
    border: none;
}
button{
    cursor: pointer;
}
input::-webkit-input-placeholder{
    color: #999999;
    font-size: 12px;
}
small{
    font-size: 12px;
}
.cont{
    padding-bottom:70px;
}
/*底部*/
.floor {
    text-align: center;
    color: #999;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    background-color: #f4f4f4;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-top: 1px solid #dedede;
}
/*头部*/
.top-div {
    height: 100px;
    width: 100%;
    background: linear-gradient(90deg, #fafbfd, #daf1ec);
}

.top-div > div {
    width: 1160px;
    height: 100%;
    margin: 0 auto;

}
.top-div p{
    float: right;
    height: 24px;
    line-height: 24px;
    margin-top: 38px;
}
.top-div > div p a {
    color: #2e7a6a;
    text-decoration: none;
    font-size: 14px;
    float: right;
}

.top-div > div p >span {
    font-size: 14px;
    color: #6c6c6c;
    margin-right: 15px;
    margin-left: 40px;
    float: right;
}

.top-div p >b{
    float: right;
    border-left: 1px solid #b7b7b7;
    padding-left: 10px;
    margin-left: 15px;

}

.top-div > div img {
    width: 66px;
    height: 66px;
    float: left;
    margin-top: 17px;
    margin-right: 20px;

}

.top-div > div > div {
    margin-left: 10px;
    width: 73%;
}

.top-div > div h2 {
    font-size: 24px;
    color: #014c38;
    height: 100px;
    line-height: 100px;
    float: left;
}

.top-div > div small {
    color: #999999;
    font-size: 12px;
}

/*菜单*/
.header {
    height:50px;
    width: 100%;
    background-color: #2e7a6a;
}

.nav {
    width: 1160px;
    height: 100%;
    margin: 0 auto;
}

.nav li {
    line-height: 50px;
    float: left;
    position: relative;

}
.nav li a {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
    z-index: 100;
}

.select-li {
    background-color: #196353;
}

/* .nav li:hover {
    background-color: #196353;
} */

/*下拉菜单*/
.down-menu {
    width: 240px;
    position: relative;
    cursor: pointer;
    height: 38px;

}

.down-menu > div {
    width: 100%;
    line-height: 35px;
    height: 38px;
    background-color: #f5f5f5;
    border-radius: 3px;
    border: solid 1px #e3e3e3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 10px;
}

.down-menu > div span {
    margin-left: 5px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 86%;
}

.down-menu > div i {
    float: right;
    margin-right: 7px;
    margin-top: 15px;
    width: 14px;
    height:7px;
    display: inline-block;
    background: url("../../images/pc/chose.png") no-repeat;
}

.down-menu > ul {
    width: 100%;
    position: absolute;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #dedede;
    border-radius: 3px;
    display: none;
    max-height: 200px;
    overflow: auto;
}

.down-menu > ul li {
    line-height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 7px;


}

.down-menu > ul li:hover {
    background-color: #2e7a6a;
    color: white;
}


/*====================
*单选按钮radio
=====================*/
.check-group {
    float: left;
    margin-right: 20px
}

.check-group span {
    margin-left: 5px;
    float: right;
}

.radioOne {
    position: absolute;
    display: none;
}

.radioOne + label {
    cursor: pointer;
    position: relative;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: solid 2px #bebebe;
    border-radius: 100%;
    display: inline-block;
    top: 5px;
}

.radioOne + label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background: #ffffff; /*圆点颜色*/
    top: 3px;
    left: 3px;
    border-radius: 100%;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.radioOne:checked + label:after {
    opacity: 1;
}

.radioOne:checked + label {
    background: #014c38;
    border: solid 2px #014c38;
}

/*==============
*多选框checkbook
======================*/

.checkboxFive {
    position: absolute;
    display: none;
}

.checkboxFive + label {
    cursor: pointer;
    position: relative;
    width: 14px;
    height: 14px;
    /*background: #eee;*/
    border: 1px solid red;
    border-radius: 4px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}

.checkboxFive + label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 7px;
    height: 4px;
    background: transparent;
    top: 3px;
    left: 2px;
    border: 3px solid #2E7A6A; /*对号颜色*/
    border-top: none;
    border-right: none;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkboxFive + label:hover::after {
    opacity: 1;
}

.checkboxFive:checked + label:after {
    opacity: 1;
}

.checkboxFive + label:hover {
    border: 1px solid #2E7A6A;
}

.checkboxFive:checked + label {
    border: 1px solid #2E7A6A;
}

/*颜色*/

div:first-child{

}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color: #c9c9c9;
    opacity: 0.8;
    filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)";
}

/**/

@media all and (max-height:610px){
    .down-menu > ul {
        max-height: 120px;

    }
}
.down-menu > ul li:hover span{
    color: white;
}