.title::after {
	background-color: #1976e9;
}

/* banner */
.bannerBox {
	position: relative;
}

.banner {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.banner>img {
	width: 100%;
}


/* section-01 */
.section-01 .box {
	background-color: #FFFFFF;
	border-radius: 10px;
	text-align: center;
	padding: 30px;
	box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
	transition: all 300ms;
}

.section-01 .box:hover {
	transform: translateY(-4px);
	box-shadow: 0 3px 30px rgba(0, 0, 0, .2);
}

.section-01 .box i {
	display: inline-block;
	width: 100%;
	max-width: 82px;
}

.section-01 .box h3 {
	font-weight: bold;
	color: #1976e9;
}

.section-01 .box p {
	text-align: left;
}

.section-01 .box a {
	display: inline-block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	background-color: #ff9703;
	color: #FFFFFF;
	transition: all 300ms;
}

.section-01 .box a:hover {
	background-color: #ff6703;
}

/* section-02 */
.section-02 .box {
	background-color: #fdfdfd;
	border: solid 1px #E5E5E5;
}

.section-02 .box .text {
	padding: 20px;
}

.section-02 .box h3 {
	margin-top: 0;
	font-weight: bold;
	color: #595959;
	border-bottom: solid 1px #E5E5E5;
	padding-bottom: 10px;
}

.section-02 .box h3 a {
  float: right;
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	color: #797979;
	padding-top: 4px;
	transition: all 300ms;
}

.section-02 .box h3 a:hover {
	color: #1976e9;
	transform: translateX(3px);
}

.section-02 .box ul li {
	height: 30px;
	line-height: 30px;
	position: relative;
}

.section-02 .box ul li a::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	background-color: #19466d;
	margin-right: 8px;
	margin-bottom: 4px;
}

.section-02 .box ul li a {
	display: block;
	max-width: 84%;
	color: #19466d;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 300ms;
}

.section-02 .box ul li a:hover {
	color: #1976e9;
	text-decoration: underline;
}

.section-02 .box ul li a:hover::before {
	background-color: #1976e9;
}

.section-02 .box ul li .date {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	color: #959595;
}

