
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	box-sizing: border-box;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
  text-decoration: none;
  outline: none;
	color: inherit;
}
a:focus,a:hover {
  text-decoration: none;
  outline: none;
}

#app[v-cloak] {
  display: none;
}

/* app */
#app {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
#app .app-content {
	flex: 1;
}

/* header */
.header-wrap {
	background-color: #fff;
}
.header-inner {
	margin: 0 auto;
	width: 1200px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	width: 300px;
	height: 40px;
}
.header-nav {
	display: flex;
	align-items: center;
}
.header-nav .item-btn {
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	font-size: 16px;
	height: 90px;
	cursor: pointer;
	min-width: 64px;
}
.header-nav .item-sub {
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	font-size: 14px;
	color: #d9e0ee;
	background-color: #47444a;
	padding: 14px 26px;
	display: none;
	align-items: center;
	flex-wrap: wrap;
	z-index: 99;
}
.header-nav .item-sub .item-sublink {
	display: block;
	padding: 6px 10px;
	cursor: pointer;
	opacity: .7;
}
.header-nav .item-sub .item-sublink:hover {
	opacity: 1;
}
.header-nav .item-subpanel {
	display: none;
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	background-color: rgba(12, 54, 122, 0.7);
	z-index: 99;
}
.header-nav .item-subpanel .scrollbar {
	width: 1200px;
	margin: 0 auto;
	padding: 38px 0;
	font-size: 0;
	white-space: nowrap;
	overflow: hidden;
}
.header-nav .case-panel {
	display: inline-block;
	margin-right: 42px;
	vertical-align: top;
}
.header-nav .case-panel .title {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
}
.header-nav .case-panel .title .title-icon {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 6px;
}
.header-nav .case-item {
	width: 260px;
	background-color: rgba(0, 56, 148, 0.6);
	color: #fff;
	font-size: 15px;
	line-height: 20px;
	padding: 12px;
	white-space: nowrap;
	margin-bottom: 12px;
	cursor: pointer;
}
.header-nav .case-item:hover {
	background-color: rgba(0, 56, 148, 0.9);
}
.header-nav .case-item .case-name {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header-nav .case-item .case-desc {
	width: 100%;
	color: #95b9f4;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header-nav .case-panel .more {
	font-size: 14px;
	color: #fff;
}
.header-nav .item.cur .item-btn{
	background-color: #003894;
	color: #fff;
}
.header-nav .item:hover .item-btn {
	background-color: #0652ce;
	color: #fff;
}
.header-nav .item:hover .item-sub {
	display: flex;
}
.header-nav .item:hover .item-subpanel {
	display: block;
}

/* footer */
.footer-content {
	background-color: #003894;
	color: #4877c5;
	font-size: 14px;
}
.footer-content .footer-wrap {
	width: 1200px;
	margin: 0 auto;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-content .info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 20px;
}
.footer-content .left {
	display: flex;
	align-items: center;
}
.footer-content .wx {
	display: block;
	width: 110px;
	height: 110px;
	/* margin-left: 20px; */
}
.footer-content .contact{
	margin-left: 28px;
	display: flex;
	flex-direction: column;
	color: #fff;
}
.footer-content .contact p{
	margin: 0;
	font-size: 26px;
}
.footer-content .contact span{
	font-size: 16px;
	margin-top: 12px;
}
.footer-content .grid-content{
	color: #fff;
}
.footer-content .grid-text{
	margin-top: 8px;
	display: block;
	padding: 4px;
}
.footer-content .copyright{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 100%;
	background-color: #4b6796;   
	color: #9fbcf8;  
}
.page-top {
	display: block;
	width: 100%;
	height: 160px;
}
.breadcrumb {
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #e7e7e7;
}
.breadcrumb .inner {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	color: #010125;
	font-size: 18px;
}
.breadcrumb .left {
	display: flex;
	align-items: center;
}
.breadcrumb .left .home-icon {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.breadcrumb .right {
	display: flex;
	align-items: center;
}
.breadcrumb .right .nav-item {
	position: relative;
	height: 70px;
	padding: 0 6px;
	display: flex;
	align-items: center;
	margin: 0 6px;
	cursor: pointer;
}
.breadcrumb .right .nav-item.cur::after,
.breadcrumb .right .nav-item:hover::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background-color: #003894;
}

.layout-content {
	display: flex;
	width: 1200px;
	margin: 0 auto;
	padding: 26px 0;
	align-items: flex-start;
}
.layout-content .layout-main {
	flex: 1;
	margin-right: 36px;
}
.layout-content .layout-sidebar img {
	display: block;
	width: 224px;
	height: 104px;
	margin-bottom: 10px;
}

.article-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 2px solid #f4f4f4;
}
.joinus .article-item {
	border-bottom: none;
}
.joinus .article-item .time {
	font-size: 24px;
}
.article-item .poster {
  display: block;
  width: 180px;
  height: 108px;
  margin-right: 50px;
	background: url(../img/poster-02.jpg) no-repeat center center / cover;
}
.article-item .time {
  background: rgba(153, 153, 153, 0.1);
  color: #666;
  font-size: 30px;
  margin-left: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 108px;
  padding: 0 28px;
	font-weight: bold;
}
.article-item .time .year {
  font-size: 26px;
	margin-top: 10px;
}
.article-item .info {
  flex: 1;
	width: 0;
}
.article-item .name {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  font-size: 22px;
  font-weight: bold;
  color: #666;
  transform: translate(0, 0);
  transition: all .3s;
}
.article-item:hover .name {
  color: #071250;
  transform: translate(20px, 0);
}
.article-item .content {
  font-size: 16px;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
  color: #666666;
  margin-top: 24px;
}
.article-detail .title {
	width: 667px;
	margin: 0 auto;
  padding: 40px 0 20px;
  text-align: center;
	line-height: 30px;
}
.article-detail .time {
  color: #999;
  text-align: center;
	padding-bottom: 60px;
}
.article-detail>.content {
	/* width: 667px; */
	margin: 0 auto;
  padding-bottom: 60px;
	line-height: 20px;
	color: #666;
}
.article-detail .content img {
  max-width: 100%;
}
.article-detail .apply-btn {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 30px 0;
}

.pagination-content {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #666;
	padding: 40px 0;
}
.pagination-content .btn {
	margin: 0 30px;
	display: flex;
	align-items: center;
	transform: translate(0, 0);
	transition: all 0.2s;
	cursor: pointer;
}
.pagination-content .btn.no-drop {
	cursor: no-drop;
}
.pagination-content .btn img {
	display: block;
	width: 18px;
	height: 18px;
	margin: 0 10px;
	transform-origin: center center;
}
.pagination-content .btn.prev img {
	transform: rotate(180deg);
}
.pagination-content .btn:hover {
	transform: translate(4px, 0);
}
.pagination-content .line {
	height: 100%;
	border-right: 1px solid #e5e5e5;
}
