.yj2_text-center{
	padding-top: 15px;
    padding-bottom: 15px;
}
.yj2_text_wrap{
	text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 34px 20px;
    background: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%)
}
.yj2_text_wrap:hover{
	background: #F1F5FE;
    transition: .5s;
    box-shadow: none;
}
.yj2_item_imgwrap{
	display: inline-block;
    height: 90px;
    width: 90px;
    background: #FEF5F8;
    text-align: center;
    position: relative;
    transition: .5s;
    z-index: 1;
    border-radius: 50%;
	margin: auto;
    overflow: hidden;
}
.yj2_item_imgwrap img{
	width:100%;
}
.yj2_item_imgwrap .img-0{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.yj2_item_imgwrap .img-1{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #14212A;
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
    transition: .5s;
    color: #fff;
}
.advantage_yj2_content li:hover .img-0 {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}
.advantage_yj2_content li:hover .img-1 {
    transform: scale(1);
}
.yj2_item_nr{
	padding-top: 24px;
}
.yj2_item_nr .name{
	font-size: 25px;
    margin: 2px 0 0;
	font-weight: 700;
}
.yj2_item_nr .desc{
	padding-top: 5px;
    margin-bottom: 25px;
	color: #5c727d;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.yj2_item_number{
	position: relative;
    margin-bottom: -55px;
}
.yj2_item_number span{
	background: #D00A2B;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    transition: .5s;
}
.advantage_yj2_content li:hover .yj2_item_number span{
	background:#14212a;
	
}
@media(max-width: 767px) {
	.yj2_item_nr .name{
		font-size: 20px;
	}
}

/* Dialog Modal Styles */
.yj2_text_wrap[data-dialog="1"] {
	cursor: pointer;
}
.advantage_yj2-item-dialog {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 9999;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.advantage_yj2-item-dialog.active {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

/* Dialog Mask */
.advantage_yj2-item-dialog-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
	cursor: pointer;
}

/* Dialog Content Wrapper */
.advantage_yj2-item-dialog-wrapper{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	transform: translate(-50%, -50%);
	width: 820px;
	max-width: calc(100% - .4rem);
	background: #fff;
	border-radius: .24rem;
	overflow: hidden;
	padding: .76rem;
	font-size: 19px;
	display: flex;
	flex-direction: column;
}

/* Dialog Close Button */
.advantage_yj2-item-dialog-close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: transparent;
	border: none;
	padding: 0;
	transition: 0.3s;
	border-radius: 50%;
	overflow: hidden;
	background: #000;
	color: inherit;
}

.advantage_yj2-item-dialog-close > svg {
	width: 18px;
	height: 18px;
	stroke-width: 7px;
	stroke: #fff;
	transition: 0.3s;
}

/* Dialog Title */
.advantage_yj2-item-dialog-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

/* Dialog Subtitle */
.advantage_yj2-item-dialog-subtitle {
	margin-bottom: 12px;
	font-weight: bold;
}

/* Dialog Text Content */

/* Dialog Button */
.advantage_yj2-item-dialog-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 2px 0;
	margin-top: 10px;
	color: var(--site-color);
	text-decoration: none;
	border: none;
	transition: 0.3s;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing: border-box;
}

.advantage_yj2-item-dialog-btn:hover {
	text-decoration: underline;
}

/* Responsive Dialog */
@media(max-width: 767px) {
	.advantage_yj2-item-dialog-wrapper {
		font-size: 16px;
	}
	.advantage_yj2-item-dialog-title {
		font-size: .24rem;
	}
}

.advantage_yj2_title h2{ 
    display: block;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.yj2_item_nr .name h2, 
.yj2_item_nr .name h3{ 
    display: block;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
} 