*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

/* 底部的样式 */
.bottom{
    height: 210px;
    background-color: rgb(44,47,59);
    }
    .info{
        height: 170px;
        width: 1200px;
        margin: 0 auto;
        padding-top: 40px;
    }
    .info ul{
        display: flex;
      justify-content: space-around;
    }
    .info ul li a{
        color: rgb(131,133,140);
    }
    .info ul li p{
        color: rgb(131,133,140);
    }
    .info ul li p:nth-child(1){
        color: white;
        font-size: 20px;
        margin-bottom: 10px;
        
    }
    .bo{
        background-color: rgb(33,36,47);
        text-align: center;
        color: rgb(131,133,140);
        height: 40px;
        line-height: 40px;
    }



    /* 索引的样式 */
    .index{
        height: 60px;
        font-size: 22px;
    }
    .index a{
        cursor: pointer;
        color: black;
    }
    .index a:hover{
        color: orange;
    }

    /* 当前索引css */
    .class{
        color: rgb(50,148,255);
        font-size: 24px;
        margin-top: 25px;
        margin-bottom: 40px;
        padding-bottom: 15px;
        border-bottom: 4px solid rgb(230,234,237);
    }

/* 分页 */
.pageBox{
    text-align: center;
    margin-top: 25px;
}
.pageBox .pageBtns{
    display: inline-block;
    height: 40px;
    margin: 0 auto;
}
.pageBox .pageBtns .btns{
    display: flex;
    justify-content: space-around;
}
.pageBox .pageBtns .btns .btn{
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background-color: rgb(243,244,248);
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    color: rgb(145,157,169);
}
.pageBox .pageBtns .btns .btn.cur,.pageBox .pageBtns .btns .btnpage:hover{
    background-color: rgb(5,90,236);
    color: white;
}
.pageBox .pageBtns .btns .btn img{
    width: 10px;
    height: 12px;
}
.pageBox .pageBtns .btns .prev img{
    transform:rotate(180deg);
}
/* 跳转框样式 */
.pageBox .pageBtns .btns .pagejump .jumpbox{
    height: 36px;
    width: 60px;
    position: relative;
    top: -2px;
    padding-left: 4px;
    outline: none;
    border: 1px solid rgb(232,234,237);
    border-radius: 4px;
}
.pageBox .pageBtns .btns .pagejump{
    height: 36px;
    line-height: 36px;
    color: rgb(162,173,183);
}
/*
.pageBox .pageBtns .btns .btn.pageother{
    line-height: 25px;
}
*/
.header{
    height: 500px;
    background-size: cover;
    background-color: rgb(52,65,134);
    background-image: url(../../common/img/banner.jpg);
    background-size: cover;
    margin-bottom: 20px;
}


/* 头部css */
.header_nav {
    width: 100%;
    height: 60px;
}
.headerCon {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
.headerLeft {
    width: 40%;
    height: 100%;
    float: left;
    padding-top: 5px;
    color: white;
    line-height: 27px;
}

.headerLeft img {
    float: left;
    /*height: 55px;*/
    width: 267px;
    margin-top: 20px;
}
.headerRight {
    width: 50%;
    height: 100%;
    float: right;
}
.headerSelect {
    float: right;
    height: 100%;
    color: white;
    padding-top: 18px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.headerSelect > span {
    margin: 0 10px;
}
.headerSelect > a {
    color: white;
}
.headerOption {
    border: none;
    color: white;
    background-color: none;
}
/* 头部小下拉 */
.down {
    display: inline-block;
}
.downtop {
    height: 21px;
    position: relative;
    top: 2px;
    cursor: pointer;
    text-align: center;
}
.downtop img {
    height: 9px;
    width: 13px;
    margin-left: 5px;
}
.downtop:hover .downbottom {
    display: block;
}
.downbottom {
    min-width: 110px;
    display: none;
    position: absolute;
    top: 20px;
    left: 0px;
    color: rgb(75, 75, 75);
    z-index: 100;
}
.downbottom ul li a {
    color: rgb(75, 75, 75);
    font-size: 12px;
}
.downbottom ul {
    width: 100%;
}
.downbottom ul li {
    width: 100%;
    background-color: white;
    text-align: center;
    cursor: pointer;
    padding: 5px 10px;
}
.downbottom ul li:nth-child(1) {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-top: 10px;
}
.downbottom ul li:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-bottom: 10px;
}
.downbottom ul li:hover {
    background-color: cornsilk;
    color: orange;
}
.downbottomshow {
    display: block !important;
}


/* 导航css */
.nav {
    height: 76px;
    width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}
.nav ul {
    display: flex;
    justify-content: space-around;
    border-top: 2px solid rgb(145, 150, 180);
}
.nav > ul > li {
    height: 76px;
    text-align: center;
    color: white;
    padding-top: 15px;
    position: relative;
    top: -2px;
    padding: 15px 60px;
    z-index:10;
}
.nav ul li:hover,.nav ul li.cur {
    border-top: 2px solid white;
}
.nav ul li a {
    font-size: 20px;
    color: white;
}
.nav ul li span {
    color: rgb(145, 150, 180);
}
.parkDown {
    position: relative;
}
.parkDown:hover .downCon {
    display: block;
}
.parkDown:hover {
    background-color: black;
}
.parkDown img {
    width: 19px;
    height: 10px;
    margin-left: 5px;
}
.parkDown p {
    cursor: pointer;
}
.downCon {
    min-height: 40px;
    background-color: black;
    display: none;
    position: absolute;
    top: 58px;
    color: white;
    left: 0;
    right: 0;
}
.downCon ul {
    width: 100%;
    display: block;
    border: none;
}
.downCon ul li {
    height: 45px !important;
    line-height: 45px;
    font-size: 19px;
    display: block;
    cursor: pointer;
    padding: 0 10px;
}
.downCon ul li:hover {
    color: rgb(5, 90, 236);
    border: none;
}

a{
    text-decoration: none !important;
}
