@charset "utf-8";
/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
	box-sizing: border-box;
}
* {
	color: #333;
}
body {
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
/*    font-family: "SF Pro SC","SF Pro Text","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    padding: 80px 0 0;
}
@media only screen and (max-width: 768px) {
    body {
        padding: 60px 0 0;
    }
}
h2 {
	color: #00428e;
}

/* -------------------------------- 

导航

-------------------------------- */
.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 3;
	top: 0;
	width: 100%;
	height: 80px;
	padding: 0 calc(50% - 600px);
	background-color: #fff;
/*
	-webkit-backdrop-filter:saturate(180%) blur(20px);
	backdrop-filter:saturate(180%) blur(20px);
*/
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	will-change: transform;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
}
.header.is-hidden {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}
@media only screen and (max-width: 768px) {
	.header {
		height: 60px;
		padding: 0 0 0 5%;
	}
}

.logo {
	left: 5%;
	display: flex;
	align-items: center;
	font-size: 40px;
}
.nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.nav-trigger {
	display: none;
}
.nav-trigger ul {
    display: none;
}
@media only screen and (max-width: 768px) {
	.logo {
		font-size: 24px;
        z-index: 3;
	}
	.nav-trigger {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 70px;
		z-index: 3;
	}
    .icon-logo1 {
        font-size: 32px;
    }
    .nav-trigger ul {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
    }
    .nav-trigger ul li {
        width: 100%;
        height: 4px;
        background-color: #00428e;
    }
}

.nav > ul {
	z-index: 2;
	display: flex;
	flex-direction: row;
	padding-top: 0;
	justify-content: space-between;
	align-items: center;
	position: static;
	width: 800px;
	height: 0;
	background-color: transparent;
	box-shadow: none;
	opacity: 1;
	transform: translateY(0);
	transition: .5s;
}
.nav > ul > li {
	width: 100%;
	text-align: center;
}
.nav > ul > li:nth-last-child(1),
.nav > ul > li:nth-last-child(2) {
    display: none;
}
.nav > ul a {
	color: #00428e;
	font-size: 1em;
	font-weight: bold;
	height: 100%;
	line-height: normal;
    padding: 10px 15px;
	border: none;
	transition: all .5s;
}
.nav > ul a:hover,
.nav > ul a.active {
	color: #bb9c6d;
}
.nav-open .nav ul,
.nav ul:target {
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 1;
	transform: translateY(0);
}
@media only screen and (max-width: 768px) {
	.nav > ul {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding-top: 30px;
		background-color: #fff;
		flex-direction: column;
		justify-content: flex-start;
		transform: translateY(-100%);
		opacity: 0;
		transition: .5s;
	}
	.nav > ul > li:first-child {
		margin-top: 30px;
	}
	.nav > ul > li {
		width: 100%;
		text-align: center;
	}
    .nav > ul > li:nth-last-child(1),
    .nav > ul > li:nth-last-child(2) {
        display: block;
    }
	.nav > ul a {
		display: block;
		height: 40px;
		line-height: 40px;
        padding: 0;
		border-top: 1px solid rgba(187,156,109,0.1);
	}
	.nav > ul > li:last-child {
		border-bottom: 1px solid rgba(187,156,109,0.1);
	}
}

/*下拉菜单*/
.dropdown {
  position: relative;
}
.dropdown span {
    color: #00428e;
    font-weight: bold;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 13em;
  padding: 12px 0;
}
.dropdown-content a {
    display: inline-block;
}
.dropdown:hover .dropdown-content {
  display: block;
}
@media only screen and (max-width: 768px) {
    .dropdown {
        display: none;
    }
}

