html,body {
    background-color: #FFFFFF;
}
.project-detail {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
}
.project-title {
    font-family: MicrosoftYaHei-Bold;
	font-size: 24px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #000000;
}
.source-date,.source-date1 {
    margin-top: 28px;
    width: 100%;
    font-size: 14px;
    color: #264c87;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.source-date:before {
    content: '';
    width: 30%;
    height: 1px;
    background-color: #264c87;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.source-date:after {
    content: '';
    width: 30%;
    height: 1px;
    background-color: #264c87;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.source-date1:before {
    content: '';
    width: 40%;
    height: 1px;
    background-color: #264c87;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.source-date1:after {
    content: '';
    width: 40%;
    height: 1px;
    background-color: #264c87;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.source {
    font-family: MicrosoftYaHei-Bold;
    font-weight: bold;
}
.date {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}
.date:before {
    content: '';
    width: 1px;
    height: 14px;
    background: #264c87;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.section {
    text-align: left;
    text-indent: 2em;
    line-height: 34px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
    word-wrap: break-word;
}
.section a {
    color: #264c87;
}

.project-subTitle {
    font-size: 16px;
    font-weight: bold;
    color: #010101;
    margin: 20px 0;
}
.project-subTitle span {
    font-weight: 100;
}
.img-box {
    display: flex;
    justify-content: space-between;
}
.img-box img {
    width: 45%;
}
.subSection {
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
    text-indent: 0;
}
.tables {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
}
.tables > div {
    background-color: #f3f3f3;
    padding: 10px;
}
.tables-title {
    width: 200px;
    max-width: 200px;
    text-align: right;
}
.tables-content {
    background: #f3f3f3;
    font-weight: bold;
    margin-left: 2px;
    text-align: left;
    width: calc(100% - 200px);
}
@media screen and (max-width: 550px){
    .tables-title {
        width: 150px;
    }
    .tables-content {
        width: calc(100% - 150px);
    }
    .source-date:before {
        display: none;
    }
    .source-date:after {
        display: none;
    }
    .source-date1:before {
        display: none;
    }
    .source-date1:after {
        display: none;
    }
    .source-date {
        font-size: 12px;
    }
    .date {
        margin-left: 10px;
        padding-left: 10px;
    }
}