/* 头部开始 */
.container{
    position: relative;
}
.header {
    height: 160px;
    border-bottom: 1px solid rgba(255, 255, 255, .502);
}
.header>*{
    box-sizing: border-box;

}

.header .column-logo {
    display: none;
}

.header.column-header{
    box-shadow: 0px 6px 16px 0px rgba(10, 67, 133, 0.15);
    box-sizing: border-box;
}

.header.column-header .index-logo {
    display: none;
}

.header.column-header .column-logo {
    display: block;
}

.header.column-header .position-btn {
    color: #333;
    background: url("../images/index/icon_address_column.png") left 18px center no-repeat;
    background-color: rgb(243, 249, 255);
}
.header.column-header .position-btn:hover {
    color: #fff;
    background: url("../images/index/icon_address.png") left 18px center no-repeat;
    background-color: rgba(255, 255, 255, .161);
}

.header.column-header .dept-content {
    color: #333;
    background: url("../images/index/icon_office_column.png") left 18px center no-repeat;
    background-color: rgb(243, 249, 255);
}
.header.column-header .dept-content:hover {
    color: #fff;
    background: url("../images/index/icon_office.png") left 18px center no-repeat;
    background-color: rgba(255, 255, 255, .161);
}

.header.column-header .user-btn {
    color: #333;
}

.header.column-header .user-btn::before {
    background-color: rgba(221, 221, 221, .502);
}

.header.column-header .login-btn {
    color: #333;
    background: url("../images/index/icon_human_column.png") left 18px center no-repeat;
    background-color: rgb(243, 249, 255);
}

.header.column-header .login-btn span:first-child::before {
    background-color: rgba(221, 221, 221, .502);
}

.header.column-header .nav-list>li>a>span {
    /*color: #909dac;*/
    color:#424e5c;
}

.header.column-header .nav-list>li>a.active>span,
.header.column-header .nav-list>li>a:hover>span {
    color: #2868b1;
    border-color: #2868b1;
}

.header.column-header .header-search {
    display: block;
}

.header .logo-wrap {
    height: 60px;
    width: 300px;
    margin-top: 21px;
    /* padding-left: 10px; */
}

.header .header-search {
    display: none;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 218px;
    height: 36px;
    border-radius: 4px;
    background-color: rgb(244, 244, 244);
}

.header .header-search .header-input {
    width: 190px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    padding: 0 10px;
    border: none;
    outline: none;
    background-color: transparent;
    box-sizing: border-box;
}

.header .header-search .header-input::placeholder {
    color: #999;
}

.header .header-search .header-search-btn {
    margin-right: 10px;
    width: 15px;
    height: 36px;
    background: url("../images/index/icon_search_column.png") center no-repeat;
    cursor: pointer;
}

.header .nav-list {
    padding-top: 13px;
}

.header .nav-list>li {
    float: left;
    width: auto;
    margin-right: 10px;
}

.header .nav-list>li>a {
    display: block;
    padding: 0 13px;
    font-size: 16px;
    line-height: 46px;
    height: 46px;
    transition: all 0.3s;
    /* box-sizing: content-box; */
    font-weight: normal;
    background: none;
}

.header .nav-list>li>a>span {
    color: #fff;
    display: block;
    font-size:22px;
    border-bottom: 3px solid transparent;
}

.header .nav-list>li>a.active>span,
.header .nav-list>li>a:hover>span {
    border-bottom: 5px solid #fff;
    transition: all 0.3s;
    color: #fff;
    /* font-size: 18px; */
    font-weight: bold;
}

.header .header-right {
    margin-top: 10px;
    padding-top: 15px;
    height: 85px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
}

.header .header-right .btn-left {
    margin-right: 10px;
}

.header .user-btn {
    position: relative;
    vertical-align: top;
    display: inline-block;
    width: auto;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
    border: none;
    background: none;
    top: 0;
}

.header .user-btn:first-child::before {
    display: none;
}

.header .user-btn::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -7px;
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, .502);
}


.header .login-btn {
    display: block;
    width: 158px;
    height: 38px;
    color: #fff;
    font-size: 16px;
    line-height: 38px;
    padding-left: 48px;
    border-radius: 19px;
    background: url("../images/index/icon_human.png") no-repeat 20px center;
    background-color: rgba(255, 255, 255, .161);
    box-sizing: border-box;
    margin-left: 14px;
}

