/* about1 */
#about1 .sec2 .img {
    background-color: #fff;
    border-radius: 30px;
    padding: 3rem 1.5rem;
}



#about1 h3 {
        position: relative;
}

#about1 h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25%;
    width: 48%;
    height: 1px;
        background-color: #cfcfcf;
}

#about1 .logof {
     display: flex;
    flex-wrap: nowrap;
	    align-items: center;
}
#about1 .logof h5 {
    margin-right:20px;
}


/* profileList */
.profileList {
    border-top: 1px solid #ddd;
}
.profileList > li {
    border-bottom: 1px solid #ddd;
    padding: 5rem 0;
}
.profileList .profiles {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
}
.profileList .profiles > li {
    width: calc(33.33333% - 30px);
}
.profileList .profileItem {
    cursor: pointer;
}
.profileList .profileItem .img {
    position: relative;
}
.profileList .profileItem .img .imgItem {
    border-radius: 15px;
    overflow: hidden;
}
.profileList .profileItem .img .arrFloat {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 100%;
    transform: translateY(50%);
}
.profileList .profileItem .img .arrFloat i {
    display: flex;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #006d52;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    z-index: 5;
    align-items: center;
    justify-content: center;
    margin-left: auto;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.profileList .profileItem.act .img .arrFloat i {
    transform: rotate(180deg)
}
.profileList .profileItem .con .top {
    display: flex;
    align-items: flex-end;
    padding: 2rem 0;
}
.profileList .profileItem .con .top .grade {
    margin-left: 5px;
}
.profileList .profileItem .con .btCon {
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}
.profileList .profileItem.act .con .btCon {
    border-bottom: 2px solid #aaa;
    padding: 0 0 2rem;
}
@media (max-width:992px) {
    .profileList .profiles > li {
        width: calc(50% - 30px);
    }
}
@media (max-width:768px) {
    .profileList .profiles {
        column-gap: 10px;
    }
    .profileList .profiles > li {
        width: calc(50% - 10px);
    }
    .profileList .profileItem .img .imgItem {
        border-radius: 5px;
    }
    .profileList .profileItem .img .arrFloat {
        right: 5px;
    }
    .profileList .profileItem .img .arrFloat i {
        width: 35px;
        height: 35px;
        font-size: 2rem;
    }
}
@media (max-width:500px) {
    .profileList .profileItem .con .top {
        display: block;
        padding: 1rem 0;
    }
    .profileList .profileItem.act .con .btCon {
        border-bottom: 1px solid #aaa;
        padding: 0 0 1rem;
    }
    .profileList .profileItem .img .arrFloat i {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}

/* slashed */
.slashed .s,
.slashed .t {
    display: inline-block;
    vertical-align: middle;
}
.slashed .s {
    height: 12px;
    width: 1px;
    background-color: #aaa;
    transform: skew(-23deg);
    margin-right: 8px;
    margin-left: 3px;
}
@media (max-width:768px) {
    .slashed .s {
        height: 10px;
    }
}



/* processWrp */
.processWrp {
    position: relative;
}
.processWrp .protit strong {
    display: inline-block;
    background-color: #222;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}
.processWrp .item {
    border: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    background-color: #fff;
    padding: 3.5rem 2.5rem;
}
.processWrp .item .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border-radius: 5px;
    background-color: #e7f3f0;
    text-align: center;
}
.processWrp .item .txt {
    width: calc(100% - 80px);
    padding-left: 20px;
}
@media (min-width:767px) {
    .processWrp:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #ddd;
    }
    .processWrp > ul > li {
        width: 50%;
        position: relative;
    }
    .processWrp > ul > li:nth-child(even) {
        margin-left: 50%;
        padding-left: 5%;
    }
    .processWrp > ul > li:nth-child(odd) {
        padding-right:5%;
    }
    .processWrp > ul > li:nth-child(even):before {
        content: "";
        position: absolute;
        left: 0;
        width: 10%;
        top: 50%;
        height: 1px;
        background-color: #ddd;
    }
    .processWrp > ul > li:nth-child(even):after {
        content: "";
        position: absolute;
        left: 0;
        width: 6px;
        height: 6px;
        top: 50%;
        transform: translate3d(-50%, -50%, 0);
        background-color: #9ac23b;
        border-radius: 50%;
        z-index: 5;
    }
    .processWrp > ul > li:nth-child(odd)::before {
        content: "";
        position: absolute;
        right: 0;
        width: 10%;
        top: 50%;
        height: 1px;
        background-color: #ddd;
    }
    .processWrp > ul > li:nth-child(odd):after {
        content: "";
        position: absolute;
        right: 0;
        width: 6px;
        height: 6px;
        top: 50%;
        transform: translate3d(50%, -50%, 0);
        background-color: #9ac23b;
        border-radius: 50%;
        z-index: 5;
    }
    .processWrp .item {
        margin: -5% 0;
    }
    .processWrp li:first-child .item {
        margin-top: 0px;
    }
    .processWrp li:last-child .item {
        margin-bottom: 0px;
    }
}
@media (max-width:768px) {
    .processWrp .item {
        margin-top: -1px;
        padding: 3rem 2rem;
    }
    .processWrp .item .icon {
        width: 70px;
        height: 70px;
        padding: 10px;
        order: 2;
    }
    .processWrp .item .txt {
        width: calc(100% - 70px);
        padding-left: 0;
        padding-right: 10px;
        order: 1;
    }
}


/*table_basic*/
.table.table_basic {
    border-top: 2px solid #454f5d;
}
.table.table_basic.table_fx {
    table-layout: fixed;
}
.table.table_basic thead tr th {
    background-color: #f4f4f4;
}
.table.table_basic thead tr th,
.table.table_basic thead tr td,
.table.table_basic tbody tr th,
.table.table_basic tbody tr td {
    font-size: 18px;
    color: #221814;
    line-height: 1.3em;
    text-transform: none;
    border: 1px solid #ddd;
    padding: 15px;
}
.table.table_basic2 thead tr th,
.table.table_basic2 thead tr td,
.table.table_basic2 tbody tr th,
.table.table_basic2 tbody tr td {
    font-size: 16px;
    padding: 10px;
}
.table.table_basic thead tr th:first-child,
.table.table_basic thead tr td:first-child,
.table.table_basic tbody tr th:first-child,
.table.table_basic tbody tr td:first-child {
    border-left: 0px;
}
.table.table_basic thead tr th:last-child,
.table.table_basic thead tr td:last-child,
.table.table_basic tbody tr th:last-child,
.table.table_basic tbody tr td:last-child {
    border-right: 0px;
}
.table.table_basic thead tr th,
.table.table_basic tbody tr th {
    background-color: #fff;
    border-bottom-color: #333;
    font-weight: 600;
    background-color: #fff;
    border-bottom-color: #333;
}
.table.table_basic tbody tr td {
    font-weight: 300;
}
.table.table_basic.table_center thead tr th,
.table.table_basic.table_center thead tr td,
.table.table_basic.table_center tbody tr th,
.table.table_basic.table_center tbody tr td {
    text-align: center;
}
.table.table_basic.th_center thead tr th,
.table.table_basic.th_center tbody tr th {
    text-align: center;
    word-break: keep-all;
}
.table.table_basic.table_vh thead tr th,
.table.table_basic.table_vh thead tr td,
.table.table_basic.table_vh tbody tr th,
.table.table_basic.table_vh tbody tr td {
    vertical-align: middle;
	    text-align: center;
		word-break: break-all;
}
.table.table_basic.table_wb thead tr th,
.table.table_basic.table_wb tbody tr td,
.table.table_basic.table_wb tbody tr th {
    word-break: keep-all;
}
.table.table_basic tbody tr th {
    background-color: #fcfcfc;
}
.table.table_basic tbody tr.imp th,
.table.table_basic tbody tr.imp td {
    background-color: #fdfffb;
}
.table.table_basic tbody tr td {
    font-weight: 400;
}
.table.table_basic.tableCost tbody tr td {
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.4);
}
.table.table_basic tbody tr td.text-left {
    text-align: left;
}
.table.table_basic tbody tr td.text-right {
    text-align: right;
}
.table.table_basic tbody tr.bg_gr {
    background-color: #f7f7f7;
}
@media (max-width:768px){
    .table_wrp {
        width: 100%;
        overflow-x: scroll;
    }
    .table_wrp .table.table_basic {
        width: 800px;
    }
    .table.table_basic thead tr th,
    .table.table_basic thead tr td,
    .table.table_basic tbody tr th,
    .table.table_basic tbody tr td {
        font-size: 15px;
        padding: 10px;
		word-break: break-all !important;
    }
}