/* section-03 */
.section-03 {
	background: #00c6ff;
	background: -webkit-linear-gradient(to bottom, #00c6ff, #0072ff);
	background: linear-gradient(to bottom, #00c6ff, #0072ff);
}

.section-03 .box {
	background-color: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 300ms;
}

.section-03 .box .text {
	padding: 20px;
}

.section-03 .box .text span {
	float: left;
	font-size: 48px;
	font-weight: bold;
	color: #206bd1;
	padding-right: 20px;
	border-right: solid 1px #d2d2d2;
}

.section-03 .box .text p {
	float: left;
	font-size: 24px;
	margin-left: 20px;
	margin-bottom: 0;
	color: #595959;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.section-03 .box:hover {
	transform: translateY(-4px);
	box-shadow: 0 3px 30px rgba(0, 0, 0, .2);
}

.section-03 .box:hover p {
	color: #353535;
}

/* section-04 */
.section-04 {
	background: #f6f6f6 url(../images/bg-01.jpg) center top no-repeat;
	padding-top: 80px;
	margin-top: -200px;
}
@media (max-width: 992px) {
	.section-04 { 
		margin-top: -130px;
	}
}
.section-04 .formBox {
	margin-top: 50px;
	background-color: #FFFFFF;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 30px rgba(22, 42, 165, .2);
}

.section-04 .formBox h3 {
	font-size: 28px;
	font-weight: bold;
	color: #313131;
	text-align: center;
}

.section-04 .formBox h4 {
	font-size: 24px;
	color: #353535;
	text-align: center;
}

.section-04 .formBox h4 strong {
	color: #e5004f;
}

.section-04 .radio-group {
	margin-top: 30px;
}

.section-04 .radio-group p {
	font-size: 18px;
	color: #353535;
	margin-bottom: 15px;
}

.section-04 .radio-group label {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #eee;
	border-radius: 20px;
	position: relative;
	color: #535353;
	font-weight: normal;
	margin-bottom: 0;
}

.section-04 .radio-group .select label {
	background-color: #1976e9;
	color: #FFFFFF;
}

.section-04 .radio-group label input {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin-top: 0;
}

.section-04 .input-group {
	margin-top: 10px;
}

.section-04 .input-group input {
	width: 100%;
	height: 60px;
	font-size: 22px;
	border-radius: 30px;
	padding: 0 30px;
	border: solid 2px #e5e5e5;
	background-color: #eee;
	margin-top: 20px;
}

.section-04 .input-group input:focus {
	border-color: #1976e9;
}

.section-04 .input-group .submit-btn {
	border: none;
	color: #FFFFFF;
	background-color: #1976e9;
}

.section-04 .tableBox ul li {
	height: 48px;
	line-height: 48px;
}

.section-04 .tableBox ul li:hover {
	color: #1976e9;
}

.section-04 .tableBox .table-th {
	height: 40px;
	line-height: 40px;
	border-bottom: solid 1px #1976e9;
	font-size: 18px;
	color: #333;
	margin-top: 20px;
	margin-bottom: 15px;
}

.section-04 .tableBox span {
	float: left;
	width: 25%;
	text-align: center;
}

/* section-05 */
.section-05 .row>div {
	border: solid 1px #F5F5F5;
	transition: all 300ms;
}

.section-05 .row>div:hover {
	box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
}

.section-05 .box {
	text-align: center;
	padding: 30px 0;
}

.section-05 .box i {
	display: inline-block;
	width: 60px;
	height: 60px;
}

.section-05 .box p {
	font-size: 18px;
	font-weight: 600;
}

.section-05 .box span {
	display: block;
	width: 80px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #959595;
	margin: 0 auto;
	border-radius: 15px;
	border: solid 1px #e5e5e5;
	background-color: #FFFFFF;
	transition: all 300ms;
}

.section-05 .row>div:hover span {
	background-color: #1976e9;
	border-color: #1976e9;
	color: #FFFFFF;
}

/* section-06 */
.section-06 {
	background-color: #fbfbfb;
}

.section-06 .box {
	text-align: center;
}

.section-06 .box .icon {
	display: inline-block;
	width: 160px;
	height: 160px;
	border-radius: 80px;
	border: solid 2px #ebebeb;
	background-color: #FFFFFF;
	box-shadow: 0 0 20px rgba(0, 0, 0, .08) inset;
	position: relative;
}

.section-06 .box .icon i {
	display: inline-block;
	width: 80px;
	height: 80px;
	margin-top: 22px;
}

.section-06 .box .icon h3 {
	margin-top: 0;
	margin-bottom: 0;
}

.section-06 .box ul {
	text-align: left;
	padding: 20px;
}

.section-06 .box ul li {
	line-height: 2em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-06 .box ul li span {
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	background-color: #a0a0a0;
	color: #FFFFFF;
	margin-right: 15px;
}

.section-06 .box ul li:nth-child(odd) span {
	background-color: #1976e9;
}

.section-06 form {
	background-color: #1976e9;
	color: #FFFFFF;
	padding: 30px 15px;
}

.section-06 form h3 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 100px;
	position: relative;
}

.section-06 .form-inline .form-control {
	min-width: 70%;
	border-radius: 0;
	border: none;
	height: 40px;
}

.section-06 .form-inline .btn {
	width: 100%;
	background-color: #f39700;
	color: #FFFFFF;
	border-radius: 0;
	height: 40px;
}

/* section-07 */
.section-07 {
	background: url(../images/bg-cgal.jpg) center top no-repeat;
}

.section-07 .title2 p {
	color: #FFFFFF;
}

.section-07 .content {
	background: #1976e9;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom right, #39affc, #0055db);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom right, #39affc, #0055db);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
}

.section-07 .content .leftBox {
	text-align: center;
	color: #FFFFFF;
}

.section-07 .content .leftBox h3 {
	font-size: 48px;
	font-weight: bold;
	padding-top: 140px;
}

.section-07 .content .leftBox a {
	display: inline-block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	color: #FFFFFF;
	text-align: center;
	border: solid 2px #FFFFFF;
	font-size: 18px;
	margin-top: 100px;
}

.section-07 .content .leftBox a i {
	margin-left: 10px;
	transition: all 300ms;
}

.section-07 .content .leftBox a:hover i {
	transform: translateX(5px);
}

.section-07 .content .rightBox {
	background-color: #FFFFFF;
	padding: 5px 10px;
}

.section-07 ul li>div {
	padding: 5px;
}

.section-07 ul li .box {
	position: relative;
}

.section-07 ul li .box .pic {
	overflow: hidden;
}

.section-07 ul li .box .model {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .6);
}

.section-07 ul li .box .model a {
	display: inline-block;
	text-align: center;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 300ms;
}

.section-07 ul li .box .model a i {
	font-size: 12px;
	transition: all 300ms;
}

/* section-08 */
.section-08 {
	background-color: #f6f6f6;
}

.section-08 .box {
	background-color: #FFFFFF;
	height: 40px;
	line-height: 38px;
	border-radius: 30px;
	border: solid 1px #e5e5e5;
	margin-bottom: 20px;
	position: relative;
}

.section-08 .box span {
	display: inline-block;
	width: 38px;
	height: 38px;
	text-align: center;
	color: #FFFFFF;
	font-size: 22px;
	background: #1976e9;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.section-08 .box a {
	display: inline-block;
	margin-left: 20px;
	font-size: 16px;
	color: #353535;
	position: relative;
	z-index: 2;
}

.section-08 .box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	border-radius: 30px;
	background: #1976e9;
	transition: all 300ms;
}

