.buy-product { background-color: #fff; }
.product-item {
    position: relative;
    padding: 10px 14px 10px 11px;
}
.product-name,.product-summary { letter-spacing: .1em; }
.product-name {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.product-summary {
    font-size: 13px;
    color: #4c4c4c;
}
.product-item .price {
	width: 100%;
    height: 26px;
    line-height: 26px;
	font-size: 20px;
	font-weight:bold;
	color: #ff5000;
	margin-bottom: 10px;
}
.product-item .price span{ font-size:14px; }
.originalPrice {
    margin-left: 35px;
    font-size: 13px;
    color: #4c4c4c;
    text-decoration: line-through;
}
.icon {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 62px;
    height: 22px;
    overflow: hidden;
}

@-webkit-keyframes blink {
    from {
        left: -62px;
    }
    to {
        left: 62px;
    }
}
@keyframes blink {
    from {
        left: -62px;
    }
    to {
        left: 62px;
    }
}
.icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -62px;
    width: 31px;
    height: 22px;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
    background-image: -webkit-linear-gradient(to right,transparent,rgba(255,255,255,.3),transparent);
    background-image: linear-gradient(to right,transparent,rgba(255,255,255,.3),transparent);
    -webkit-animation:  blink 3s infinite;
    animation: blink 3s infinite;
}

/*专业服务、安全可靠、急速办理*/
.promote {
    position: relative;
    margin-top: 5px;
    background-color: #fff;
    overflow: hidden;
}
.promote li {
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    color: #4c4c4c;
}
.promote li img {
    display: inline-block;
    width: 25px;
    object-fit: cover;
    vertical-align: middle;
}
.promote li:first-child,
.promote li:last-child {
    position: absolute;
    top: 0;
}
.promote li:first-child {
    left: 0;
    padding-left: 11px;
}
.promote li:nth-child(2) {
    text-align: center;
}
.promote li:last-child {
    right: 0;
    padding-right: 14px;
}

/*相似产品*/
.maybeLike { 
	padding: 15px 12px;
	border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
	background:white;
	margin-bottom:10px;
}
.maybeLike-name {
    font-size: 16px;
    color: #282828;
}
.recommend {
    padding-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;/*可省略（默认）*/
    justify-content: space-between;/*可省略*/
}
.recommend li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.recommend li:nth-child(2) {
    margin-right: 10px;
    margin-left: 10px;
}
.recommend li a {
    position: relative;
    display: block;
}
.recommend li img {
    display: block;
    width: 100%;
}
.recommend li p {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    font-size: 12px;
    text-align: right;
    color: #282828;
}

/*服务流程*/
.progress {
    margin-top: 5px;
    padding: 12px;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    background-color: #fff;
}
.progress-name {
    font-size: 16px;
    color: #282828;
}
.progress-line {
    display: flex;
    margin-top: 20px;
    margin-bottom: 50px;
    border-bottom: 3px dashed #5b97e8;
}
.progress-line li {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: -41px;
}
.circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    background-color: #5b97e8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.progress-line li p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #282828;
}

/*需准备资料、完成后所得资料*/
.needFiles,
.getFiles {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px;
    margin-top: 10px;
    min-height: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 40%;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}
.needFiles { background-image: url(../../images/buy/needFiles.png); }
.getFiles {
    margin-bottom: 10px;
    background-image: url(../../images/buy/getFiles.png);
}
.needFiles dl,
.getFiles dl {
    width: 50%;
}
.needFiles dl dt,
.getFiles dl dt {
    margin-bottom: 15px;
    font-size: 16px;
    color: #282828;
}
.needFiles dl dd,
.getFiles dl dd {
    margin-bottom: 5px;
    font-size: 14px;
    color: #989898;
}
.getFiles dl dd img {
    display: block;
    max-width: 100%;
}

/*固定底端*/
.fixbottom {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 55px;
    background-color: #eaeaea;
}
.pay_consult { overflow: hidden; }
.pay_consult li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    height: 55px;
    width: 30%;
}
.pay_consult li:first-child,
.pay_consult li:nth-child(2) { width: 20%; }
.pay_consult li:nth-child(3) { background-color: #ffaa02; }
.pay_consult li:nth-child(4) { background-color: #ff5000; }
.pay_consult li a {
    display: block;
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    letter-spacing: .1em;
    text-align: center;
    color: #fff;
}
.pay_consult li:first-child a,
.pay_consult li:nth-child(2) a {
    line-height: normal;
    padding-top: 4px;
    color: #4c4c4c;
    font-size: 12px;
    border-top: 1px solid #d7d7d7;
}
.pay_consult li:first-child a:active,
.pay_consult li:nth-child(2) a:active { color: #007aff; }
.pay_consult li:nth-child(3) a:active { background-color: #666; }
.pay_consult li:nth-child(4) a:active { background-color: #ff4c4c; }
.pay_consult li .navPic {
    position: relative;
    top: 3px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../../images/fixnav/home_cur.png);
    background-image: url(../../images/fixnav/center_cur.png);
}
.pay_consult li:nth-child(1) .navPic { background-image: url(../../images/fixnav/home.png); }
.pay_consult li:nth-child(1):active .navPic { background-image: url(../../images/fixnav/home_cur.png); }
.pay_consult li:nth-child(2) .navPic { background-image: url(../../images/fixnav/center.png); }
.pay_consult li:nth-child(2):active .navPic { background-image: url(../../images/fixnav/center_cur.png); }

/*购买检查信息*/
.checkInfo {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000000;
    background-color: rgba(0,0,0,.6);
}
.showInfo {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 20px 0 10px;
    background-color: #fff;
}
.close_layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 15px solid transparent;
    background: url(../../images/buy/close_layer.png) no-repeat center / contain;
    cursor: pointer;
}
.showInfo .btn {
    color: #4c4c4c;
    display: inline-block;
    width: 80px;
    height: 25px;
    line-height: 26px;
    letter-spacing: .1em;
    text-align: center;
    -webkit-box-shadow: inset 0 0 0 1px #4c4c4c;
    box-shadow: inset 0 0 0 1px #4c4c4c;
    border: 10px solid transparent;
    cursor: pointer;
}
.showInfo .btn.cur {
    color: #ff5000;
    -webkit-box-shadow: inset 0 0 0 1px #ff5000;
    box-shadow: inset 0 0 0 1px #ff5000;
}
.changeInfo { position: relative; }
.changeInfo .error_tip:empty { display: none; }
.changeInfo .error_tip {
    display: block;
    position: absolute;
    top: -10px;
    left: 10px;
    padding-top: 0;
    font-size: 12px;
    color: #ff5f58;
}
.changeInfo .error_tip.wrong { display: block; }
.info > li,
.changeInfo > li {
    position: relative;
    padding-left: 10px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #4c4c4c;
}
.info > li:last-child,
.changeInfo > li:last-child { height: 100px; }
.changeInfo > li input {
    width: calc(100vw - 100px);
    height: 30px;
    background-color: transparent;
    border: none;
}
.info textarea,
.changeInfo textarea {
    width: calc(100vw - 100px);
    height: 80px;
    vertical-align: text-top;
    border: none;
}
.word {
    position: absolute;
    top: 20px;
    left: 10px;
    font-size: 12px;
}
.infoList ul:not(:first-child) { display: none; }
.buyNow {
    margin-left: -11px;
    display: block;
    width: 100vw;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    letter-spacing: .1em;
    color: #fff;
    background-color: #ff5000;
    border: none;
}