@charset "utf-8";
/*
	CSS Document 
*/
@import url('//at.alicdn.com/t/c/font_2447528_kgcs3v0v7ko.css');
@import url('./country.css');

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Safari */
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
  zoom: 1;
}

html,
body {
  background-color: #F2F3F7;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333333;
}

a {
	color: #333;
}

a:hover,
a:focus {
	color: #e74444;
	text-decoration: none;
	-webkit-transition: all .8s;
	transition: all .8s;
}

a:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

li {
	list-style: none;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

input,
button,
textarea,
select {
	*font-size: 100%;
}

input,
select {
	vertical-align: middle;
}

select,
input,
button,
textarea,
button {
	font: 99%;
}

table {
	font-size: inherit;
	font: 100%;
	border-collapse: collapse;
}

pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	*font-size: 108%;
	line-height: 100%;
}

/* 清除浮动 */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}

.clear {
	clear: both;
	height: 0;
}

/* 向左浮动 */
.fl-fix {
	float: left;
}

/* 向右浮动 */
.fr-fix {
	float: right;
}

/* 图片最大100% */
.sk-img img {
	max-width: 100%;
	height: auto !important;
}

/* 鼠标悬浮图片放大 */
.sk-animation-img {
	display: block;
	overflow: hidden;
}

.sk-animation-img img {
	display: block;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}

.sk-animation-img:hover img {
	transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
}

/* 100%图片展示 */
.sk-banner-img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.sk-banner-img img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* 容器最大大小 */
.sk-main {
	width: 1200px;
	margin: auto;
}
.sk-ellipsis{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
}