@charset "UTF-8";
body {
    font-family: Arial, "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 1rem;
    color: #333333;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
hr,
input,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
}

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: #165db9;
}

a:focus {
    border: none;
    outline: none;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    border: none;
    outline: none;
}

.container {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1080px) {
    .container {
        width: 1000px;
    }
}

@media (min-width: 1280px) {
    .header .container {
        width: 1200px;
    }
    .container {
        width: 1280px;
    }
}

img {
    max-width: 100%;
    border: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

@keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-ms-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}


/* header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 9999;
}

.header .logo {
    float: left;
}

.header .goback {
    float: left;
    width: 105px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #3b71bf;
    font-size: 1rem;
    color: #fff;
    border-radius: 20px;
    margin-left: 15px;
    margin-top: 10px;
    transition: .5s;
}

.header .goback:hover {
    background: #1151af;
}

.header .toplink {
    float: right;
    margin-top: 12px;
}

.header .toplink li {
    float: left;
    font-size: .875rem;
    color: #333;
    padding: 0 8px;
    position: relative;
}

.header .toplink li:last-child {
    padding-right: 0;
}

.header .toplink li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #97bef7;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.header .toplink li:first-child:after,
.header .toplink li:last-child:after {
    display: none;
}

.header .toplink a {
    color: #1151af;
    display: block;
    padding: 0 8px;
    border-radius: 12px;
    text-align: center;
    transition: .5s;
}

.header .toplink a:hover {
    background: #1151af;
    color: #fff;
}


/* header */


/* 底部 */

.footer {
    position: relative;
    background: url(../images/footer-bg.png) center top no-repeat #1151af;
}

.foot-link .link-list {
    width: calc(100% - 120px);
    margin: 0 auto;
    position: relative;
}

.foot-link .link-list .box {
    float: left;
    width: 25%;
    position: relative;
}

.foot-link .link-list .tit {
    line-height: 70px;
    text-align: center;
    cursor: pointer;
}

.foot-link .link-list .tit p {
    display: inline-block;
    padding-right: 20px;
    font-size: 1rem;
    background: url(../images/select-ico.png) right center no-repeat;
    color: #fff;
}

.foot-link .link-list ul {
    position: absolute;
    width: 100%;
    height: 390px;
    left: 0;
    bottom: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    overflow-y: auto;
    display: none;
}

.foot-link .link-list ul li {
    padding: 5px 0;
}

.foot-link .link-list ul li a {
    display: block;
    font-size: .875rem;
    color: #333;
}

.foot-link .link-list ul li:hover a {
    color: #1151af;
}

.foot-link .link-list ul::-webkit-scrollbar {
    width: 4px;
}

.foot-link .link-list ul::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.foot-link .link-list ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(45deg, #1151af 0%, #1151af 100%);
}

.foot-info {
    padding: 35px 0 25px;
}

.foot-info .lf {
    float: left;
    padding-top: 25px;
}

.foot-info .lf a {
    float: left;
    margin-right: 28px;
}

.foot-info .lf img {
    vertical-align: middle;
}

.foot-info .mid {
    float: left;
}

