@charset "utf-8";

/* 产品介绍 */

.items-products .items-block {
    padding: 0 94px;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 58px;
}

.items-products .item {
    width: 260px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .15);
    border-radius: 5px;
    padding-bottom: 30px;
}

.items-products .img-block {
    margin-top: 20px;
    height: 90px;
}

.items-products .img-block img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.items-products .item-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.items-products .item-info {
    text-align: center;
    margin-top: 20px;
}

.items-products .item-p {
    color: #666;
    line-height: 1.8571em;
}

.items-products .item-special-info {
    text-align: center;
    margin-top: 15px;
}

.items-products .item-special-info .item-s-title {
    font-weight: bold;
}

.items-products .item-special-info .item-s-p {
    color: #ff7f01;
    margin-top: 8px;
}

/* 服务优势 */

.items-service-advantage .item-a {
    display: block;
    position: relative;
    overflow: hidden;
    margin-top: 54px;
}

.items-service-advantage .item-btn {
    transition: all .3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-64%);
    bottom: 36px;
    width: 146px;
    height: 30px;
    line-height: 30px;
    border-radius: 50px;
    font-size: 16px;
    background-color: var(--main-color);
}

.items-service-advantage .item-a:hover .item-btn {
    background-color: #EC9A48;
}

/* 服务流程 */

.items-service-flow .img-block {
    margin-top: 60px;
}

/* 常见问题 */

.items-qa .items-block {
    counter-reset: qa-num;
    margin-top: 50px;
}

.items-qa .item {
    counter-increment: qa-num;
    margin-top: 15px;
    color: #666;
}

.items-qa .item-title {
    padding-left: 26px;
    font-weight: bold;
    position: relative;
}

.items-qa .item-title:before {
    content: counter(qa-num);
    box-sizing: border-box;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #666;
    text-align: center;
    line-height: 16px;
    left: 0;
    top: 0;
}

.items-qa .item-p {
    padding-left: 26px;
    margin-top: 15px;
}