.section-08 .box:hover::after {
	width: 100%;
	transition: all 600ms;
}

.section-08 .box:hover span {
	background: none;
}

.section-08 .box:hover a {
	color: #FFFFFF;
}


/* section-brand */
.section-brand {
	background: url(../images/brand-bg.jpg) center top no-repeat;
	background-size: cover;
}

.section-brand .row>div {
	border-right: solid 1px rgba(255, 255, 255, .3);
}

.section-brand .row>div:last-child {
	border-right: none;
}

.section-brand .box {
	color: #FFFFFF;
	text-align: center;
}

.section-brand .box i {
	display: inline-block;
	width: 120px;
	height: 120px;
}


@media (max-width: 768px) {

	/* xs */
	.bannerBox .s-bar {
		padding: 20px;
	}

	.bannerBox .s-bar i {
		width: 30%;
		max-width: 64px;
	}

	.bannerBox .s-bar .text {
		width: 60%;
	}

	.section-01 .box {
		padding: 20px 10px;
	}

	.section-03 .box {
		margin-bottom: 20px;
	}

	.section-03 .box .text {
		padding: 8px;
	}

	.section-03 .box .text span {
		display: none;
	}

	.section-03 .box .text p {
		float: none;
		margin-left: 0;
		font-size: 14px;
		text-align: center;
	}

	.section-04 .radio-group label {
		height: 30px;
		line-height: 30px;
	}

	.section-04 .input-group input {
		font-size: 14px;
		height: 40px;
		border-width: 1px;
	}

	.section-04 .formBox h4 {
		font-size: 22px;
	}

	.section-04 .tableBox ul li {
		height: 30px;
		line-height: 30px;
	}

	.section-04 .tableBox .table-th {
		font-size: 15px;
	}

	.section-06 .box .icon {
		width: 100px;
		height: 100px;
		border-radius: 60px;
	}

	.section-06 .box .icon i {
		width: 72px;
		height: 72px;
		margin-top: 0;
		line-height: 100px;
	}

	.section-06 .box .icon h3 {
		margin-top: 40px;
		font-weight: bold;
	}

	.section-06 .box ul {
		text-align: center;
	}

	.section-06 .box ul li span {
		display: none;
	}

	.section-08 .box {
		margin-bottom: 10px;
	}

	.section-brand .box i {
		width: 60px;
		height: 60px;
		background-size: contain;
	}

	.section-brand .box h3 {
		font-size: 18px;
		margin-top: 10px;
		margin-bottom: 5px;
	}

	.section-brand .box p {
		margin-bottom: 0;
	}
  .section-02 .box{
    margin-bottom: 20px;
  }
  .section-02 .box.last{
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {

	/* 大于xs */
	/** 如果屏幕大于768px才设置banner的高度，小于让图片宽度撑开 **/
	.banner {
		height: 420px;
	}
}

@media (max-width: 992px) {

	/* xs-sm */
	.section-04 .formBox {
		padding: 15px 8px;
		margin-top: 0;
	}

	.section-04 .tableBox {
		margin-top: 50px;
	}

	.section-04 .tableBox .table-th {
		margin-top: 10px;
	}

	.section-04 .tableBox .tempWrap {
		height: 90px !important;
	}

	.section-06 .box ul {
		padding: 10px;
	}

	.section-06 .box ul li span {
		margin-right: 5px;
	}

	.section-06 .form-group:last-child {
		margin-bottom: 0;
	}

	.section-brand .row>div:nth-child(even) {
		border-right: none;
	}

	.section-brand .row>div:nth-child(1),
	.section-brand .row>div:nth-child(2) {
		border-bottom: solid 1px rgba(255, 255, 255, .3);
	}

	.section-brand .row>div:nth-child(1) .box,
	.section-brand .row>div:nth-child(2) .box {
		padding-bottom: 20px;
	}

	.section-brand .row>div:nth-child(3) .box,
	.section-brand .row>div:nth-child(4) .box {
		padding-top: 20px;
	}

}

@media (min-width: 769px) and (max-width: 992px) {

	/* sm */
	.bannerBox .s-bar {
		top: -80px;
	}

	.section-01 .box a {
		width: 80%;
	}

	.section-03 .box .text {
		padding: 15px;
	}

	.section-03 .box .text span {
		font-size: 36px;
		padding-right: 10px;
	}

	.section-03 .box .text p {
		margin-left: 10px;
		font-size: 18px;
	}

	.section-06 .box .icon {
		width: 120px;
		height: 120px;
		border-radius: 60px;
	}

	.section-06 .box .icon i {
		width: 72px;
		height: 72px;
		margin-top: 10px;
	}

	.section-06 .box .icon h3 {
		font-size: 18px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {

	/* md */
	.section-01 .box.mt-3 {
		margin-top: 30px;
	}

	.section-01 .box a {
		width: 80%;
	}

	.section-03 .box .text span {
		padding-right: 15px;
		font-size: 40px;
	}

	.section-03 .box .text p {
		margin-left: 15px;
		font-size: 20px;
	}
}

@media (max-width: 1200px) {
	/* xs-md */

}

@media (min-width: 992px) {

	/* md-lg */
	.section-06 .box .icon::after {
		content: url(../images/icon-line.png);
		display: inline-block;
		margin-top: 24px;
	}

	.section-06 form {
		height: 100px;
		line-height: 100px;
		padding: 0 15px;
	}

	.section-06 form h3::after {
		content: "";
		width: 1px;
		height: 40px;
		background-color: #FFFFFF;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}

	.section-07 ul li .box:hover .model {
		display: block;
	}

	.section-07 ul li .box .model:hover a {
		width: 70%;
		height: 40px;
		line-height: 40px;
	}
}

@media (min-width: 1200px) {

	/*lg*/
	.section-08 .box {
		height: 56px;
		line-height: 54px;
		margin-bottom: 30px;
	}

	.section-08 .box span {
		width: 54px;
		height: 54px;
		font-size: 24px;
		border-radius: 27px;
	}

	.section-08 .box a {
		font-size: 22px;
	}

	.section-08 .box::after {
		width: 54px;
		height: 54px;
	}
}