.header .login-btn span {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.header .login-btn span:first-child {
    padding-right: 10px;
}

.header .login-btn span:last-child {
    padding-left: 8px;
}

.header .login-btn span:first-child::before {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    margin-top: -7px;
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, .502);
}

.header .position {
    float: left;
    margin: 51px 0 0 0;
}


.header .position:hover .position-btn {
    color: #333;
    background: url("../images/index/icon_address_column.png") left 18px center no-repeat;
    background-color: rgb(243, 249, 255);
}

.header .position:hover .position-drop {
    display: block;
}

.header .position-btn {
    box-sizing: border-box;
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 15px 0 39px;
    width: 120px;
    color: #fff;
    font-size: 16px;
    border-radius: 19px;
    background: url("../images/index/icon_address.png") left 18px center no-repeat;
    background-color: rgba(255, 255, 255, .161);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
}


.header .position-drop {
    z-index: 10;
    display: none;
    position: absolute;
    /* top: 53px; */
    top: 74px;
    left: 10px;
    right: 10px;
    /* height: 372px; */
    padding-top: 15px;
    transition: all .3s;
}

.header .common-header .position-drop {
    top: 85px;
}

.header .position-drop-wrap {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 4px 24px 0px rgba(17, 27, 39, 0.2);
}

.header .position-drop-inner {
    position: relative;
    padding: 5px 20px 20px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 30px;
}
.header .position-drop-inner.dept{
    padding-top: 17px;
}

.header .position-drop-inner:before {
    width: 20px;
    height: 10px;
    position: absolute;
    content: "";
    left: 340px;
    top: -10px;
    background: url("../images/index/arrow.png") no-repeat;
}

.header .common-header .position-drop-inner:before {
    left: 551px;
}

.header .position-drop-title {
    height: 60px;
    padding-left: 27px;
    color: #2868b1;
    border-bottom: 1px solid #eee;
    background: url("../images/index/icon_address_big.png") left center no-repeat;
}

.header .position-drop-name {
    position: relative;
    float: left;
    height: 59px;
    line-height: 59px;
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
}

.header .position-drop-name:first-child {
    margin-left: 0;
}

.header .position-drop-name:last-child::after {
    display: none;
}

.header .position-drop-name::after {
    position: absolute;
    content: '>';
    right: -15px;
    height: 59px;
}

.header .position-drop-area {
    margin-top: 17px;
    padding-bottom: 19px;
    border-bottom: 1px solid #eee;
}

.header .position-drop-area-list {
    float: left;
    /* width: 130px; */
    min-width: 60px;
    font-size: 14px;
    color: #666;
    margin-left: 15px;
    /* margin-top: 10px; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}

.header .position-drop-area-list:nth-child(10n+1) {
    /*  margin-left: 0; */
}

.header .position-drop-area-list:nth-child(-n+10) {
    margin-top: 0;
}

.header .position-drop-area-list:hover {
    color: #2868b1;
}

.header .position-drop-select {
    margin-top: 16px;
    font-size: 14px;
    color: #666666;
}

.header .position-drop-select-ul {
    margin-left: 10px;
}

.header .position-drop-select-list {
    position: relative;
    float: left;
    margin-left: 15px;
}

.header .position-drop-select-list:first-child {
    margin-left: 0;
}

.header .position-drop-select-list:last-child::after {
    display: none;
}

.header .position-drop-select-list::after {
    position: absolute;
    content: '>';
    right: -11px;
    height: 30px;
}

.header .position-drop-btn-box {
    margin-top: 12px;
    height: 28px;
    font-size: 0;
}

.header .position-drop-btn-list {
    display: inline-block;
    vertical-align: top;
    width: 82px;
    height: 28px;
    line-height: 28px;
    border-radius: 2px;
    font-size: 14px;
    margin-right: 16px;
    color: #2868b1;
    text-align: center;
    background-color: rgb(235, 244, 255);
    transition: all .3s;
    cursor: pointer;
}

.header .position-drop-btn-list.confirm {
    color: #fff;
    background-color: rgb(40, 104, 177);
}

.header .position-drop-btn-list:hover {
    background-color: rgba(235, 244, 255, .8);
}

.header .position-drop-btn-list.confirm:hover {
    background-color: rgba(40, 104, 177, .8);
}