/* pcrPros */
.pcrPros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.pcrPros > li {
    width: calc(20% - 10px);
}
.pcrPros > li .prItem {
    border: 1px solid #d5f57f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin: 10px 0;
    position: relative;
    background-color: #f6ffef;
    color: #678d00;
}
.pcrPros > li:not(:last-child) .prItem:after {
    content: "\ea6c";
    font-family: remixicon !important;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/* table_pcr */
.table_pcr .head {
    padding: 1rem 1.5rem;
    background-color: #fcfcfc;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}
.table_pcr .con {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #eee;
}
.table_pcr li .tit {
    width: 39%;
}
.table_pcr li .standard {
    width: 25%;
}
.table_pcr li .status {
    width: 12%;
}
.table_pcr li .date {
    width: 12%;
}
.table_pcr li .vaild {
    width: 12%;
}
@media (min-width:767px) {
    .table_pcr li {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .table_pcr .hid-tit {
        display: none;
    }
    .table_pcr .con:hover {
        background-color: rgba(246, 255, 239, 0.5);
    }
}
@media (max-width:768px) {
    .table_pcr li > div {
        display: flex;
        align-items: flex-start;
        width: 100% !important;
        padding: 6px 0;
    }
    .table_pcr li > div:not(.vaild) {
        border-bottom: 1px solid #eee;
    }
    .table_pcr .head {
        display: none;
    }
    .table_pcr .con {
        padding: 2rem 1.5rem;
        border: 1px solid #ddd;
        margin: 15px 0;
        border-radius: 15px;
    }
    .table_pcr .hid-tit {
        width: 40%;
    }
    .table_pcr .mo-con {
        width: 60%;
        text-align: right;
    }
}

/* numList */
.numList > li {
    padding-left: 30px;
}
.numList .tit {
    position: relative;
}
.numList .tit .num {
    position: absolute;
    left: -30px;
}

/* appBox */
.appBox {
    background-color: rgba(160, 171, 186, .1);
    border-radius: 10px;
    padding: 2rem;
}
.appBox .appList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.appBox .appList > li {
    flex-grow: 1;
    width: calc(33.3333% - 20px);
}
.appBox .appList .itemBox {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    border: 1px solid rgb(221 221 221 / 50%);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.02);
    position: relative;
}
.appBox .appList .itemBox.itemBox1::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #aaa;
    right: -26px;
    top: 50%;
    transform: translate3d(0, 20px, 0) rotate(45deg);
}
.appBox .appList .itemBox.itemBox1::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #aaa;
    right: -26px;
    top: 50%;
    transform: translate3d(0, -20px, 0) rotate(-45deg);
}
.appBox .appList .itemBox.itemBox4::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #aaa;
    left: -26px;
    top: 50%;
    transform: translate3d(0, 20px, 0) rotate(-45deg);
}
.appBox .appList .itemBox.itemBox4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #aaa;
    left: -26px;
    top: 50%;
    transform: translate3d(0, -20px, 0) rotate(45deg);
}
.appBox .appList .itemBox .txt {
    width: calc(100% - 60px);
}
.appBox .appList .itemBox .txt span,
.appBox .appList .itemBox .txt strong {
    display: inline-block;
    vertical-align: middle;
    color: #999;
}
.appBox .appList .itemBox .txt .num {
    line-height: 1em;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #079a19;
    text-align: center;
    color: #fff;
    font-size: .8em;
    margin-right: 8px;
}
.appBox .appList .itemBox .icon {
    width: 60px;
}
@media (max-width:768px) {
    .appBox {
        padding: 1rem;
    }
    .appBox .appList .itemBox {
        display: block;
        padding: 10px 5px;
    }
    .appBox .appList .itemBox .txt,
    .appBox .appList .itemBox .icon {
        width: 100%;
        text-align: center;
    }
    .appBox .appList .itemBox .icon img {
        width: 35px;
        margin-top: 5px;
    }
    .appBox .appList .itemBox .txt .num {
        margin: 0 0 5px 0;
    }
    .appBox .appList .itemBox .txt span {
        display: block;
    }
}



/* pcr1 */
#pcr1 ul li {
	margin-bottom: 30px;
	position: relative;
}
#pcr1 .m_wrp {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding:  20px;
	height: 115px;
}
#pcr1 .m_wrp .txtbox h5 {
	font-size:15px;
}
#pcr1 .m_wrp .iconbox img {
	width: 70px;
}
@media (min-width:991px){
}
@media (min-width:769px){
	#pcr1 ul li:after {
		content: "";
		position: absolute;
		right: -15px;
		top: 0;
		height: 100%;
		width: 30px;
		background: url(../img/arr_ri.png) center center no-repeat;
		background-size: 100%;
		z-index: 3;
	}
}
@media (max-width:992px) and (min-width:769px){
	#pcr1 ul li:last-child:after{
		display: none;
	}
}
#pcr1 ul li:last-child:after{
	display: none;
}
@media (max-width:768px){
	#pcr1 ul li:after {
		content: "";
		position: absolute;
		bottom: -15px;
		left: 0;
		height: 30px;
		width: 100%;
		background: url(../img/arr_ri.png) center center no-repeat;
		background-size: contain;
		z-index: 3;
		-ms-transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	
	#pcr1 .m_wrp {
		height: auto;
	}
}