﻿@charset "utf-8";

/* 链接 */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #117581;
    text-decoration: none;
}

a:active {
    outline: none;
}

/* 头部、底部、公用 */

body {
    overflow-x: hidden;
    font-size: 16px;
    background:#fff url(../../images/fxxfzhb_images/bg.png) 50% 0px no-repeat;
}

.header {
    height: 420px;
    background: url(../../images/fxxfzhb_images/head.png) 50% 25% no-repeat;
}

.header h1 {
    width: 140px;
    height: 90px;
    background: url(../../images/fxxfzhb_images/logo.png) 0 50% no-repeat;
}

.header h1 a {
    display: block;
    height: 90px;
}

.nav {
    height: 60px;
    background-color: #007785;
}

.nav li {
    float: left;
    position: relative;
    width: 12.5%;
}

.nav li a {
    display: block;
    line-height: 60px;
    font-size: 22px;
    color: #fff;
    padding: 0px;
    font-weight: bold;
    text-align: center;
}

.nav li+li:before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    width: 2px;
    height: 10px;
    /*background: url(../images/line.png) 0 50% no-repeat;*/
}

.nav li a:hover,
.nav li.current a {
    background-color: rgb(0,0,0,.2);
}

/* 搜索 */
.header .search {
    width: 400px;
    height: 40px;
    margin:180px auto 50px;
}

.search input,
.search button {
    float: left;
    display: block;
}

.search input {
    box-sizing: border-box;
    width: 332px;
    height: 43px;
    line-height: 20px;
    font-size: 16px;
    padding: 20px;
    color:#616161;
    border: 1px solid #198491;
    border-radius: 10px 0px 0px 10px;
    outline: none;
}

.search button {
    box-sizing: border-box;
    width: 50px;
    height: 43px;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    border-radius: 0px 10px 10px 0px;
    background: #198491 url(../../images/fxxfzhb_images/q.png) 50% no-repeat;
}


@media (max-width: 1024px) {
    .search button .iconfont {
        margin-right: 0px;
        display: block;
    }
}

.search p {
    clear: both;
    color:#0c61c3;
    padding-top: 10px;
    line-height: 30px;
}

.search p a {
    color:#0c61c3;
    margin: 0 8px;
}

    
.inner,
.links,
.copyright,
.p1 {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content{
    padding: 10px;
    background-color: #fff;
}

/* 移动端菜单开始 */

.mask {
    display: none;
    position: fixed;
    z-index: 597;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .2s;
}

.mask.on {
    display: block;
    opacity: 1;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.menu {
    display: none\9;
    position: fixed;
    z-index: 598;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background-color: #fff;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.menu.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu img {
    display: block;
    width: 100%;
    padding: 40px 10px;
}

.menu li a {
    position: relative;
    display: block;
    margin: 0 15px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #007785;
}

.menu li a:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #ccc;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 10px;
}

.menu li+li a {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .2);
}

.menu>ul>li:nth-child(1) {
    animation-delay: .1s;
}

.menu>ul>li:nth-child(2) {
    animation-delay: .2s;
}

.menu>ul>li:nth-child(3) {
    animation-delay: .3s;
}

.menu>ul>li:nth-child(4) {
    animation-delay: .4s;
}

.menu>ul>li:nth-child(5) {
    animation-delay: .5s;
}

.menu>ul>li:nth-child(6) {
    animation-delay: .6s;
}

.menu>ul>li:nth-child(7) {
    animation-delay: .7s;
}

.menu>ul>li:nth-child(8) {
    animation-delay: .8s;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: 599;
    width: 40px;
    height: 40px;
}

.menu-btn.on,
.menu-btn.fixed {
    position: fixed;
    top: 0px;
}

.menu-btn>span {
    position: absolute;
    left: 0;
    right: 0;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #007785;
    border-radius: 2px;
    transition: .25s;
}

.menu-btn>span:nth-child(1) {
    top: 18px;
}

.menu-btn>span:nth-child(2) {
    top: 24px;
}

.menu-btn>span:nth-child(3) {
    top: 30px;
}

.menu-btn.on span,
.hd+.menu-btn>span {
    background: #fff;
}

