.ProjItem {
    max-width: 470px;
    float: left;
    transition: all .55s;
    background-color: #fafafa;
}

.ProjItem .putImg {
    overflow: hidden;
}

.ProjItem .putImg img {
    max-width: 100%;
    transition: all .55s;
}

.ProjItem .putMain {
	padding:10%;
    transition: all .55s;
}

.ProjItem .putMain > div {
    font-size: 13px;
    line-height: 24px;
    color: #1f1f1f;
    transition: all .55s;
}


.ProjItem .putMain .top p:first-child {
    font-size: 20px;
	margin-bottom:10px;
    font-weight: bold;
}

.ProjItem:hover {
    background-color: var(--green);
}

.ProjItem:hover .putMain > div {
    color: white;
}

.ProjItem:hover .putImg img {
    transform: scale(1.2);
}


.downItem {
    max-width: 440px;
    float: left;
    padding: 15px;
	padding-bottom:5%;
    border: 1px solid #d4d4d4;
}

.downItem .putImg  {
	max-height:337px;
    overflow: hidden;
}

.downItem .putImg img {
    max-width: 100%;
    transition: all .55s;
}

.downItem .putMain {
    margin-top: 20px;
    padding-left: 15px;
    font-size: 22px;
    box-sizing: border-box;
}

.downItem .putMain p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.downItem:hover {
    color: var(--green);
}

.bg.open {
    opacity:1;
    z-index: 55;
}


.bg {
    position: fixed;
    width: 100%;
    height: 100%;
	opacity:0;
	top:0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    left: 0;
    z-index: -5;
    transition: all .44s;
}

.bg .bgg{
    position: fixed;
    width: 100%;
    height: 100%;
	top:0;
	z-index:1;
    background-color: rgba(0,0,0,.8);
}



.bg .main.open {
    display: block;
}

.bg .main {
    display: none;
	z-index:1;
    position: absolute;
    width: 468px;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.bg .main .close {
    position: relative;
    height: 24px;
}

.bg .main .close img {
    cursor: pointer;
    margin-right: 0;
    margin-left: auto;
}

.bg .dialog {
    max-width: 400px;
    height: 180px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: white;
}

.bg .dialog .title {
    font-size: 18px;
    line-height: 35px;
    font-weight: bold;
}

.bg .dialog .tips {
    font-size: 13px;
    line-height: 35px;
    color: #858585;
}

.bg .dialog input {
    height: 50px;
    line-height: 50px;
    margin: 10px auto 5px;
    border: 0;
    color: var(--green);
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


/* 新闻组件 */
.newsItem {
    display: flex;
    align-items: center;
}

.newsItem .leftImg {
    width: 50%;
    max-width: 750px;
    overflow: hidden;
}

.newsItem .leftImg img {
    max-width: 100%;
}

.newsItem .rightMain {
    display: flex;
    flex: 1;
    padding-left: 75px;
    flex-direction: column;
}

.newsItem .rightMain .time {
    font-size: 20px;
    font-weight: bold;
}

.newsItem .rightMain .detail {
    height: 220px;
    margin-top: 50px;
}

.newsItem .rightMain .detail .title {
    display:-webkit-box;
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
    overflow:hidden;
    -webkit-box-orient:vertical;
    font-size: 28px;
    line-height: 35px;
    font-weight: bold;
}

.newsItem .rightMain .detail  p {
    display:-webkit-box;
    -webkit-line-clamp:5;
    overflow:hidden;
    -webkit-box-orient:vertical;
    font-size: 15px;
    line-height: 23px;
    color: #7e7e7e;

}

.newsItem .rightMain .more {
    width: 145px;
    height: 40px;
    padding-left: 15px;
    line-height: 40px;
    border: 2px solid black;
    transition: all .55s;
    background-color: transparent;
}

.newsItem .more:hover {
    color: white;
    border-color: var(--green);
    background-color: var(--green);
}

.newsItem .more:hover a{
    color: white;
}


/* product */


.prodItem {
    position: relative;
    display: block;
    width: 100%;
	max-width:399px;
}



.prodItem img {
    max-width: 100%;
    margin: 0 auto;
}

.prodItem .leftTitle {
    position: absolute;
    top: 30px;
    left: 50px;
    font-size: 20px;
    transition: all .55s;
}

.prodItem .main {
    position: absolute;
    top: 50%;
    left: 50%;
    color: transparent;
    text-align: center;
    transition: all .55s;
    transform: translate(-50%,-50%);
}

.prodItem .main .en {
    margin-bottom: 35px;
    font-size: 45px;
}

.prodItem .main .cn {
    font-size: 25px;
    line-height: 20px;
}

.prodItem .top {
    position: relative;
}

.prodItem .top::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all .4s;
    background-color: rgba(255,255,255,0);
}

.prodItem:hover .top > .leftTitle,
.prodItem:hover .top > .main {
    z-index: 1;
    color: #0a638c
}

.prodItem:hover .top::after {
    background-color: rgba(255, 255, 255, .5);
}

.prodItem .prodItem {
    margin-bottom: 40px;
}

.prodItem .btm {
    font-size: 14px;
    line-height: 23px;
    color: #8d8e8e;
	padding-left:5%;
	padding-right:5%;
}

.prodItem .btm .title {
    margin:7.5% 0 5% 0;
    font-size: 25px;
	font-weight:bold;
    line-height: 30px;
    color: #1f1f1f;
}


.listItem {
    display: block;
    position: relative;
    color: white;
}

.listItem img {
    max-width: 100%;
    margin: 0 auto;
}

.listItem .leftTitle {
	letter-spacing:5px;
    position: absolute;
    top: 30px;
    left: 50px;
    font-size: 20px;
    transition: all .55s;
}

.listItem .main {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transition: all .55s;
    transform: translate(-50%,-50%);
}

.listItem .main .en {
    margin-bottom: 20px;
    font-size: 45px;
}

.listItem .main .cn {
    font-size: 30px;
	letter-spacing:5px;
}

.listItem::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all .4s;
    background-color: rgba(255,255,255,0);
}

