/* 快速样式 */

* {
    margin: 0 auto;
}
.w1 {
    width: 10%;
}

.w15 {
    width: 15%;
}

.w2 {
    width: 20%;
}
.w25 {
    width: 25%;
}

.w4 {
    width: 40%;
}

.w45 {
    width: 45%;
}

.w55 {
    width: 55%;
}

.w35 {
    width: 35%;
}

.w3 {
    width: 30%;
}

.w5 {
    width: 50%;
}

.w6 {
    width: 60%;
}

.w65 {
    width: 65%;
}

.w75 {
    width: 75%;
}

.w85 {
    width: 85%;
}

.w95 {
    width: 95%;
}

.w9 {
    width: 90%;
}

.w8 {
    width: 80%;
}
.w10 {
    width: 100%;
}
.h10 {
    height: 100%;
}
.overflow-y{
	overflow-y: auto;
}
/* 定位 */
/* 居中 */
.pos-fmt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/* 水平居中 */
.pos-ct{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);    
}
/* 垂直居中 */
.pos-md{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
}
/* 水平垂直居中 */
.pos-mc{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}

.flex-space-around {
    display: flex;
    justify-content: space-around;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}
/* 水平居中 */
.flex-center {
    display: flex;
    justify-content: center;
}
/* 垂直居中 */
.flex-md {
    display: flex;
    align-items: center;
}
/* 竖向 */
.flex-dir-column {
    flex-direction: column;
}
/* 水平垂直居中 */
.flex-mc {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 水平靠右 */
.flex-end {
    display: flex;
    justify-content: flex-end;
}
/* 水平靠右 */
.flex-start {
    display: flex;
    justify-content: flex-start;
}
/* 换行 */
.flex-wrap{
    flex-wrap:wrap
}
/* 文字居中 */
.text-center {
    text-align: center;
}
/* 文字靠左 */
.text-left {
    text-align: left;
}
/* 文字靠右 */
.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}



.padding-right-0 {
    padding-right: 0px;
}

.padding-left-0 {
    padding-left: 0px;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-left-4 {
    padding-left: 4px;
}

.padding-left-10 {
    padding-left: 10px;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-left-20 {
    padding-left: 20px;
}

.padding-right-30 {
    padding-right: 30px;
}

.padding-left-30 {
    padding-left: 30px;
}

.line-height-37 {
    line-height: 37px;
}

.inline-block {
    display: inline-block;
}

.font-weight{
    font-weight: bold;
}

.font-size-18 {
    font-size: 18px;
}
.font-size-22 {
    font-size: 22px;
}
.font-size-20 {
    font-size: 20px;
}
.border-bottom-dashed {
    border-bottom: 1px dashed #999999 ;
}
.border-none {
    border: 0 none;
}
.border-radius-0 {
    border-radius: 0px;
}

.border-radius-20 {
    border-radius: 20px;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px;
}
.margin-0 {
    margin: 0px;
}
.margin-bottom-0 {
    margin-bottom: 0px;
}
.margin-top-5 {
    margin-top: 5px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-right-10 {
    margin-right: 10px;
}
.margin-right-20 {
    margin-right: 20px;
}

.box-shadow {
    box-shadow: 0px;
}

.bg-gray {
    background-color: #F8F8F8;
}

.bgc-blue {
    background-color: #065ACD;
}

.bgc-white {
    background-color: white !important;
}

.bgc-skyblue {
    background-color: #ECFBFE;
}

.act {
    background-color: #F7AB00;
    color: white;
}

.color-red {
    color: red;
}

.color-blue{
    color: #065BD0;
}

.color-white {
    color: white;
}

.color-gray {
    color: gray;
}

.border {
    border: 1px solid #000;
}

.border-0 {
    border: unset;
}

/*单行超出隐藏*/
.single-text-overflow {
	display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*多行超出隐藏*/
.multiple-text-overflow {
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -o-box;
    display: -webkit-box;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-line-clamp: 2;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-box-orient: vertical;
}

.float-none {
    float: none;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear {
    clear: both;
}

.hide{
    display: none;
}

.copyright {
	width: 100%;
	text-align: center;
	/* font-size: 20px; */
}

a:hover {
    text-decoration: none;
}

/* .active {
    border-right: 3px solid #024F93;
    border-radius: 0px 20px 0px 0px;
    border-bottom: 3px solid #024F93;
} */

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    border-right: 3px solid #024F93;
    border-radius: 0px 20px 0px 0px;
    border-bottom: 2px solid #024F93;
    border-left: 0px;
    border-top: 0px;
    background-color: #F8F8F8;
    color: #024F93;
    font-weight: bold;
}

a {
    color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
.nav-tabs li a{
    margin-bottom: -2px;
}

.hengxian {
    width: 100%;
    height:2px;
    border-top: 2px solid #024F93;
    /* background-color: #024F93; */
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%,-50%);
}

.po-r {
    position: relative;
}
.inner{
	width: 1200px;
	margin: 0 auto !important;
}
.public-layer-box{
	width: 100%;
	/* height: 100%; */
	box-shadow: 0px 0px 11px 0px rgb(79 79 79 / 49%);
	background-color: rgba(255, 255, 255, 1);
	border-radius: 10px;
	overflow: hidden;
}
.public-layer-heading{
	height: 45px;
	border-bottom: 1px solid #024F93;
}
.public-layer-content{
	height: calc(100% - 45px) ;
}
.public-layer-title-bj{
	width: 100%;
	background: url('../images/icon-title-bj.png')no-repeat;
	font-size: 22px;
	color: white;
}
.dynamic-box{
	height: 40px;
	align-items: center;
}
.dynamic-box>div{
	margin: 0;
}
.dynamic-box-t{
	width: 4px;
	height: 18px;
	border-radius: 2px;
	background-color: #026BE5;
	margin-right: 15px;
}
.dynamic-box-text{
	width: calc(100% - 132px);
}
.dynamic-box-text p{
	max-width: calc(100% - 36px);
	margin-right: 15px;
}
.dynamic-box-bnt{
	padding: 3px 15px;
	background-color: #0659CD;
	color: white;
	font-size: 12px;
	border-radius: 3px;
	
}
.dynamic-box-bnt a{
	display: inline-block;
	margin: 0;
}
.dynamic-box-date{
	padding-left: 40px;
}
.nav-tab-new{
	list-style: none;
	padding: 0;
}
.nav-tab-new>li{
	margin: 0 30px 0 0;
	padding: 15px 0;
	font-size: 20px;

	z-index: 3;
}
.nav-tab-new>li:hover{
	
}
.nav-tab-new .active,.nav-tab-new>li:hover{
	border-bottom: 3px solid #0659CD;
	border-radius: 2px;
}
.nav-tab-new .active a,.nav-tab-new>li:hover a{
	color: #0659CD;
	text-decoration: none;
}
.nav-tab-new-broder-xian{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 1px;
}
.list-group{
	height: 100%;
	list-style: none;
}

.friendship-link-title{
	font-size: 30px;
	color: #333333;
	padding: 0 25px;
	font-family: Source Han Sans CN;
}
.friendship-link-title-xian{
	width: 38px;
	height: 1px;
	background-color: #006BE4;
}
.friendship-link-list{
	font-size: 22px;
	color: #333333;
	margin-top: 30px;
}
.friendship-link-list a {
	padding: 0 12px;
	border-right: 2px solid #CCCCCC;
}
.friendship-link-list a:last-child{
	border-right: 0 none;
}
.footer{
	font-size: 18px;
}
.footer .inner>div{
	margin: 0;
}