.psr {
    position: relative;
}

.psa {
    position: absolute;
}

.center {
    text-align: center;
}

/*水平垂直居中(不确定宽高)*/
.wh-center {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.w-center {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

/*垂直居中(不确定高)*/
.h-center {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.fixedBottom {
    width: 100%;
    position: fixed;
    bottom: 0;
}

/*不换行溢出显示...*/
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

* {
    box-sizing: border-box !important;
}

/*loading*/
.partLoading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 60px;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.spinner div {
    background-color: deepskyblue;
    height: 100%;
    width: 6px;
    float: left;
    margin-left: 4px;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* ajax-loading*/
.ajloader {
    position: absolute;
    z-index: 999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ajloaderBG {
    width: 3rem;
    height: 2rem;
    background: #000;
    border-radius: .2rem;
    opacity: .7;
}

.loader-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;

}

.load8 .loader,
.load8 .loader:after {
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
}

.load8 .loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999rem;
    border-top: .2rem solid rgba(255, 255, 255, 0.2);
    border-right: .2rem solid rgba(255, 255, 255, 0.2);
    border-bottom: .2rem solid rgba(255, 255, 255, 0.2);
    border-left: .2rem solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.noData {
    width: 100%;
    height: 6rem;
    background: url(../img/nodata.png) no-repeat center center;
    background-size: 40%;
}

.mt20 {
    margin-top: .2rem !important;
}

.mt40 {
    margin-top: .4rem !important;
}

.mauto {
    display: block;
    margin: 0 auto;
}

.yhn-input {
    width: 6.66666rem;
    height: 1.25rem;
    line-height: 1.25rem;
    padding: 0 .2rem;
    border: 1px solid #F0F0F0;
    border-radius: .1rem;

}

/*vue-popup  组件*/
.PopupBox {
    overflow: hidden;
    position: absolute;
    z-index: 8888;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.pop-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);

}

.pop-content {
    background: #f5f6f8;
    overflow-y: auto;
    border-top: 4px solid #c7d9ff;
    width:85%;
    height: 10rem;
    position: absolute;
    bottom: 15%;
    box-shadow: 0 0 5px #ddd;
    transition: all linear .3s;
    margin-left: 80px;
    transform: translateY(100%);
}

.pop-content.active {
    transform: translateY(0);
}

/*vue-pop-alert组件*/
.pop-alert {
    background: #fff;
    border-radius: .2rem;
    width: 8.4rem;
    padding: .533333rem;
    min-height: 5.6rem;
}

/*vue-check组件*/
.yhn-check-box {
    position: relative;
    width: 1rem;
    height: 100%;
}

.yhn-check {
    width: .45rem;
    height: .45rem;
    background: url(../img/content.png) no-repeat;
    background-size: 100% 100%;
}

.yhn-check.active {
    width: .85rem;
    height: .85rem;
    background: url(../img/content1.png) no-repeat;
    background-size: 100% 100%;
}

.yhn-check1 {
    width: .85rem;
    height: .85rem;
    background: url(../img/blueCheck1.png) no-repeat;
    background-size: 100% 100%;
}

.yhn-check1.active {
    width: .85rem;
    height: .85rem;
    background: url(../img/blueCheck.png) no-repeat;
    background-size: 100% 100%;
}

.yhn-checkgou {
    width: .45rem;
    height: .45rem;
    background: url(../img/content.png) no-repeat;
    background-size: 100% 100%;
}

.yhn-checkgou.active {
    width: .45rem;
    height: .45rem;
    background: url(../img/icon-gou.png) no-repeat;
    background-size: 100% 100%;
}

/*yhn-datePicker*/
.yhn-datePicker {
    width: 100%;
    background: #5687c9;
    height: 7.3rem;
}

.yhn-datePicker .title {
    font-size: 0.45333rem;
    color: #fff;
    text-align: center;
    line-height: 1rem;
}

.yhn-datePicker .title div {
    position: absolute;
    top: 0;
    width: 1rem;
    height: 100%;
    border-radius: 50%;
}

.yhn-datePicker .title div img {
    width: .3rem !important;
    height: .4rem !important;
}

.yhn-datePicker .title div:nth-of-type(1) {
    left: .4rem;
}

.yhn-datePicker .title div:nth-of-type(2) {
    right: .4rem;
}

.yhn-datePicker .title div:active {
    background: #f2f2f2;
}

.yhn-datePicker .yhn-dateTable {
    width: 100%;
}

.yhn-datePicker .yhn-dateTable thead tr td {
    width: 14.285%;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    color: #85aee2;
    font-size: 0.34667rem;
}

.yhn-datePicker .yhn-dateTable tbody tr td {
    width: 14.285%;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    color: #fff;
    font-size: 0.4rem;
}

.yhn-datePicker .yhn-dateTable tbody tr td.active {
    background: greenyellow;
}

.yhn-datePicker .yhn-dateBox {
    width: 100%;
    overflow: hidden;
}

.yhn-datePicker .yhn-dateBox .dateCard {
    position: relative;
    width: 14.285%;
    float: left;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    color: #85aee6;
    font-size: 0.4rem;
}

.yhn-datePicker .yhn-dateBox .dateCard .dot {
    display: none;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
}

.yhn-datePicker .yhn-dateBox .dateCard .dot span {
    display: block;
    width: .15rem;
    height: .15rem;
    border-radius: 50%;
    background: #85aee6;
    bottom: .08rem;
}

.yhn-datePicker .yhn-dateBox .dateCard.active .dot {
    display: block;
}

.yhn-datePicker .yhn-dateBox .dateCard.flag .day {
    color: #fff;
}

.yhn-datePicker .yhn-dateBox .dateCard.active .day {
    color: #85aee6;
}

/*步骤条*/
.proLine {
    display: flex;
    margin-top: 0.73333rem;
    text-align: center;
}

.proLine li {
    position: relative;
    flex-grow: 1;
    width: 100%;
    padding: 1rem 0.66667rem 0 0.66667rem;
}

.proLine li i {
    position: absolute;
    height: 0.5rem;
    width: 100%;
    left: -50%;
    background: #F0F0F0;
    top: 0.15rem;
}

.proLine li i:before {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    background: #F0F0F0;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    z-index: 10;
    position: relative;
    content: ' ';
    top: -0.2rem;
    left: 50%;
}

.proLine li:nth-of-type(1) em {
    display: none !important;
}

.proLine li.active i em {
    display: inline-block;
    width: 100%;
    height: 0.08rem;
    background: #1F7EF2;
    color: #fff;
    text-align: center;
    z-index: 10;
    position: absolute;
    left: 0;
    content: ' ';

    top: 0.075rem;

}

.proLine li b {
    width: 0.5rem;
    position: absolute;
    height: 0.5rem;
    background: #F0F0F0;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    z-index: 10;
    content: ' ';
    top: -0.03333rem;
    right: -0.13333rem;
}

.proLine li.active span {
    color: #1F7EF2;
}
.proLine li span {
    font-size: 0.7rem
}
.proLine li.active b {
    background: #1F7EF2;
}

.proLine li:first-child i {
    height: 0;
}

/*yhn-ssq*/
.ssq-list {
    margin-top: .4rem;
}

.ssq-list .list-item {
    width: 100%;
    height: 1.33333rem;
    background: url(../img/icon-right.png) no-repeat 9.2rem center;
    background-size: .25rem;
    background-color: #fff;
    line-height: 1.33333rem;
}

.ssq-list .list-item p {
    padding-left: 0.53333rem;
    width: 3.5rem;
    height: 100%;
    float: left;
    line-height: 1.33333rem;
}

.ssq-list .list-item h1 {
    width: 6.2rem;
    height: 100%;
    line-height: 1.33333rem;
}

.ssq-list .list-item:active {
    background: #F5F6F8;
}

.ssq-list .list-item::after {
    content: "";
    width: 9.6rem;
    margin-left: .4rem;
    height: 1.33333rem;
    display: block;
    position: absolute;
    border-bottom: 1px solid #F0F0F0;
}

/*组件stepLine*/
.stepLine {
    display: flex;
    width: 100%;
    height: 0.06667rem;
    background: #b1dbff;
}

.stepLine span {
    flex-grow: 1;
    width: 100%;
    display: inline-block;
}

.stepLine span.active {
    background: #1f7ef2;
}

.stepText {
    font-size: 0.66667rem;
    color: #383b42;
    font-weight: bold;
    margin: 0.6rem 0;
}

ul.addsCard {
    padding-top: 0.4rem;
    margin: 0 0.4rem;
}

ul.addsCard li.info {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 0.53333rem;
    padding: 0.53333rem;
}

ul.addsCard li.info ul li:first-child {
    margin-bottom: 10px;
}

ul.addsCard li.info ul li:first-child p {
    display: flex;
    align-items: center;
    position: relative;
    height: 0.8rem;
}

ul.addsCard li.info ul li:first-child p span {
    color: #383b42;
    font-size: 0.6rem !important;
    width: 80%;
    flex-grow: 1;
}

ul.addsCard li.info ul li:first-child p span b {
    font-size: 0.4rem !important;
    color: #999 !important;
}

ul.addsCard li.info ul li:nth-child(2) p {
    line-height: 0.75rem;
    /*#71819c*/
    color: #666 !important;
    font-size: 0.4rem;
}

ul.addsCard li.info ul li:nth-child(2) p span {
    margin-left: 10px;
}

ul.addsCard li.info ul li:nth-child(3) p {
    color: #666 !important;
    font-size: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.addspopupTitle {
    z-index: 9999 !important;
    font-size: .7rem;
    height: 2rem;
    line-height: 2rem;
    text-align: left;
    padding-left: 2rem;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: absolute;
    top: 0;
    background: url(../img/popupchoice.png) no-repeat;
    background-size: .8rem;
    background-position: 1rem center;
    background-color: #f5f6f8;
}

.addsCard > li:active {
    background: #C9E2F9 !important;
}

#myLayer1 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: transparent;
    z-index: 9999;
    animation: ly 2s;
}

#myLayer1 .layerCon1 {
    position: fixed;
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    border-radius: 3px;
}
#myLayer1 .layerCon1 p {
    color: #fff;
    padding: .7rem 0;
    font-size: 0.45333rem;
    text-align: center;
    margin: 0;
}
.buy-insuran{
    position: fixed;
    width: 1.35333rem;
    height: 1.7333rem;
    right:5%;
    top:20%;
    z-index: 9999;
}
.buy-insuran img{
    width: 100%;
    height: 100%;
}
.progress .for-liucheng {
    height: 1.33333rem;
    padding: 0.53333rem 0 0 0;
    position: relative; }
.progress .activee {
    background: none !important; }
.progress .liulist {
    display: inline-block;
    width: 2.4rem;
    height: 0.08rem;
    background: #ccc; }
.progress .liulist.for-cur {
    background: #1f7ef2; }
.progress .liutextbox {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0.26667rem; }
.progress .liutextbox .for-cur em {
    background: #1f7ef2; }
.progress .liutextbox .for-cur strong {
    color: #ccc;
    margin-top: 0.26667rem; }
.progress .liutextbox .for-cur strong.active {
    color: #111; }
.progress .liutextbox .liutext {
    display: inline-block;
    width: 2.4rem; }
.progress .liutextbox .liutext strong {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-left: -0.5rem;
    height: 0.69333rem;
    line-height: 0.69333rem;
    font-weight: 400;
    color: #666; }
.progress .liutextbox .liutext:nth-of-type(4) strong{
    margin-left: -0.79898rem;
}
.progress .liutextbox .liutext:nth-of-type(5) strong{
    margin-left: -0.79898rem;
}
.progress .liutextbox .liutext:nth-of-type(8) strong{
    margin-left: -0.79898rem;
}
.progress .liutextbox .liutext em {
    position: absolute;
    top: 14px;
    display: inline-block;
    width: 0.32rem;
    height: 0.32rem;
    -moz-border-radius: 0.32rem;
    -webkit-border-radius: 0.32rem;
    border-radius: 0.32rem;
    background: #ccc;
    line-height: 0.16rem;
    font-style: normal;
    font-weight: bold;
    color: #fff; }
.progress .liutextbox .liutext em.active {
    background: #1f7ef2; }

.step-line {
    background: #F5F6F7;
    /*margin-left: 0.26667rem;*/
    padding-left: 0.8333rem;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 2rem;
    white-space: nowrap; }
 .fl{float: left;}
 .fr{float: right;}   
/*工程功能*/
.pos-rel{position: relative;}
.eng-box{
	background: #fff;
	overflow-y: auto;color: #000;max-height: 100%;
}
.eng-title{
	padding: 0.6rem;
	font-size: 0.8rem;
	border-bottom: 4px solid #CACACA;
	position: relative;
	font-weight: bold;
}
.eng-title span{
	position: absolute;width: 33.333%;
	bottom: -4px;height: 4px;background: #1F7EF2;
}
.eng-itembox{
	border-bottom: 1px solid #cacaca;height: 2.33333rem;
	font-size: 0.8rem;position: relative;padding-left: 1.2037rem;
	padding-right: 0.55556rem;display: flex;align-items: center;
}
.eng-itembox span:first-child img{
	width: 0.807rem;
	position: absolute;left: 0.15556rem;top: 0.8rem;
}
.eng-itembox .sanjiao{
	position: absolute;
	right: 0.55556rem;
	bottom: 0.9rem;
    font-size: 0.7rem;
}
.sanjiao>img{width: 0.2777rem;
	height: 0.2777rem;}
.eng-address {
	display: flex;justify-content: space-between;
}
.eng-address-detail{
	color: #B8BABC;
}
.eng-B8BABC{color: #B8BABC;}
.eng-address-detail img{
	width: 0.2777rem;height: 0.2777rem;margin-left: 0.1851rem;
}
.eng-itembox .eng-adress-input{
	border: none;font-size: 0.7rem;margin: 0rem;
	padding: 0rem;height: auto;width: 100%;
}


.eng-itembox span:first-child{
	display: inline-block;width:40%;
}
.eng-itembox input{
	border: none;font-size: 0.7rem;width: 107%;
	margin: 0rem;padding: 0rem;height: 2.0rem;
}

.eng-type{
	font-size: 0.4rem;
    height: 2rem;
    line-height: 2rem;
    text-align: left;
    padding-left: 2rem;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}
.btn_info:disabled{background: #ccc;color: #000;}

.eng-sub-btn .btn{
	width: 90%;margin-left: 5%;height: 2rem;
}
.eng-sub-btn .active{
	background: #1F7EF2;
}
.eng-sub-btn{
	position: absolute;bottom: .5925rem;overflow: hidden;
	width: 100%;font-size: 0.7rem;
}
.bitian{
			color: #D0021B ;
}
