@import url('https://fonts.googleapis.com/css?family=Nunito|Roboto:300,400,500,700&display=swap');

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(../fonts/fa-regular-400.eot);
    src: url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
}
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}
:root {
	--primary-color: #4f46e5;
	--secondary-color: #18181b;
	--bg-primary: #ffffff;
	--bg-secondary: #F4F4F9;
	--header-color: #36383d;
	--text-color: #6f6f6f;
}
html {
	scroll-behavior: smooth; 
    height: 100vh;     
}

/* 伪元素 + 继承，覆盖所有元素 */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box; /* 重要：让边框和内边距包含在元素尺寸内 */
}
html,body {
	scroll-behavior: smooth; 
/*	width: 100vw;       100%视口宽度 */
/*	max-width: 100%;*/
/*	width:99%;*/
	min-width: fit-content;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
	min-height: 100vh;  /* 至少占满整个视口高度 */
	display: flex;  /* 使用flex布局 */
	flex-direction: column;  /* 垂直方向排列 */
 }
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Source Han Sans','Segoe UI', 'Microsoft YaHei', sans-serif;  /* 字体栈，优先使用系统字体 */
}
 a,
.button,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;	
	transition:0.6s;
}
button {
	cursor: pointer
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:focus,button:focus,input:focus,textarea:focus {
	text-decoration: none;
	outline: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}
li {
	list-style: none
}
/* back to top */
#back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
	height: 40px;
	width: 40px;
	border: none;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	transition: all 0.5s ease;
	opacity: 100;
}

#back-to-top:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px #00000050;
}
.back-to-top-hide {
	display: none;
	opacity: 0;
}
.fas {
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}
.fa-arrow-up:before {
    content: "\f062";
	font-family: "Font Awesome 5 Free";
}
header {
	position:absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 8;
}
.top-header {
	background-color: #ffffff20;
	padding: 0;
	border-bottom: 1px solid #ffffff10;
}
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.d-flex{
	display: flex !important;
}
.justify-content-between{
	justify-content: space-between !important;
}
.align-items-center{
	align-items: center !important;
}
.top-header-content a {
	display: inline-block;
	font-size: 14px;
	padding: 10px 0;
	margin-right: 15px;
	color: #fff;
}
.top-header-content a i {
	color: #fff;
	display: inline-block;
	margin-right: 3px;
}
.fa-phone:before {
    content: "\f095";
	font-family: "Font Awesome 5 Free";
}
.fa-envelope:before {
    content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}
.main-header {
	background-color: #ffffff10;
	border-bottom: 1px solid #ffffff10;
}
/*sticy_header*/
.sticy_header {
	width: 100%;
	position: fixed;
/*	background-color: #ccccccdb;*/
	top: -125px;
	transition: .4s;
	z-index: 999999;
/*	background-color:rgba(26,26,26,0.8);*/
	background-color:#1a1a1ccc;
}

