﻿@charset "utf-8";

/* CSS Document */

body,
html {
	margin: 0;
	padding: 0;
	min-width: 1200px;
	overflow: auto;
}

body {
    font-family: "microsoft yahei";
    font-size: 16px;
    background-color: #ffffff;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	font-weight: 500;
}

ul,
ul li {
	list-style: none;
	padding: 0;
	margin: 0
}

a,
select,
input,
textarea {
	outline: none;
	text-decoration: none
}

img {
	border: 0
}

a:link,
a:visited,
a:active {
	color: #383737;
}
a:hover {
	color: #c00;
}

.clearfix:after {
	display: block;
	content: "";
	clear: both;
	visibility: hidden;
	height: 0;
}

.clearfix {
	zoom: 1;
}

* {
	box-sizing: border-box;
}


/*对齐方式*/

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}


/*删格布局*/

.flexrow {
	position: relative;
}

.flexcol {
	position: relative;
	float: left;
}


/*分列布局*/

.flexcol-2 {
	width: 50%
}

.flexcol-3 {
	width: 33.333333%
}

.flexcol-4 {
	width: 25%
}

.flexcol-5 {
	width: 20%
}


/*table盒模型*/

.flex-tab {
	display: table;
	position: relative;
	width: 100%;
	table-layout: fixed;
}

.flex-tab-cell {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.tit-nowrap {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}


/*颜色*/

.color-blue {
	color: #268bea
}

.color-red {
	color: #e55a5a
}


/*按钮组*/

.btn {
	position: relative;
	display: block;
	height: 72px;
	line-height: 72px;
	border: 1px solid transparent;
	text-align: center;
	border-radius: 4px;
	font-size: 22px;
	font-weight: bold;
	margin-top: 24px;
}

.btn:after {
	content: '';
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	display: block;
	position: absolute;
	border-radius: 4px;
}

.btn-blue {
	background-image: linear-gradient(to top, #048ed9, #03b3e5);
	border-color: #059fca;
	transition: all 0.4s;
}

.btn-orange {
	background-image: linear-gradient(to top, #fd601b, #ff9413);
	border-color: #ef6225;
	transition: all 0.4s;
}

.btn-green {
	background-image: linear-gradient(to top, #25cca7, #06d0ab);
    border-color: #22b572;
    transition: all 0.4s;
}

.btn-green:link,
.btn-green:visited,
.btn-green:hover,
.btn-green:active {
	color: #fff
}

.btn-green:hover {
	background-image: linear-gradient(to top, #10e0b2, #1cd8b6)
}


.btn img {
	padding-left: 15px;
}

.btn-gray {
	background-image: linear-gradient(to top, #f1f1f1, #fefefe);
	border-color: #ededed;
	font-size: 18px;
	font-weight: normal;
	color: #666;
	height: 64px;
	line-height: 64px
}

.btn-blue:link,
.btn-blue:visited,
.btn-blue:hover,
.btn-blue:active {
	color: #fff
}

.btn-blue:hover {
	background-image: linear-gradient(to top, #026df2, #029df2)
}

.btn-orange:link,
.btn-orange:visited,
.btn-orange:hover,
.btn-orange:active {
	color: #fff
}

.btn-orange:hover {
	background-image: linear-gradient(to top, #ff3c00, #ff6600)
}




.btn-gray:link,
.btn-gray:visited,
.btn-gray:hover,
.btn-gray:active {
	color: #666
}

.btn-gray:hover {
	background-image: linear-gradient(to top, #efeeee, #fafafa)
}


/*panel*/

.panel {
	height: 178px;
	border-radius: 8px;
	padding: 30px 40px 30px 200px;
	border: 1px solid transparent;
	position: relative;
}

.panel:after {
	content: '';
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border: 1px solid rgba(255, 255, 255, 0.44);
	display: block;
	position: absolute;
	border-radius: 8px;
}

.panel-blue {
	background-image: linear-gradient(to top, #048dd9, #05bef3);
	border-color: #0389af;
}

.panel-green {
	background-image: linear-gradient(to top, #449625, #69d33f);
	border-color: #2b8509;
}

.panel-grown {
	background-image: linear-gradient(to top, #d27d30, #fca53b);
	border-color: #af8503;
}

.panel-red {
	background-image: linear-gradient(to top, #c94740, #f85c5b);
	border-color: #c00539;
}

.panel .icon {
	position: absolute;
	height: 120px;
	width: 120px;
	left: 50px;
	top: 30px;
	background-repeat: no-repeat;
	background-position: center center;
}

.panel .icon-01 {
	background-image: url(../images/icon-why-01.png);
}

.panel .icon-02 {
	background-image: url(../images/icon-why-02.png);
}

.panel .icon-03 {
	background-image: url(../images/icon-why-03.png);
}

.panel .icon-04 {
	background-image: url(../images/icon-why-04.png);
}

.panel .content {
	background: url(../images/why-line.png) no-repeat center 55px;
	color: #fff
}

.panel .content h1 {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 30px;
}

.panel .content p {
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	line-height: 24px;
}