/* -------------------------------- 

页脚

-------------------------------- */
footer {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
footer div {
	padding: 0 calc(50% - 600px);
}
footer div:first-of-type {
    width: 100%;
    height: 250px;
    background: #eee;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer div:first-of-type p {
    font-size: 12px;
    color: #bb9c6d;
    line-height: 2;
}
footer div:first-of-type p a {
    color: #bb9c6d;
}
footer div:first-of-type > img {
    width: 219px;
    height: 120px;
}
footer div:last-of-type {
    width: 100%;
    height: 32px;
    background-color: #00428e;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer div:last-of-type p,
footer div:last-of-type a {
    color: #fff;
    font-size: 12px;
}
@media only screen and (max-width: 768px) {
    footer div:first-of-type {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        height: auto;
    }
    footer div:last-of-type {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    footer div:first-of-type p {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }
    footer div:first-of-type > img {
        margin: 20px 0;
    }
    footer div:first-of-type a {
        margin: 20px 0 0;
    }
    footer div:last-of-type {
        height: auto;
        padding: 0.5em 0;
    }
    footer div:last-of-type p,
    footer div:last-of-type a {
        line-height: 1.5;
    }
}

/* -------------------------------- 

banner

-------------------------------- */
#banner {
	width: 100%;
	height: 800px;
	margin-left: auto;
	margin-right: auto;
}
#banner1,
#banner2,
#banner3 {
	background-size: cover;
    background-position: bottom center;
}
#banner1 {background-image: url("../resource/banner-1.jpg");}
#banner2 {background-image: url("../resource/banner-2.jpg");}
#banner3 {background-image: url("../resource/banner-3.jpg");}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
/* swiper颜色 */
.swiper-container{
	--swiper-pagination-color: #ffffff;/* 分页器 */
/*	--swiper-navigation-color: #00428e; 前进后退按钮 */
}
#banner-btn-p,
#banner-btn-n {
	outline: none;
	display: block;
	height: 80px;
	width: 40px;
	line-height: 80px;
	text-align: center;
	opacity: 0.5;
	color: #bb9c6d;
    font-weight: bold;
	background-color: rgba(255,255,255,0.75);
	z-index: 1;
	transition: all 0.25s ease;
	position: absolute;
	top: 490px;
	--swiper-navigation-size: 24px;/* 前进后退按钮大小 */
}
#banner-btn-p:hover,
#banner-btn-n:hover {
	opacity: 1;
}
#banner-btn-p {
	left: 0;
}
#banner-btn-n {
	right: 0;
}
@media only screen and (max-width: 768px) {
	#banner {
/*		height: calc(100vh - 120px);*/
        height: 240px;
	}
	#banner-btn-p,
	#banner-btn-n {
		width: 40px;
        top: 150px;
	}
    #banner-btn-p:hover,
    #banner-btn-n:hover {
        opacity: 0.5;
    }
}


.index-number {
    width: 100%;
    height: 165px;
    padding: 0 calc(50% - 600px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-number li {
    text-align: center;
}
.index-number div {
    color: #00428e;
    font-size: 36px;
}
.index-number p {
    color: #bb9c6d;
}
@media only screen and (max-width: 768px) {
    .index-number {
        height: 80px;
        padding: 0 5%;
    }
    .index-number div {
        font-size: 30px;
    }
    .index-number p {
        font-size: 10px;
    }
}

.index-info {
    width: 100%;
    height: 540px;
    background: url("../resource/building.jpg") no-repeat center center / cover;
    padding: 0 calc(50% - 600px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    min-width: 1200px;
}
.index-info h2,
.index-brands h2,
.index-envir h2, 
.index-map h2 {
    font-size: 30px;
    font-weight: bold;
    color: #00428e;
}
.index-info h2 {
    position: relative;
    left: 16px;
}
.index-info h2::before {
    content: "";
    display: block;
    width: 8px;
    height: 30px;
    background-color: #bb9c6d;
    position: absolute;
    top: 2px;
    left: -16px;
}
.index-info p {
    width: 500px;
    line-height: 2;
    text-align: justify;
    color: #00428e;
    margin: 12px 0 36px;
}
.index-info a {
    font-size: 12px;
    line-height: 36px;
    text-align: center;
    color: #00428e;
    border: 1px solid #00428e;
    width: 135px;
    height: 36px;
}
@media only screen and (max-width: 768px) {
    .index-info {
        height: 400px;
        min-width: inherit;
        background: url("../resource/building.jpg") no-repeat center bottom / contain, linear-gradient(to right, #f3f5f8, #e5ebf0, #cad0dd);
        padding: 0 5%;
        justify-content: flex-start;
    }
    .index-info h2,
    .index-info a {
        margin: 20px auto;
    }
    .index-info h2 {
        left: 0;
    }
    .index-info h2::before {
        display: none;
    }
    .index-info p {
        width: 90%;
        margin: 0 auto;
    }
}

.index-brands {
    width: 100%;
    min-width: 1200px;
    height: 830px;
    padding: 0 calc(50% - 600px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}
.index-brands h2 {
    text-align: center;
}
.index-brands p {
    color: #00428e;
    font-size: 0.75em;
    line-height: 2;
    width: 580px;
    text-align: center;
    margin: 0 auto 36px;
}
.index-brands ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}
.index-brands ul img {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 768px) {
    .index-brands {
        height: auto;
        min-width: inherit;
        padding: 0;
    }
    .index-brands p {
        width: 100%;
        padding: 0 5%;
    }
    .index-brands ul li {
        width: calc(100% / 3);
    }
}

.index-video {
    display: block;
    width: 100%;
    min-width: 1200px;
    height: auto;
    cursor: pointer;
}
.index-video img {
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .index-video {
        width: 100%;
        min-width: inherit;
    }
}

.index-envir {
    min-width: 1200px;
    padding: 0 0 80px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    align-items: center;
}
.index-envir h2 {
    text-align: center;
    margin: 70px 0;
}
.index-envir ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 1200px;
}
.index-envir li {
    width: 392px;
}
.index-envir a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 16px 0 0;
    padding: 0 16px;
}
.index-envir h3,
.index-envir p {
    color: #00428e;
}
.index-envir h3 {
    width: 80px;
    margin: 0;
}
.index-envir h3::after {
    content: "";
    display: block;
    width: 36px;
    height: 4px;
    background-color: #bb9c6d;
    margin: 8px 0 0;
}
.index-envir p {
    font-size: 0.75em;
    text-align: justify;
    width: 360px;
    line-height: 1.8;
}
@media only screen and (max-width: 768px) {
    .index-envir {
        width: 100%;
        padding: 0 5%;
        min-width: inherit;
    }
    .index-envir h2 {
        text-align: center;
        margin: 40px 0;
    }
    .index-envir ul {
        width: 100%;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .index-envir li,
    .index-envir li img {
        width: 100%;
    }
    .index-envir li {
        margin-bottom: 20px;
    }
}

.index-honor {
    width: 100%;
    height: 680px;
    background-color: #00428e;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.index-honor h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 72px;
}
.index-honor h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #bb9c6d;
    margin: 8px 0 0;
}
#honor-swiper {
    width: 1200px;
    height: 400px;
    background: url("../resource/circle.png") no-repeat center center;
}
#honor-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
#honor-swiper .swiper-button-prev,
#honor-swiper .swiper-button-next {
    color: #bb9c6d;
}
@media only screen and (max-width: 768px) {
    .index-honor {
        height: auto;
        padding: 50px 0;
    }
    .index-honor h2 {
        margin: 0 0 20px;
    }
    #honor-swiper {
        width: 100%;
    }
}