.menu-btn.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-btn.on span:nth-child(2) {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-btn.on span:nth-child(3) {
    top: 21px;
    transform: rotate(135deg);
}

/* 移动端菜单结束 */


/* 底部 */
.footer {
    padding: 20px 0;
    line-height: 22px;
    background-color: #007785;
    color: #fff;
}

.links>ul>li {
    position: relative;
    margin-bottom: 20px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
}

.links>ul>li>a {
    display: block;
    color: #333;
    margin: 0 -5px;
    padding: 0 10px;
    background: #fff;
}

.links li ul {
    display: none\9;
    z-index: -1;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 40px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    opacity: 0;
    transform: translate(0, 3px);
    transition: opacity, transform .3s;
}

.links li:hover ul {
    display: block\9;
    z-index: 9;
    opacity: 1;
    transform: translate(0, 0);
}

.links li li {
    border-top: 1px solid #ddd;
    line-height: 39px;
    text-align: center;
    transition: all .3s;
}

.links li li:hover {
    background-color: #f8f8f8;
}

.links li li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 14px;
}

.copyright {
    line-height: 24px;
    display: table;
}

.copyright p a,
.copyright p span {
    margin: 0 10px;
    color: #fff;
}

.ml80{
    margin-left: 80px;
}

.mr10{
    margin-right: 10px;
}

.footer-map {
    position: relative;
    padding:5px;
}

.gov {
    position: absolute;
    top: 35%;
    left: 0px;
    width: 80px;
    height: 80px;
    margin-top: -40px;
}

.jiucuo {
    position: absolute;
    top: 40%;
    right: 24%;
    width: 110px;
    height: 60px;
    margin-top: -30px;
}

@media (max-width: 1200px) {
    body {
        background-position: 50% 0px;
    }

    .header {
        height: 220px;
        background-position: 50% 20px;
        background-size: auto 40%;
    }

    .header h1 {
        height: 100px;
        background-position: 5px 50%;
        background-size: auto 60%;
    }

    .header h1 a {
        display: block;
        height: 100px;
    }

    .nav,
    .header .search p strong {
        display: none;
    }

    .header h1,
    .inner,
    .content,
    .links,
    .copyright {
        width: 100%;
    }

    .grid{
        padding: 0px 20px;
    }

    .menu-btn {
        display: block;
    }

    .header .search {
        margin:5% 5% 0% 5%;
        width: 90%;
        position: absolute;
        top:auto;
        right: auto;
    }

    .header .search input {
        width: 85%;
        height: 50px;
        height: 50px;
        padding: 15px 65px 15px 55px;
        margin: 0;
    }

    .header .search button {
        width: 50px;
        height: 50px;
        margin-left: -1px;
        background-position: center;
        line-height: 0;
        font-size: 14px;
        color: #fff;
    }

    .header .search p,.navBar {
        display: none;
    }

    .handle {
        margin-bottom: 10px;
    }
    
    .footer {
        font-size: 14px;
        padding: 20px;
    }

    .ewm{
        display: none;
    }

    .footer-map{
        padding: 0px;
        width: 100%;
    }

    .links>ul>li>a{
        font-size: 12px;
    }

    .ml80{
        margin-left: 0px;
    }

}

@media (max-width: 768px) {

    .copyright {
        text-align: center;
    }

    .copyright p span {
        display: block;
    }

    .links>ul>li>a{
        font-size: 14px;
    }

    .footer .gov,
    .footer .jiucuo{
        position: relative;
        display: inline-block;
        top: 0;
        left: auto;
        right: auto;
        margin-top: 20px;
        margin-bottom: 10px;
        vertical-align: middle;
    }
}

@media (max-width: 480px) {

    .header {
        height: 220px;
        background-position: 50% 30px;
        background-size: auto 20%;
    }

    .menu-btn{
        top: 30%;
    }
}

/* 公用 */
.content .row {
    margin-right: -15px;
    margin-left: -15px;
}