.header .dept-wrap {
    float: left;
    margin: 51px 0 0 10px;
}

.header .dept-content {
    box-sizing: border-box;
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px 0 39px;
    max-width: 130px;
    color: #fff;
    font-size: 16px;
    border-radius: 19px;
    background: url("../images/index/icon_office.png") left 18px center no-repeat;
    background-color: rgba(255, 255, 255, .161);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
}

.header .top-dept-list>li {
    width: 260px;
    float: left;
    text-align: left;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    margin-left: 25px;
    margin-top: 5px;
}
.header .top-dept-list>li:nth-child(-n+4){
    margin-top: 0;
}

.header .top-dept-list>li .dept-top-info {
    display: inline-block;
    max-width: 260px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 10px;
    padding-right: 30px;
}

.header .top-dept-list>li .dept-top-info:hover {
    color: #2868b1;
}

.header .dept-wrap:hover .dept-content {
    color: #333;
    background: url("../images/index/icon_office_column.png") left 18px center no-repeat;
    background-color: #fff;
}

.header .dept-wrap:hover .position-drop {
    display: block;
}

.dept-wrap .position-drop-inner::before {
    left: 475px;
}

/* 头部结束 */


/* 底部开始 */
.link-box {
    position: relative;
    width: 1202px;
    margin: 0 auto;
    height: 60px;
    line-height: 80px;
}

.link-title {
    display: block;
    height: 80px;
    float: left;
    background: url("../images/index/link-icon.png") no-repeat left center;
    padding-left: 29px;
    font-size: 16px;
    color: #4c525d;
    font-weight: bold;
}

.foot-box {
    height: 227px;
    background-color: #f8f8f9;
}

.link-list-box {
    margin-right: -10px;
}

.link-list-box>li {
    float: left;
    width: 190px;
    height: 30px;
    border: 1px solid #cdcddc;
    box-sizing: border-box;
    line-height: 28px;
    margin-top: 25px;
    padding-left: 12px;
    color: #4c525d;
    cursor: pointer;
    margin-right: 11px;
    background: url("../images/index/link-arrow.png") no-repeat right 11px center;
    background-color: #fff;
    color: #666;
}

.link-list-box>li.active {
    border: 1px solid #1492ff;
    color: #1492ff;
}

.link-content {
    display: none;
    position: absolute;
    z-index: 3;
    border: 1px solid rgb(182, 190, 204);
    height: 160px;
    box-shadow: -3px 0px 10px 0px rgba(51, 65, 93, 0.17);
    width: 1200px;
    background-color: #fff;
    /* top: 61px; */
    bottom: 45px;
    left: 0px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1000;
}

.link-content>div {
    padding: 10px 20px;
}

.link-content.show-link {
    display: block;
}

.link-name-title {
    height: 30px;
    font-weight: bold;
    line-height: 14px;
    box-sizing: border-box;
    padding-top: 5px;
}

.link-list {
    line-height: 14px;
}

.link-list>li {
    float: left;
    margin-right: 30px;
    padding-bottom: 10px;
}

.link-list a {
    color: #959fb2;
}

.link-list a:hover {
    color: #1492ff;
}

.foot-title {
    color: #666;
    margin-left: 130px;
    line-height: 14px;
}

.foot-box>div {
    position: relative;
    width: 1202px;
    margin: 0 auto;
}

.foot-first {
    padding-top: 45px;
    margin-bottom: 16px;
}

.foot-last {
    line-height: 20px;
    padding-left: 25px;
    margin-top: 10px;
    background: url("../images/index/gabah.png") no-repeat left center;
}

.code-img {
    height: 99px;
    width: 99px;
    margin-bottom: 4px;
}

.code-img>img {
    height: 100%;
    width: 100%;
}

.code-box {
    position: absolute;
    height: 173px;
    box-sizing: border-box;
    padding-top: 21px;
    color: #666;
    right: 0;
    top: 0;
    text-align: center;
}

.code-box .code-list {
    float: left;
    width: 99px;
    margin-left: 12px;
}

.code-box .code-list:first-child {
    margin-left: 0;
}

.code-box p {
    line-height: 17px;
    font-size: 14px;
    color: #666666;
}

.foot-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding-top: 40px;
    color: #666;
    top: 21px;
}

.net-btn {
    right: 425px;
    background: url("../images/index/net-icon.png") no-repeat center top;
}