.index-map {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 0;
}
.index-map p {
    line-height: 2;
    text-align: center;
    color: #00428e;
    font-size: 0.75em;
}
@media only screen and (max-width: 768px) {
    .index-map {
        width: 100%;
        padding: 0 5%;
    }
    .index-map img {
        width: 100%;
    }
}

.index-news-wrapper {
    width: 100%;
    padding: 0 calc(50% - 600px);
    min-width: 1200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    background-color: #fafafa;
}
.index-news:last-of-type ul {
    position: relative;
}
.index-news:last-of-type ul::before {
    content: "";
    display: block;
    width: 2px;
    height: 250px;
    background: #bb9c6d;
    position: absolute;
    left: -40px;
}
.index-news > div {
    margin: 32px 0;
}
.index-news ul {
    width: 560px;
    margin: 0 0 32px;
}
.index-news h2,
.index-news > a,
.index-news li p {
    display: inline;
}
.index-news h2 {
    font-size: 30px;
    font-weight: bold;
}
.index-news h2,
.index-news > a,
.index-news div a {
    color: #00428e;
}
.index-news div a {
    margin-left: 16px;
}
.index-news li {
    margin: 0 0 0.5em;
}
.index-news ul a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.index-news ul a p {
    color: #666;
}
.index-news ul a:hover p,
.index-news div a:hover {
    color: #bb9c6d;
}
@media only screen and (max-width: 768px) {
    .index-news-wrapper {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        min-width: inherit;
    }
    .index-news {
        padding: 0 5%;
    }
    .index-news ul {
        width: 100%;
    }
    .index-news:last-of-type ul::before {
       display: none;
    }
}

.top-pic {
    width: 100%;
    height: 30vw;
    overflow: hidden;
    position: relative;
}
.top-pic h1 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: #00428e;
    font-size: 48px;
    background-color: rgba(255,255,255,0.75);
    padding: .125em .5em;
}
.top-pic h1::before,
.top-pic h1::after {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background-color: #bb9c6d;
    position: relative;
    top: 24px;
    margin: 0 .5em;
}
.top-pic img {
    width: 100%;
    position: absolute;
}
@media only screen and (max-width: 768px) {
    .top-pic h1 {
        font-size: 24px;
    }
    .top-pic h1::before,
    .top-pic h1::after {
        top: 12px;
    }
}

.content-layout {
    width: 100%;
    padding: 50px calc(50% - 600px) 80px;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .content-layout {
        padding: 20px 10%;
    }
    .content-layout img {
        width: 100%;
        height: auto;
    }
}

.history li {
    text-align: center;
}
.history li::after {
    content: "";
    display: block;
    width: 4px;
    height: 3em;
    background-color: #bb9c6d;
    margin: 1em auto;
}
.history li:last-of-type::after {
    display: none;
}
.history p {
    padding: 0 0 1em;
    color: #bb9c6d;
}

.products {
    width: 100%;
    min-width: 1200px;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}
