/*导航*/
.nav_box{
	width: 100%;
	aspect-ratio: 1920/200;
	max-height: 200px;
    background-image: url("../images/top_back.jpg");
    background-size: cover;
    background-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_box_on{
	height: 10vh;
    background: #FFFFFF;
    -moz-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.05);
    box-shadow: 0px 0px 25px 0 rgba(0,0,0,0.05);
}
.navt_box{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e1dad1;
}
.navt{
    width: 1600px;
    width: var(--mainwidth);
	height: 3.5rem;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.navt_left{
    width: auto;
    height: auto;
    font-size: 1rem;
    color: rgba(0,0,0,0.7);
    text-align: left;
}
.navt_right{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.navtr_item{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.navtr_item_ico{
    width: auto;
    height: 1.2rem;
    font-size: 0;
}
.navtr_item_ico svg{
    width: auto;
    height: 100%;
    fill:var(--OneColor);
}
.navtr_item_text{
    font-size: 1rem;
    color: rgba(0,0,0,0.7);
    padding-left: 0.2rem;
}
.navtr_item_text a{
    color: rgba(0,0,0,0.7);
}
.navtr_item:hover .navtr_item_code{
    height: 100px;
    opacity: 1;
}
.navtr_item_code{
    position: absolute;
    width: 100px;
    height: 0px;
    font-size: 0;
    left: calc(50% - 50px);
    top: 120%;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.navtr_item_code img{
    width: 100%;
    height: 100%;
}
.navtr_item2{
    font-size: 0;
    width: 1px;
    height: 1rem;
    background: #cccccc;
    margin: 0 1.5rem;
}
.navtr_item3{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navtr_item_ico2{
    width: auto;
    height: 0.5rem;
    font-size: 0;
    margin-left: 0.5rem;
}
.navtr_item_ico2 svg{
    width: auto;
    height: 100%;
    fill:var(--OneColor);
}
.navtr_item3:hover .navtr_item_con{
    height: auto;
    padding: 0.5rem 0;
    opacity: 1;
}
.navtr_item_con{
    position: absolute;
    width: 5rem;
    height: 0;
    overflow: hidden;
    left: calc(50% - 2.5rem);
    top: 130%;
    opacity: 1;
    background: #FFFFFF;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}
.navtr_item_con a{
    display: block;
    font-size: 1rem;
    color: #000000;
    margin: 0.3rem 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.navtr_item_con a:hover{
    color: var(--OneColor);
}

.nav{
    width: 1600px;
    width: var(--mainwidth);
	height: calc(100% - 3.5rem);
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav_logo{
	width: auto;
	height: 50%;
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.nav_logo>a{
	width: auto;
	height: 100%;
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.nav_logo img{
	width: auto;
	height: 100%;
	margin: 0 auto;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_search{
    width: 30%;
    height: 3.7rem;
    background: var(--OneColor);
    padding: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.nav_search_input{
    width: calc(100% - 5rem);
    height: 100%;
    background: #FFFFFF;
}
.nav_search_input form{
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
    border: none;
    padding: 0 1rem;
}
.nav_search_input input{
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
    border: none;
}
.nav_search_btn{
    width: 5rem;
    height: 100%;
    font-size: 0;
    text-align: center;
}
.nav_search_btn a{
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nav_search_btn svg{
    width: auto;
    height: 1.7rem;
    fill:#ffffff;
}

.nav_meun_box{
    width: 100%;
    height: 4rem;
    background: var(--OneColor);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: sticky;
    top: 0;
    z-index: 1000;
    -moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 10px 10px 0 rgba(188,16,24,0.05);
}

.nav_meun{
	width: 1600px;
    width: var(--mainwidth);
	height: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.nav_meun_tiem{
	width: auto;
	height: 100%;
    text-align: center;
    padding: 0 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.nav_meun_tiemon{
    background: #9c0007;
}
.nav_meun_tiem:hover{
    background: #9c0007;
}


.nav_meun_tiem>a{
    width: auto;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-family: opm;
    color: #FFFFFF;
}



.menubtn{
	display: none;
}



/*footer*/
.footer_box{
    width: 100%;
    height: auto;
    background:#a40908;
    position: relative;
    overflow: hidden;
}
.footer{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    padding-top: 3rem;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.footer_menu{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footerm_item{
    width: auto;
    height: auto;
}
.footerm_item_title{
    font-size: 1.25rem;
    color: #FFFFFF;
    font-family: opm;
    display: block;
    margin-bottom: 1.2rem;
}
.footerm_item_con{
    display: block;
    font-size: 1rem;
    font-family: opr;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footerm_item_cons{
	text-align: right;
}
.footerm_item_con:hover{
    color: rgba(255,255,255,1);
}

.footer_bottom{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 5;
    color: rgba(255,255,255,0.5);
    line-height: 170%;
}
.footer_bottom a{
    color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_bottom a:hover{
    color: rgba(255,255,255,1);
}



/*map*/
.map{
    width: 1600px;
    width: var(--mainwidth);
	height: 5rem;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    color: rgba(0,0,0,0.6);
    font-family: opm;
}
.map a{
    font-size: 1rem;
    color: rgba(0,0,0,0.6);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.map a:hover{
    color: var(--OneColor);
}
.map span{
    font-size: 1rem;
    color: rgba(0,0,0,0.3);
    padding: 0 0.5rem;
    font-family: '宋体';
    font-weight: bold;
}

/*main*/
.main{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 3rem;
}
.mleft{
    width: 30%;
    height: auto;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 2.5rem;
}
.mleft_title{
    width: 100%;
    height: 6rem;
    background: var(--OneColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.75rem;
    font-family: opb;
    color: #FFFFFF;
}
.mleft_menu{
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}
.mleft_menu_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 5.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.25rem;
    font-family: opm;
    padding: 0 1.7rem;
    color: rgba(0,0,0,0.9);
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_menu_item:hover{
    background: #f8e5e6;
    color: var(--OneColor);
}
.mleft_menu_item_on{
    background: #f8e5e6;
    color: var(--OneColor);
}
.mleft_menu_item:before{
    position: absolute;
    content: '';
    width: 4px;
    opacity: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--OneColor);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_menu_item:hover:before{
    opacity: 1;
}
.mleft_menu_item_on:before{
    opacity: 1;
}
.mleft_menu_item:after{
    position: absolute;
    content: '';
    width: 1rem;
    aspect-ratio: 1/1;
    right: 1.5rem;
    top: calc(50% - 0.5rem);
    background-image: url("../images/mleft_menu_ico.png");
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_menu_item:hover:after{
    background-image: url("../images/mleft_menu_ico1.png");
}
.mleft_menu_item_on:after{
    background-image: url("../images/mleft_menu_ico1.png");
}


.mleft_ltitle{
    width: 100%;
    height: auto;
    font-size: 1.625rem;
    font-family: opb;
    color: #000000;
    margin-top: 3rem;
}
.mleft_tj{
    width: 100%;
    height: auto;
}
.mleft_tj_item{
    width: 100%;
    height: auto;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.7);
    font-family: opm;
    position: relative;
    margin-top: 1.2rem;
    display: block;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-left: 1rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_tj_item:hover{
    color: var(--OneColor);
}
.mleft_tj_item:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 5px;
    height: 5px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_tj_item:hover:after{
    background: var(--OneColor);
}

.mleft_kw{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mleft_kw_item{
    width: 47%;
    height: auto;
    margin-top: 6%;
}
.mleft_kw_item_img{
    width: 100%;
    aspect-ratio: 193/260;
    font-size: 0;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 35px 0 rgba(0,0,0,0.08);
}
.mleft_kw_item_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: perspective(100px) translateZ(0px);
}
.mleft_kw_item:hover .mleft_kw_item_img img{
    transform: perspective(100px) translateZ(1px);
}
.mleft_kw_item_title{
    text-align: center;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    margin-top: 0.75rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mleft_kw_item:hover .mleft_kw_item_title{
    color: var(--OneColor);
}



.mright{
    width: 70%;
    height: auto;
    padding-left: 2.5rem;
}
.mright_title{
    font-size: 2rem;
    font-family: opb;
    color: var(--OneColor);
    border-bottom: 3px solid #e5e5e5;
}
.mright_title span{
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 100%;
    padding-bottom: 1.2rem;
    position: relative;
}
.mright_title span:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 100%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
}


/*翻页*/

.npage{
    width: 100%;
    height: auto;
    padding: 3rem 0 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}
.npage_as{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0 0.2rem;
}
.npage_as:hover{
    background:var(--OneColor);
}
.npage_as svg{
    width: 1.4rem;
    height: 1.4rem;
    fill:rgba(0,0,0,0.5);
    margin: 0 auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.npage_as:hover svg{
    fill:#ffffff;
}

.npage_ac{
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    margin: 0 0.2rem;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0,0,0,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid rgba(0,0,0,0.2);
}
.npage_ac:hover{
    background: var(--OneColor);
    color:#ffffff;
}
.npage_acon{
    background: var(--OneColor);
    color:#ffffff;
}

/*封头认证*/

.ftrzgg{
    width: 100%;
    height: auto;
    padding-top: 1rem;
}
.ftrzgg_item{
    width: 100%;
    height: auto;
    margin-top: 1.8rem;
}
.ftrzgg_item2{
    width: 100%;
    height: auto;
	padding: 1.5rem 0;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.ftrzgg_item a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
}
.ftrzgg_item_title{
    width: calc(100% - 17rem);
    height: auto;
    position: relative;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    padding-left: 0.8rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.ftrzgg_item a:hover .ftrzgg_item_title{
    color: var(--OneColor);
}
.ftrzgg_item_title:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ftrzgg_item a:hover .ftrzgg_item_title:after{
    background: var(--OneColor);
}
.ftrzgg_item_data{
    width: 10rem;
    height: auto;
    text-align: right;
    position: relative;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.2);
}
.ftrzgg_item_fen{
    width: 100%;
    height: 4rem;
}

/*封头认证查询*/
.ftrzcx{
    width: 100%;
    height: auto;
    padding: 2.5rem;
    background: #ffefe2;
    margin-top: 2.5rem;
}
.ftrzcx_title{
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.6);
    line-height: 100%;
}
.ftrzcxb{
    width: 100%;
    height: 4.6rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1.5rem;
}
.ftrzcxb_input{
    width: calc(100% - 10rem);
    height: 100%;
    background: #FFFFFF;
}
.ftrzcxb_input form{
    width: 100%;
    height: 100%;
}
.ftrzcxb_input input{
    font-size: 1.25rem;
    font-family: opm;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    border: none;
    color: rgba(0,0,0,0.6);
}
.ftrzcxb_input input::placeholder{
    color: rgba(0,0,0,0.3);
}

.ftrzcxb_btn{
    width: 10rem;
    height: 100%;
    background: var(--OneColor);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.ftrzcxb_btn:hover{
    background: #9c0007;
}
.ftrzcxb_btn a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
	cursor: pointer;
}
.ftrzcxb_btn_svg{
    width: auto;
    height: 1.5rem;
    font-size: 0;
}
.ftrzcxb_btn_svg svg{
    width: auto;
    height: 100%;
    fill:#ffffff;
}
.ftrzcxb_btn_text{
    width: auto;
    height: auto;
    font-size: 1.5rem;
    font-family: opm;
    color: #FFFFFF;
    margin-left: 1rem;
}

.ftrzcxl{
    width: 100%;
    height: auto;
    margin-top: 2rem;
}
.ftrzcxl_top{
    width: 100%;
    height: 5rem;
    background: #f0f0f0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.375rem;
    font-family: opm;
    color: #000000;
}
.ftrzcxl_top_item{
    text-align: center;
}
.ftrzcxl_top_item:nth-of-type(1){
    width: 30%;
}
.ftrzcxl_top_item:nth-of-type(2){
    width: 30%;
}
.ftrzcxl_top_item:nth-of-type(3){
    width: 17%;
}
.ftrzcxl_top_item:nth-of-type(4){
    width: 23%;
}

.ftrzcxl_item{
    width: 100%;
    height: 4.5rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
}
.ftrzcxl_item:nth-of-type(odd){
    background: #fafafa;
}
.ftrzcxl_item_item{
    text-align: center;
}
.ftrzcxl_item_item:nth-of-type(1){
    width: 30%;
}
.ftrzcxl_item_item:nth-of-type(2){
    width: 30%;
}
.ftrzcxl_item_item:nth-of-type(3){
    width: 17%;
}
.ftrzcxl_item_item:nth-of-type(4){
    width: 23%;
}

/*技术及标准化委员会*/
.jsbzwyh_list{
	width: 100%;
    height: auto;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.mleft_kw_items {
    width: 24%;
    height: auto;
    margin-top: 6%;
	margin-right: 1%;
}
.mleft_kw_items:nth-child(4n) {
    margin-right: 0px;
}
.jsbzwyh{
    width: 100%;
    height: auto;
}
.jsbzwyh_item{
    width: 100%;
    height: auto;
    margin-top: 2.5rem;
}
.jsbzwyh_item_title{
    width: auto;
    height: auto;
    font-size: 1.5rem;
    font-family: opm;
    color: #000000;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.jsbzwyh_item:hover .jsbzwyh_item_title{
    color: var(--OneColor);
}
.jsbzwyh_item_des{
    width: auto;
    height: auto;
    font-size: 1.125rem;
    font-family: opm;
    line-height: 160%;
    color: #5d5d5d;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.7rem;
}
.jsbzwyh_item_data{
    width: auto;
    height: auto;
    font-size: 1.125rem;
    font-family: opr;
    color: rgba(0,0,0,0.4);
    margin-top: 0.7rem;
}

/*鉴定评审详情*/
.jdpsxq_title{
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 2rem;
    color: #000000;
    font-family: opm;
    padding-top: 1rem;
}
.jdpsxq_ltitle{
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 1.25rem;
    color: var(--OneColor);
    font-family: opm;
    margin-top: 0.5rem;
}
.jdpsxq_con{
    width: 100%;
    height: auto;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    font-family: opm;
    line-height: 170%;
    margin-top: 2rem;
}

/*联系我们*/
.lx{
    width: 100%;
    height: auto;
}
.lx_title{
    font-size: 2rem;
    color: #000000;
    font-family: opm;
    margin-top: 3rem;
}
.lx_con{
    font-size: 1.25rem;
    color: rgba(0,0,0,0.9);
    font-family: opm;
    line-height: 230%;
    margin-top: 0.5rem;
}
.lx_img{
    width: 100%;
    height: auto;
    font-size: 0;
    margin-top: 3rem;
}
.lx_img img{
    width: 100%;
    height: auto;
}


/*培训证书查询*/

.pxzscxl{
    width: 100%;
    height: auto;
    margin-top: 2rem;
}
.pxzscxl_top{
    width: 100%;
    height: 5rem;
    background: #f0f0f0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.375rem;
    font-family: opm;
    color: #000000;
}
.pxzscxl_top_item{
    text-align: center;
}
.pxzscxl_top_item:nth-of-type(1){
    width: 25%;
}
.pxzscxl_top_item:nth-of-type(2){
    width: 15%;
}
.pxzscxl_top_item:nth-of-type(3){
    width: 20%;
}
.pxzscxl_top_item:nth-of-type(4){
    width: 17%;
}
.pxzscxl_top_item:nth-of-type(5){
    width: 23%;
}

.pxzscxl_item{
    width: 100%;
    height: 4.5rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
}
.pxzscxl_item:nth-of-type(odd){
    background: #fafafa;
}
.pxzscxl_item_item{
    text-align: center;
}
.pxzscxl_item_item:nth-of-type(1){
    width: 25%;
}
.pxzscxl_item_item:nth-of-type(2){
    width: 15%;
}
.pxzscxl_item_item:nth-of-type(3){
    width: 20%;
}
.pxzscxl_item_item:nth-of-type(4){
    width: 17%;
}
.pxzscxl_item_item:nth-of-type(5){
    width: 23%;
}


/*协会动态*/
.new_title{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    text-align: center;
    margin-top: 4rem;
}
.new_title a{
    font-size: 3.125rem;
    font-family: opb;
    color: var(--OneColor);
}
.new_top{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    
}
.new_top:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 1px;
    height: 4.6rem;
    background: rgba(0,0,0,0.1);
    top: calc(50% - 2.3rem);
    left: 50%;
}
.new_top_item{
    width: 47%;
    height: auto;
}
.new_top_item a{
    font-size: 1.625rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    line-height: 160%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_top_item a:hover{
    color: var(--OneColor);
}

.new_box{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    position: relative;
    margin-top: 3rem;
}
.new_sw{
    width: 100%;
    height: auto;
}
.new_sw_back{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,1.00);
    opacity: 0.7;
    z-index: 5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.new_sw .swiper-slide-active .new_sw_back{
    opacity: 0;
}
.new_sw_img{
    width: 100%;
    aspect-ratio: 1021/583;
    font-size: 0;
    position: relative;
    z-index: 0;
}
.new_sw_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.new_sw_title{
    text-align: center;
    font-size: 1.625rem;
    font-family: opm;
    color: #000000;
    margin-top: 1rem;
}

.new_sw_btn{
    position: absolute;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    font-size: 0;
    top: calc(50% - 1.5rem);
    cursor: pointer;
}
.new_sw_btn svg{
    width: 100%;
    height: 100%;
    fill:var(--OneColor);
}
.new_sw_btn_left{
    left: 7%;
}
.new_sw_btn_right{
    right: 7%;
}

.newbom{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 4rem;
}
.newbomi{
    width: 31%;
    height: auto;
}
.newbomi_top{
    width: 100%;
    height: 4rem;
    border-bottom: 3px solid #dfdfdf;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.newbomi_top_title span{
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    height: 4rem;
    font-size: 1.25rem;
    color: var(--OneColor);
    font-family: opb;
}
.newbomi_top_title span:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 100%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
}
.newbomi_top_more a{
    font-size: 1rem;
    color: #000000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.newbomi_top_more a:hover{
    color: var(--OneColor);
}

.in_newi_con{
	font-size: 1.125rem;
	font-family: opm;
	line-height: 170%;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
	margin-bottom: 5rem;
}

.newbomi_itme2{
    width: 100%;
    height: auto;
    padding-bottom: 0.5rem;
}
.newbomi_itme2 a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.newbomi_itme2_img{
    width: 39%;
    aspect-ratio: 196/117;
    font-size: 0;
    overflow: hidden;
}
.newbomi_itme2_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: perspective(100px) translateZ(0px);
}
.newbomi_itme2:hover .newbomi_itme2_img img{
    transform: perspective(100px) translateZ(2px);
}
.newbomi_itme2_title{
    width: 61%;
    height: auto;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    line-height: 150%;
    padding-left: 1.3rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.newbomi_itme2:hover .newbomi_itme2_title{
    color: var(--OneColor);
}

.newbomi_itme{
    margin-top: 1rem;
}
.newbomi_itme_title{
    width: 100%;
    height: auto;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    padding-left: 0.7rem;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.newbomi_itme:hover .newbomi_itme_title{
    color: var(--OneColor);
}
.newbomi_itme_title:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.newbomi_itme:hover .newbomi_itme_title:after{
    background: var(--OneColor);
}

/*行业动态详情*/
.snew_title{
    width: 100%;
    height: auto;
    font-size: 2rem;
    color: rgba(0,0,0,0.9);
    font-family: opm;
    text-align: center;
}
.snew_tag{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    
}
.snew_tag_item{
    font-size: 1rem;
    color: rgba(0,0,0,0.9);
    font-family: opm;
    text-align: center;
    margin: 0 1.5rem;
    
}
.snew_con{
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    font-family: opm;
    line-height: 170%;
    padding: 3rem 0;
}
.snew_con img{
    width: auto;
    height: auto;
    max-width: 100%;
}

.snew_page{
    width: 100%;
    height: auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.snew_page a{
    font-size: 1.125rem;
    color: rgba(0,0,0,0.9);
    font-family: opm;
    display: block;
    margin: 0.75rem 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.snew_page a:hover{
    color: var(--OneColor);
}

/*协会介绍*/
.about_jj{
    width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.about_jj_img{
    width: 50%;
    aspect-ratio: 800/533;
    font-size: 0;
}
.about_jj_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about_jjr{
    width: 46%;
    height: auto;
	position: relative;
}
.about_jjr_menu{
    width: 100%;
    height: auto;
    border-bottom: 3px solid #b6b6b6;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.about_jjr_menui{
    display: inline-block;
    padding-bottom: 0.7rem;
    width: auto;
    height: auto;
    position: relative;
    font-size: 2rem;
    font-family: opb;
    color: #595959;
    margin-right: 2.5rem;
    cursor: default;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.about_jjr_menui_on{
    color: var(--OneColor);
}
.about_jjr_menui:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 0%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
    z-index: 5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.about_jjr_menui_on:after{
    width: 100%;
}
.about_jj_con{
	width: 100%;
	height: auto;
	margin-top: 2rem;
}
.about_jj_sw{
	width: 100%;
	height: 100%;
}
.about_jj_sw_con{
	width: 100%;
	height: auto;
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	line-height: 170%;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    overflow: hidden;
}
.about_jj_more{
	position: relative;
	margin-top: 2rem;
}
.about_jj_more a{
	font-size: 1.375rem;
	font-family: opm;
	color: var(--OneColor);
}


.about_item{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 4rem;
}

.about_item_title{
    width: 100%;
    height: auto;
    border-bottom: 3px solid #b6b6b6;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.about_item_title span{
    display: inline-block;
    padding-bottom: 0.7rem;
    width: auto;
    height: auto;
    position: relative;
    font-size: 2rem;
    font-family: opb;
    color: var(--OneColor);
    margin-right: 2.5rem;
    cursor: default;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.about_item_title span:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 100%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
    z-index: 5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.about_bm{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	margin-top: 2.5rem;
	padding: 2.5rem;
}
.about_bm_title{
	font-size: 1.625rem;
	font-family: opb;
	color: rgba(0,0,0,0.9);
}
.about_bmc{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1.5rem;
}
.about_bmc_item_con{
	font-size: 1.25rem;
	color: rgba(0,0,0,0.8);
	font-family: opm;
	line-height: 190%;
}
.about_bmc_item_title{
	font-size: 1.625rem;
	font-family: opm;
	color: var(--OneColor);
	padding-bottom: 0.6rem;
}


.about_fz{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	margin-top: 2.5rem;
	padding: 2.5rem;
}



.about_fz_pagination{
    width: 100%;
    height: auto;
    z-index: 10;
    text-align: center;
    margin-top: 2rem;
}
.about_fz .swiper-pagination-bullets{
    bottom: 0;
}
.about_fz_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.6rem; 
	height:0.6rem;  
	background: #cccccc;
	border-radius: 50%;
    margin: 0 0.3rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.about_fz_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

.about_fz_title{
	font-size: 1.625rem;
	font-family: opb;
	color: rgba(0,0,0,0.9);
}
.about_fz_ltitle{
	font-size: 1.5rem;
	font-family: opm;
	color: var(--OneColor);
	line-height: 150%;
	margin-top: 0.5rem;
}
.about_fz_ltitle2{
	font-size: 1.5rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	margin-top: 2rem;
}
.about_fz_con{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	line-height: 190%;
}


.about_lsh{
	width: 100%;
	height: auto;
	background: #FFFFFF;
	margin-top: 2.5rem;
	padding: 2.5rem;
	margin-bottom:5rem;
}
.about_lsh_menub{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2rem;
}
.about_lsh_menub_title{
	font-size: 1.5rem;
	font-family: opm;
	color: var(--OneColor);
}
.about_lsh_menu{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding-left: 2rem;
}
.about_lsh_menui{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: auto;
	height: 4rem;
	background: #eaeaea;
	font-size: 1.5rem;
	color: rgba(0,0,0,0.9);
	font-family: opm;
	padding: 0 2rem;
	margin-left: 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: default;
}
.about_lsh_menui_on{
	background: var(--OneColor);
	color: #FFFFFF;
}

.about_lsh_sw{
	width: 100%;
	height: auto;
	
}
.about_lsh_sw .swiper-slide{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2rem 0;
}
.about_lsh_sw_item{
	width: 50%;
	height: auto;
	margin-top: 1rem;
	font-size: 1.25rem;
	color: rgba(0,0,0,0.9);
	font-family: opm;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.about_lsh_sw_item_1{
	width: 8rem;
}
.about_lsh_sw_item_2{
	width: calc(100% - 8rem);
}


/*协会介绍详情*/
.sabout{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 5rem;
	margin-bottom: 4rem;
}
.sabout_title{
	text-align: center;
	width: 100%;
	height: auto;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	font-size: 2.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
}
.sabout_con{
	width: 100%;
	height: auto;
	padding-top: 2.5rem;
	font-size: 1.225rem;
	line-height: 170%;
	font-family: opm;
	color: rgba(0,0,0,0.8);
}
.sabout_con img{
	max-width: 100%;
}

/*协会刊物*/
.xhkw{
	width: 100%;
	height: auto;
	padding-top: 2.5rem;
	font-size: 1.225rem;
	line-height: 170%;
	font-family: opm;
	color: rgba(0,0,0,0.8);
}
.xhkw img{
	width: auto;
	height: auto;
	max-width: 100%;
}

/*标准发行*/

.bzfx{
    width: 100%;
    height: auto;
    margin-top: 2rem;
}
.bzfx_top{
    width: 100%;
    height: 5rem;
    background: #f0f0f0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.375rem;
    font-family: opm;
    color: #000000;
}
.bzfx_top_item{
    text-align: center;
}
.bzfx_top_item:nth-of-type(1){
    width: 15%;
}
.bzfx_top_item:nth-of-type(2){
    width: 55%;
	text-align: left;
}
.bzfx_top_item:nth-of-type(3){
    width: 15%;
}
.bzfx_top_item:nth-of-type(4){
    width: 15%;
}

.bzfx_item{
    width: 100%;
    height: 4.5rem;
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
}
.bzfx_item:nth-of-type(odd){
    background: #fafafa;
}
.bzfx_item_item{
    text-align: center;
}
.bzfx_item_item:nth-of-type(1){
    width: 15%;
}
.bzfx_item_item:nth-of-type(2){
    width: 55%;
	text-align: left;
}
.bzfx_item_item:nth-of-type(3){
    width: 15%;
}
.bzfx_item_item:nth-of-type(4){
    width: 15%;
}

/*首页*/
.in_top{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin-top: 3rem;
	padding: 0 3rem;
	padding-bottom: 1.5rem;
}
.in_top_title{
	text-align: center;
	font-size: 3.06rem;
	font-family: opb;
	color: var(--OneColor);
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.in_top_des{
	text-align: center;
	font-size: 1rem;
	font-family: opb;
	color: rgba(0,0,0,0.8);
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	margin-top: 0.6rem;
}

.in_gg{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 3rem;
}
.in_ggl{
	width: 40%;
	aspect-ratio: 800/457;
	position: relative;
}
.in_ggl_sw{
	width: 100%;
	height: 100%;
	position: relative;
}
.in_ggl_sw_img{
	display: block;
	width: 100%;
	height: 100%;
}
.in_ggl_sw_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.in_ggl_pagination{
	position: absolute;
	right: 0rem;
	bottom: 0rem;
    width: 100%;
    height: auto;
    z-index: 10;
    text-align: right;
	padding: 1rem;
}
.in_ggl .swiper-pagination-bullets{
    bottom: 0;
}
.in_ggl_pagination .swiper-pagination-bullet { 
	display: inline-block; 
	width:0.8rem; 
	height:0.8rem;  
	background: #ffffff;
	border-radius: 50%;
    margin: 0 0.5rem;
	cursor: pointer;  
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggl_pagination .swiper-pagination-bullet-active{ 
	background: var(--OneColor);
}

.in_ggr{
	width: 57%;
	height: auto;
}


.in_ggr_menu{
    width: 100%;
    height: auto;
    border-bottom: 3px solid #b6b6b6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.in_ggr_menui{
    display: inline-block;
    padding-bottom: 0.7rem;
    width: auto;
    height: auto;
    position: relative;
    font-size: 1.25rem;
    font-family: opb;
    color: #595959;
    cursor: default;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggr_menui a{
	color: #595959;
}
.in_ggr_menui_on{
    color: var(--OneColor);
}
.in_ggr_menui:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 0%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
    z-index: 5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggr_menui_on:after{
    width: 100%;
}
.in_ggrc{
	width: 100%;
	height: auto;
}
.in_ggrc_sw{
	width: 100%;
	height: auto;
}
.in_ggrc_item2{
	display: block;
	margin-top: 1.5rem;
}
.in_ggrc_title{
	font-size: 1.5rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggrc_item2:hover .in_ggrc_title{
	color: var(--OneColor);
}
.in_ggrc_des{
	font-size: 1rem;
	font-family: opm;
	color: rgba(0,0,0,0.4);
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	line-height: 160%;
	margin-top: 1rem;
}
.in_ggrc_btn{
	width: 4rem;
	height: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 0;
	background: var(--OneColor);
	border-radius: 2rem;
	margin-top: 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggrc_item2:hover .in_ggrc_btn{
	width: 6rem;
}
.in_ggrc_btn svg{
	width: auto;
	height: 70%;
	fill:#ffffff;
}

.in_ggrc_item{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1.5rem;
}

.in_ggrc_title2{
	width: calc(100% - 10rem);
	height: auto;
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_ggrc_item:hover .in_ggrc_title2{
	color: var(--OneColor);
}
.in_ggrc_data{
	width: 10rem;
	height: auto;
	font-size: 1.125rem;
	color: rgba(0,0,0,0.4);
	text-align: right;
}

.in_ggrc_con{
	font-size: 1.125rem;
	font-family: opm;
	line-height: 170%;
	padding-top: 1.5rem;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.in_jd_box{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
}
.in_jd{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1.5rem;
}
.in_jd_item{
	width: 15%;
	height: auto;
	padding: 4rem 2.5rem;
	background: #ffefe2;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_jd_item:hover{
	background: var(--OneColor);
}

.in_jd_item_ico{
	width: 3.25rem;
	height: 3.25rem;
	position: relative;
	margin: 0 auto;
	font-size: 0;
}
.in_jd_item_ico img{
	position: absolute;
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	left: 0;
	top: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_jd_item_ico img:nth-of-type(1){
	z-index: 5;
}
.in_jd_item:hover .in_jd_item_ico img:nth-of-type(1){
	opacity: 0;
}
.in_jd_item_ico img:nth-of-type(2){
	z-index: 0;
}

.in_jd_item_title{
	text-align: center;
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,0.8);
	margin-top: 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_jd_item:hover .in_jd_item_title{
	color: #FFFFFF;
}

.in_ad{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	font-size: 0;
}
.in_ad img{
	width: 100%;
	height: auto;
}

.in_new{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_newi{
	width: 32%;
	height: auto;
}


.in_newi_itme2{
    width: 100%;
    height: auto;
    padding-bottom: 0.5rem;
}
.in_newi_itme2 a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.in_newi_itme2_img{
    width: 25%;
    aspect-ratio: 196/117;
    font-size: 0;
    overflow: hidden;
}
.in_newi_itme2_img img{
    width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: perspective(100px) translateZ(0px);
}
.in_newi_itme2:hover .in_newi_itme2_img img{
    transform: perspective(100px) translateZ(2px);
}
.in_newi_itme2c{
    width: 75%;
    height: auto;
    padding-left: 1.3rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.in_newi_itme2_title{
    width: 100%;
    height: auto;
    font-size: 1.25rem;
    font-family: opm;
    color: rgba(0,0,0,0.8);
    line-height: 150%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.in_newi_itme2:hover .in_newi_itme2_title{
    color: var(--OneColor);
}
.in_newi_itme2_des{
    width: 100%;
    height: auto;
    font-size: 1rem;
    font-family: opm;
    color: rgba(0,0,0,0.5);
    line-height: 150%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.in_newi_itme{
    margin-top: 1rem;
	width: 100%;
	height: auto;
}
.in_newi_itme a{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_newi_itme_title{
    width: calc(100% - 10rem);
    height: auto;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    padding-left: 0.7rem;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.in_newi_itme:hover .in_newi_itme_title{
    color: var(--OneColor);
}
.in_newi_itme_title:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_newi_itme:hover .in_newi_itme_title:after{
    background: var(--OneColor);
}

.in_newi_itme_data{
    width: 10rem;
    height: auto;
	text-align: right;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.in_newi_itme3{
	width: 100%;
	aspect-ratio: 779/117;
}
.in_newi_itme3 a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_newi_itme3_title{
	width: 8rem;
	height: 100%;
	background: var(--OneColor);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	font-family: opm;
	color: #FFFFFF;
}
.in_newi_itme3_img{
	width: calc(100% - 8rem);
	height: 100%;
	font-size: 0;
	overflow: hidden;
}
.in_newi_itme3_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.in_newi_itme3:hover .in_newi_itme3_img img{
	transform: perspective(100px) translateZ(1px);
}
.in_newibc{
	width: 100%;
	height: auto;
	padding-top: 0.5rem;
}

.in_ad2{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_ad2 a{
	display: block;
	width: 48.5%;
	height: auto;
	font-size: 0;
}
.in_ad2 a img{
	width: 100%;
	height: auto;
}

.in_ad3_title{
	width: 1600px;
    width: var(--mainwidth);
    height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
    border-bottom: 3px solid #dfdfdf;
}
.in_ad3_title_text span{
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    height: 4rem;
    font-size: 2rem;
    color: var(--OneColor);
    font-family: opb;
}
.in_ad3_title_text span:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 100%;
    height: 3px;
    background: var(--OneColor);
    left: 0;
    bottom: -3px;
}

.in_ad3{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_ad3 a{
	display: block;
	width: 23.5%;
	height: auto;
	font-size: 0;
}
.in_ad3 a img{
	width: 100%;
	height: auto;
}

.in_kw{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_kw .newbomi_top{
	margin-bottom: 0;
}
.in_kwkw{
	width: 32%;
	height: auto;
}
.in_kwkwc{
	width: 100%;
	height: auto;
	margin-top: 0.7rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0 2rem;
}
.in_kwkwc_item{
	width: 44%;
	height: auto;
	margin-top: 1rem;
}
.in_kwkw_sw_img{
    width: 100%;
    aspect-ratio: 193 / 260;
    font-size: 0;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
}
.in_kwkw_sw_img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: perspective(100px) translateZ(0px);
}
.in_kwkw_sw .swiper-slide:hover .in_kwkw_sw_img img{
	transform: perspective(100px) translateZ(1px);
}
.in_kwkw_sw_title{
    text-align: center;
    font-size: 1.125rem;
    font-family: opm;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 0.75rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_kwkwc_item:hover .in_kwkw_sw_title{
	color: var(--OneColor);
}

.in_kwkwm{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 2rem;
}
.in_kwkwm a{
	width: 46%;
	height: auto;
	margin-top: 0.7rem;
	text-align: center;
	border: 1px solid var(--OneColor);
	font-size: 1.125rem;
	color: var(--OneColor);
	padding: 0.6rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_kwkwm a:hover{
	background: var(--OneColor);
	color: #FFFFFF;
}


.in_kwxz{
	width: 32%;
	height: auto;
}
.in_kwxzc{
	width: 100%;
	height: auto;
	padding-top: 0.5rem;
}


.in_kwxzc_itme{
    margin-top: 1rem;
	width: 100%;
	height: auto;
}
.in_kwxzc_itme_title{
    width: 100%;
    height: auto;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    padding-left: 0.7rem;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.in_kwxzc_itme:hover .in_kwxzc_itme_title{
    color: var(--OneColor);
}
.in_kwxzc_itme_title:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_kwxzc_itme:hover .in_kwxzc_itme_title:after{
    background: var(--OneColor);
}


.in_kwlx{
	width: 32%;
	height: auto;
}

.in_kwlxc{
	width: 100%;
	height: auto;
	padding: 1rem;
	background: #ffefe2;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.in_kwlxc_code{
	width: 32%;
	height: auto;
	font-size: 0;
}
.in_kwlxc_code img{
	width: 100%;
	height: auto;
}
.in_kwlxcr{
	width: 68%;
	height: auto;
	padding-left: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.in_kwlxcr_1{
	font-size: 1.375rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
}
.in_kwlxcr_2{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	margin-top: 1.2rem;
}
.in_kwlxcr_3{
	font-size: 1.375rem;
	font-family: opm;
	color: var(--OneColor);
}
.in_kwlxb{
	font-size: 1.125rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
	margin-top: 2rem;
	line-height: 190%;
}

.in_kehu{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.in_kehu_item{
	width: 18.4%;
	aspect-ratio: 300/132;
	-moz-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.08);
	font-size: 0;
	margin-right: 2%;
	margin-top: 2%;
}
.in_kehu_item:nth-of-type(5n){
	margin-right: 0;
}
.in_kehu_item img{
	width:100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.in_link{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 4rem;
	position: relative;
	z-index: 20;
}
.in_link_item{
	width: 24.3%;
	height: auto;
	position: relative;
}
.in_link_item_top{
	width: 100%;
	height: 3.2rem;
	border: 1px solid rgba(0,0,0,0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
}
.in_link_item_top_text{
	font-size: 1.25rem;
	font-family: opm;
	color: rgba(0,0,0,0.9);
}
.in_link_item_top_ico{
	width: 1rem;
	height: 1rem;
	font-size: 0;
}
.in_link_item_top_ico svg{
	width: 100%;
	height: 100%;
	fill:rgba(0,0,0,0.6);
}
.in_link_item_main{
	position: absolute;
	width: 100%;
	height: 0;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.1);
	border-top: none;
	left: 0;
	top: 100%;
	z-index: 10;
	background: #FFFFFF;
	padding: 0rem 1rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
}
.in_link_item:hover .in_link_item_main{
	height: auto;
	opacity: 1;
	padding: 1rem 1rem;
}
.in_link_item_main a{
	display: block;
	font-size: 1.125rem;
	color: rgba(0,0,0,0.7);
	margin: 0.3rem 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_link_item_main a:hover{
	color: var(--OneColor);
}

.in_dw{
	width: 1600px;
    width: var(--mainwidth);
	height: auto;
	margin: 0 auto;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.in_dw .newbomi_top{
	margin-bottom: 1.5rem;
}

.in_dwi{
	width: 23.5%;
	height: auto;
}
.in_dwic{
	width: 100%;
	height: auto;
}


.in_dwic_itme{
    margin-top: 1rem;
	width: 100%;
	height: auto;
}
.in_dwic_itme_title{
    width: 100%;
    height: auto;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    padding-left: 0.7rem;
    font-size: 1.125rem;
    color: rgba(0,0,0,0.8);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-family: opm;
}
.in_dwic_itme:hover .in_dwic_itme_title{
    color: var(--OneColor);
}
.in_dwic_itme_title:after{
    position: absolute;
    content: '';
    font-size: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    left: 0;
    top: calc(50% - 2px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.in_dwic_itme:hover .in_dwic_itme_title:after{
    background: var(--OneColor);
}



/*证书*/
.cert_box{
	width: 1000px;
	height: 706px;
	background-image: url("../images/cert_back.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto;
	padding:100px 120px;
	position: relative;
}
.cert{
	width: 100%;
	height: 100%;
	position: relative;
}
.cert_logo{
	width: auto;
	text-align: center;
	height: 60px;
	font-size: 0;
}
.cert_logo img{
	width: auto;
	height: 100%;
}
.cert_title{
	width: auto;
	text-align: center;
	height: 35px;
	font-size: 0;
	margin-top: 25px;
}
.cert_title img{
	width: auto;
	height: 100%;
	
}
.cert_num{
	text-align: center;
	font-size: 12px;
	color: #000000;
	font-family: opb;
	margin-top: 25px;
}
.cert_content{
	width: 100%;
	height: auto;
	margin-top: 15px;
	font-size: 20px;
	font-family:"楷体";
	font-weight: 700;
	line-height: 175%;
	text-indent:40px;
}
.cert_fz{
	margin-top: 45px;
	width: 100%;
	height: auto;
	font-size: 20px;
	font-family:"楷体";
	font-weight: 700;
	text-align: center;
	left: 0;
	bottom: 200px;
}
.cert_pter{
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: auto;
	font-size: 20px;
	font-family:"楷体";
	font-weight: 700;
	line-height: 150%;
	text-align: right;
	padding-bottom: 20px;
}
.cert_pter img{
	position: absolute;
	height: 110px;
	width: auto;
	right: 25px;
	bottom: 0;
	z-index: 5;
}




.spter_box{
	width:100%;
	height: 100%;
	position: fixed;
	background:rgba(0,0,0,0.9);
	z-index: -1;
	top: 0vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	user-select: none;
}
.spter_box_on{
	z-index: 2000;
	opacity: 1;
}
.spter{
	width: 1000px;
	height: auto;
	margin: 0px auto;
	font-size: 0px;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	position: relative;
}
.spter_con{
	width: 1000px;
	height: 706px;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	transform: scale(1);
}
.spter_menu{
	width:100%;
	height: auto;
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 40px;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	font-size: 16px;
	color: #FFFFFF;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.spter_menu div{
	width: 120px;
	height: 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--OneColor);;
	color: #FFFFFF;
	font-family: opm;
	margin: 0 1.5rem;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	cursor: pointer;
}