.gav-btn {
    position: absolute;
    width: 51px;
    height: 61px;
    left: 30px;
    top: 20px;
    background: url("../images/index/qh-footer-gav.png") no-repeat center;
}

.find-btn {
    position: absolute;
    width: 110px;
    height: 55px;
    background: url("../images/index/qh-footer-find.png") no-repeat center;
    left: 0;
    top: 91px;
}

.call-btn {
    right: 350px;
    background: url("../images/index/call.png") no-repeat center top;
}

.gov {
    position: absolute;
    width: 132px;
    height: 41px;
    right: 353px;
    top: 97px;
    background: url("../images/index/gov_name.png") no-repeat center;
}

.foot-line {
    height: 160px;
    background: url("../images/index/foot-line.png") no-repeat 685px 30px;
}

.font-img {
    top: 60px;
    right: 0;
    position: absolute;
}

/* 底部结束 */

/* 右侧悬浮导航开始 */

.right-nav {
    position: fixed;
    right: 24px;
    /* bottom: 150px; */
    width: 86px;
    /* height: 600px; */
    /* height: 590px; */
    z-index: 9999999999;
    top: 50%;
    margin-top: -300px;
    /* padding-top: 10px; */
    /* margin-top: -295px; */
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 27px 0px rgba(30, 48, 74, 0.13);
}
.right-nav > li.new-media{
    position: relative;
}
.right-nav > li.new-media:hover .media-box{
    display: block;
}
.right-nav > li .media-box{
    display: none;
    position: absolute;
    bottom: 0;
    left: -177px;
    width: 165px;
    font-size: 14px;
    padding-top: 10px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 27px 0px rgba(30, 48, 74, 0.13);
}
.right-nav > li .media-box .media-list{
    margin-top: 8px;
}
.right-nav > li .media-box .media-list:first-child{
    margin-top: 0;
}
.right-nav > li .media-box .pic-box{
    height: 150px;
}
.right-nav > li .media-box .pic-box img{
    width: 150px;
    height: 150px;
    vertical-align: middle;
}
.right-nav > li .media-box span{
    line-height: 17px;
}
.right-nav > li .media-box::before{
    position: absolute;
    content: '';
    bottom: 34px;
    right: -7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 7px solid #fff;
    border-bottom: 5px solid transparent;
}
.right-nav > li:first-child a{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.right-nav > li:last-child a{
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.right-nav > li > a {
    display: block;
    height: 70px;
    box-sizing: border-box;
    color: #666666;
    font-size: 14px;
    padding-top: 40px;
    text-align: center;
    transition: all .3s;
}
.right-nav > li > a.query{
    background: url("../images/index/icon_query.png") center top 12px no-repeat;
}
.right-nav > li > a.smart{
    background: url("../images/index/icon_smart.png") center top 12px no-repeat;
}
.right-nav > li > a.advice{
    background: url("../images/index/icon_advice.png") center top 12px no-repeat;
}
.right-nav > li > a.error{
    background: url("../images/index/icon_error.png") center top 12px no-repeat;
}
.right-nav > li > a.survey{
    background: url("../images/index/icon_survey.png") center top 12px no-repeat;
}
.right-nav > li > a.media{
    background: url("../images/index/icon_media.png") center top 12px no-repeat;
}
.right-nav > li > a.portal{
    background: url("../images/index/icon_portal.png") center top 12px no-repeat;
}
.right-nav > li > a.suggest{
    background: url("../images/index/icon_suggest.png") center top 12px no-repeat;
}
.right-nav > li > a.lianxi{
    background: url("../images/index/icon_lianxi.png") center top 12px no-repeat;
}

.right-nav > li > a.back{
    background: url("../images/index/icon_back.png") center top 12px no-repeat;
}
.right-nav > li > a.query:hover{
    background-image: url("../images/index/icon_query_active.png");
}
.right-nav > li > a.smart:hover{
    background-image: url("../images/index/icon_smart_active.png");
}
.right-nav > li > a.advice:hover{
    background-image: url("../images/index/icon_advice_active.png");
}
.right-nav > li > a.error:hover{
    background-image: url("../images/index/icon_error_active.png");
}
.right-nav > li > a.survey:hover{
    background-image: url("../images/index/icon_survey_active.png");
}
.right-nav > li > a.media:hover{
    background-image: url("../images/index/icon_media_active.png");
}
.right-nav > li > a.portal:hover{
    background-image: url("../images/index/icon_portal_active.png");
}
.right-nav > li > a.suggest:hover{
    background-image: url("../images/index/icon_suggest_active.png");
}
.right-nav > li > a.lianxi:hover{
    background-image: url("../images/index/icon_lianxi_active.png");
}
.right-nav > li > a.back:hover{
    background-image: url("../images/index/icon_back_active.png");
}

.right-nav > li > a:hover {
    color: #fff;
    background-color: #2497fa;
}

.right-nav > li > .sm-btn {
    height: 30px;
    line-height: 30px;
    color: #fff;
    padding-top: 0;
    background-color: #b2b5bb;
}
.right-nav > li > .sm-btn:hover{
    background-color: #2497fa;
}

/* 右侧悬浮导航结束 */

/* 导航 */
.min-locat {
    width: 1200px;
    margin: 0 auto;
}

.location {
    font-size: 14px;
    color: #333333;
    line-height: 70px;
    background: url("../images/weizhi.png") 4px center no-repeat;
}

.locat {
    margin-left: 21px;
}

.now-locat {
    color: #2868b1;
}
.header .header-right .btn-left.l{
    float: none!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!;
    width: 100%;
}
.header .header-right .btn-left > div a{
    /* display:block; */
    position: relative;
    margin-bottom: 4px;
    /* text-align: right; */
    /* letter-spacing: 10px; */
}
.header .header-right .btn-left a:first-of-type::after{
    /* content:'青海省数据局'; */
    /* letter-spacing:10px; */
    margin-left: 25px;
}
.header .header-right .btn-left a:first-of-type::before{
    position: absolute;
    content: '';
    /* right: 0; */
    top: 13px;
    /* margin-top: -7px; */
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, .502);
    display:block;
    left: 150px;
}
.header .header-right .btn-left a:nth-child(2)::before{
    display:none;
}
.btn-login{
    /* position: absolute; */
    right: 22px;
    top: 45px;
    padding-left: 140px;
    width: auto;
    display: flex;
    flex-shrink: 0;
    margin-top: -35px;
    align-items: c;
}
.header-right{
    position:relative;
}


.footer2023 {
    min-width: 1200px;
    height: auto;
    background: #f0f8ff;
    min-height: 268px;
    color: #000;
}

.footer2023 a {
    color: inherit;
}

.footer2023 .footer2020-1 {
    width: 1200px;
    height: 180px;
    margin: 0 auto;
    padding-top: 26px;
}

.footer2020-101 {
    width: 260px;
    height: 120px;
    background: #e3f2ff;
    padding: 10px 0 0 20px;
    float: left;
}

.footer2020-101title {
    font-size: 20px;
    width: 100%;
    height: 30px;
    font-weight: bold;
}

.footer2020-101list ul li {
    width: 100%;
    line-height: 34px;
    font-size: 17px;
    align-items: center;
}
.footer2020-101list ul li span {
    width: 6px;
    height: 6px;
    background: #4260fd;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    /* display: none; */
}

.footer2020-102 {
    width: 150px;
    height: 120px;
    float: left;
    margin-left: 30px;
}
.footer2020-102 ul {
    width: 100%;
    height: 120px;
}

.footer2020-102 ul li img {
    margin-right: 10px;
    margin-top: -5px;
}

#_span_jiucuo {
    margin: 0 auto;
}

