﻿@charset "utf-8";
/*
@media screen and(-webkit-min-device-pixel-ratio:0){} chrome
filter: alpha(opacity=100);
pointer-events: none;	//	鼠标穿透
hidefocus = "true"	//	ie a标签属性 超链接不显示周围的虚线
*/

/*	竖排文字
.writing-vertical{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	writing-mode: tb-rl;
}
*/

/*	多行文本省略号
.multi-ellipsis{ overflow: hidden; text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
*/


/* css reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
ol,
ul,
li,
dl,
dt,
dd,
table,
caption,
tr,
th,
td,
span,
p,
a,
b,
u,
i,
em,
img,
iframe,
fieldset,
form,
label,
legend,
input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
}

body {
	font: 14px/1.5 "微软雅黑", Arial, Tahoma, Helvetica, sans-serif;
	color: #474747;
	background-color: #fff;
	margin: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	outline: 0;
	border: 0;
	background: none;
	color: inherit;
}

input:focus,
textarea:focus {
	color: inherit;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

ol,
ul,
li {
	list-style: none;
}

input,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	overflow: auto;
	resize: none;
}

table {
	border-collapse: collapse;
	border: 0;
}

img {
	border: 0;
	outline: 0;
	vertical-align: middle;
}

a {
	text-decoration: none;
	color: inherit;
}

a:focus {
	outline: 0;
}

svg:not(:root) {
	overflow: hidden;
}

input[type=date] {
	background-color: transparent;
	border: 0;
	filter: alpha(opacity=0);
}

a:hover {
	color: #84C225;
}

::-ms-clear,
::-ms-reveal {
	display: none;
}

/* WebKit browsers */
::-webkit-input-placeholder {
	color: #474747;
}

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
	color: #474747;
	opacity: 1;
}

/* Mozilla Firefox 19+ */
::-moz-placeholder {
	color: #474747;
	opacity: 1;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
	color: #474747;
}

.placeholder {
	color: #474747;
}
/* 公共导航栏 */
.head {
    position: relative;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    background-color: pink;
}
.head .nav-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
	z-index: 999;
}
.head .nav-box .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(102, 102, 102, 0.82);
    font-size: .875rem /* 14/16 */;
    font-family: Microsoft YaHei;
    font-weight: 400;
	padding: 1.6rem 1rem 1.6rem 2rem;
	background-color: #fff;
	box-sizing: border-box;
	padding-left: 14%;
}
.head .nav-box .logo {
	position: absolute;
    left: 1%;
    bottom: -6%;
    width: 9%;
}
.head .nav-box .logo img {
	width: 100%;
}
.head .nav .nav-item {
	min-width: 60px;
    text-align: center;
	cursor: pointer;
}
.head .nav .border {
	width: 1px;
	min-width: none;
	height: 18px;
	background: #E8E8E8;
}
.head .nav .current {
	position: relative;
    color: #84C225;
	font-weight: bold;
}
.head .nav .current::after {
	content: '';
    position: absolute;
    bottom: -1.9rem;
    right: -10px;
    left: -10px;
    display: inline-block;
    height: 7px;
    background-color: #84C225;
	border-radius: 3px;
}
.btn {
	width: 12%;
}
.btn img {
	width: 100%;
}
/* 公共测试 */
.test {
    height: 18rem /* 300/15 */;
    background-color: #fff;
    text-align: center;
    width: 100%;
    padding-top: 4%;
    box-sizing: border-box;
}
.test .test-text {
    width: 100%;
    font-size: 0.7rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #A5A5A5;
    line-height: 33px;
    margin: 0 auto;
}
.test .test-btn {
    width: 60%;
    height: 4rem /* 60/15 */;
    background: linear-gradient(-38deg, #00BAFF, #056BD3);
    border-radius: 39px;
    font-size: 2rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 4rem;
    margin: 0 auto;
    margin-top: 1%;
}
/* 公共底部 */
.bottom {
	background: url(../image/common/bottom.png) center center / cover no-repeat; 
}
.bottom .border-top{
    height: 2vh;
    width: 100%;
}
.bottom .bottom-content {
    display: flex;
    height: 20rem;
    width: 100%;
}
.bottom .bottom-content .bottom-left , .bottom .bottom-content .bottom-right {
    height: 100%;
    width: 40%;
	box-sizing: border-box;
}
.bottom .bottom-left {
	width: 100%;
	text-align: center;
}
.bottom .bottom-left .contact {
	margin: 6% auto;
	font-size: 1rem /* 16/16 */;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #FFFFFF;
	width: 72%;
	text-align: left;
}
.bottom .bottom-left .contact .text {
	padding: 10px 0;
}
.bottom .bottom-center {
    position: relative;
    height: 100%;
    width: 20%;
}
.bottom .bottom-center img {
	width: 80%;
}
.bottom .bottom-center .top {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 50px solid #EDF8FF;
}
.bottom .bottom-center .color-box {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 50px solid #8CC8FB;
    background: linear-gradient(0deg, #005197, #8CC8FB);
}
.bottom .bottom-center .erweima {
	text-align: center;
	margin-top: 20%;
}
.bottom .border-bottom {
    height: 3rem;
    width: 100%;
    background: #EDF8FF;
    line-height: 3rem;
    padding: 0px 4rem;
    box-sizing: border-box;
}
.bottom .bottom-right {
	font-size: 1rem /* 16/16 */;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	padding: 6% 0 0 6%;
    box-sizing: border-box;
}
.bottom .bottom-right .imgs {
	width: 80%;
}
.bottom .bottom-right .imgs img {
	width: 23%;
}
.bottom .border-bottom .text-left {
	font-size: .875rem /* 14/16 */;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #005197;
	margin-right: 20px;
}
.bottom .border-bottom .text-center {
	font-size: .875rem /* 14/16 */;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #005197;
}
.bottom .border-bottom .text-right {
	float: right;
	font-size: .75rem /* 12/16 */;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #424242;
}

/* 返回顶部 */
.goTop {
	cursor: pointer;
	position: fixed;
	right: 0;
	bottom: 20%;
}