.products > img {
    margin: 50px auto;
    width: 80%;
}
.products h2 {
    text-align: center;
}
.products p {
    color: #00428e;
    font-size: 0.75em;
    line-height: 2;
    width: 580px;
    text-align: center;
    margin: 0 auto 36px;
}
.products ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}
.products ul img {
    width: 100%;
    height: 100%;
}
@media only screen and (max-width: 768px) {
    .products {
        height: auto;
        min-width: inherit;
    }
    .products > img {
        margin: 20px auto;
        width: 100%;
    }
    .products p {
        width: 100%;
        padding: 0 5%;
    }
    .products ul li {
        width: calc(100% / 3);
    }
}

.culture p {
    margin-bottom: 50px;
}
.culture p:last-of-type {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
}

.research p {
    line-height: 1.5;
    padding: 0 200px;
}
@media only screen and (max-width: 768px) {
    .research p {
        padding: 20px 10%;
        text-align: left;
    }
}

.honor li {
    text-align: center;
}
.honor li::after {
    content: "";
    display: block;
    width: 4px;
    height: 3em;
    background-color: #bb9c6d;
    margin: 1em auto;
}
.honor li:last-of-type::after {
    display: none;
}
.honor p {
    padding: 0 0 1em;
    color: #bb9c6d;
}

.recruit {
    line-height: 1.5;
}
@media only screen and (max-width: 768px) {
    .recruit {
        padding: 40px 10%;
        text-align: justify;
    }
}

/*新闻列表*/
.news-list {
    width: 1200px;
    background-color: #fff;
    margin: 50px auto;
    padding: 50px 0;
}
.news-list li a {
    width: 1000px;
    height: 200px;
    border-bottom: 1px solid #00428e;
    margin: 0 auto;
    padding: 20px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.news-list li:last-of-type a {
    border: none;
}
.news-thumb-pic {
    width: 270px;
    height: 100%;
    overflow: hidden;
	transition: all .5s;
}
.news-thumb-pic img {
    width: 100%;
    height: 100%;
}
.news-list div:nth-of-type(2) {
    width: 660px;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
	transition: all .5s;
}
.news-list h2 {
    color: #424242;
	transition: all .5s;
}
.news-list div:nth-of-type(2) div {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.news-list div:nth-of-type(2) div span {
    color: #999;
	transition: all .5s;
}
.news-list li a:hover .news-thumb-pic {
    transform: translateX(10px);
}
.news-list li a:hover div:nth-of-type(2) {
    transform: translateX(-10px);
}
.news-list li a:hover h2 {
    color: #00428e;
}
.news-list li a:hover span{
    color: #bb9c6d;
}
@media only screen and (max-width: 768px) {
    .news-list {
        width: 100%;
        margin: 30px auto;
        padding: 10px 0;
    }
    .news-list li a {
        width: 80%;
        height: 360px;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .news-thumb-pic {
        width: 100%;
        height: 100%;
    }
    .news-list div:nth-of-type(2) {
        width: 100%;
        height: auto;
    }
}

.news-page {
    width: 1200px;
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-page li {
    margin: 0 8px;
}
.news-page a {
    display: block;
    height: 36px;
    padding: 0 1em;
    line-height: 36px;
    text-align: center;
    color: #00428e;
    border: 1px solid #00428e;
	transition: all .5s;
}
.news-page li:hover {
    color: #fff;
    background-color: #00428e;
}
.news-page li:hover a {
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .news-page {
        width: 100%;
        margin: 0 auto 20px;
    }
    .news-page li {
        display: none;
    }
    .news-page li:nth-of-type(2),
    .news-page li:nth-of-type(8) {
        display: inherit;
    }
}

/*新闻详情页*/
.news-wrapper {
    width: 1000px;
    padding: 50px 100px;
    background-color: #fff;
    margin: 30px auto;
    text-align: center;
}
.news-wrapper h2 {
    margin: 0;
    color: #00428e;
}
.news-wrapper span {
    color: #bb9c6d;
    display: block;
    margin: 20px 0 40px;
}
.news-wrapper p {
    text-align: justify;
    color: #424242;
    line-height: 1.8;
    text-indent: 2em;
    margin: 1em 0;
}
.news-wrapper img {
    width: 800px;
    height: auto;
}
@media only screen and (max-width: 768px) {
    .news-wrapper {
        width: 100%;
        padding: 40px 10%;
        margin: 0 auto;
    }
    .news-wrapper span {
        margin: 10px auto 20px;
    }
    .news-wrapper img {
        width: 100%;
    }
}

/*新闻详情页*/
.recruit li {
    background-color: #eee;
    margin: 0 0 10px;
    padding: 32px;
}
.recruit li p {
    color: #00428e;
    font-weight: bold;
    margin: 0 0 8px;
}
.recruit > p {
    color: #bb9c6d;
    margin: 80px 0 0;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .recruit > p {
        margin: 40px 0 0;
    }
}