@import url(./c0prhd.css);

@import url(./3m4bvr.css);

@import url(./rk9pua.css);


:root {
  --theme: #1B5395;
  --themeActive: #0c79b1;
  --bgcolor: #ECF1F7;
  --color: #333; }

:export {
  theme: #2B58A8; }


html,
body {
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  color: #333; }


html {
    font-size: 10px;
}

body {
    color: #333;
    min-width: auto;
	
}
.white-box{
background-color:#fff;
}
.main-box {
    width: 132rem;
    margin: 0 auto;
}
.disHiden{
	display:none !important;
}
.disShow{
	display:block !important;
}
.header .nav-menu .item:hover a,
.header .nav-menu .item:active a {
    background-color: var(--themeActive);
    box-shadow: rgba(0, 0, 0, .2) 3px 7px 10px;
}
a:hover,
a:active {
	transition: color ease-in .1s;
	color: var(--theme);
}

.padding-no-left:{
	padding-left:0px;
}
.padding-no-right:{
	padding-right:0px;
}
@media only screen and (max-width: 641px) {
	
	html,
	body {
		width: 100vw;
		overflow-x: hidden;
	}

	.main-box {
		width: 100%;
	}
}

.text-line {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.text-line2 {
	display: -webkit-box;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-line3 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-line4 {
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
}
.no-padding-left{
	padding-left:0px;
}
.no-padding-right{
	padding-right:0px;
}
.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-row-always {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}
.align-center{
align-items: center;
}
.flex-row-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media only screen and (max-width: 641px) {
	.flex-row {
		text-align: center;
		flex-direction: column;
	}

	.flex-row-between {
		text-align: center;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

.align-center {
	align-items: center;
}




.navigation {
	font-size: 1.6rem;
	color: #999;
}

.navigation a {
	color: #999;
}

.navigation .am-breadcrumb {
	font-size: 100%;
	margin-bottom: 0rem;
}

.navigation .am-breadcrumb .iconfont {
	color: var(--theme);
	font-weight: 700;
	font-size: 1.1em;
}

.navigation .active {
	color: var(--theme);
}

.pagination {
	margin: 3rem auto;
}

.pagination .am-pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	justify-content: center;
}

.pagination .am-pagination li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.pagination .am-pagination>li>a,
.pagination .am-pagination>li>span,
.pagination .am-pagination>li>select,
.pagination .am-pagination>li>input {
	border-radius: 4px;
	color: #999;
}

.pagination select {
	position: relative;
	display: block;
	padding: 0.4em 1em;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	margin-bottom: 5px;
	margin-right: 5px;
	cursor: pointer;
}

.pagination input {
	width: 8rem;
	text-align: center;
	position: relative;
	display: block;
	padding: 0.5em 1em;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	margin-bottom: 5px;
	margin-right: 5px;
	cursor: pointer;
}

.tabs-panel {
	clear: both;
	overflow: hidden;
}

.tabs-panel .tabs-header {
	font-size: 2rem;
	overflow: hidden;
	background: var(--bgcolor);
	padding: 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-radius: 4px;
}

.tabs-panel .tabs-header .item {
	line-height: 5.4rem;
	text-align: center;
	flex: 1;
	height: 100%;
	color: #333;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}

.tabs-panel .tabs-header .item.active {
	color: var(--theme);
	background: linear-gradient(180deg, #F4F6F8 0%, #FFFFFF 100%);
	box-shadow: 0px 4px 16px 0px rgba(122, 140, 168, 0.16);
}

.tabs-panel .tabs-list {
	width: 100%;
	padding: 0px 5px;
}

@media only screen and (max-width: 641px) {
	.tabs-panel .tabs-header {
		font-size: 1.6rem;
	}
}

.text-list {
	width: inherit;
	overflow: hidden;
}

.text-list .item {
	display: flex;
	flex-direction: row;
	line-height: 4.4rem;
	font-size: 1.8rem;
	color: #333;
	cursor: pointer;
	padding: 0px 1rem 0px 1.5rem;
	position: relative;
	transition: all .2s linear;
	gap: 10px;
	justify-content: space-between;
}

.text-list .item:before {
	position: absolute;
	content: ' ';
	width: 4px;
	height: 4px;
	background-color: #ccc;
	left: 3px;
	top: 50%;
	transform: translate(0, -50%);
}

.text-list .item .title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-list .item .date {
	margin-left: 1rem;
	white-space: nowrap;
	text-align: right;
	color: #999;
}
.text-list .item .title a{
	color:#333;
}
.text-list .item:hover:before {
	background-color: var(--theme);
}

.text-list .item:hover .title {
	color: var(--theme);
}

.text-list .line {
	margin: 1.5rem 0;
	border: 1px #DCDCDC dashed;
}


.header {
    width: 100%;
    height: max-content;
}

.header-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    padding: 1rem 0rem;
	width: 100%;
    height: 35px;
    line-height: 34px;
    border-bottom: 1px solid #b7d7e5;
    background: #f7f7f7;
}

.header-title-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1em;
    padding: 1rem 0rem 1rem 0rem;
}

.header-title-left>div {
    width: max-content;
    margin-right: 1rem;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    border-right: 1px solid #fff;
    padding-right: 1rem
}

.header-title-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.header-title-right>div:nth-child(1),
.header-title-right>div:nth-child(2),
.header-title-right>div:nth-child(3),
.header-title-right>div:nth-child(4) {
    background-color: rgba(255, 255, 255, .2);
    height: 2.8rem;
    line-height: 2.8rem;
    padding: 0px .8rem;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}


.header-title-right>div:nth-child(1):hover,
.header-title-right>div:nth-child(2):hover,
.header-title-right>div:nth-child(3):hover,
.header-title-right>div:nth-child(4):hover {
    background-color: rgba(255, 255, 255, .4);
}
.header-title a, .header-title-right {
    color: #333 !important;
}
.header-title-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1em;
    padding: 1rem 0rem;
    justify-content: end;
}

.header-title-login>div {
    width: max-content;
    margin-left: 1rem;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    border-left: 1px solid #fff;
    padding-left: 1rem
}
.header-title-login>a{
	width: max-content;
    margin-left: 1rem;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    border-left: 1px solid #333;
    padding-left: 1rem;
}
.header-two {
    margin-top: 0rem;
    padding: 4rem;
    background-color: #fff;
}

.header-logo {
    line-height: 6rem;
}

.header-logo>img {
    width: auto;
    height: 100%;
}

.header-logo-img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.header-logo-img>img:nth-child(1) {
    width: 11%;
    height: auto
}

.header-logo-img>img:nth-child(2) {
    width: 58%;
    height: auto;
    margin-left: 1.4rem
}

.header-logo-input {
    width: 36%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
    overflow: hidden;
    padding: 0 !important;
	height: 45px;
    border-radius: 28px;
    border: 3px solid #20528f;
}

.header-logo-input>input {
    display: block;
    background: #fff;
    width: 84%;
    height: 100%;
    padding-left: 3rem;
    font-size: 1.6rem;
}

.header-logo-input>div {
    background: #2b58a8;
    width: 15%;
    height: 96%;
    border-radius: 20px;
    margin-right: .2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.icon-weixin1,.icon-weibo,.header-logo-input>div  .icon-sousuo2{
	color:#fff;
	font-size: 2rem;
}
.icon-weixin1{
    font-size:1.6rem;	
	}
.header-logo-input>div  .icon-sousuo2{
	font-size:6rem;
}
.content {
    width: 100%;
    margin: 6rem auto 0;
    height: max-content;
    border-radius: .8rem;
}


.center-nav {
    height: max-content;
   margin: 0rem auto -6rem;
    background: #20528f;
    position: relative;
	border-radius: 40px;
}
.center-nav .main-box {
    position: relative;
}
.text-list .item .title,.center-nav-box-new .title a,.imgs-swiper{
		color:#333;
	}
.text-list .item .title:hover,
.center-nav-box-new .title a:hover,
.center-nav-left-item1:hover,
.center-nav-left-item:hover,
.card-list-item>div:nth-child(3)>a:hover,
.imgs-swiper:hover{
		 color:var(--theme)
	}
.card-list-item>div:nth-child(3)>a:hover{
	font-weight:bold;
}
.center-nav-box-new,
.center-nav-box-organization,
.center-nav-box-industry,
.center-nav-box-office{
    position: absolute;
    left: 0;
    right: 0;
    top: 5rem;
    margin: auto;
    height: max-content;
    background: #fff;
    z-index: 99999;
    display: none;
    color: #000;
    font-size: 1.6rem;
    padding: 2rem 3rem;
    box-shadow: 0 2rem 2rem rgba(0, 0, 0, .2);
	border-bottom: 8px solid #2b58a8;
    border-radius: 0px 0px 8px 8px;
}
.center-nav-left-title{
    height: 5rem;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 1vh
}
.center-new-title>a,.center-nav-left-title>a:nth-child(1),.center-nav-left-title>span:nth-child(1){
    height: 5rem;
    display: block;
    line-height: 5rem;
    font-size: 18px;
    color: #2b58a8;
    font-weight: bold;
    width: max-content;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg, #77A1E4, #77A1E4 50%, #2b58a8 50%, #2b58a8 100%) 2 2 2 2;
}
.center-nav-left-title>a:nth-child(2){
    height: 5rem;
    display: block;
    line-height: 5rem;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    width: max-content;
    border-bottom: 6px solid;
    border-image: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%) 2 2 2 2;
}
.center-nav-left-title>span:nth-child(1){
   border-image: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%) 2 2 2 2;
   color: rgb(0, 0, 0);	
}
.center-nav-left-item{
    height: 10rem;
    background: #f5f9fc;
    line-height: 10rem;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.8rem;
    cursor: pointer;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	color:#333;
}
.center-nav-left-item1{
    height: 4rem;
    background: #f5f9fc;
    line-height: 4rem;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.6rem;
    cursor: pointer;text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	color:#333;
}
.center-nav-left-item2{
    height: 12rem;
    background: #f5f9fc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem
}
.center-nav-left-item2>img{
    width: 4rem;
    height: 4rem;
}
.center-nav-left-item2>span{
    text-align: center;
    font-size: 1.6rem;
    color: #000;
    margin-top: .6rem
}
.center-nav-left-item2:hover,
.center-nav-left-item1:hover,
.center-nav-left-item:hover{
    background: #e8f5ff;
}
.center-nav-right{
    width: 100%;
    height: 100%;
    position: relative;
	left: 30px;
}
.center-nav-right>img{
    width: 80%;
    height: auto;
    position: absolute;
    left: 4.6rem;
    top: 4.8rem;
    margin: auto;
    z-index: 1;
}
.center-nav-right>div{
    position: absolute;
    z-index: 2;
    left: 7.2rem;
    top: 8rem;
}
.center-nav-right>div>div:nth-child(1){
    border-left: 6px solid #2b58a8;
    font-size: 2.4rem;
    height: 2.4rem;
    line-height: 2.4rem;
    padding-left: 1rem;
    font-weight: bold;
}
.center-nav-right>div>div:nth-child(2){
    text-indent: 30px;
    margin-top: 2rem;
    width: 81%;
	font-size: 1.4rem;
    color: #666666;
    line-height: 3rem;
}
.center-nav-right1{
    height: max-content;
}
.center-nav-right1 .am-u-lg-4 {
	padding: 1rem;
    display: flex;
    justify-content: center;
}

.center-nav-right1 .am-g{
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.center-nav-right-img{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background: #f5f9fc;
	padding-bottom: 1rem;
}
.center-nav-right-img>img{
    width: 100%;
    height: auto;
    margin-bottom: 1rem
}
.center-nav-right-img>div{
    text-align: center;
    font-size: 1.8rem;
}
.center-nav-right-img>div:nth-child(2){
    font-weight: bold;
}
.center-nav-right-text>div{
    height: 3.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 2rem;
    position: relative;
}
.center-nav-right-text>div::after{
    position: absolute;
    content: ' ';
    width: 4px;
    height: 4px;
    background-color: #ccc;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.center-nav-right-text>div>span:nth-child(2){
    font-weight: bold;
}
.center-nav-right-img2{
    width: 100%;
    height: 100%;
    margin-top: 8rem
}
.center-nav-right-img2>img{
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.center-nav-list {
    height: max-content;
    display: flex;
    height: 5rem;
	justify-content: space-between;
}

.center-nav-list>a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
	padding: 0px 42px;
}
.center-nav-list>a.active,.center-nav-list>a:hover{
	position: relative;
    background: #2b60a1;
    border-radius: 40px;
}


.content-mbx {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 1.6rem;	
}

.content-mbx>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: #999;
}

.content-mbx>div>div,
.content-mbx>div>a {
    font-size: 14px;
    display: block;
}

.icon-dizhi{
	font-size: 2rem;
    color: #1475c3;
    margin-left: 0.8rem;
}

footer {
    margin-top: 3rem;
    background-color: #20528f;
    padding: 3rem 0px;
}

.footer-select {
    display: flex;
    justify-content: space-between;
    padding: 0 1.6rem;
    margin-bottom: 3vh;
}

.footer-select>select {
    flex: 1;
    display: block;
    height: 4rem;
    padding: 0 1rem;
	margin-right: 2rem;
}
.footer-bq {
    margin-top: 4rem;
}

.footer-code {
    justify-content: center;
}

.footer-text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-text-item {
    text-align: left;
    color: #fff;
    font-size: 14px;
}

.footer-text-item>div {
    margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-text-item>div:nth-child(1)>a {
    color: #fff;
    display: block;
    border-right: 1px solid rgba(255, 255, 255, .4);
    padding-right: 1rem;
    margin-right: 1rem;	
}

.footer-text-item>div:nth-child(1)>a:last-child {
    border: none
}

.footer-text-item>div:nth-child(2)>span,
.footer-text-item>div:nth-child(3)>span {
    margin-right: 2rem;
}

.footer-text-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content:center;
}

.footer-text-img>div {
    font-size: 12px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem
}

.footer-text-img>div>span {
    margin-top: .6rem
}

@media only screen and (max-width: 641px) {
    html,
    body {       
        background-size: auto 40%;
        width: 100vw;
        overflow-x: hidden;
    }
	html.bightm,body.bigbj{
		font-size: 10px;
	}
    .tabs-panel .tabs-header {
        font-size: 1.6rem !important;
    }
	.tabs-panel .tabs-header .item {
    font-size: 1.6rem;
}
.text-list .item{
	font-size:1.4rem;
}
    .main-box {
        width: 100%;
    }
	.header-title{
		height: auto;
	}
    .header-title-left {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        line-height: 1em;
        zoom: .8;
    }
    .header-title-right {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        zoom: .8;
    }
    .header-title-login {
		justify-content: center;
        zoom: .8;
        float: none !important;
    }

    .header-two {
        margin-top: 1rem
    }

    .header-logo-input {
        height: 4rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 88%;
        margin: 2rem 6% 0 6rem;
    }

    .header-logo-input>input {
        font-size: 1.6rem;
    }

    .header-logo>img {
        width: 100%;
        height: auto;
    }

    .header-logo-img {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .header-logo-img>img:nth-child(1) {
        width: 15%;
        height: auto
    }

    .header-logo-img>img:nth-child(2) {
        width: 78%;
        height: auto;
        margin-left: 1.4rem
    }
	.header-logo-input>div  .icon-sousuo2{
	font-size:4rem;
}
.center-nav {
    margin: 0rem 1rem -3rem;
    width: 95% !important;
}
.center-nav .main-box {
    overflow-x: scroll;
}
.center-nav .main-box>.am-g {
    display: flex;
    justify-content: space-between;
    width: 200%;
}
.center-nav-list {
        height: 4rem;
    }
	

    .center-nav-list>a {
        height: 100%;
        font-size: 1.4rem;
    }
	.center-nav-box-new,
    .center-nav-box-organization,
    .center-nav-box-industry,
    .center-nav-box-office{
        top: 8rem;
		display:none;
    }
    .center-nav-box-new{
        padding: 0;
        height: max-content;		
    }
	
    .center-nav-box-organization{
        padding: 0 0 2vh 0;
        height: max-content
    }
    
    .center-nav-box-industry{
        padding: 0;
        height: 92vh;
    }
    .center-nav-box-office{
        padding: 0;
        height: 69vh;
    }
    .center-nav-right>img{
        top: 3rem;
        left: 2rem;
        width: 90%;
    }
    .center-nav-right>div{
        top: 6rem;
        left: 5rem
    }
    .center-nav-left-item{
        height: 6rem;
    }
    .center-nav-left-item2{
        height: 10rem;
        margin-top: 2rem
    }
    .center-nav-right-img{
        margin: 2rem auto 0
    }
    .center-nav-right-text>div{
        margin-left: 4rem
    }
	
    .lsdw-content-list-title,
    .center-nav-right-img2{
        margin: 2vh 0
    }
    .content {
        margin: 4rem auto 0
    }
	.center-nav-list>a {
    padding: 0px 12px;
}
	
	.content-mbx {
    margin-bottom: -2rem;
    margin-top: 2rem;
	padding: 0 1rem;
}
.icon-dizhi {
    margin-left: 0rem;
}
    .footer-select {
        display: none;
    }
.footer-bq {
    margin-top: 0rem;
}
    .footer-text-item {
        text-align: center;
    }
.footer-text-item>div {
    margin-bottom: 0rem;
}
    .footer-code,.footer-text-img {
        display: none;
    }   
	    .footer-text-item>div:nth-child(1) {
        justify-content: center;
    }
	
.footer-text-item>div:nth-child(3)>span{
	display: inline-block;
}	
.footer-text-item>div:nth-child(1)>a {
    padding-right: .5rem;
    margin-right: .5rem;
}
}