/*!
 * 详情页
 * author:zzongyi
 * date:2021-10-29
 */
/* 内容 */
.content {
    background-color: #fff;
    border-radius: 4px;
    padding: 15px 25px 51px 25px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.title {
    width: 70%;
    padding-top: 21px;
    padding-bottom: 21px;
    line-height: 32px;
    text-align: center;
    margin-left: 15%;
    font-size: 24px;
}

/* 信息 */
.infor {
    display: flex;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    color: #aaa;
    background-color: #f8f9fb;
}

.infor li .font-color {
    color: #333;
    cursor: pointer;
}

.infor li {
    margin: 0 10px;
}

.font-size span {
    padding: 0 2px;
}

/* 图片 */

.img {
    margin-top: 30px;
    text-align: center;
}

.img img {
    display: inline-block;
}

/* 文字区 */
.text {
    margin-top: 19px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}
.text p {
    line-height: 34px;
    /* text-indent: 27px; */
}

/* 下载 */
.download {
    margin-top: 19px;
}

.download a {
    display: block;
    color: #b01127;
    height: 38px;
    line-height: 38px;
}

.download .doc {
    padding-left: 27px;
    background: url('../images/download-doc.png') left center no-repeat;
}

.download .pdf {
    padding-left: 27px;
    background: url('../images/download-pdf.png') left center no-repeat;
}

/* 新增 */
* {
    box-sizing: border-box;
}

.container {
    width: 1333px;
}

.step-list {
    display: flex;
    margin: 0 25px;
}

.step-item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 9);
    font-size: 16px;
    position: relative;
}

.step-item-name {
    cursor: pointer;
    line-height: 24px;
    margin-bottom: 6px;
}

.step-item-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.step-item::after {
    content: "";
    position: absolute;
    width: calc(100% - 34px);
    height: 6px;
    border-radius: 44px;
    right: 6px;
    bottom: 9px;
}

.step-item.has-info .step-item-name {
    color: #b01127;
}

.step-item.no-info .step-item-name {
    color: #A8B6C1;
    cursor: no-drop;
}

.step-item.active .step-item-name {
    color: #FFAF23;
}

.step-item.has-info .step-item-icon {
    background: #b01127 url("../images/has.png") no-repeat center;
}

.step-item.no-info .step-item-icon {
    background: #A8B6C1 url("../images/none.png") no-repeat center;
}

.step-item.active .step-item-icon {
    background: #FFAF23 url("../images/has.png") no-repeat center;
}

.step-item.has-info::after {
    background: #b01127;
}

.step-item.no-info::after {
    background: #A8B6C1;
}

.step-item.active::after {
    background: #FFAF23;
}

.news {
    padding: 7px 25px;
    margin: 26px 0 0;
}

.news-item {
    height: 48px;
    font-size: 16px;
    padding: 0 10px 0 20px;
    display: flex;
    align-items: center;
    background: url("../images/icon.png") no-repeat left center;
    cursor: pointer;
}

.news-item+.news-item {
    margin-top: 6px;
}

.news-item-name {
    width: calc(100% - 125px);
    line-height: 24px;
    margin-right: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item-time {
    color: #999;
}

.news-item.active {
    padding-left: 32px;
    background: rgba(176, 17, 39, 0.06) url("../images/icon.png") no-repeat 12px center;
}

.news-item.active .news-item-name {
    color: #b01127;
    width: calc(100% - 137px);
}

.news-item.active .news-item-time {
    color: #b01127;
}

.news.active {
    height: 170px;
    margin-bottom: 16px;
    padding: 7px 6px 7px 20px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
}

.news-list {
    height: 100%;
    overflow: auto;
    padding-right: 16px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:start:decrement {
    display: block;
}

::-webkit-scrollbar-button:vertical:end:decrement,
::-webkit-scrollbar-button:vertical:start:increment {
    display: none;
}

::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-track:horizontal,
::-webkit-scrollbar-track:vertical {
    border-color: transparent;
    border-style: solid;
}

::-webkit-scrollbar-track:vertical::-webkit-scrollbar-track:horizontal {
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb {
    min-height: 28px;
    padding-top: 100;
    background-color: #EBEBEB;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 5px;
    -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.35);
}

::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-track:horizontal,
::-webkit-scrollbar-track:vertical {
    border-width: 0;
}

::-webkit-scrollbar-track:hover {
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track:active {
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.07);
}

.scrollbar-hover::-webkit-scrollbar,
.scrollbar-hover::-webkit-scrollbar-button,
.scrollbar-hover::-webkit-scrollbar-thumb,
.scrollbar-hover::-webkit-scrollbar-track {
    visibility: hidden;
}

.scrollbar-hover:hover::-webkit-scrollbar,
.scrollbar-hover:hover::-webkit-scrollbar-button,
.scrollbar-hover:hover::-webkit-scrollbar-thumb,
.scrollbar-hover:hover::-webkit-scrollbar-track {
    visibility: visible;
}

/* IE */
body,
div,
html,
li,
ul {
    scrollbar-arrow-color: #ccc;
    scrollbar-face-color: #ccc;
    scrollbar-highlight-color: #fff;
    scrollbar-shadow-color: #fff;
    scrollbar-shadow-color: rgba(255, 255, 255, 0.3);
    scrollbar-track-color: #f2f2f2;
}