﻿@charset "utf-8";

.swiper-left {
    padding: 20px;
    border: 1px solid #ebebeb;
}

#banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 450px;
    max-height: 450px;
    overflow: hidden;
    object-fit: fill;
    transition: all .6s;
}

#banner h2 {
    padding-left: 10px;
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 42px;
    font-size: 16px;
    font-weight: 700;
    line-height: 42px;
    color: #fafafa;
    text-align: center;
    background: rgba(9, 9, 9, .6);
    margin: 0;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-pagination {
    text-align: right;
}

.swiper-pagination-bullet {
    background: #c3c3c3;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-button-prev1,
.swiper-button-next1 {
    width: 35px;
    height: 60px;
    top: 40%;
}

.swiper-button-prev1,
.swiper-container-rtl .swiper-button-next1 {
    left: 0;
    background: url(./prev.png);
}

.swiper-button-next1,
.swiper-container-rtl .swiper-button-prev1 {
    right: 0;
    background: url(./next.png);
}

.news-time {
    position: absolute;
    width: 65px;
    height: 70px;
    background: #2d66a5;
    bottom: 0px;
}

.news-time .day {
    display: block;
    font-size: 21px;
    background: url(./time_line.png) bottom no-repeat;
    font-family: Impact;
    color: #ffffff;
    margin: 10px auto 0;
    text-align: center;
    float: none;
    padding: 0 0 8px 0;
}

.news-time .year {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    margin-top: 8px;
    float: none;
}

/* 头条 */
.tt-title {
    overflow: hidden;
    line-height: 46px;
}
  
.tt-title span {
    float: left;
    display: block;
    width: 28px;
    height: 35px;
    background: url(./index-radio.png) 0px 8px no-repeat;
    margin-right: 10px;
}

.tt-title h4 {
    float: left;
    font-size: 20px;
    line-height: 46px;
    margin: 0;
    color: #000000;
    font-weight: 100;
}

.tt-title a {
    float: left;
    font-size: 20px;
}

.bannerlist ul li {
    overflow: hidden;
    line-height: 36px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    padding-left: 24px;
    background: url(./blue-point.png) 3px center no-repeat;
}

.bannerlist ul li span {
    float: right;
}

/*切换*/
.table-right {
    padding: 0 20px;
    padding-right: 0;
}

.tablebox {
    border: 1px solid #ebebeb;
}

.tab-head {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 32px;
    border-bottom: 1px solid #ebebeb;
}

.tab-head ul {
    overflow: hidden;
    margin: 0;
}

.tab-head ul li {
    text-align: center;
    float: left;
    width: auto;
    font-size: 20px;
    color: #434343;
    padding: 15px 20px;
}

.tab-head ul li a {
    color: #000000;
    font-size: 17px;
}

.tab-head ul li span {
    display: block;
    font-size: 12px;
    line-height: 20px;
}

.tab-head ul li.default a {
    color: #4574ac;
}

.tab-head ul li.default span {
    color: #4574ac;
}

.tab-head ul li.default-2 {
    border-left: 1px solid #ebebeb;
}

@keyframes hover {
    50% {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
    }

    100% {
        -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@-webkit-keyframes hover-shadow {
    0% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
        opacity: .4;
    }

    50% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
        opacity: .4;
    }
}

@keyframes hover-shadow {
    0% {
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
        opacity: .4;
    }

    50% {
        -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
        transform: translateY(3px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
        opacity: .4;
    }
}

.hover-shadow {
    display: inline-block;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hover-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 80%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.hover-shadow:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-animation-name: hover;
    animation-name: hover;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.hover-shadow:hover:before {
    opacity: .4;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-animation-name: hover-shadow;
    animation-name: hover-shadow;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/*切换结束*/

/* 政府信息公开、政民互动、投资高新 */
.switchone {
    overflow: hidden;
    /* margin: 15px 0; */
    padding: 0 15px;
    margin: 32px 0 22px 0;
}

.switchone li {
    width: 33%;
    float: left;
    text-align: center;
}

.switchone li span {
    display: block;
    width: 57px;
    height: 57px;
    margin: 0 auto;  
}

.switchone li.gkgd span {
    background: url(./index-ico.png) -36px -182px no-repeat;
}

.switchone li.gkzn span {
    background: url(./index-ico.png) -126px -182px no-repeat;
}

.switchone li.gknb span {
    background: url(./index-ico.png) -216px -182px no-repeat;
}

.switchone li a {
    color: #000000;
    line-height: 32px;
}

.switchone li a:hover {
    color: #4574ac;
}

.m-lst36 ul.switchtwo {
    padding: 0 30px;
}

.switchtwo li {
    background: url(./blue-point.png) 3px center no-repeat;
    padding-left: 24px;
}

.switchthree li {
    background: url(./blue-point.png) 8px center no-repeat;
    padding-left: 21px;
}

.m-lst32 ul.switchthree {
    /* float: left; */
    margin: 0;
    padding: 0;
}

.m-lst32 ul.switchthree span {
    padding-right: 8%;

}

.tzgg {
    border-top: 1px solid #ebebeb;
    height: 91.5px!important;
}

.tzgg .tzgg-title {
    height: 100%;
    float: left;
    display: block;
    background: #336699;
    padding: 27px 20px;
    color: #fff;
}

.tab-head-1 {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 54px;

}

.tab-head-1 ul li {
    text-align: center;
    float: left;
    padding-left: 45px;
    font-size: 18px;
    color: #434343;
    margin-left: 30px;
}

.tab-head-1 ul li:first-child {
    margin: 0;
}

.tab-head-1 ul li.default {

    border-bottom: 1px solid #185291;
}

.tab-head-1 ul li a {
    color: #185291;
    font-size: 18px;
}

.tab-head-1 ul .default-4 {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -470px -30px;
}

.tab-head-1 ul .default-4:hover {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -470px -105px;
}

.tab-head-1 ul .default-5 {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -615px -30px
}

.tab-head-1 ul .default-5:hover {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -614px -105px;
}

.tab-head-1 ul .default-6 {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -755px -30px
}

.tab-head-1 ul .default-6:hover {
    background: url("../../images/2021new/index/tab.png") no-repeat;
    background-position: -755px -105px;

}

.img-responsive {
    max-width: 100%;
    height: auto;
    width: 100%;
    padding: 0 10px;
}

.ft-con-info li p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 信息公开 */
.xxgk{
    width: 100%;
    height: 267px;
    border: 1px solid #ebebeb;
    padding: 22px 14px 9px 15px;
}

.xxgk_icon {
    float: left;
    display: block;
    width: 262px;
    height: 183px;
    margin-top: 26px;
    margin-left: -15px;
    background: #3f74ac;
    font-size: 26px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 70px;
    text-align: center;
}

.xxgk_icon span{
    width: 60px;
    height: 67px;
    display: block;
    margin: 0 auto;
    margin-top: 33px;
    background: url(./zwgk.png);
}

.xxgk_content{
    width: 100%;
    height: 100%;
    background: #edf0f7;
}

.xxgk_content ul{    
    float: right;
    width: 78%;
    height: 152px;
    background-color: #edf0f7;
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
}

.xxgk_content ul  li{  
    width: 212px;
    height: 64px;
    margin-right: 15px;
    margin-bottom: 24px;
    padding-top: 15px;
    padding-left: 10px;
    background: #FFFFFF;  
}


.xxgk_content ul li a{
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #2C66A4;
}
.xxgk_content ul li span {
    vertical-align: middle;  
}

.xxgk_content ul  li:nth-last-child(n+5) span{ 
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(xxgk_ty.png);
}

.xxgk_content ul  li:nth-child(5) span{  
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(xxgk_jgjj.png);
}

.xxgk_content ul  li:nth-child(6) span{  
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(xxgk_ysqgk.png);
}

.xxgk_content ul  li:nth-child(7) span{  
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(xxgk_zcjt.png);
}
.xxgk_content ul  li:nth-child(8) span{  
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(xxgk_zdly.png);
}


.bg-fff{
    margin-top: 20px;
}

.jiedu img {
    width: 100%;
}
.hdList ul li {
    /*float: left;*/
    /*width: 20%;*/
    padding: 0 10px;
}

.hdList ul li p {
    text-align: center;
}

.m-lst36 ul {
    padding: 0;
}

.m-lst38 ul {
    padding: 0;
}

#ztzl img {
    max-height: 120px;
    overflow: hidden;
    object-fit: fill;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
}

@media all and (max-width: 1196px) {
    #banner img {
        min-height: 300px;
        max-height: 300px;
    }

    .m-lst40 ul li {
        line-height: 38px;
    }

}

@media all and (max-width: 1024px) {
    .tab-head {
        line-height: 40px;
    }

    .switch ul li {
        line-height: 36px;
    }

    #banner img {
        min-height: 300px;
    }
}

@media all and (max-width: 992px) {
    .table-right {
        padding-left: 0;
    }

    .m-lst32 ul.switchthree span {
        padding-right: 5%;
    }
}

@media all and (max-width: 768px) {
    .listxs {
        padding: 0;
    }

}

@media all and (max-width: 750px) {
    body {
        background: #FFFFFF;
    }

    .homeBox {
        padding: 0 10px;
    }

    .bdsetb-10 {
        padding: 0;
    }

    .hdbox {
        margin: 0 -10px;
    }

    #banner img {
        min-height: 240px;
        max-height: 240px;
    }

    .hdList ul li {
        float: left;
        width: 50%;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .li03 {
        margin-bottom: 20px;
    }
}