.container {
    width: 100%;
    padding: 0px 80px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.header {
    background-image: url(../image/commonlogo.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
}

.header .logo {
    margin-top: 33px;
    float: left;
}

.header .logo a {
    display: block;
}

.header .logo .img-box {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.header .logo img {
    display: block;
    
    transition: all .3s ease;
}

.header .logo img.hide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.other {
    text-align: right;
    font-size: 14px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.other a {
    color: #fff;
    display: inline-block;
}

.other a.search {
    background: url("../image/icon-2.png") left center no-repeat;
    padding-left: 25px;
    cursor: pointer;
}

.other a.lang {
    background: url("../image/lang1.png") left center no-repeat;
    padding-left: 25px;
    cursor: pointer;
}

.nav {
    float: right;
    margin-top: 49px;
    width: calc(100% - 380px);
    text-align: right;
}

.nav>li {
    display: inline-block;
    padding-left: 67px;
    position: relative;
    cursor: pointer;
}

.nav>li.lang {
    display: none;
}

.nav>li>a {
    font-size: 16px;
    color: #FFFFFF;
}

.nav>li .second-nav {
    display: none;
}




.fixed-search .bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 6;
    opacity: 0;
    visibility: hidden;
}

.fixed-search form {
    position: fixed;
    left: 19vw;
    right: 19vw;
    background: #fff;
    z-index: 7;
    padding: 0 70px;
    opacity: 0;
    top: 180px;
    visibility: hidden;
}

.fixed-search form input {
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
}

.fixed-search form button {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../image/icon-1.svg");
    background-size: auto 20px;
    cursor: pointer;
    background-color: transparent;
}

.fixed-search form .close {
    position: absolute;
    width: 70px;
    height: 70px;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.fixed-search form .close svg {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
}

.fixed-search.active .bg,
.fixed-search.active form {
    opacity: 1;
    visibility: visible;
}

.main_container {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 110px;
}

.main_container_path {
    padding-top: 20px;
    padding-bottom: 30px;
}

.main_container_path a {
    font-size: 14px;
    color: #666666;
}

.main_container_article_title {
    font-size: 36px;
    color: #00457d;
    letter-spacing: 0;
    
    line-height: 48px;
    margin-bottom: 28px;
}

.main_container_article_time {
    font-size: 14px;
    color: #666666;
    letter-spacing: 0;
    line-height: 18px;
    padding-bottom: 32px;
    border-bottom: 1px solid #00457d;
}

.column-title {
    height: 53px;
    line-height: 33px;
    font-size: 24px;
    color: #0A5FA4;
    
    border-bottom: 1px solid #ddd;
    background: #fff;
    z-index: 999;
    
}

.column-title span {
    position: relative;
    height: 53px;
    display: inline-block;
}

.column-title span:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0A5FA4;
}

.main_container_article_zhengwen {
    padding-bottom: 40px;
}

.main_container_article_zhengwen p {
    margin-top: 31px;
    font-size: 20px;
    color: #354855;
    letter-spacing: 0;
    text-align: justify;
    line-height: 30px;
}

.main_container_article_zhengwen img {
    margin-top: 31px;
    width: 100%
}

.main_container_article_updown {
    display: flex;
    justify-content: space-between;
}

.main_container_article_updown li {
    width: 44%;
    opacity: 0.9;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-top: 4px solid rgba(10, 95, 164, 0.9);
    padding: 20px 30px;
    line-height: 30px;
}

.main_container_article_updown li a {
    display: block;
    color: #333;
}

.main_container_article_updown li:hover a {
    color: #0a5fa4;
}

.main_container_lmm {
    height: 47px;
    line-height: 47px;
    padding-bottom: 26px;
    border-bottom: 1px solid #d8d8d8;
}

.main_container_lmm h1 {
    font-size: 30px;
    color: #00457d;
    display: inline-block;
    position: relative;
    font-weight: bold;
}

.main_container_lmm h1::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 72px;
    left: 0;
    background: #00457d;
}

.main_container_content {
    padding-top: 30px;
    
    
    overflow: hidden;
}

.main_container_content_left {
    width: 270px;
    
    margin-right: 30px;
    float: left;
}

.main_container_content_left dl dd {
    line-height: 62px;
    background: #f4f6f8;
    margin-bottom: 15px;
    padding: 0px 0px 0px 15px;
}

.main_container_content_left dl dd a {
    font-size: 16px;
    color: #333;
    display: block;
}

.main_container_content_left dl dd.cur,
.main_container_content_left dl dd:hover {
    background: #00457d;
}

.main_container_content_left dl dd.cur a,
.main_container_content_left dl dd:hover a {
    color: #fff;
}

.main_container_content_right {
    float: right;
    
    width: 900px;
    min-height: 800px;
}

.partner {
    background: #F4F8FD;
    float: right;
    width: 900px;
    padding: 30px;
    
    min-height: 800px;
    box-sizing: border-box;
}

.partner strong {
    display: block;
    font-size: 24px;
    color: #00457d;
    text-align: center;
}

.partner ul {
    margin: 0 -15px;
    overflow: hidden;
}

.partner li {
    float: left;
    width: 33.333%;
    margin-top: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.partner li a {
    display: block;
    background: rgba(0, 139, 252, 0.00);
    border: 1px solid #A8B3BC;
    height: 140px;
    overflow: hidden;
}

.partner li a img {
    width: 100%;
    height: 140px;
}

.main_container_content_right_list {
    min-width: 900px;
    width: 900px;
}

.main_container_content_right_list ul li .box {
    height: 175px;
    background: #f4f6f8;
    margin-bottom: 30px;
    padding: 20.5px 20px;
    display: flex;
    justify-content: space-between;
}

.main_container_content_right_list ul li .box img {
    width: 309.7px;
    height: 175px;
}

.main_container_content_right_list ul li .box .titletime {
    padding-left: 20.3px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.main_container_content_right_list ul li .box .titletime .title {
    margin-bottom: 58px;
    line-height: 30px;
}

.main_container_content_right_list ul li .box .titletime .title a {
    font-size: 20px;
    color: #333333;
}

.main_container_content_right_list ul li .box .titletime .time {
    font-size: 16px;
    color: #666666;
}

.main_container_content_right_list ul.pic {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 900px;
}

.main_container_content_right_list ul.pic li {
    width: 280px;
    height: 280px;
    background: #f4f6f8;
    margin-bottom: 31px;

}

.main_container_content_right_list ul.pic li .box {
    display: flex;
    flex-direction: column;
    padding: 0;
    height: auto;
}

.main_container_content_right_list ul.pic li .box img {
    width: 100%;
    height: 157.6px;
}

.main_container_content_right_list ul.pic li .box .titletime {
    display: flex;
    flex-direction: column;
    height: 121.4px;
    padding: 21px 20px;
    box-sizing: border-box;
}

.main_container_content_right_list ul.pic li .box .titletime .time {
    font-size: 16px;
    color: #666666;
    margin-bottom: 10px;
}

.main_container_content_right_list ul.pic li .box .titletime .title {
    font-size: 18px;
    color: #333333;
    letter-spacing: 0;
    line-height: 26px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.main_container_content_right_list ul.wenzi li {
    background: #f4f6f8;
}

.main_container_content_right_list ul.wenzi li .box {
    padding: 15px;
    background: none;
    height: auto;
}

.main_container_content_right_list ul.wenzi li .box .titletime {
    padding-left: 0px;
}

.main_container_content_right_list ul.wenzi li .box .titletime .title {
    margin-bottom: 61px;
}

.main_container_content_right_list ul.wenzi li .box .titletime .time {
    padding-left: 40px;
    position: relative;
}

.main_container_content_right_list ul.wenzi li .box .titletime .time::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    width: 30px;
    height: 1px;
    background-color: black;
}

.main_container_content_right_list ul.wenzi li:hover {
    background: #00457d;
}

.main_container_content_right_list ul.wenzi li:hover .box .titletime .title a {
    color: white;
}

.main_container_content_right_list ul.wenzi li:hover .box .titletime .time {
    color: white;
}

.main_container_content_right_list ul.wenzi li:hover .box .titletime .time::before {
    background: #fff;
}

.main_container_content_right_zhengwen P {
    margin-bottom: 31px;
    font-size: 20px;
    color: #354855;
    letter-spacing: 0;
    text-align: justify;
    line-height: 30px;
}

.main_container_content_right_zhengwen P img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

.main_container_content_list ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main_container_content_list ul li {
    width: 585px;
    height: 210px;
    margin-bottom: 30px;
    background-image: url(../image/service.png);
    background-position: right center;
    cursor: pointer;
}

.main_container_content_list ul li .box {
    padding: 40px 40px 42px 40px;
    background: #f4f6f8;
}

.main_container_content_list ul li .box .time {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.main_container_content_list ul li .box .title a {
    font-size: 20px;
    color: #333333;
    letter-spacing: 0;
    text-align: justify;
    line-height: 30px;
}

.main_container_content_list ul li.cur .box,
.main_container_content_list ul li:hover .box {
    background: #00457d url(../image/service.png) right center no-repeat;
    background-size: 180px 180px;
}

.main_container_content_list ul li.cur .box .time,
.main_container_content_list ul li:hover .box .time {
    color: white;
}

.main_container_content_list ul li.cur .box .title a,
.main_container_content_list ul li:hover .box .title a {
    color: white;
}

.footer {
    background: #2d3854;
    padding: 34px;
}

.footer .logo {
    display: none;
}

.footer_content {
    margin: 0 auto;
}

.footer_content ul {
    display: flex;
    flex-direction: column;
}

.footer_content ul li {
    font-size: 14px;
    color: #c7cad3;
    letter-spacing: 0;
    text-align: center;
    line-height: 28px;
}

.pages {


    

    font-size: 18px;

    text-align: center;
}

.liuyan .pages {
    margin-bottom: 30px;
    padding-top: 0px;
    margin-top: 30px;
}

.pages span {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 20px;
    
}

.pages a {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #00457D;
    font-size: 18px;
    
    margin-right: 20px;
    box-sizing: border-box;
    color: black;
    
}

.pages a:hover {
    color: #00457D
}

.pages a.jump-btn {
    margin-left: 5px;
}

.pages li span {
    float: left;
}

.pages .active {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #00457D;
    font-size: 20px;
    padding: 0 10px;
    margin-right: 20px;
    background: #00457D;
    color: #fff;
    box-sizing: border-box;
}

.pages .jump-ipt {
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #00457D;
    outline: none;
    color: #333;
    font-size: 16px;
    vertical-align: top;
    box-sizing: border-box;
}

.fadeup {
    -webkit-animation: fadeInUp 1s ease both;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.4s;
}

.list {
    float: right;
    width: 75%;
}

.list dl {
    background: #F7F8F9;
    padding: 30px;
    margin-top: 30px;
    overflow: hidden;
}

.list dl dt {
    float: left;
    width: 37.2%;
}

.list dl dt img {
    width: 100%;
    height: 100%;
}

.list dl dd {
    float: left;
    width: 62.8%;
    padding-left: 20px;
}

.list dl dd strong {
    display: block;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
}

.list dl dd p {
    font-size: 16px;
    color: #666666;
    text-align: justify;
    line-height: 32px;
    margin-bottom: 32px;
}

.list dl dd span {
    display: block;
    font-size: 16px;
    color: #666666;
    line-height: 22px;
}

.list dl.nopic dd {
    float: none;
    width: 100%;
    padding-left: 0;
}

.list dl.nopic dd strong {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.list dl.nopic dd strong a{
    color: #333;
}
.list dl:hover {
    background: url("404.png") #0A5FA4 right center no-repeat;
    color: #fff;
    cursor: pointer;
}

.list dl:hover a,
.list dl:hover dd p,
.list dl:hover dd span {
    color: #fff;
}

.page {
    
    font-size: 18px;
    text-align: center;
}


.page a {
    display: inline-block;
    min-width: 54px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #00457D;
    font-size: 20px;
    padding: 0 10px;
    margin-right: 20px;
    box-sizing: border-box;
}

.page a.jump-btn {
    margin-left: 5px;
}

.page span {

    display: inline-block;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-right: 20px;
}

.page span.text {
    margin: 0;
}

.page .active {
    display: inline-block;
    min-width: 54px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #00457D;
    font-size: 20px;
    padding: 0 10px;
    margin-right: 20px;
    background: #00457D;
    color: #fff;
}

.page .jump-ipt {
    display: inline-block;
    margin: 0 5px;
    width: 54px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #fff;
    border: 1px solid #00457D;
    outline: none;
    color: #333;
    font-size: 16px;
    vertical-align: top;
}

.toTop {
    position: fixed;
    right: 3%;
    bottom: 15%;
    z-index: 99999;
    display: none;
}

.toTop>img {
    cursor: pointer
}

.dtlist {
    width: 1200px;
}

.dtlist>ul {
    width: 1200px;
}

div.picnews {
    width: 1200px;
}

div.picnews .picnews {
    justify-content: flex-start;
    width: 1200px
}

.liuyan {
    background-color: #f9f8ff;
    padding: 40px 30px;
    box-sizing: border-box;
    background-image: url(../image/liuyan_Background.png);
    background-position: center bottom;
    background-repeat: no-repeat;
}

.liuyan .lytitle {
    list-style-type: none;
    overflow: hidden;
}

.liuyan .lytitle>li {
    float: left;
    
    width: 163px;
    text-align: center;
    font-size: 16px;
    background: #e5e4f9;
    height: 43px;
    line-height: 43px;
    cursor: pointer;
}

.liuyan .lytitle>li.cur {
    background: #0069b8;
    color: #fff;
}

.tabconts {
    padding: 25px 20px 0px;
    border: 1px solid #0069B8;
}

.message-title {
    line-height: 24px;
    margin-top: 19px;
}

.tabcont li:first-child .message-title {
    margin-top: 0px;
    font-size: 17px;
}

.message-title a {
    font-size: 17px;
    color: #333333;
    font-weight: bold;
}

.message-content {
    margin-top: 14px;
    background-color: #f0f0fa;
    
    padding: 19px 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
}

.tabcont li::after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    background: #333333;
    opacity: 0.1;
    position: relative;
}

.message-content p {
    color: #47546c;
    line-height: 24px;
    font-size: 15px;
}

.tabcont .page {
    
}

.wyly p {
    font-size: 16px;
    color: #666666;
    letter-spacing: 0;
    text-align: justify;
    line-height: 28px;
    margin-top: 10px;
    margin-bottom: 26px;
    
}

.wyly .inforamtion p {
    margin-bottom: 0px;
}

.wyly p a {
    color: #0069b8;
}

.wyly form .name,
.wyly form .verification-code div {
    display: flex;
    justify-content: space-between;
}

.wyly form .verification-code {
    display: flex;
    flex-direction: column;
}

.wyly form .name>div {
    width: 385px;
}

.wyly form .name>div label {
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    text-align: justify;
    line-height: 22px;
}

.wyly form input,
.wyly form textarea {
    margin-top: 12px;
    margin-bottom: 20px;
}








.wyly form .verification-code div input {
    width: 655px;
}

.wyly form textarea {
    
    outline: none;
}

.wyly form .verification-code div img {
    display: block;
    margin-top: 12px;
}

.wyly form .checkbox-reading {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wyly form .checkbox-reading input {
    width: 16px;
    height: 16px;
}

.wyly form .checkbox-reading>p {
    width: 773px;
    margin: 0;
    line-height: 25px;
}

.wyly textarea {
    width: 100%;
    height: 110px;
    font-size: 14px;
    color: #999999;
}

.wyly em {
    color: #e22323;
}

.wyly input[type="text"] {
    background: #ffffff;
    border: 1px solid #ececec;
    width: 100%;
    height: 36px;
    line-height: 45px;
    font-size: 14px;
    color: #999999;
}

.wyly #yzm {
    width: 81%;
}

.wyly img {
    float: right;
    width: 125px;
    height: 36px;
    vertical-align: middle;
}

.wyly input[type="submit"] {
    background: #0069b8;
    border: 0;
    height: 43px;
    width: 300px;
    margin: 0 auto;
    display: block;
    line-height: 43px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 52px
}

.wyly form span {
    color: red;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
    margin-top: -20px;
    display: none;
}

@media screen and (max-width: 1200px) {
    .partner {
        float: none;
        width: 100%;
    }

    .partner ul li {
        width: 100%;
    }

    div.picnews {
        width: auto;
    }

    .header .other {
        display: none;
    }

    .header .nav li:hover a.single {
        color: #0068B7;
    }

    .header .nav li.active a.single {
        
    }

    .header .nav li.active a.single:after {
        transform: scaleX(1);
    }

    .nav-cont,
    .top,
    .main,
    .container {
        width: 100%;
    }

    .top,
    .container {
        padding: 0 15px;
    }

    .header {
        height: 60px;
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .hover-bg {
        background: none;
    }

    .header {
        height: 60px;
        
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1112;
    }

    .header .logo {
        left: 5vw;
        margin-top: -16px;
        position: absolute;
        top: 50%;
    }

    .header .logo img {
        height: 35px;
    }

    .header .logo img.show {
        opacity: 1;
    }

    .header .logo img.hide {
        opacity: 0;
    }

    .header .other {
        display: none;
    }

    .header .nav {
        position: fixed;
        top: 60px;
        left: 100%;
        width: 100%;
        height: 100%;
        background: #F5F6F7;
        padding: 65px 15px 0;
        text-align: left;
        z-index: 3;
        -webkit-transition: left 0.3s linear;
        -moz-transition: left 0.3s linear;
        -ms-transition: left 0.3s linear;
        transition: left 0.3s linear;
        overflow-y: scroll;
        margin-top: 0;
        box-sizing: border-box;
    }

    .header .nav>li {
        display: block;
        margin: 0;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #D8D8D8;
        background-size: 3%;
    }

    .header .nav>li.submenu {
        background: url("../image/jia.png") right 15px no-repeat;
        background-size: 3%;
    }

    .header .nav>li.submenu.open {
        background: url("../image/jian.png") right 20px no-repeat;
        background-size: 3%;
    }

    .header .nav>li a.single,
    .header .nav>li.lang a {
        display: inline-block;
        vertical-align: top;
        line-height: normal;
        color: #333;
        padding: 0;
        font-size: 14px;
    }

    .header .nav>li.submenu.open>a {
        color: #0068B7;
    }

    .header .nav li a.single {
        color: #000;
    }

    .header .nav li a.single:after {
        display: none;
    }

    .nav>li ul li {
        margin: 0;
        background: none;
        box-shadow: none;
        padding: 0 15px;
    }

    .nav>li .second-nav {
        
        position: static;
        padding: 25px 0 0;
    }

    .nav>li .second-nav a {
        font-size: 13px;
        display: block;
        border-bottom: 1px solid #D8D8D8;
        width: 100%;
        padding-bottom: 15px;
        margin: 16px 0 0;
        color: #333;
    }

    .nav>li .second-nav a:last-child {
        border: 0;
    }

    .nav>li .second-nav a:first-of-type {
        margin-top: 0;
    }

    .nav>li .second-nav a:last-child {
        border: 0;
        padding-bottom: 0;
    }

    .nav>li.lang {
        display: block;
    }

    .header .nav li.lang a {
        color: #555555;
        background: url("../image/langhover.png") left center no-repeat;
        padding-left: 25px;
        height: 18px;
    }

    .header .nav li.lang a:before {
        background-image: url("404.png");
    }

    .header .nav.active {
        left: 0;
    }

    .headeropen {
        background: #fff;
    }

    .header.headeropen .logo img.show {
        opacity: 0;
    }

    .header.headeropen .logo img.hide {
        opacity: 1;
    }

    .header .search {
        width: 60px;
        height: 60px;
        background-color: #0068B7;
        display: none;
    }

    .fixed-search form {
        position: absolute;
        visibility: visible;
        margin: 0;
        opacity: 0;
        left: 100%;
        border: 1px solid #D8D8D8;
        border-radius: 4px;
        z-index: 11111;
        background: #F5F6F7;
        padding: 0;
        top: 75px;
        -webkit-transition: left 0.3s linear;
        -moz-transition: left 0.3s linear;
        -ms-transition: left 0.3s linear;
        transition: left 0.3s linear;
    }

    .fixed-search form input {
        height: 35px;
        background: none;
    }

    .fixed-search form .close {
        display: none;
    }

    .fixed-search form button {
        right: 0;
        left: auto;
        height: 35px;
        background: url("../image/wapsearch.png") center center no-repeat;
        background-size: 25%;
        height: 35px;
        top: 0px;
    }

    .header.headeropen .fixed-search form {
        opacity: 1;
        left: 15px;
        right: 15px;
    }

    .mNavBtn {
        display: block;
        width: 24px;
        height: 16px;
        right: 15px;
        top: 22px;
        position: fixed;
        cursor: pointer;
        z-index: 4;
    }

    .mNavBtn.active {
        right: 20px;
    }

    .mNavBtn.active .line2 {
        display: none;
    }

    .mNavBtn.active .line1 {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
        background: #333;
    }

    .mNavBtn.active .line3 {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 7px;
        background: #333;
    }

    .mNavBtn span {
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #fff;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .mNavBtn span.line1 {
        top: 0;
    }

    .mNavBtn span.line2 {
        top: 7px;
    }

    .mNavBtn span.line3 {
        bottom: 0;
    }

    .mNavBtn.active span {
        background: #0068B7;
    }

    .swiper-container .swiper-wrapper .swiper-slide_one {
        display: none;
    }

    .main {
        width: 100%;
        padding: 60px 15px 0px;
        box-sizing: border-box;
    }

    .main_container {
        width: 100%;
        padding-bottom: 60px;
    }

    .column-title {
        width: auto;
    }

    .main_container_path {
        padding-top: 12px;
        padding-bottom: 15px;
    }

    .main_container_article {
        width: 100%;
    }

    .main_container_article_title {
        font-size: 22px;
        color: #00457d;
        letter-spacing: -0.7px;
        line-height: 24px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .main_container_article_time {
        padding-bottom: 10px;
    }

    .main_container_article_zhengwen {
        padding-bottom: 20px;
    }

    .main_container_article_zhengwen p {
        margin-top: 15px;
        font-size: 13px;
        color: #354855;
        letter-spacing: 0;
        text-align: justify;
        line-height: 19px;
        margin-top: 10px;
        text-indent: 0 !important;
    }

    .main_container_article_zhengwen img {
        width: 100% !important;
        height:auto !important;
    }

    .main_container_article_updown {
        flex-direction: column;
    }

    .main_container_article_updown li {
        width: 100%;
        padding: 10px 5px;
        line-height: 20px;
        margin-bottom: 10px;
        box-sizing: border-box;
        font-size: 13px;
    }

    .main_container_lmm {
        padding-bottom: 0;
        height: 21px;
        line-height: 21px;
        width: auto;
        padding-bottom: 13px;
    }

    .main_container_lmm h1 {
        font-size: 18px;
    }

    .main_container_lmm h1:after {
        top: 31px;
    }

    .main_container_content {
        padding-top: 20px;
    }

    .main_container_content_left {
        display: none;
    }

    .main_container_content_right {
        width: 100%;
    }

    .main_container_content_right_list {
        width: 100%;
        min-width: 100%;
    }

    .main_container_content_right_list ul.pic {
        width: auto;
    }

    .main_container_content_right_list ul.pic li {
        width: 100%;
        margin-bottom: 25px;
        margin-right: 0px;
    }

    .main_container_content_right_list ul.pic li .box .titletime {
        padding: 15px;
    }

    .main_container_content_right_list ul.pic li .box .titletime .time {
        font-size: 13px;
    }

    .main_container_content_right_list ul.pic li .box .titletime .title {
        line-height: 21px;
        text-align: justify;
    }

    .main_container_content_right_list ul.pic li .box .titletime .title a {
        font-size: 15px;
    }

    .main_container_content_right_list ul.wenzi {
        width: 100%;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .main_container_content_right_list ul.wenzi li {
        padding: 12.5px 15px 0px 15px;
        background: #f4f6f8;
        height: auto;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .main_container_content_right_list ul.wenzi li .box {
        width: 100%;
        padding: 0;
    }

    .main_container_content_right_list ul.wenzi li .box .time {
        width: 100%;
        font-size: 13px;
        color: #666666;
        margin-bottom: 10px;
        padding-left: 0px !important;
    }

    .main_container_content_right_list ul.wenzi li .box .time::before {
        width: 0px !important;
    }

    .main_container_content_right_list ul.wenzi li .box .title {
        width: 100%;
        margin-bottom: 12px !important;
    }

    .main_container_content_right_list ul.wenzi li .box .title a {
        font-size: 15px;
        line-height: 20px;
        color: #333333;
    }

    .main_container_content_right_list ul.wenzi li.cur,
    .main_container_content_right_list ul.wenzi li:hover {
        background: #00457d;
    }

    .main_container_content_right_list ul.wenzi li.cur .box .time,
    .main_container_content_right_list ul.wenzi li:hover .box .time {
        color: #fff;
    }

    .main_container_content_right_list ul.wenzi li.cur .box .title a,
    .main_container_content_right_list ul.wenzi li:hover .box .title a {
        color: #fff;
    }

    .main_container_content_right ul.tuwen li .box {
        background: none;
        padding: 0;
        height: 85px;
    }

    .main_container_content_right ul.tuwen li .box img {
        min-width: 150px;
        height: 85px;
    }

    .main_container_content_right ul.tuwen li .box .titletime {
        
        height: 85px;
    }

    .main_container_content_right ul.tuwen li .box .titletime .title {
        line-height: 18px;
        margin-bottom: 14.5px;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .main_container_content_right ul.tuwen li .box .titletime .title a {
        font-size: 15px;
        color: #333333;
    }

    .main_container_content_right ul.tuwen li .box .titletime .time {
        font-size: 13px;
        color: #666666;
    }

    .main_container_content_list {
        width: 100%;
    }

    .footer {
        padding: 25px 15px 20px;
    }

    .footer .logo {
        display: block;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #d8d8d8;
    }

    .footer .logo img {
        width: 70%;
    }

    .footer_content {
        margin-top: 20px;
    }

    .footer_content ul li {
        text-align: left;
    }

    .list dl {
        margin-top: 15px;
        padding: 0;
        background: none;
    }

    .list dl:hover {
        background: none;
    }

    .list dl:hover a,
    .list dl:hover dd p,
    .list dl:hover dd span {
        color: #333;
    }

    .list dl.nopic {
        background: #F7F8F9;
        padding: 15px;
    }

    .list dl dd {
        width: 55%;
        padding-left: 10px;
    }

    .list dl dd strong {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .list dl.nopic dd strong {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .list dl dd p {
        display: none;
    }

    .pages span {
        display: none;
    }

    .pages a {
        min-width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        display: none;
    }

    .pages .text {
        display: none;
    }

    .pages .jump-ipt {
        display: none;
    }

    .cont h1 {
        font-size: 18px;
        line-height: 26px;
        text-align: left;
        margin-top: 0px;
    }

    .pages .prev {
        float: left;
    }

    .pages .next {
        float: right;
    }

    .pages .prev, .pages .next {
        display: inline-block;
        min-width: 50px;
        color: black;
        margin-right: 0px;
    }

    .pages .active {
        display: none;
    }

    .list dl.nopic dd p {
        display: block;
        line-height: 21px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .list dl dd span {
        font-size: 12px;
    }

    .list dl dt {
        width: 45%;
    }

    .page a {
        min-width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        display: none;
    }

    .cont h1 {
        font-size: 18px;
        line-height: 26px;
        text-align: left;
        margin-top: 0px;
    }

    .page .prev {
        float: left;
    }

    .page .next {
        float: right;
    }

    .page .prev,
    .page .next {
        display: inline-block;
        min-width: 50px;
    }

    .page .active {
        display: none;
    }

    .toTop {
        bottom: 10%;
    }

    .dtlist>ul li {
        margin-right: 0;
    }

    .main_container_content_right_zhengwen P {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 18px;
    }

    .liuyan {
        padding: 0;
    }

    .tabconts {
        padding: none;
        padding: 0;
        border: 0;
    }

    .message-title {
        line-height: 18px;
        margin-top: 19px;
    }

    .message-title a {
        
        color: #333333;
        font-weight: bold;
        font-size: 12.5px;
    }

    .message-content {
        padding: 10px;
        font-size: 11.5px;
        line-height: 17px;
    }

    .liuyan .lytitle>li {
        font-size: 13px;
    }

    .footer {
        padding: 25px 15px 20px;
    }

    .footer .logo {
        display: block;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #d8d8d8;
    }

    .footer .logo img {
        width: 70%;
    }

    .footer_content {
        margin-top: 20px;
    }

    .footer_content ul li {
        text-align: left;
    }

    .wyly p {
        font-size: 13px;
        color: #333;
        letter-spacing: 0;
        text-align: justify;
        font-weight: bold;
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 18.5px;
    }

    .wyly form .name {
        flex-direction: column;
    }

    .wyly form .name>div {
        width: 100%;
    }

    .wyly form input,
    .wyly form textarea {
        margin-top: 7.5px;
        margin-bottom: 20px;
    }

    .wyly form textarea {
        
    }

    .wyly form .help-you span {
        font-size: 10px;
        margin-bottom: 12.5px;
    }

    .wyly form .verification-code div input {
        width: 211px;
    }

    .wyly form .verification-code div img {
        width: 104px;
        height: 36px;
        vertical-align: middle;
        margin-top: 8px;
    }

    .wyly .inforamtion p {
        color: #47546c;
        font-weight: normal;
        font-size: 12px;
    }

    .wyly form .checkbox-reading>p {
        color: #47546c;
        width: 100%;
        font-weight: normal;
        font-size: 12px;
        line-height: 18px;
    }

    .wyly form .checkbox-reading input {
        width: 14px;
        height: 14px;
        margin: 0;
        margin-right: 10px;
    }

    .wyly input[type="submit"] {
        background: #0069b8;
        border: 0;
        height: 35px;
        width: 150px;
        margin: 0 auto;
        display: block;
        line-height: 35px;
        color: #fff;
        font-size: 12px;
    }

    .wyly form .submit {
        padding-bottom: 30px;
        cursor: pointer;
    }

    .wyly form .name>div label, .wyly form div label {
        font-size: 12px;
    }

    .liuyanlist {
        padding: 11.5px 10px 0px;
    }

    .wyly {
        margin: 0 10px;
    }
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .nav {
        display: flex;
        justify-content: flex-end;
    }

    .nav>li {
        padding-left: 26px;
    }

    .nav>li>a {
        font-size: 10px;
    }
}