.sticy_header.active {
	top: 0;
}
ul.navbar{
	margin-bottom: 0px;
}
ul.navbar>li{
	display: inline-block;
	position: relative;
}
ul.navbar>li:nth-child(n+2) {
	margin-left: 20px;
}
ul.navbar>li>a {
	display: block;
	padding: 30px 6px;
	position: relative;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 600;
	font-size: 18px;
	color: #3C3638;
	line-height: 26px;
	text-align: left;
	font-style: normal;
	text-transform: none;
	text-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

ul.navbar>li>a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 3px 3px 0 0;
	transition: .4s;
}
ul.navbar>li:hover>a:after {
	width: 100%;
}
ul.nav-sub{
	position: absolute; /* 相对于容器定位 */
	top: 100%; /* 位于触发元素正下方 */
	left: 0;
	min-width: 170px;/**/
	/*background: white;*/
	background:rgba(255,255, 255, 0.5);
	box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* 阴影增强层次感 */
	padding: 8px 0px;
	margin: 0;
	list-style: none;
	border-radius: 2px;
	display:none ; /* 默认隐藏 */
	z-index: 100; /* 确保菜单在其他元素上方 */
	transition: 1s;
	/*transition: 0.3s;*/
	min-height: 0px;
	border:1px solid #ccc;
}
ul.nav-sub>li{
	display: block;
	padding: 5px 15px;	
	color: #f1f1f1;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	position: relative;
	text-align: left;
	line-height: 40px;
	height: 50px;
}
ul.nav-sub>li:hover{
	background-color: rgba(255,255,255,0.5);
}
ul.nav-sub>li>a{
	color:black;
	font-family: 'Roboto', sans-serif;
}
ul.nav-sub>li:hover a{
	padding-left:5px;
	color:var(--primary-color);font-weight: bold;
	font-size: 18px;
}
ul.navbar>li:hover ul.nav-sub{
	min-height:	inherit;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	display: block;
}
/* banner area */
.banner-area{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100%;
	height:100%;
	position: relative;
}
.index-banner{
	padding-top: 60vh;
	background-image: url(../images/indexbanner.png);
}
.mainrow {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin:0px;
	padding: 0px;
}
.index-banner-content-area{
	position:absolute;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;/*居中*/
	text-align: center;
	top:60vh;
	z-index: 9;
}
.index-banner-content{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 290;
	font-size: 72px;
	color: #FFFFFF;
	line-height: 96px;
	letter-spacing: 7px;
	text-shadow: 0px 0px 20px rgba(255,255,255,0.8);
	text-stroke: 1px #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
	-webkit-text-stroke: 1px #FFFFFF;
	white-space: nowrap;
}
.index-banner-content-heart{
	display:inline-block;
	letter-spacing: 4px;
	transform: rotate(-15deg); /* 逆时针旋转45度 */
}
.index-banner-content-jump{
	display:inline-block;
	letter-spacing: 4px;
	transform: rotate(6.96deg); /* 逆时针旋转45度 */
}
.btn {
	display: inline-block;
	background-color: var(--primary-color);
	padding: 12px 25px;
	/* text-transform: capitalize; */
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	border: 0;
	cursor: pointer;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
}

.btn.modern-btn.white-bg {
	background-color: #fff;
	color: var(--primary-color);
}

.btn.modern-btn.white-bg:hover {
	color: #fff;
	background: #020FF9;
}
/* modern button */
.btn.modern-btn:hover {
	background-color: #333333;
}
.btn.modern-btn {
	padding: 12px 30px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	/* transition: .4s; */
	/* text-transform: uppercase; */
	font-size: 15px;
	font-weight: 600;
}