.foot-info .mid p {
    font-size: .875rem;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.foot-info .rt {
    float: right;
    margin-top: 0px;
}

.foot-info .rt li {
    float: left;
    margin-left: 25px;
}

.foot-info .rt li h2 {
    height: 80px;
    width: 22px;
    line-height: 22px;
    float: left;
    text-align: center;
    background: url(../images/ewm-bg.png) top no-repeat;
    font-size: .75rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: tb-rl;
    letter-spacing: 1px;
}

.foot-info .rt li img {
    width: 100px;
    height: 100px;
}

.cory {
    padding: 10px 0;
    text-align: center;
    background: #0b49a5;
}

.cory * {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cory img {
    vertical-align: middle;
}


/* 底部 */


/* 右侧导航 */

.page-right {
    position: fixed;
    z-index: 999;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.page-right li {
    width: 106px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 30px;
}

.page-right li a {
    display: block;
    position: relative;
    font-size: 1rem;
    color: #fff;
    overflow: hidden;
    background: #255eb2;
    border-radius: 20px;
}

.page-right li a:before {
    content: "";
    width: 90%;
    height: 80%;
    border: 1px dashed #fff;
    position: absolute;
    top: 8%;
    left: 5%;
    border-radius: 20px;
}

.page-right li:last-child {
    margin-bottom: 0;
}

.page-right li.active a {
  
    background-size: 100% 100%;
}

#fp-nav {
    display: none !important;
}


/* 右侧导航 */


/* 主体 */

.title-con {
    line-height: 40px;
    position: relative;
    border-bottom: 1px #cccccc solid;
    padding-bottom: 10px;
}

.title-con h3 {
    line-height: 46px;
    font-size: 1.625rem;
    font-weight: bold;
    float: left;
    font-size: 24px;
}

.title-con h3 span {
    position: relative;
    color: #1151af;
}

.title-con h3 span:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #1151af;
    position: absolute;
    left: 0;
    bottom: -21px;
}

.title-con .more,
.table-con .title .more {
    font-size: .875rem;
    color: #739ad2;
    float: right;
    margin-right: 10px;
    transition: .5s;
    float: right;
}

.title-con .more:hover,
.table-con .title .more:hover {
    color: #1151af;
}

.row {
    overflow: hidden;
    padding-top: 10px;
    margin-bottom: 50px;
}

.bg {
    background-color: #f5f9ff;
}

.text-list li {
    line-height: 58px;
    overflow: hidden;
    border-bottom: 1px solid #e1e9f5;
    position: relative;
}

.text-list li * {
    transition: .5s;
}

.text-list li h2 {
    float: left;
    width: calc(100% - 90px);
    font-size: 1rem;
    color: #333333;
    padding-left: 15px;
    position: relative;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-list li h2:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #e2cf94;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.text-list li .date {
    float: right;
    font-size: .875rem;
    color: #999999;
}

.text-list li:before {
    content: "";
    background: #1151af;
    width: 0;
    transition: width .5s;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-list li:hover:before {
    width: 100%;
}

.text-list li:hover h2 {
    color: #1151af;
}

.text-list li:hover .date {
    color: #1151af;
}

.content {
    background-image: linear-gradient(#FFFFFF, rgba(255, 255, 255, 0));
    padding: 30px 40px 0 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: -10px;
}

.content .item {
    width: 48%;
    float: left;
    margin-right: 4%;
}

.content .item:last-child {
    margin-right: 0;
}

.table-con .title {
    position: relative;
    height: 50px;
    line-height: 50px;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.table-con .title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-image: linear-gradient(90deg, rgba(122, 158, 212, 0), rgba(122, 158, 212), rgba(122, 158, 212, 0));
    z-index: -1;
}

.table-con .title h3 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    color: #1151af;
    font-size: 24px;
    line-height: 50px;
    z-index: 1;
    padding: 0 20px;
    letter-spacing: 2px;
}

.table-con .title .more {
    margin-right: 0;
}

.table-con:nth-child(1) .title h3 {
    background-color: #FFF;
}

.table-con:nth-child(2) .title h3 {
    background-color: #f5f9ff;
}

.table-con .table .th {
    background-image: linear-gradient(90deg, #1151af, #2299f5);
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.table-con .table span {
    float: left;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-con .table span:nth-child(1) {
    width: 25%;
}

.table-con .table span:nth-child(2) {
    width: 10%;
}

.table-con .table span:nth-child(3) {
    width: 20%;
}

.table-con .table span:nth-child(4) {
    width: 45%;
}

.table-con .table .td {
    background-color: #f7fbff;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

.table-con .table .td:nth-child(even) {
    background-color: #FFF;
}

.search-content {
    background-image: linear-gradient(90deg, #1151af, #2299f5);
    padding: 35px 60px;
    height: 170px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

.search-content .title {
    color: #FFF;
    font-size: 28px;
    font-weight: bold;
    background: url(../images/search.png)no-repeat left center;
    padding-left: 90px;
    margin-top: 10px;
    float: left;
    margin-right: 30px;
    height:75px;
}

.search-content .title p {
    padding-left: 28px;
}

.search-content .form {
    width: calc(100% - 260px);
    position: relative;
    float: left;
}

.search-content .group {
    width: 100%;
    height: 40px;
}

.search-content .group:last-child {
    margin-top: 15px;
}

.search-content input[type='text'] {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px rgba(255, 255, 255, 0.5) solid;
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    float: left;
    margin-right: 10px;
    color: #FFF;
}

.search-content input[type='text']::-webkit-input-placeholder {
    color: #FFF;
}

.search-content .number {
    width: 135px;
}

.search-content .danwei {
    margin-right: 0 !important;
    width: 215px;
}

.search-content .tit {
    width: 340px;
}

.search-content .line01{
    overflow:hidden;
   
}

.search-content .line01 select{
        background-color: rgba(255, 255, 255, 0.5);
    border: 1px rgba(255, 255, 255, 0.5) solid;
    height: 40px;
    padding: 0 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    float: left;
    margin-right: 10px;
    color: #FFF;
}

.search-content .line01 select.select01{
    width: 280px;
}
.search-content .line01 select.select02{
    width: 140px;
}
.search-content .line01 select option{
    color:#333;
}
.search-content .line02{
    overflow:hidden;
   margin-top:10px;
}

.select-wrapper {
    width: 235px;
    height: 34px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
    z-index: 99;
    float: left;
    margin-right: 10px;
}

.select-button {
    width: 100%;
    height: 34px;
    border: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0 26px 0 10px;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFF;
}

.select-down {
    position: absolute;
    top: 21px;
    right: 12px;
    height: 0;
    width: 0;
    overflow: hidden;
    font-size: 0;
    border-color: #FFF transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
}

.disabled {
    color: #cccccc;
}

.select-list {
    width: 238px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 3px #ddd;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: 35px;
    overflow: hidden;
    font-size: 14px;
}

.select-list ul {
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 34px;
    max-height: 240px;
}

.select-list ul li {
    width: auto;
    height: 34px;
    padding-left: 10px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
}

.select-list ul li.selected,
.select-list ul li:hover {
    color: #fff;
    background: #1151af;
}

.search-content .group:last-child .select-wrapper {
    width: 287px;
}

.search-content input[type='submit'],
.search-content input[type='reset'] {
    height: 40px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    width: 103px;
}

.search-content input[type='submit'] {
    background-color: #e2cf94;
    color: #654f0b;
    float: left;
}

.search-content input[type='reset'] {
    float: left;
    color: #FFF;
    background-color: #1151af;
    margin-left: 10px;
}

.imglist{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.imglist a{
    width: 48%;
}
@media (max-width: 800px) {
    .imglist{
        display: flex;
      flex-direction: column;
        justify-content: center;

    }
    .imglist a{
        margin-bottom: 20px;
        width: 100%;
    }
}

/*列表*/

.list-dqwz{
    width: 100%;
    background-color: #f2f6fb;
    background-image: linear-gradient(#FFFFFF, #f2f6fb);
    padding: 20px 0;
}

.crumbs {
    font-size: 14px;
    color: #666;
}

.crumbs a {
    color: #666;
}

.list-dqwz h2 {
    font-size: 30px;
    color: #1151af;
    margin-top: 30px;
    text-align: center;
}


/* 主体 */