@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

@font-face {
    font-family: 'SourceHanSans-Regular';
    src: url('../fonts/SourceHanSans-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSans-Bold';
    src: url('../fonts/SourceHanSans-Bold.otf');
}

@font-face {
    font-family: 'SourceHanSans-Medium';
    src: url('../fonts/SourceHanSans-Medium.otf');
}

body {
    color: #0D0D0E;
    background: #ffffff;
    font: .16rem 'SourceHanSans-Regular', 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #0D0D0E;
    text-decoration: none;
}

a:hover {
    color: #E33D3E;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1199px) {
    .container {
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.header {
    margin-top: .6rem;
    height: .5rem;
    font-size: .14rem;
}

.header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.header .logo img {
    height: .47rem;
}

.header .week {
    margin-right: .55rem;
}

.header .login {
    line-height: .32rem;
    border: 1px #0D0D0E solid;
    width: 1.2rem;
    margin-left: .9rem;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: .5rem;
    height: .5rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav-con {
    border-bottom: 1px #333 solid;
    margin-top: .7rem;
}

.nav li {
    margin-right: .6rem;
}

.nav li:last-child {
    margin-right: 0;
}

.nav li>a {
    font-family: 'SourceHanSans-Medium';
    padding-bottom: .2rem;
}

.nav li.on a {
    color: #E33D3E;
}

.nav li.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background-color: #E33D3E;
}

.search {
    width: 2.8rem;
}

.search input[type='submit'] {
    width: .4rem;
    background: url(../images/search.svg)no-repeat center;
    margin-right: .1rem;
}

.search input[type='text'] {
    width: 100%;
    border: 1px #333 solid;
    height: .38rem;
    padding-left: .2rem;
}

.footer {
    margin-top: 1.3rem;
    border-top: 1px #9E9E9E solid;
    padding-top: 1.1rem;
}

.footer .logo img {
    height: .47rem;
}

.footer .f-nav {
    font-family: 'SourceHanSans-Medium';
    margin-top: .7rem;
}

.footer .f-nav a {
    margin-right: 1.3rem;
}

.footer .f-nav a:last-child {
    margin-right: 0;
}

.footer .copyright {
    margin-top: .8rem;
    font-size: .14rem;
    color: #9E9E9E;
    padding-bottom: 1em;
}

.footer .copyright a {
    color: #9E9E9E;
    margin-left: .1rem;
}

.pub-title {
    font-size: .2rem;
    font-family: 'SourceHanSans-Medium';
}

.homt-news {
    margin-top: .5rem;
    width: 9.3rem;
}

.homt-news .content {
    margin-top: .4rem;
    background-color: #F6F6F6;
}

.homt-news .pic {
    width: 5.1rem;
    height: 5rem;
    overflow: hidden;
}

.homt-news .text-con {
    padding: .3rem .4rem;
}

.homt-news .column {
    color: #E33D3E;
    font-size: .14rem;
    font-family: 'SourceHanSans-Medium';
}

.homt-news .tit {
    font-size: .26rem;
    font-family: 'SourceHanSans-Bold';
    line-height: 1.6;
    margin-top: .35rem;
}

.homt-news .des {
    font-size: .15rem;
    margin-top: .5rem;
    color: #0D0D0E;
}

.homt-news .info {
    position: absolute;
    left: .4rem;
    bottom: .3rem;
    color: #9E9E9E;
    font-size: .14rem;
}

.homt-news .date {
    background: url(../images/date1.png)no-repeat left center;
    padding-left: 25px;
    margin-right: .15rem;
}

.home-hot {
    margin-top: .5rem;
    width: 4.2rem;
}

.home-hot .content {
    margin-top: .4rem;
}

.home-hot .item {
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: .4rem;
    padding-top: .4rem;
}

.home-hot .item:first-child {
    padding-top: 0;
}

.home-hot .item .pic {
    width: 1.7rem;
    height: 1rem;
    overflow: hidden;
    margin-right: .45rem;
}

.home-hot .item .tit {
    font-size: .15rem;
}

.project {
    margin-top: .6rem;
}

.project .item {
    width: 29.5%;
    margin-right: 5.7%;
    margin-top: .6rem;
}

.project .item:nth-of-type(3n) {
    margin-right: 0;
}

.project .item .pic {
    overflow: hidden;
    height: 3.45rem;
}

.project .item .column {
    font-size: .14rem;
    color: #E33D3E;
    font-family: 'SourceHanSans-Medium';
    margin-top: .15rem;
}

.project .item .tit {
    font-size: .2rem;
    height: .8rem;
    margin-top: .1rem;
}

.project .item .info {
    margin-top: .1rem;
    color: #9E9E9E;
    font-size: .14rem;
}

.project .item .date {
    background: url(../images/date1.png)no-repeat left center;
    padding-left: 25px;
    margin-right: .15rem;
}

.home-content {
    margin-top: .6rem;
}

.home-content .item {
    width: 29.5%;
    margin-right: 5.7%;
    margin-top: .5rem;
}

.home-content .item:last-child {
    margin-right: 0;
}

.home-content .pic-con {
    height: 5rem;
    overflow: hidden;
}

.home-content .pic-con .pic {
    height: 3.45rem;
    overflow: hidden;
}

.home-content .pic-con .info {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: .14rem;
    color: #9E9E9E;
}

.home-content .pic-con .info .date,
.home-content .text-con .date {
    background: url(../images/date1.png)no-repeat left center;
    padding-left: 25px;
    margin-right: .15rem;
}

.home-content .pic-con .column {
    font-size: 14px;
    color: #E33D3E;
    margin-top: .2rem;
    font-family: 'SourceHanSans-Medium';
}

.home-content .pic-con .tit {
    font-size: .2rem;
    height: .8rem;
    margin-top: .1rem;
}

.home-content .text-con {
    background-color: #F6F6F6;
    padding: .3rem .4rem;
}

.home-content .text-con .column {
    font-size: .14rem;
    color: #E33D3E;
    font-family: 'SourceHanSans-Medium';
}

.home-content .text-con .tit {
    font-size: .26rem;
    height: .8rem;
    margin-top: .4rem;
    font-family: 'SourceHanSans-Bold';
}

.home-content .text-con .des {
    font-size: .15rem;
    margin-top: 1rem;
    color: #0D0D0E;
}

.home-content .text-con .info {
    position: absolute;
    left: .4rem;
    bottom: .3rem;
    font-size: .14rem;
    color: #9E9E9E;
}

.home-content li {
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: .4rem;
    padding-top: .4rem;
}

.home-content li:first-child {
    padding-top: 0;
}

.home-content li .pic {
    width: 1.7rem;
    height: 1rem;
    overflow: hidden;
    margin-right: .45rem;
}

.home-content li .tit {
    font-size: .15rem;
}

.details {
    margin-top: .6rem;
}

.details .pic-con {
    overflow: hidden;
    margin-top: .4rem;
}

.details .pic-con img {
    width: 100%;
}

.details .content {
    margin-top: .7rem;
}

.details .body {
    margin-right: .9rem;
}

.details .body .column {
    color: #E33D3E;
    font-size: .14rem;
    font-family: 'SourceHanSans-Medium';
}

.details .body .title {
    font-size: .42rem;
}

.details .body .info {
    margin-top: .1rem;
    font-size: .14rem;
    color: #9E9E9E;
}

.details .body .date,
.details .sidebar .date {
    background: url(../images/date1.png)no-repeat left center;
    padding-left: 25px;
    margin-right: .15rem;
}

.details .body .con {
    margin-top: .6rem;
    line-height: 1.7;
    word-wrap: break-word;
}

.details .body .con p {
    word-wrap: break-word;
}

.details .body .con img {
    margin-top: .6rem;
    margin-bottom: .6rem;
    max-width: 100%;
}

.details .sidebar {
    width: 4.2rem;
}

.details .sidebar .item {
    margin-bottom: .6rem;
}

.details .sidebar .item:last-child {
    margin-bottom: 0;
}

.details .sidebar .pic {
    width: 100%;
    height: 3.45rem;
    overflow: hidden;
}

.details .sidebar .column {
    color: #E33D3E;
    font-size: .14rem;
    font-family: 'SourceHanSans-Medium';
    margin-top: .2rem;
}

.details .sidebar .tit {
    font-size: .2rem;
    height: .8rem;
    margin-top: .1rem;
}

.details .sidebar .info {
    margin-top: .05rem;
    font-size: .14rem;
    color: #9E9E9E;
}

.page {
    margin-top: .75rem;
}
.page a{
    font-size: .16rem;
    color: #0D0D0E;
    line-height: .33rem;
    padding: 0 .1rem;
    min-width: .33rem;
    border: 1px solid #0D0D0E;
    margin: .09rem;
}
.page a:hover,
.page a.on {
    color: #ffffff;
    background: #E33D3E;
    border-color: #E33D3E;
}

@media (min-width:1025px) {
    .header .login:hover {
        background-color: #0D0D0E;
        color: #FFF;
    }
    .footer .copyright a:hover {
        color: #E33D3E;
    }
    .home-hot .item:hover .pic img,
    .homt-news .pic:hover img,
    .project .item:hover .pic img,
    .home-content .pic-con:hover .pic img,
    .details .sidebar .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
    .menu-btn {
        display: block;
    }
    .header {
        height: 1.1rem;
        margin-top: 0;
        background-color: #FFF;
        position: sticky;
        z-index: 99;
        width: 100%;
        top: 0;
    }
    .header .h-l,
    .header .h-r,
    .nav li.on::after {
        display: none;
    }
    .header .logo {
        left: .2rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav-con {
        position: fixed;
        width: 100%;
        left: 0;
        top: 1.1rem;
        overflow-y: scroll!important;
        display: none;
        background-color: #FFF;
        z-index: 999;
        height: calc(100vh - 1.1rem);
        padding: .2rem;
        margin-top: 0;
        border-bottom: 0;
    }
    .nav li {
        width: 100%;
        margin-top: .2rem;
    }
    .search {
        margin-top: .3rem;
        width: 100%;
    }
    .search input[type='text'] {
        height: .5rem;
    }
    .footer {
        margin-top: .7rem;
        padding-top: .4rem;
    }
    .footer .f-nav a {
        margin-right: .3rem;
    }
    .footer .f-nav {
        margin-top: .3rem;
    }
    .footer .copyright {
        margin-top: .2rem;
    }
    .footer .copyright,
    .homt-news .column,
    .homt-news .info,
    .homt-news .des,
    .project .item .column,
    .project .item .info,
    .home-content .text-con .column,
    .home-content .text-con .column,
    .home-content .pic-con .info,
    .home-content .text-con .info,
    .home-content .text-con .des,
    .details .body .column,
    .details .sidebar .column,
    .details .body .info,
    .details .sidebar .info {
        font-size: 12px;
    }
    .pub-title {
        font-size: 18px;
    }
    .homt-news .tit,
    .home-content .text-con .tit {
        font-size: 16px;
    }
    .home-hot .item .tit,
    .home-content li .tit {
        font-size: 13px;
    }
    .project .item .tit,
    .home-content .pic-con .tit,
    .details .sidebar .tit {
        font-size: 14px;
    }
    .homt-news {
        width: 10rem;
    }
    .project .item .tit {
        height: 44px;
    }
    .details .body .title {
        font-size: 20px;
    }
}

@media (max-width:950px) {
    .project .item {
        width: 48%;
        margin-right: 4%;
    }
    .project .item:nth-of-type(3n) {
        margin-right: 4%;
    }
    .project .item:nth-child(even) {
        margin-right: 0;
    }
    .project .item .pic {
        height: 4.8rem;
    }
    .home-content .item {
        width: 48%;
        margin-right: 4%;
    }
    .home-content .text-con {
        margin-right: 0;
    }
    .home-content .item:last-child {
        width: 100%;
        margin-top: .4rem;
    }
    .home-content li .pic {
        width: 2.8rem;
        height: 2rem;
    }
    .home-content .pic-con {
        height: auto;
    }
    .home-content .pic-con .info {
        position: initial;
        margin-top: .3rem;
    }
}

@media (max-width:767px) {
    .search input[type='text'] {
        height: .6rem;
    }
    .homt-news,
    .home-hot,
    .homt-news .pic,
    .project .item,
    .home-content .item {
        width: 100%;
    }
    .homt-news .tit {
        font-size: 14px;
    }
    .homt-news .des,
    .home-content .text-con .des {
        margin-top: .3rem;
    }
    .homt-news .info {
        position: initial;
        margin-top: .3rem;
    }
    .home-hot .item .pic {
        width: 2.8rem;
        height: 2rem;
    }
    .project .item,
    .home-content .item {
        margin-right: 0;
    }
    .project .item .tit,
    .home-content .pic-con .tit {
        height: auto;
    }
    .home-content .text-con .info {
        position: initial;
        margin-top: .3rem;
    }
    .details .body {
        margin-right: 0;
    }
    .details .sidebar {
        display: none;
    }
    .details .body .title {
        font-size: 18px;
    }
    .page a {
        font-size: 14px;
        padding: 0 8px;
        line-height: 26px;
    }
}