.content .row>.col,
.content .row>[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.tab-pane {
    position: relative;
    overflow: hidden;
}
 
.tab-pane .pane>ul,
.tab-pane .pane>div {
    animation-duration: .3s;
}

.tab a {
    position: relative;
    display: inline-block;
    min-width: 100px;
    height: 40px;
    padding: 11px 25px;
    line-height: 18px;
    font-size: 18px;
    text-align: center;
    transition: all .3s;
}

.tab a.current {
    color: #fff;
    background: #1874da;
    background: -webkit-linear-gradient(0deg, #64abfa, #1874da);
    background: linear-gradient(0deg, #64abfa, #1874da);
    box-shadow: 0 3px 5px rgba(52, 186, 255, .3);
}


@media (max-width: 1200px) {
    .tab {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-left: -2px;
        margin-right: -2px;
    }
 
    .tab a {
        width: 0%;
        line-height: 18px;
        min-width: inherit;
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0 2px;
        padding:11px 0;
        font-size: 16px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }
}

.list-a li i {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../../images/fxxfzhb_images/icons.png);
    background-image: url(../../images/fxxfzhb_images/icons_ie8.png)\9;
    background-size: 280px auto;
    background-repeat: no-repeat;
}


.row {
    margin-right: -10px;
    margin-left: -10px;
}

.table-bordered {
    margin-bottom: 0px;
}

.table-bordered>tbody>tr>th {
    background-color: #f9f9f9;
    text-align: center;
    color: #048;
}

/* 首页 开始*/

/* part1 开始 */

.headline {
    padding: 20px;
}

.headline h2 {
    display: inline-block;
    padding: 8px 0;
    line-height: 34px;
    font-size: 26px;
}

.headline h2 a{
    color: #007785;
    float: left;
}

.headline h2 span{
    display: inline-block;
    float: left;
    width: 115px;
    height: 36px;
    margin-right: 40px;
    line-height: 36px;
    border-radius: 5px;
    background: #fab400 url(../../images/fxxfzhb_images/qwgs.png) 50% no-repeat;
}

.focus,
.focus .pic {
    position: relative;
    width: 570px;
    height: 340px;
}

.focus .pic>div {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.focus .pic img {
    width: 100%;
    /*height: 100%;*/
}

.focus .pic span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 10px 80px 10px 10px;
    line-height: 26px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #333;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

.focus .focus-prev,
.focus .focus-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .5);
    background-size: 24px auto;
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.focus .focus-prev .iconfont,
.focus .focus-next .iconfont {
    font-size: 28px;
    font-weight: normal;
}

.focus .focus-prev {
    transform: translate(-50px, 0);
    left: 0;
    background-image: none;
}

.focus .focus-next {
    transform: translate(50px, 0);
    right: 0;
    background-image: none;
}

.focus:hover .focus-prev,
.focus:hover .focus-next {
    opacity: 1;
    transform: translate(0, 0);
}

.focus .navi {
     position: absolute;
     bottom: 14px;
     left: auto;
     right: 0;  
     z-index: 9;
     width: auto;
     margin-bottom: 4px\9;
     padding: 0 10px;
     text-align: right;
 }
.focus .navi li {
    float: left;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    font: 0/0 lx;
    border: 1px solid #fff;
    color: transparent;
    border-radius: 100px;
    transition: all .3s;
}

.focus .navi li.on {
    background-color: #fff;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.focus .swiper-pagination-bullet {
    border: 1px solid #fff;
    background: none;
    opacity: 1;
}

.focus .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media (max-width: 1200px) {
    .headline h2 span{
        display: none;
    }

    .focus,
    .focus .pic {
        position: relative;
        width: 100%;
        height: auto;
    }

    .focus .pic>div {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 60% 0 0;
    }

    .focus .pic img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .focus {
        margin-bottom: 20px;
    }

}

.t1{
    height: 40px;
    margin-bottom: 20px;
    background: url(../../images/fxxfzhb_images/t1_bg.jpg) 0 50% no-repeat;
}

.p1 h4 a{
    font-size: 22px;
    line-height: 30px;
}

 .p1 p{
    font-size: 14px;
    color: #666;
    line-height: 40px;
    text-indent: 2em;
    padding-bottom: 5px; 
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
 }

/* part1 结束 */

/* part2 开始 */
.p2{
    padding: 20px;
    background-color: #f6f6f6;
}

.topic {
    position: relative;
}

.topic h3 {
    width: 55px;
    height: 57px;
    background: url(../../images/fxxfzhb_images/t2_bg.jpg) 0 0 no-repeat;
}

.topic .scroll {
    position: relative;
    margin: 0 60px 0 140px;
}

.topic li {
    width: 320px\9;
}

.topic li a {
    display: block;
    width: 300px\9;
    margin: 0 10px;
    line-height: 50px;
    border-radius: 5px;
    padding-left: 40px;
    background: #fff url(../../images/fxxfzhb_images/dot.png) 10px 50% no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.topic-prev,
.topic-next {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 40px;
    margin-top: -20px;
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.topic-prev span,
.topic-next span {
    display: block;
    width: 20px;
    margin: 8px auto;
    font-size: 22px;
    text-align: center;
    color: #007785;
    font-weight: bold;
}

.topic-prev {
    left: 100px;
    background-image: none;
}

.topic-next {
    right: 20px;
    background-image: none;
}

@media (max-width: 1200px) {
    .topic .scroll {
        margin: 0 -10px;
    }

    .topic h2,
    .topic-prev,
    .topic-next {
        display: none;
    }
}

/* part2 结束 */

/* part3 开始 */
.t2{
    position: relative;
    border: none;
    padding: 0px;
    line-height: 40px;
    background: transparent;
    color:transparent;
    zoom: 1;
    height: 40px;
    margin-bottom: 20px;
    background: url(../../images/fxxfzhb_images/t3_bg.jpg) 50% no-repeat;
}

.t2:before{
    display: none;
}

.p3 .list-p li a{
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.p3 .list-p li h4{
    padding: 10px 20px 20px 20px; 
    font-size: 18px;
    height: 78px;
    white-space: normal;
    word-break: normal;
}

.p3 .list-t li:before{
    display: none;
}

.p3 .list-t li .place{
    display: inline-block;
    color: #007785;
    line-height: 22px;
    padding: 0px 10px;
    border-radius: 100px;
    margin-right: 10px;
    border:1px solid #007785;
}

/* part3 结束 */

/* part4 开始 */
.dwsb {
    height: 100px;
    background: url(../../images/fxxfzhb_images/cj.jpg) 50% no-repeat;
}

.dwsb a{
    display: block;
    height: 100px;
}

@media (max-width: 480px) {
    .dwsb{
        background-size: auto 80%;
        height: 50px;
    }

}
/* part4 结束 */

/* part5 开始 */

.t5{
    height: 40px;
    margin-bottom: 20px;
    background: url(../../images/fxxfzhb_images/t5_bg.jpg) 0 50% no-repeat;
}

.t6{
    height: 40px;
    margin-bottom: 20px;
    background: url(../../images/fxxfzhb_images/t6_bg.jpg) 0 50% no-repeat;
}

.t5 b,
.t6 b{
    font-size: 0px;
}

.p5 i{
    display: inline-block;
    width: 64px;
    height: 80px;
    float: left;
    margin-right: 20px;
}

.p5 i.s1{
    background: url(../../images/fxxfzhb_images/p4_img01.jpg) 50% no-repeat;
}

.p5 i.s2{
    background: url(../../images/fxxfzhb_images/p4_img02.jpg) 50% no-repeat;
}

.p5 h4{
    font-size: 22px;
    line-height: 36px;
}

.p5 p{
    font-size: 14px;
    color: #666;
    /*text-indent: 2em;*/
	text-indent: 0em;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.p5 p a{
    color: #007785;
    float: right;
}

.p5 .list-t{
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
.p5 .pages a, 
.p5 .pages span{
    border:none;
    font-size: 14px;
    padding: 2px 6px;
    border-radius:2px;
    background-color: transparent;
}

.p5 .pages .current, 
.p5 .pages a:hover{
    background-color: #8fc320;
}

table.gray{
    width: 100%;
}

table.gray th, table.gray td {
    border:1px #ccc solid;
    padding:5px 10px;
    line-height:30px;
    text-align: center;
}

table.gray thead th {
    background-color:#e9e9e9;
    color:#666;
}

table.gray td{
    position: relative;
}

table.gray td div{
    display: none;
}

table.gray td:hover div{
    position: absolute;
    background: #fff;
    left:0px;
    top: 20px;
    border-radius: 10px;
    width: 300px;
    z-index: 10;
    display: block;
    padding: 10px;
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

table.gray td div span{
    display: block;
    text-align: left;
}

table.gray td div span i{
    width: 20px;
    height: 20px;
    color: #989898;
    margin-right: 0px;
    display: inline-block;
}

.query select,
.query input{
    height: 40px;
    line-height: 38px;
    margin:0px 10px;
    padding: 0px 20px;
    background-color: #fff;
    border:1px solid #ccc;
}

.w150{
    width: 150px;
}

.w200{
    width: 200px;
}

.w430{
    width: 430px;
}

.query button{
    width: 80px;
    height: 40px;
    color: #fff;
    text-align: center;
    border:none;
    margin-top: 2px;
    border-radius: 3px;
}

.btn01{
    background-color: #007785;
}

.btn02{
    margin-left: 10px;
    background-color: #8fc320;
}
/* part5 结束 */

/* part6 开始 */

.ad {
    height: 100px;
    /*background: url(../../images/fxxfzhb_images/ad.jpg) 50% no-repeat;*/
	background: url(../../images/fxxfzhb_images/ad.gif) 50% no-repeat;
}

.ad a{
    display: block;
    height: 100px;
}

@media (max-width: 480px) {
    .ad{
        /*background-size: auto 90%;*/
		background-size: auto 50%;
        height: 50px;
    }

}
/* part6 结束 */

/* part7 开始 */

.t7{
    height: 40px;
    margin:30px 0px;
    background: url(../../images/fxxfzhb_images/t7_bg.jpg) 50% no-repeat;
}

.t7 b{
    font-size: 0px;
}

.p7 img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p7 .info{
    color: #666;
    line-height: 36px;
}

.ask{
    font-size: 18px;
    padding-left: 40px;
    line-height: 30px;
    margin-bottom: 10px;
    background: url(../../images/fxxfzhb_images/w.jpg) 0% 50% no-repeat;
}

.answer{
    color: #666;
    padding-left: 40px;
    line-height: 36px;
    background: url(../../images/fxxfzhb_images/d.jpg) 0px 0px no-repeat;
}

.answer a{
    color: #007785;
}
/* part7 结束 */

/* part8 开始 */

/* part8 结束 */

/* 列表页 开始 */
.main .list-b{
    margin:0px 100px;
}

.main .list-b li {
    position: relative;
    padding: 20px 40px;
    line-height: 24px;
    background-color: #fff;
    border-bottom:1px solid #c9c9c9;
}

.main .list-b li+li {
    margin-top: 20px;
}

.main .list-b li>a {
    display: block;
}

.main .list-b li:hover,
.main .list-b li:hover h4,
.main .list-b li:hover p,
.main .list-b li:hover p.date,
.main .list-b li:hover span.rq{
    color: #117581;
}

.main .list-b li>a:after {
    content: "\20";
    display: block;
    height: 0;
    clear: both;
}

.main .list-b li h4 {
    position: relative;
    overflow: hidden;
    max-height: 60px;
    line-height: 24px;
    font-weight: bold;
    font-size: 18px;
    padding-top: 10px;
    font-weight: bold;
}

.main .list-b li p {
    line-height: 24px;
    color: #797979;
}

.main .list-b li p.date {
    display: block;
    color: #007785;
    font-size: 40px;
    margin-right: 30px;
    line-height: 30px;
    z-index: 999;
    padding:20px 20px 10px 20px;
    text-align: center;
    font-weight: bold;
    background-color: #f3f3f3;
}

.main .list-b li p.date span{
    color: #333;
    font-size: 16px;
}

.main .list-b li h4,
.list-b li p.info {
    margin-left: 40px;
}

.list-b li p.info{
    font-size: 16px;
    color: #666;
}

.main .list-b li span.more{
    position: absolute;
    top: 40%;
    right: 0px;
    width: 110px;
    height:40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    color: #007785;
    font-size: 18px;
    background:#f3f3f3;
}

.main .list-b li:hover span.more{
    color: #fff;
    background: #007785;
}

@media (max-width: 480px) {
    .main .list-b{
        margin:0px;
    }

    .main .list-b li{
        padding:20px;
    }

    .main .list-b li p.date {
        margin-right: 15px;
        line-height: 32px;
        font-size: 18px;
    }

    .main .list-b li p span.rq {
        font-size: 14px;
    }

    .main .list-b li h4,
    .list-b li p.info {
        margin-left: 0;
    }

    .main .list-b li span.more{
        display: none;
    }
}

/* 分页 */
.pages a, .pages span{
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    margin: 0 4px;
}

.pages .current,
.pages a:hover {
    background-color: #007785;
}

.article{
    padding: 30px 120px;
}

.article .info i{
    color: #007785;
}

.article .info>span {
    color: #333;
}
/* 列表页 结束 */







