* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
}
.big-title {
	margin: auto;
	padding-top: 10px;
	width: 80%;
	border-bottom: 1px solid #efefef;
	text-align: center;
}
.big-title::after {
	display: block;
	width: 60px;
	height: 3px;
	background-color: #ff2b2b;
	margin: auto;
	content: "";
}
.big-title p:first-child {
	color: #333;
	font-weight: 700;
	font-size: 20px;
}
.big-title p:last-child {
	text-transform: uppercase;
	font-size: 13px;
	color: #666;
	margin-top: 5px;
	padding-bottom: 7px;
}
header {
	padding: 1rem;
}
.shrink-menu .icon {
	position: fixed;
	top: 18px;
	right: 12px;
	width: 45px;
	height: 45px;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 5px;
	padding-top: 8px;
	z-index: 3;
}
.shrink-menu .icon.active li:nth-child(1) {
	margin-top: 8px;
	transform: rotate(45deg) translate(4px, 4px);
}
.shrink-menu .icon.active li:nth-child(2) {
	opacity: 0;
}
.shrink-menu .icon.active li:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -8px);
}
.shrink-menu .icon li {
	width: 60%;
	height: 3px;
	background-color: #fff;
	margin: 5px auto;
	transition: all 0.3s;
	backface-visibility: visible;
}
.shrink-menu .list {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	text-align: center;
	padding-top: 30px;
}
.shrink-menu .list > p {
	font-weight: 700;
	color: #fff;
	font-size: 25px;
	padding-bottom: 10px;
}
.shrink-menu .list ul {
	font-size: 17px;
}
.shrink-menu .list ul li {
	width: 80%;
	border: 1px solid #fff;
	height: 30px;
	line-height: 30px;
	margin: 5px auto;
}
.shrink-menu .list ul li a {
	color: #fff;
}
nav {
	background-color: #015273;
}
nav ul {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 8px;
	font-size: 15px;
}
nav ul li {
	flex-basis: 23.6%;
	margin: 0.6% 0.6%;
	text-align: center;
	border: 1px solid #ff2828;
	border-radius: 3px;
	padding: 5px 0;
}
nav ul li.active {
	background-color: #ff2828;
}
nav ul li a {
	color: #fff;
}
.index-tel {
	margin: 15px auto auto;
	width: 92%;
	padding: 8px 2px;
	text-align: center;
	background-color: #ff2a2a;
	border-radius: 5px;
}
.index-tel a {
	color: #fff;
}
.index-tel a img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}
.application .box {
	position: relative;
	margin-top: 10px;
	background-color: #000;
}
.application .box > img {
	opacity: 0.76;
}
.application .box ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.application .box ul li {
	position: absolute;
	padding-top: 20px;
}
.application .box ul li:nth-child(1) {
	left: 15%;
	bottom: 36%;
}
.application .box ul li:nth-child(2) {
	left: 34%;
	bottom: 50%;
}
.application .box ul li:nth-child(3) {
	left: 52%;
	bottom: 55%;
}
.application .box ul li:nth-child(4) {
	left: 66%;
	bottom: 43%;
}
.application .box ul li:nth-child(5) {
	left: 86%;
	bottom: 56%;
}
.application .box ul li a {
	color: #fff;
}
.application .box ul li a .title {
	position: absolute;
	font-size: 12px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	line-height: 20px;
}
.application .box ul li a .img {
	position: relative;
	width: 30px;
	height: 30px;
	z-index: 1;
	overflow: hidden;
}
.application .box ul li a .img::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/application_bg.png) center center no-repeat;
	background-size: 100% 100%;
	animation: rotate 12s linear 0s infinite normal;
	content: "";
}
.application .box ul li a .img img {
	width: 10px;
	margin: 50% auto 0;
	transform: translateY(-50%);
}
.application .box ul li a .dot {
	position: relative;
	width: 1px;
	height: 6px;
	margin-left: 15px;
	background-color: rgba(255, 255, 255, 0.3);
}
.application .box ul li a .dot::before {
	position: absolute;
	bottom: -6px;
	left: -1px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	content: "";
}
.application .box ul li a .dot::after {
	position: absolute;
	bottom: -9px;
	left: -4px;
	width: 9px;
	height: 9px;
	background-color: rgba(255, 255, 255, 0.33);
	border-radius: 50%;
	content: "";
}
@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(720deg);
	}
}
.index-about {
	padding: 10px;
}
.index-about .text {
	padding: 10px 0;
	font-size: 14px;
	text-align: justify;
}
.index-about ul {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
}
.index-about ul li {
	flex-basis: 50%;
	padding: 10px;
}
.index-about ul li:nth-child(odd) {
	border-right: 1px solid #ddd;
}
.index-about ul li:nth-last-of-type(-n + 2) {
	border-top: 1px solid #ddd;
}
.index-about ul li p:first-child {
	color: #ff9000;
}
.index-about ul li p:last-child {
	font-size: 14px;
}
.index-case {
	background: url(../images/case-bg.png) no-repeat center center;
	padding-bottom: 10px;
}
.index-case .list {
	padding-top: 10px;
}
.index-case .list .swiper-slide p {
	background: url(../images/arrow.png) no-repeat 92% center #fff;
	text-indent: 24px;
	height: 60px;
	line-height: 60px;
	color: #000;
}
.index-news {
	background: url(../images/news-bg.jpg) no-repeat bottom center;
	padding-bottom: 10px;
}
.index-news .first-news {
	display: flex;
	justify-content: center;
	color: #fff;
	position: relative;
	padding: 10px 10px 0 10px;
}
.index-news .first-news > div {
	position: absolute;
	bottom: 10px;
	width: 90%;
}
.index-news .first-news > div p:nth-child(1) {
	font-size: 12px;
	padding-bottom: 10px;
}
.index-news .first-news > div p:nth-child(2),
.index-news .first-news > div p:nth-child(3) {
	font-size: 14px;
}
.index-news .first-news > div p:nth-child(3) {
	text-align: justify;
}
.cooperation form {
	display: flex;
	flex-direction: column;
	padding: 10px;
}
.cooperation form * {
	margin-bottom: 10px;
}
.cooperation form > p {
	color: #777;
}
.cooperation form input,
.cooperation form textarea {
	border: 1px solid #e8e8e8;
	padding: 10px;
}
.cooperation form input {
	height: 40px;
	line-height: 40px;
}
.cooperation form textarea {
	height: 95px;
	resize: none;
}
.cooperation form button {
	border: none;
	background-color: #015273;
	height: 48px;
	line-height: 48px;
	border-radius: 4px;
	color: #fff;
	font-size: 18px;
}
.cooperation form .remarks {
	font-size: 12px;
}
.prolist .classify {
	text-align: center;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px;
}
.prolist .classify li {
	background-color: #015273;
	flex-basis: 47.5%;
	margin: 2px 1%;
}
.prolist .classify li a {
	display: block;
	color: #fff;
	padding: 5% 1%;
}
.prolist .list {
	display: flex;
	justify-content: space-between;
	text-align: center;
	flex-wrap: wrap;
	font-size: 14px;
}
.prolist .list li {
	flex-basis: 50%;
}
.prolist .list li > a {
	display: block;
	padding: 10px;
	width: 100%;
	border-bottom: 1px dashed #bcbcbc;
}
.prolist .list li > a img {
	border-radius: 5px;
}
.prolist .list li > a .title {
	font-size: 14px;
	padding: 10px 0;
	color: #666;
}
.prolist .list li > a .see {
	background-color: #ff0202;
	color: #fff;
	padding: 4px;
}
.newslist {
	padding: 0 10px 0 10px;
}
.newslist li {
	border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
	padding: 3% 0;
}
.newslist li a {
	display: flex;
	align-items: center;
}
.newslist li a div {
	padding-right: 4%;
}
.newslist li a div:first-child p {
	color: #333;
	text-align: center;
}
.newslist li a div:first-child p:first-child {
	font-size: 24px;
}
.newslist li a div:first-child p:last-child {
	font-size: 12px;
}
.newslist li a div:last-child {
	width: 82%;
	border-left: 1px solid #ddd;
	padding-left: 4%;
}
.newslist li a div:last-child p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.newslist li a div:last-child p:first-child {
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
}
.newslist li a div:last-child p:last-child {
	font-size: 12px;
	color: #999;
}
.tab-nav {
	background-color: #fff;
}
.tab-nav ul {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}
.tab-nav ul li {
	flex-basis: 50%;
	text-align: center;
}
.tab-nav ul li a {
	color: #333;
}
.tab-nav ul li a.active {
	color: #015273;
}
.imglist ul {
	display: flex;
	text-align: center;
	flex-wrap: wrap;
}
.imglist ul li {
	padding: 10px;
	border-bottom: 1px dashed #bcbcbc;
	flex-basis: 50%;
}
.imglist ul li a {
	color: #666;
	font-size: 14px;
}
.page {
	padding: 20px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}
