* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 微软雅黑;
}

html, body {
    height: 100%;
    overflow: auto;
    margin: 0;
}

html,
body {
    font-size: 16px;
    line-height: 1;
    background-color: #f6f6f6;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
li {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.clearfix:after {
    height: 0;
    content: " ";
    display: block;
    overflow: hidden;
    clear: both;
}

.clearfix {
    zoom: 1;
    /*IE低版本浏览器不支持after伪类所以要加这一句*/
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.ofh {
    overflow: hidden;
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
}

.container {
    width: 1024px;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.menu {
    position: absolute;
    right: 0;
    top: 25px;
    overflow: hidden;
    display: inline-block;
}

.menu-item {
    float: left;
    width: 100px;
    text-align: center;
    position: relative;
}

.menu-item a {
    font-size: 18px;
    color: #333333;
    line-height: 40px;
    display: block;
    padding-bottom: 5px;
}

.menu-item a:hover {
    color: #0071BC;
}

.menu-item::after {
    content: '';
    display: block;
    /*开始时候下划线的宽度为100%*/
    width: 100%;
    height: 3px;
    position: absolute;
    background: #0071BC;
    transition: all 0.3s ease-in-out;
    /*通过transform的缩放scale来让初始时x轴为0*/
    transform: scale3d(0, 1, 1);
    /*将坐标原点移到元素的中间，以原点为中心进行缩放*/
    transform-origin: 50% 0;

}

.menu-item:hover::after {
    transform: scale3d(1, 1, 1);
}

.menu-item.active a {
    color: #0071BC;
}

.border-bottom {
    width: 100%;
    display: block;
    height: 3px;
    background: #0071BC;
}

[v-cloak] {
    display: none;
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    display: block;
}

.content-box {
    background-image: url("../img/beijing.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 30px;
}

.project {
    background-image: url("../img/project-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fff;
}

.content {
    width: 1024px;
    max-width: 1024px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px solid #eee;
    background-color: #fff;
    opacity: 1;
    position: relative;
}

.notice-box {
    position: absolute;
    left: -150px;
    top: 0;
}

.notice-box img {
    cursor: pointer;
}

.notice-box .close {
    text-align: right;
    font-size: 14px;
}

.notice-box .close span {
    display: inline-block;
    line-height: 20px;
    cursor: pointer;
}

.notice-box .close span:hover {
    color: #0071BC
}

.project-bg {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 1024px;
    height: 310px;
    opacity: 0.5;
}

.con-head {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    /*height: 38px;*/
    /*line-height: 34px;*/
    margin-bottom: 25px;
    position: relative;
}

.con-title {
    font-size: 30px;
    color: #036EB8;
    display: inline-block;
    position: relative;
}

.con-title .border-bottom {
    position: absolute;
    bottom: -12px;
}

.con-con {
    width: 100%;
    position: relative;
}

.project-text {
    width: 500px;
    word-wrap: break-word;
    word-break: normal;
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 22px;
}

.con-img {
    position: absolute;
    right: 0;
    width: 43%;
}

.con-img img {
    display: block;
    width: 424px;
}

.know-detail {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    background: #0071BC;
    color: #fff;
    font-size: 16px;
    padding: 0 5px;
    margin: 30px 0;
    cursor: pointer;
}

.know-detail:hover {
    background: #025893;
}

.news {
    width: 1024px;
    margin: 0 auto 30px;
    max-width: 1024px;
}

.news-left {
    width: 660px;
    border: 1px solid #eee;
    background: #fff;
    padding: 30px 30px 0;
    height: 446px;
    position: relative;
}

.entrance {
    width: 336px;
    border: 1px solid #eee;
    background: #fff;
    padding: 30px;
    height: 446px;
}

.news-head {
    position: relative;
}

.know-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #999;
    cursor: pointer;
    z-index: 4;
}

.know-more:hover {
    color: #0071BC;
}

.know-more span {
    font-size: 16px;
}

.news-item {
    margin: 30px 0;
}

.new-title {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    cursor: pointer;
}

.new-title a:hover {
    color: #0071BC;
    text-decoration: underline;
}

.new-title a:active {
    color: #0071BC;
    text-decoration: underline;
}

.news-text {
    font-size: 14px;
    color: #999;
}

.text-over {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.news-date {
    width: 15%;
    border-right: 1px solid #C3D3DD;
    margin-right: 5%;
}

.news-con {
    width: 80%;
}

.news-day {
    color: #ED1C24;
    font-size: 30px;
    display: block;
    margin-bottom: 5px;
}

.news-month {
    display: block;
    color: #808080;
    font-size: 14px;
}

.user-login {
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: 12px;
    padding: 30px 30px 50px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.user-title {
    font-size: 28px;
    color: #5D5D5D;
    display: block;
    margin-bottom: 10px;
}

.user-text {
    font-size: 18px;
    color: #5D5D5D;
    display: block;
}

.user-img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 50px;
    background-image: url("../img/login2.png");
}

.sector {
    box-sizing: border-box;
    width: 100px;
    border: solid 90px transparent;
    border-left-color: #F6F6F6;
    border-radius: 50%;
    position: absolute;
    right: -72px;
    bottom: -107px;
    border-top-color: #f6f6f6;
}

.process-head {
    width: 62%;
    margin-bottom: 50px;
}

.process-box {
    background: #fff;
}

.process {
    overflow: hidden;
}

.english {
    font-weight: bold;
    font-size: 36px;
    color: #EDF2F5;
    position: absolute;
    width: 600px;
    z-index: 3;
    margin-left: 10px;
}

.carousel-info {
    width: 53%;
    padding-top: 20px;
    color: #fff;
    display: inline-block;
}

.carousel-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-title span {
    margin-left: 20px;
    font-size: 18px;
}

.carousel-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.content-box .el-carousel__item:nth-child(3) {
    background-image: url("../img/carousel1.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.content-box .el-carousel__item:nth-child(4) {
    background-image: url("../img/carousel2.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.content-box .el-carousel__item:nth-child(5) {
    background-image: url("../img/carousel3.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.content-box .el-carousel__item:nth-child(6) {
    background-image: url("../img/carousel4.png");
    background-size: 100%;
    background-repeat: no-repeat;
}


.content-box .el-carousel__indicator:nth-child(1).is-active .el-carousel__button {
    background-image: url("../img/step1.png");
}

.content-box .el-carousel__indicator:nth-child(2).is-active .el-carousel__button {
    background-image: url("../img/step2.png");
}

.content-box .el-carousel__indicator:nth-child(3).is-active .el-carousel__button {
    background-image: url("../img/step3.png");
}

.content-box .el-carousel__indicator:nth-child(4).is-active .el-carousel__button {
    background-image: url("../img/step4.png");
}

.content-box .el-carousel__indicator.is-active {
    background-color: transparent;
}

.content-box .el-carousel__indicator:hover {
    background: transparent;
}

.content-box .el-carousel__button {
    background-image: url("../img/step5.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 89px;
    height: 33px;
    background-color: transparent;
    opacity: 1;
}

.content-box .el-carousel__indicator:nth-child(4) .el-carousel__button {
    background-image: url("../img/step-last.png");
}

.content-box .el-carousel__indicators {
    width: 390px;
    margin-left: 290px;
    top: -80px;
}

.content-box .el-carousel--horizontal {
    overflow-x: initial;
}

.question-box {
    width: 1024px;
    margin: 0 auto;
    max-width: 1024px;
    padding-bottom: 50px;
}

.question-list {
    padding: 0 30px;
    background-color: #fff;
    background-image: url("../img/ditu.png");
    background-repeat: no-repeat;
    background-position: 80% 80%;
    background-size: 50%;
}

.question {
    width: 590px;
    border: 1px solid #eee;
    background-image: url("../img/wenti.png");
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
}

.project-data {
    width: 400px;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    /*padding: 0 20px 30px;*/
}

.question-head {
    height: 63px;
    line-height: 63px;
    font-size: 30px;
    color: #036EB8;
    padding: 0 30px;
}

.answer-item {
    padding-top: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.answer-item:hover {
    border-bottom: 1px solid #0C77BF;
}

.answer-item:hover .question-text {
    color: #0C77BF;
}

.answer-item:hover .answer-text {
    color: #0C77BF;
}

.answer-img {
    /* display: inline-block;
    position: absolute;
    top: 0;
    left: 0; */
}

.answer-img-sm { /* 新加 */
    height: 28px;
    padding: 0 3px;
}

.question-text {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #333;
    width: 90%;
}

.answer-box {
    /* position: relative;
    padding:0 0 5px 50px; */
    padding-bottom: 2px;
}

.answer-text {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #666666;
    width: 90%;
}

.more-box {
    /* position: relative;
    padding: 20px 0 10px; */
    cursor: pointer;
    float: right;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #999;
    margin-right: 30px;
}

.more-box:hover {
    color: #0071BC;
}

.project-head img {
    width: 100%;
}

.project-list {
    background: #fff;
    padding: 0 30px;
    height: 300px;
}

.project-item {
    color: #4D4D4D;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
    width: 100%;
}

.project-item img {
    position: absolute;
    right: 0;
    top: 8px;
    cursor: pointer;
    z-index: 3;
}

.project-item img:hover {
    transform: scale(1.1);
}

.project-item a {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 2;
}

.project-data .more-box {
    /* margin-top: 20px; */
}

/* 新闻公告 */
.contentNews-box {
    background-position: center;
    padding-top: 20px;
    /*padding-bottom: 50px;*/
    background-image: url("../img/neiye.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.projectNews {
    background-image: linear-gradient(to top right, #cae3e5, #fff 40%);
}

.news-head {
    /*margin: 25px 0 0 20px;*/
}

.head_title {
    font-size: 40px;
}

.title-left {
    color: #585756;
}

.title_right {
    color: #1d7fc0;
    margin-left: 10px;
}

.newstitle {
    color: #1d7fc0;
    font-size: 25px;
    margin: 20px 0 25px 0;
}

.newsList {
    margin-top: 50px;
}

.newsListItem {
    margin: 10px 0 35px;
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 22px 0;
    cursor: pointer;
    position: relative;
}

.newsListItem:hover {
    border-bottom: 1px solid #0C77BF;
}

.newsListItem:hover a {
    color: #0C77BF;
}

.newsList:nth-child(1) {
    border-bottom: 2px solid #1d7fc0;
}

.list_title {
    color: #4C9CD1;
    font-size: 19px;
    width: 12%;
    font-weight: bold;
}

.new_content {
    margin-left: 10px;
}

.content_title {
    font-size: 24px;
    margin-bottom: 20px;
}

.content_text {
    margin-top: 10px;
    color: #6b6b6b;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 100%;
}

/* 新闻公告详情 */
.headNewsDetail {
    width: 80%;
    padding: 50px;
    margin: 0 auto;
}

.contentNewsDetail-box {
    background-image: url("../img/background_news.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 30px;
}

.detailTitle {
    font-size: 25px;
    background-image: url("../img/zhuangshi.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    height: 60px;
    line-height: 60px;
}

.detailTime {
    font-size: 20px;
    color: #1d7fc0;
    font-weight: bold;
}

.detailNumbers {
    font-size: 15px;
    color: #bcbcbc;
    margin-left: 15px;
}

.detail {
    margin: 30px 0 20px 0;
}

.newsDetail {
    margin: 50px 0;
}

.newsDetail img {
    max-width: 100%;
    display: block;
}

.detailText {
    color: #666;
    line-height: 26px;
}

.bread {
    text-align: right;
    padding-bottom: 30px;
}

.bread span {
    cursor: pointer;
}

.el-breadcrumb {
    position: absolute;
    right: 0;
}

.el-pagination {
    margin: 0 auto;
    width: 29%;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
    background: #0071bd;
    color: #FFF;
}

.el-pagination.is-background .el-pager li {
    border-radius: 50%;
    height: 31px;
    line-height: 31px;
    background-color: white;
}

.el-pagination__total {
    margin-left: 15px;
}

#app .el-pagination > .btn-next,
#app .el-pagination > .btn-prev {
    border-radius: 30px;
    width: 60px;
    background: #fff;
    border: 1px solid #ccc;
}

.btn-prev {
    background: white;
    padding: 0px 10px 0px 10px;
    color: black;
    border-radius: 10px;
    border: 1px solid #ccc;
    line-height: 28px;
}

.process-foot {
    width: 100%;
    text-align: right;
    color: #666666;
    font-size: 12px;
    margin-top: 20px;
}

.process-foot a {
    color: #0071BC;
}

.download {
    position: absolute;
    right: 0px;
    top: -16px;
    height: 44px;
    display: inline-block;
    cursor: pointer;
    z-index: 4;
}

.download:hover {
    transform: scale(1.1);
}

.hover-user.user-login-project .user-title {
    color: #0071BC;
    font-weight: bold;
}

.hover-user.user-login-project .sector {
    border-left-color: #0071BC;
    border-top-color: #0071BC;
}

.hover-user.user-login-project .user-img {
    background-image: url("../img/login1.png");
}

.hover-user.user-login-deputy .user-title {
    color: #0071BC;
    font-weight: bold;
}

.hover-user.user-login-deputy .sector {
    border-left-color: #0071BC;
    border-top-color: #0071BC;
}

.hover-user.user-login-deputy .user-img {
    background-image: url("../img/login1.png");
}

.hover-user.user-login-project {
    box-shadow: 0 0 10px #cedfe7;
}

.hover-user.user-login-deputy {
    box-shadow: 0 0 10px #cedfe7;
}

.project-item:hover {
    border-bottom: 1px solid #0071BC;
}

.project-item:hover a {
    color: #0071BC;
}

.el-carousel__container {
    height: 326px;
}

.newsListItem a {
    display: block;
    height: 44px;
    width: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    top: -14px;
    line-height: 44px;
    color: #333;
}

.news-list-item {
    margin: 10px 0 35px;
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 22px 0;
    cursor: pointer;
    position: relative;
}

.news-list-item:hover .list_title {
    color: #4C9CD1;
}

.news-list-item:hover {
    border-bottom: 1px solid #4C9CD1;
}

.news-list-item:hover .content_title {
    color: #0071BC;
}

.news-list-item:hover .content_text {
    color: #0071BC;
}

.el-pagination__jump .el-input__inner {
    border-radius: 13px;
}

.detail-content {
    width: 1024px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 60px 30px;
    border: 1px solid #eee;
    background-color: white;
}

.news-detail-head {
    position: relative;
    border-bottom: 2px solid #dfdddd;
}

.con-head .switch {
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 99;
}

.con-head .switch a {
    font-size: 18px;
    color: #808080;
}

.con-head .switch .split {
    font-size: 18px;
    color: #808080;
    margin: 0 20px;
}

.con-head .switch .active {
    color: #0470b8;
    font-weight: bold;
}
.support a,
.support a:link,
.support a:hover{
    color: #fff;
    text-decoration: underline;
}