.btn.modern-btn:after {
	position: absolute;
	content: '';
	left: -20%;
	top: -10%;
	width: 15%;
	height: 120%;
	background: #ffffff3b;
	transform: rotate(192deg);
	transition: .6s;
}
.btn.modern-btn:hover:after {
	left: 110%;
}
.banner-btn-area{
	margin-top:80px;
	white-space: nowrap;
}
.index-banner-btn{
	border-radius:25px;
	border:1px solid #fff;
	width: 200px;
	height:60px;
	display: inline-block;
	background-color:transparent;
	padding: 12px 25px;
	/* text-transform: capitalize; */
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	cursor: pointer;
	overflow: hidden;
	font-family: Source Han Sans, Source Han Sans;
	
}
.watchvideo{
	vertical-align:absmiddle;
}
.index-banner-btn-whitebg{
	background-color:#fff;
	color:var(--text-color);
	margin-left:40px;
}
.index-banner-btn:hover{
	background-color: #333333;
	color: #fff;
/*
	color:var(--text-color);
	margin-left:40px;
*/
}
.slick-box-container{
	display:flex;
	top:95vh;
	justify-content: center;
	position:absolute;
	width:100%;
}
.slick-box{
	border:1px solid #ccc;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
	border-radius:3px;
	height:6px;
	width:100px;
	background-color:rgba(255,255,255,0.5);
	margin-left:10px;
	margin-right:10px;
	cursor:pointer;
}
.slick-box:hover{
	background-color:rgba(255,255,255,1);
	opacity:1;
}
.carousel-indicators li{
	border:1px solid #ccc;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	border-left:1px solid #ccc;
	border-radius:3px;
	height:6px;
	width:100px;
	background-color:rgba(255,255,255,0.5);
	margin-left:10px;
	margin-right:10px;
	cursor:pointer;
}
.product-section{
	margin:100px 0px;
	text-align: center;
}
.product-header{
	width:413px;
	height:183px;
	background-image: url(../images/productheader.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
	margin-left:auto;
	margin-right:auto;
}
.product-list-area{
	display:flex;
	justify-content:center;
	flex-direction:row;
}
.product-list-area>div:nth-child(n+2){
	margin-left:50px;
}
.product-area{
	width:473px;
}
.product-list-item-details > div:first-child a{
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 700;
	font-size: 24px;
	color: #1E2025;
	line-height: 35px;
	text-align: center;
	font-style: normal;
	text-transform: none;
	display: block;
	margin: 10px auto;
}
.product-select > div:first-child a{
	color: #E29F2C;
}
.product-list-item-details > div:nth-child(2){
	font-family: Source Han Sans, Source Han Sans;
	font-size: 18px;
	color: #69696F;
	line-height: 26px;
	min-height: 72px;
	text-align:justify;
	text-align-last: left;
	-moz-text-align-last: left;
	text-indent: 2em;
	display: -webkit-box; 
	display: box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;         /* 隐藏超出部分 */
	text-overflow: ellipsis;  /* 显示省略号 */
}
.product-select > div:nth-child(2){
	color: #955E34;
}
.product-slick-area{
	padding-top: 30px;
	text-align: center;
	display: inline-block;
}
.product-slick-area a{
	padding-top: 30px;
	text-align: center;
	display: inline-block;
}
.product-slick-area button{
	border:0px none;
	background-color:transparent;
}
.product-slick-area {
	
}
.about-us-section{
	background-image: url(../images/aboutusbg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}
.about-us-box{
	width: 1535px;
	margin: 50px auto;
/*
	margin-right: auto;
	margin-bottom:50px;
*/
}
.about-us-nav{
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
}
/*
.about-us-nav-separate{
	width: 184px;
	height: 60px;
	background: url(../images/AboutUsSP.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
*/
.about-us-nav-separate :first-child{
	display: block;
	height:60px;
	width:184px;
	background: url(../images/AboutUsSP.png);
	background-position: center;
	background-repeat: no-repeat;
}
.about-us-nav-separate :nth-child(2){
	height: 78px;
	width: 100%;
	display: block;
}
.about-us-nav-item{
	text-align: center;
}
.about-us-nav-item>div:first-child{
	height:60px;
	display: flex;
  	justify-content: center; /* 水平居中 */
  	align-items: center;     /* 垂直居中 */
}
.about-us-nav-item>div:first-child > span{
	height: 24px;
	width: 24px;
	border-radius: 12px;
	border:6px solid rgba(255,255,255,0.8);	
	cursor:pointer;	
}
.about-us-nav-item-curr > div:first-child > span{
	height: 60px;
	width: 60px;
	border:0px;
	border-radius: 0px;
	background: url(../images/aboutuslogo.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.about-us-nav-item>div:nth-child(2){
	height: 78px;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 350;
	font-size: 27px;
	color: rgba(255,255,255,0.8);
	line-height: 78px;
	text-align: center;
	font-style: normal;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	cursor:pointer;	
}
.about-us-nav-item-curr>div:nth-child(2){
	font-weight: 500;
	color: #FFFFFF;
	height: 78px;
}
.about-us-title{
	text-align: left;
}
.about-us-title div{
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 700;
	font-size: 38px;
	color: #FFFFFF;
	line-height: 55px;
	letter-spacing: 3px;
}
.about-us-content{
	display: flex;
	justify-content: center; /* 水平居中 */
}
.about-us-content-text{
	margin-top:20px;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 350;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 45px;
	text-align: justify;
	text-indent: 2em;
	width: 810px;
}
.about-us-content-img{
	margin:20px;
}
.about-us-item{
	display: none;
}
.about-us-item-active{
	display: block;
}
.morebtn{
	display: inline-block;
	padding: 0px 25px;
	font-size: 16px;
	cursor: pointer;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	color:#fff;
	border:1px solid #fff;
	height:36px;
	line-height: 36px;
	border-radius: 18px;
	vertical-align: middle;	
	margin-top: 10px;
}
.morebtn img{
	vertical-align: middle;	
}
.news-section {
	background: #f9f9f9;
}

.news-header {
	text-align: center;
}
.news-header div{
	margin:auto;
}

.news-box {
	margin:90px auto 50px auto;
	text-align: center;
}

.news-main-area {
	display: inline-flex;
	align-items: flex-start;
	flex-direction: row;
	margin:auto;
}
.news-main-area > div:nth-child(n+2){
	margin-left:40px;
}
.news-item {
	margin:0px;
	width:440px;	
}
.news-item-normal{
	padding-top:20px;
}
.news-item-curr {
	padding-top: 0px;
}
.news-item>div:first-child > img {   
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.news-item>div:nth-child(2){
	padding: 16px 25px;
	width: 100%;
	background-color:#fff;
	border:1px solid #fff;
	border-top: 0px none;
	border-radius: 0px 0px 20px 20px;
}
.news-item-normal>div:nth-child(2){
	background: #fff;
}
.news-item-curr>div:nth-child(2){
	background: linear-gradient( 205deg, #9599D4 0%, #565CA8 100%);
	color:#fff;
}
.news-item>div:nth-child(2)>div:first-child{
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 350;
	font-size: 18px;
	line-height: 26px;
	text-align: justify;
	font-style: normal;
	text-transform: none;
	display: -webkit-box; 
	display: box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	box-orient: vertical;
	overflow: hidden;         /* 隐藏超出部分 */
	text-overflow: ellipsis;  /* 显示省略号 */
	height: 78px;
}
.news-item-normal>div:nth-child(2)>div:first-child{
	margin-bottom: 0px;
}
.news-item-curr>div:nth-child(2)>div:first-child{
	margin-bottom: 20px;
}
.news-btn{
	text-align: left;
}
.news-btn a{
	background: rgba(86,92,168,0.1);
	display: inline-block;
	padding: 0px 20px;
	font-size: 14px;
	cursor: pointer;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	color:#565CA8;
	border:1px solid #fff;
	height:30px;
	line-height: 30px;
	border-radius: 5px;
	vertical-align: middle;	
	margin-top: 10px;
}
.news-item-curr .news-btn a{
	color:#fff;
}
.news-btn-area {
	text-align: center;
	display: inline-block;
	padding: 50px;
}
.news-btn-area a{
	width:56px;
	height:57px;
	display:inline-block;
	border:0px;
}
.news-btn-area a:nth-child(n+2){
	margin-left:20px;
}
.news-btn-left{
	background-image: url(../images/newsbtnleft.png);
}
.news-btn-left:hover{
	background-image: url(../images/newsbtnlefts.png);
}
.news-btn-right{
	background-image: url(../images/newsbtnright.png);
	margin-left:100px;
}
.news-btn-right:hover{
	background-image: url(../images/newsbtnrights.png);
}
.history-box {
	margin:90px auto 50px auto;
	text-align: center;
}

.history-section {
	background-image: url(../images/historybg.png);
	background-repeat: no-repeat;
	background-position: top;
}

.history-header {
	text-align: center;
	margin-bottom: 50px;
}
.history-item {
	display: inline-flex;
	align-items: flex-start;
	flex-direction: row;
}
.history-item>div{
	display: inline-block;
}
.history-item div.history-item-img{
	width: 680px;
}
.history-item div.history-item-img img {   
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
	border-radius: 20px;
}
.history-item div.history-item-box1{
	margin-left:60px;
}
.history-item div.history-item-box2{
	margin-left:26px;
}
.history-item div.history-item-content{   
    width: 624px;
}
.history-item div.history-title{
	margin-top: 56px;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 500;
	font-size: 22px;
	color: #1D1D1D;
	line-height: 32px;
}
.history-title-right{
	margin-left:26px;
	text-align: left;
}
.history-title-left{
/*	margin-right:26px;*/
	text-align: right;
}
.history-item div.history-item-content-text{
	margin-top: 27px;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 350;
	font-size: 16px;
	color: #3C3638;
	line-height: 30px;
	font-style: normal;
	text-transform: none;
	text-align:justify;
	text-align-last: left;
}
.history-item-content-right{
	margin-left:26px;
}
.history-item-content-left{
/*	margin-left:26px;*/
}


.history-item-img-right {
	margin-left:60px;
}
.footerbgc {
	background: #1A1A1C;
}
.footerbgi {
	background-image: url("../images/footerbg.png");
	background-position: bottom;
	background-repeat: repeat-x;
	padding-bottom: 20px;
	text-align: center;
}

.icprow {
	margin: 12px auto;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 400;
	font-size: 14px;
	color: #69696F;
	line-height: 20px;
	font-style: normal;
	text-transform: none;
	text-align: center;
}
.icprow span.beian{
	margin-left: 100px;
}
.icprow *{
	white-space:nowrap;
}
.footer-social-area{
	display: flex; /* 使用flex实现居中 */
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.footer-social-list li a{	
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 500;
	font-size: 12px;
	color: #fff;
	line-height: 41px;
	text-align: left;
}

ul.footer-social-list li {
	display: inline-block;
/*	margin-right: 10px;*/
}

ul.footer-social-list li a {
/*	color: #ddd;*/
/*	font-size: 26px;*/
	display: block;
/*	padding: 5px;*/
}
.footer-map-title a{
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 500;
	font-size: 22px;
	color: #FFFFFF;
	line-height: 55px;
	text-align: left;
	margin-bottom: 50px;
	white-space: nowrap;
}
.footer-map-list li a {
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 400;
	font-size: 16px;
	color: #69696F;
	line-height: 41px;
	text-align: left;
	white-space: nowrap;
}
.footer-map-list li a:hover{
	color:#565CA8;
}

.footer-widget-map {
	text-align: left;
	display: flex;
	display: -ms-flex;
	margin-top: 47px;
}
.footer-widget-map>div {
	margin-left: 40px;
}

.product-slick-left {
	background-image: url("../images/left.png");
	background-repeat: no-repeat;
	background-position: center;
	width: 56px;
	height: 56px;
}
.product-slick-left:hover {
	background-image: url("../images/lefts.png");
}

.product-slick-right {
	background-image: url("../images/right.png");
	background-repeat: no-repeat;
	background-position: center;
	width: 56px;
	height: 56px;
	margin-left: 100px;
}
.product-slick-right:hover {
	background-image: url("../images/rights.png");
}

.footer-map-title {
	margin-top:47px;
}
.footerrow>div:nth-child(n+2){
  text-align: left;
}
ul.footer-social-list{
	white-space: nowrap;
}

.history-main {
	display: inline-flex;
	flex-direction: column;
}

.navbar {
	white-space: nowrap;
}

.timeico {
	
}

.news-dateL:before {
	content: "\f017";
	font-family:"Font Awesome 5 Free";
}


.cooperation-tenet-sp {
	width: 60px;
	height: 10px;
	background: linear-gradient( 270deg, #565CA8 0%, #9599D4 100%);
	border-radius: 16px 16px 16px 16px;
	box-shadow: 0 10 10 10 #ccc;
	margin-top:28px;
	margin-bottom: 18px;
}
.pagebar ul{
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.pagebar ul li a{
	display: block;
	border: 1px solid #f6f6f6;
	border-radius: 2px 2px 2px 2px;
	min-width: 30px;
	text-align: center;
	font-family: MiSans, MiSans;
	font-weight: 400;
	font-size: 18px;
	color: #888888;
	line-height: 28px;
	background: #FFFFFF;
	margin:5px;
	padding: 2px 10px;
	cursor: pointer;
}
.pagebar ul li:not(.pagecount):not(.disable):hover a{
	background: linear-gradient( 202deg, #9599D4 0%, #565CA8 100%);
	color: #FFFFFF;
	border: 1px solid #565CA8;
}
.pagebar .pagecount{
	cursor: auto;
	display: block;
	border: 1px solid #f6f6f6;
	border-radius: 2px 2px 2px 2px;
	min-width: 30px;
	text-align: center;
	font-family: MiSans, MiSans;
	font-weight: 400;
	font-size: 18px;
	color: #888888;
	line-height: 28px;
	background: #FFFFFF;
	margin:5px;
	padding: 2px 10px;
}
.pagebar ul li input{
	border: 1px solid #f6f6f6;
	border-radius: 2px 2px 2px 2px;
	min-width: 30px;
	width:10px;
	text-align: center;
	font-family: MiSans, MiSans;
	font-weight: 400;
	font-size: 18px;
	color: #888888;
	line-height: 28px;
	background: #FFFFFF;
}
.pagebar ul li input:hover{
	border: 1px solid #565CA8;
}
.pagebar-datacount {
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 350;
	font-size: 18px;
	color: #888888;
	line-height: 26px;
}
.pagebar-datacount span{
	color: #565CA8;
	font-weight: 500;
}
.pagebar .current-page a{
	background: linear-gradient( 202deg, #9599D4 0%, #565CA8 100%);
	border: 1px solid #565CA8;
	color: #FFFFFF;
}
.pagebar ul li.disable{
	display: block;
	border: 1px solid #f6f6f6;
	border-radius: 2px 2px 2px 2px;
	min-width: 30px;
	text-align: center;
	font-family: MiSans, MiSans;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	margin:5px;
	padding: 2px 10px;
	background-color: #fff;
	cursor: auto;
	color:#ccc;
}