.listItem:hover .leftTitle,
.listItem:hover .main {
    z-index: 1;
    color: var(--green);
}

.listItem:hover::after {
    background-color: rgba(255, 255, 255, .5);
}

.listPage .listItem {
    margin-bottom: 40px;
}

/* 推荐新闻 */
.detailPage.wrap {
    padding-top: 105px;
    background-color: #fafafa;
}

.detailPage.wrap .smallTitle {
    margin-bottom: 50px;
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
}


.detailPage.wrap .newsItem {
    padding-bottom: 120px;
    padding-top: 120px;
    border-bottom: 1px solid #dbdbdb;
}

.detailPage.top {
	padding-top: 96px;
    padding-bottom: 145px;
	display: flex;
       align-items: start
}

.detailPage.top .left,
.detailPage.top .right {
    display: inline-block;
    vertical-align: top;
}

.detailPage.top .left {
    width: 100%;
    max-width: 914px;
}

.detailPage.top .left .title {
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
}

.detailPage.top .left .time {
    margin: 20px auto 50px;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

.detailPage.top .left .detail {
    font-size: 15px;
    line-height: 23px;
    font-weight: bold;
    color: #7e7e7e;
}
.detailPage.top .left .detail img{ width:100% !important; height:auto !important;}

.detailPage.top .left .detail p {
    margin-bottom: 20px;
}

.detailPage.top .left img {
    max-width: 100%;
}



.detailPage.top  > .right {
    width: 100%;
    max-width: 580px;
    text-align: right;
}

.detailPage.top  > .right a {
    display: block;
    font-size: 15px;
    line-height: 50px;
    font-weight: bold;
    color: var(--green);
}

.detailPage.top  > .right a img {
    display: inline-block;
    margin-left: 10px;
}

/* 产品列表 */
.pageMain {
	padding-top:96px;
    padding-bottom: 145px;
}

.pageMain .ul {
    padding-top: 5%;
}

.pageMain .ul > a {
    float: left;
}

.pageMain .ul > a:not(:nth-child(4n)) {
    margin-right: 45px;
}

.pageMain .ul > p {
    float: left;
    width: 100%;
    height: 1px;
    margin: 60px 0;
    background-color: #e5e5e5;
}


@media (max-width:1024px) {
.detailPage.top > .right{ max-width:280px;}

}

@media (max-width:768px) {
.prodItem .btm .title{ font-size:20px;}
.prodItem .main .en{ font-size:35px; margin-bottom:5%; line-height:40px;}
.prodItem .main .cn{ font-size:20px;}
.newsItem,.pageMain .ul .newsItem .maxWidth{display:block !important}
.newsItem .leftImg{ width:100%; margin-bottom:5%; max-width:inherit;}
.newsItem .rightMain .detail{ height:auto; margin:5% 0;}
.newsItem .rightMain{ padding-left:0}
.detailPage.wrap{ padding:10% 0 0 0;}
.detailPage.wrap .newsItem{ padding:10% 0;}
.pageMain{ padding-top:5%; padding-bottom:15%;}
.detailPage.top{ padding-top:5%; padding-bottom:10%;}
.detailPage.top{ display:block;}
.detailPage.top > .right{ max-width:100%; text-align:center; margin-top:5%;}
}

@media (max-width:480px) {
.pageMain .ul{ padding-top:10%;}	
.prodItem .btm{ line-height:20px;}
.prodItem .btm p{ font-size:13px;display: -webkit-box;-webkit-line-clamp:3;overflow: hidden;-webkit-box-orient: vertical;}
.prodItem .btm .title{ font-size:18px;}
.prodItem .main .en{ font-size:22px;}
.prodItem .main .cn{ font-size:16px;}
.newsItem .rightMain .detail .title{ font-size:16px; line-height:22px;}
.newsItem .rightMain .detail p{ font-size:14px;}
.detailPage.wrap .smallTitle{ font-size:20px; margin-bottom:0;}
.detailPage.top .left .title{ font-size:20px; line-height:30px;}
.detailPage.top .left .detail{ font-size:14px;}
.detailPage.top .left .time{ font-size:16px;}
.newsItem .rightMain .time{ font-size:15px;}
}