.footer2020-102 ul li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #e3f2ff;
    /* line-height: 50px; */
    font-size: 15px;
    padding-left: 10px;
    margin-bottom: 19px;
}
.footer2020-102 ul li a {
    display: flex;
    align-items: center;
}
.footer2020-102 ul li:nth-child(2) {
    margin-bottom: 0;
}

.footer2020-103 {
    width: 210px;
    height: 120px;
    float: left;
    margin-left: 20px;
}
.footer2020-103 ul {
    width: 100%;
    height: 120px;
}
.footer2020-103 ul li {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 53px;
    font-size: 15px;
    cursor: default;
    padding-left: 40px;
    margin-bottom: 19px;
    background: #e3f2ff;
}
.apperweima {
    padding-left: 40px !important;
    background: url(https://www.sczwfw.gov.cn/picture/2/2109131013078973271.png)
    no-repeat #e3f2ff 10px !important;
}
.footer2020-103 ul li:nth-child(2) {
    margin-bottom: 0;
}
.footer2020-105 {
    width: 200px;
    height: 120px;
    float: left;
    margin-left: 20px;
}
.footer2020-105 ul {
    width: 200px;
    height: 120px;
}
.footer2020-105 ul li {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 53px;
    font-size: 15px;
    cursor: default;
    padding-left: 40px;
    margin-bottom: 21px;
    background: #e3f2ff;
}
.footer2020-105 ul li:nth-child(2) {
    margin-bottom: 0;
}
.footer2020-104 {
    width: 150px;
    height: 120px;
    float: left;
    margin-left: 30px;
}

.footer2020-104top img {
    margin-right: 20px;
}

.footer2020-104bottom {
    width: 270px;
    height: 120px;
}

.footer2020-104bottom1 {
    width: 150px;
    height: 120px;
    float: left;
    margin-right: 20px;
    background-color: #e3f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer2020-104bottom1 img {
    margin: 0 auto;
}

.footer2020-104bottom2 {
    width: 100px;
    height: 120px;
    float: left;
    background-color: #e3f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer2020-104bottom2 img {
    margin: 0 auto;
}

.footer2020-2 {
    width: 100%;
    height: 88px;
    margin: 0 auto;
    background: #e3f2ff;
}

.footer2020-201 {
    width: 1088px;
    height: 48px;
    margin: 0 auto;
    padding-top: 15px;
    text-align: center;
}

.footer2020-201 p {
    float: left;
    font-size: 14px;
    line-height: 28px;
    color: #000;
}
.footer2020-201 p:nth-child(1) {
    margin-right: 200px;
}
.footer2020-201 p:nth-child(2) {
    margin-right: 200px;
}
.footer2020-201 p:nth-child(4) {
    /* margin-left: 73px; */
    margin-right: 230px;
}
.footer2020-201 p:nth-child(5) {
    /* margin-right: 60px; */
    margin-left: 60px;
}
.footer2020-103 a {
    /* position: relative; */
}
.footer2020-105 a {
    /* position: relative; */
}
.footer-mp-item-hover {
    display: none;
    position: absolute;
    left: 0;
    bottom: 3.1rem;
    height: 233px;
    width: 274px;
    padding: 0.5rem;
    background: url(https://www.jszwfw.gov.cn/picture/79/2009091007569597499.png)
    no-repeat;
    opacity: 0.97;
    z-index: 9999;
    text-align: center;
}

.footer-mp-item-hover img {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.footer-mp-item-hover > i {
    font-size: 0.8rem;
    color: #000;
    text-align: center;
    display: block;
    font-style: normal;
    line-height: 0.3;
    font-size: 20px;
}

#gaba {
    display: flex;
    align-items: center;
}
ol,
ul,
li {
    list-style: none;
    list-style-image: none;
}
.gjweb {
    background: #e3f2ff
    url(https://www.jszwfw.gov.cn/picture/0/2009071047071895628.png) no-repeat
    10px center !important;
    padding-left: 40px !important;
}
.apperweima:hover .footer-mp-item-hover {
    display: block !important;
}
.footer2020-103 .footer-mp-item-hover img,
.footer2020-105 .footer-mp-item-hover img {
    margin-bottom: 0;
}
.footer2020-201 p:nth-child(2){
    background: url(https://www.qhzwfw.gov.cn/newwz/images/index/gabah.png) no-repeat 0 center;
    padding-left:22px;
}
.nav-list > li:first-of-type{
    margin-left:-10px;
}
.cancellation,.login-name{
    flex-shrink:0;
}
.login-name{
    margin-top:10px!important;
    /* line-height: 20px; */
    display: flex;
    align-items: center;
    background-position:left -0px;
}
.cancellation{
    /* margin-top: 10px; */
}
.login-name::after {
    top:50%;
    transform:translateY(-50%)
}
.login-name[style*='visibility'] + .cancellation{
    margin-top:12px;
}
.login-name[style*='visibility:hidden']{
    position:fixed;
    right:-10000px;
}


.header.column-header .btn-left a:first-of-type::before{
    background-color: rgba(221, 221, 221, .502);
}
.login-name > span > a{
    display:inline-flex;
    align-items: center;
    justify-content: left;
}
