
.main {
    width: 1266px;
    margin: 0 auto;
}

html, body {
    font-family: 'Microsoft Yahei', Arial, sans-serif;
}

table,table tr td {
    border-color: #ccc;
    border-width: 1px;
    border-style: solid;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.common-positon-r {
    position: relative;
}

.font-size-0 {
    font-size: 0;
}

.w100 {
    width: 100%;
}

.content {
    padding-top: 94px;
}

.common-center {
    margin: 0 auto;
}

.common-bg-w {
    background-color: white;
}

.common-bg-e7e {
    background-color: #e7e7e7;
}

.common-bg-f5f {
    background-color: #f5f5f5;
}

.overOne {
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 控制内容不超出容器边界 */
    text-overflow: ellipsis; /* 显示省略号 */
}

.overTwo {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 2; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}

.overThree {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 3; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}

/* 文字介绍 */
.common-introduce .title {
    font-size: 32px;
    color: #000;
    text-align: center;
}

.common-introduce {
    width: 100%;
    padding: 64px 0 84px;
}

.common-introduce p {
    text-align: center;
}

.common-introduce > .main > div {
    width: 100%;
    margin-top: 47px;
    font-size: 18px;
    line-height: 24px;
    color: #666;
}

.right-fiexed {
    position: fixed;
    top: 409px;
    right: 0px;
}

.right-fiexed li {
    background-color: rgba(255, 255, 255, .2);
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    border-radius: 2px;
}

.right-fiexed li:hover {
    cursor: pointer;
    background-color: #EA1819;
}

.right-fiexed .qq {
    width: 24px;
    height: 27px;
}

.right-fiexed .info {
    width: 24px;
    height: 27px;
}

.right-fiexed .phone {
    width: 26px;
    height: 26px;
}


@media (max-width: 1440px) {
    .proces-step {
        max-height: 1000px;
        overflow: scroll;
    }
}

/* step */
.common-step .step-left {
    width: 50%;
}

.common-step .step-right {
    margin-left: 49%;
    width: 50%;
}

.common-step .step-start, .common-step .step-wrap {
    display: flex;
    flex-direction: row;
}

.common-step .step-content {
    flex: 1
}

.common-step .dots-line {
    width: 12px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.common-step .step-left .dots-line {
    padding-left: 50px;
}

.common-step .step-right .dots-line {
    padding-right: 50px;
}

.common-step .dots-line .start-style {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
}

.common-step .dots-line > span {
    width: 4px;
    height: 60px;
    background: rgba(255, 255, 255, .35);
}

.common-step .dots-line .start-style span {
    position: absolute;
    width: 4px;
    height: 4px;
    border: 50%;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common-step .step-title .title {
    font-size: 40px;
    color: #fff;
    padding: 30px 0;
}

.common-step .step-left .step-title .title {
    text-align: right;
}

.common-step .step-right .step-title .title {
    text-align: left;
}

.common-step .step-title .title-dots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.common-step .step-title .title-dots span {
    width: 4px;
    flex: 1;
    background: rgba(255, 255, 255, .35);
}

.common-step .step-title .title-dots .dot {
    background-color: #F02A2B;
    width: 10px;
    height: 10px !important;
    flex: none;
    border-radius: 50%;
    margin: 5px 0;
    height: 10px;
}

.common-step .step-fonts {
    font-size: 24px;
    color: #fff;
    line-height: 30px;
}

.common-step .step-fonts {
    text-align: left;
}

.common-step .dots-line .white-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    margin: 3px 0;
    flex: none
}

.common-step .dots-line span {
    flex: 1
}

/* 分页 */
.common-page-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.common-page-wrap ul {
    display: flex;
    flex-direction: row;
}

.common-page-wrap ul li {
    padding: 0px 6px;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    color: #999;
    height: 28px;
    line-height: 28px;
    border-radius: 5px;
}

.common-page-wrap li:hover {
    cursor: pointer;
}

.common-page-wrap li:not(:last-child) {
    margin-right: 5px;
}

.common-page-wrap ul .common-page-one-number {
    width: 28px;
    height: 28px;
    padding: 0 !important;
    border-radius: 5px;
    text-align: center;
    line-height: 28px;
}

.common-page-wrap ul .common-page-actived {
    background-color: #D70C19;
    border: 1px solid #D70C19;
    color: #fff;
}

.common-page-wrap ul .common-page-no {
    border: none !important;
}