/* pc样式 */
@media screen and (min-width: 1024px){
    .content-title {
        display: none;
        padding: 0 15px;
        box-sizing: border-box;
        width: 100%;
        height: 100px;
        /* display: flex; */
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
    }

    .content-title>h2 {
        font-size: 20px;
        font-weight: 700;
        color: #082d5b;
    }
    .dqwz {
        display: none;
        color: #082d5b;
        margin-bottom: 10px;
    }
    .dqwz>span {
        font-size: 18px;
        font-weight: 700;
        color: #082d5b;
    }
    .dqwz>a {
        font-size: 18px;
        font-weight: 700;
        color: #082d5b;
    }

    .content-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .content-nav>h4 {
        font-weight: 700;
        font-size: 26px;
        color: #082d5b;
        padding-left: 50px;
    }
    .content-nav>ul {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 50px;
    }
    .content-nav>ul>li {
        padding: 0 10px;
        border-right: 1px solid #082d5b;
    }
    .content-nav>ul>li>a {
        display: block;
        text-align: center;
        width: 110px;
        height: 30px;
        font-size: 20px;
        color: #082d5b;
        font-weight: 700;

    }
    .content-nav>ul>li:last-child {
        border: none;
    }
    .content-nav>ul>li>a:hover {
        color: #fff;
        background-color: #082d5b;
        border-radius: 30px;
    }
    .index-nav-active>a {
        background-color: #082d5b;
        border-radius: 30px;
        color: #fff !important;
    }

     /* 内容 */
    .content {
        min-height: 500px;
        background-color: rgb(246, 246, 246);
        padding-bottom: 100px;
    }

    .content-box {
        margin-top: 40px;
    }

.content-box-cen {
        display: flex;
        justify-content: space-between;
    }

    .content-box-cen-left {
        width: 310px;
        height: 900px;
        background-color: #ffffff;
        box-shadow: 0px 3px 16px 0px  rgba(0, 0, 0, 0.14);
        border-radius: 10px;
    }

    .content-box-cen-left>ul {
        margin-top: 10px;
        
    }

    .content-box-cen-left>ul>li {
        width: 135px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #000;
        height: 85px;
    }
    .content-box-cen-left>ul>li>a {
        position: relative;
        color: #082d5b;
        font-size: 22px;
    }

    .content-box-cen-left>ul>li:last-child {
        border-bottom: none;
    }

    .content-box-cen-left>ul>li>a>span {
        position: absolute;
        right: -20px;
        top: 8px;
        display: none;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-width: 7px 0 7px 10px;
        border-left-color: #082d5b;
    }

    .box-cen-left-active>a {
        font-weight: 700;
    }

    .box-cen-left-active>a>span {
        display: block !important;
    }

    .content-box-cen-right {
        width: 1060px;
    }

    .yqsb-list {
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between; */
    }

.yqsb-list-img {
        width: 280px;
        height: 220px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto 220px;
    }

    .yqsb-list>li {
        position: relative;
        box-sizing: border-box;
        display: block;
        padding: 30px 20px;
        width: 320px;
        height: 410px;
        background-color: #fff;
        border-radius: 10px;
        border: 1px solid #b6c0cc;
        margin: 0 40px 40px 0;
    }

    .yqsb-list>li:nth-child(3n) {
        margin: 0 0 40px 0;
    }

    .yqsb-list>li>h4 {
        font-size: 25px;
	color: #082d5b;
        font-weight: 700;
        line-height: 50px;
       text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .yqsb-list>li>p {
        font-size: 17px;
	    color: #010101;
        line-height: 24px;
    }

    .yqsb-list>li:hover>.yqsb-list-mask {
        display: flex;
        transition: all .5s;
        opacity: 1;
    }
    .yqsb-list-mask {
        transition: all .5s;
        display: flex;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 320px;
        height: 410px;
        background-color: rgba(89, 158, 234,0.9);
        border-radius: 10px;
        border: solid 1px #b6c0cc;
    }

    .yqsb-list-mask>a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .yqsb-list-mask>a>img {
        height: 50px;
    }
    .yqsb-list-mask>a>h5 {
        margin-top: 15px;
        font-size: 25px;
        font-weight: 600;
        color: #ffffff;
    }

    .yqsb-list-mask>span {
        margin: 30px 0;
        width: 180px;
        height: 1px;
        background-color: #ffffff;
    }

    .content-page {
        height: 150px;
        margin-top: 40px;
        border-top: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-box {
        width: 500px;
        height: 50px;
    }

}

/* 笔记本低分辨率样式 */
@media screen and (max-width: 1300px) {
    .content-nav>ul>li>a {
        width: 100px;
    }

    .content-box-cen-left {
        width: 260px;
    }
    .content-box-cen-right {
        width: 900px;
    }
    .yqsb-list>li {
        width: 280px;
        margin: 0 30px 30px 0;
    }

    .yqsb-list>li:nth-child(3n){
        margin: 0 0 30px 0;
    }
    
    .yqsb-list-mask {
        width: 280px;
    }
    .yqsb-list-img {
        width: 240px;
        height: 200px;
        background-size: auto 200px;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
     .content-box-cen-left {
        display: none;
     }

    .content-nav {
        width: 95%;
        margin: 20px auto;
        /* height: 60px; */
        background-color: #ffffff;
        box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .content-nav>h4 {
        display: none;
    }
    .content-nav>ul {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0;
    }
    .content-nav>ul>li {
        padding: 0 10px;
        margin: 10px 0;
        border-right: 1px solid #082d5b;
    }
    .content-nav>ul>li>a {
        display: block;
        text-align: center;
        width: 120px;
        height: 30px;
        font-size: 20px;
        color: #082d5b;
        font-weight: 700;
        border: none;
    }

    .content-nav>ul>li>a:hover {
        color: #fff;
        background-color: #082d5b;
        border-radius: 30px;
    }
    .index-nav-active>a {
        background-color: #082d5b;
        border-radius: 30px;
        color: #fff !important;
    }

    .content-title {
        padding: 0 15px;
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .content-title>h2 {
        font-size: 20px;
        font-weight: 700;
        color: #082d5b;
    }
    .dqwz>a {
        font-size: 14px;
        color: #082d5b;
    }
    .dqwz>span {
        font-size: 14px;
        color: #082d5b;
    }

    /* 内容 */
    .content {
        min-height: 500px;
        background-color: #f6f6f6;
        padding-bottom: 50px;
    }

    .content-box {
        padding: 10px;
        min-height: 500px;
    }

    .yqsb-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.yqsb-list-img {
        width: 90%;
        height: 120px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 90% auto;
    }

    .yqsb-list>li {
        position: relative;
        box-sizing: border-box;
        display: block;
        padding: 10px 5px;
        width: 180px;
        height: 300px;
        background-color: #fff;
        border-radius: 10px;
        border: 1px solid #b6c0cc;
        margin-bottom: 20px;
    }

    .yqsb-list>li>h4 {
        font-size: 20px;
	color: #082d5b;
        font-weight: 700;
        line-height: 50px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .yqsb-list>li>p {
        text-indent: 0;
        font-size: 12px;
	    color: #010101;
        line-height: 24px;
    }

    .yqsb-list>li:hover>.yqsb-list-mask {
        display: flex;
        transition: all .5s;
        opacity: 1;
    }
    .yqsb-list-mask {
        transition: all .5s;
        display: flex;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 300px;
        background-color: rgba(89, 158, 234,0.9);
        border-radius: 10px;
        border: solid 1px #b6c0cc;
    }

    .yqsb-list-mask>a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .yqsb-list-mask>a>img {
        height: 40px;
    }
    .yqsb-list-mask>a>h5 {
        margin-top: 15px;
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
    }

    .yqsb-list-mask>span {
        margin: 30px 0;
        width: 180px;
        height: 1px;
        background-color: #ffffff;
    }

    .content-page {
        height: 150px;
        margin-top: 40px;
        border-top: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-box {
        width: 100%;
        height: 50px;
    }

}