.page a {
	color: #333;
}
.details {
	font-size: 14px;
	color: #444;
	padding: 10px;
	text-align: justify;
	line-height: 2;
}
.details .title {
	font-weight: 700;
	text-align: center;
	font-size: 18px;
}
.tab-page {
	padding: 10px;
	line-height: 1.5;
}
.tab-page a {
	color: #000;
}
.message form {
	padding: 10px;
}
.message form div {
	padding: 5px 0;
}
.message form div p {
	padding-bottom: 5px;
}
.message form div input,
.message form div textarea {
	border: 1px solid #e8e8e8;
	padding: 10px;
	width: 100%;
}
.message form div textarea {
	height: 95px;
	resize: none;
}
.message form button {
	width: 100%;
	border: none;
	background-color: #015273;
	height: 48px;
	line-height: 48px;
	border-radius: 4px;
	color: #fff;
	font-size: 18px;
}
.contact ul {
	padding: 10px;
}
.contact ul img {
	width: auto;
	margin: auto;
}
.contact ul li {
	display: flex;
	align-items: center;
	padding: 10px;
}
.contact ul li:not(:first-child) {
	border-top: 1px solid #eee;
}
.contact ul li > p {
	width: 11%;
}
.contact ul li > div {
	padding-left: 10px;
	font-size: 14px;
}
.contact ul li > div p:first-child {
	color: #999;
}
footer {
	background-color: #000;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	padding: 10px 0;
}
footer > div {
	padding: 0 10px;
}
footer > div * {
	margin-bottom: 10px;
}
footer > div a {
	color: rgba(255, 255, 255, 0.6);
}
footer > div:first-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer > div:first-child img {
	width: 60%;
}
