﻿@import url(font.css);
* {
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background-color: #fff;
  overflow-x: hidden;
  color: #333;
  font-size: 12px;
  font-family: '微软雅黑', 'Arial', 'Microsoft YaHei', 'Helvetica Neue',
    'Helvetica', 'Arial', 'sans-serif';
}
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent; /*-webkit-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
  -moz-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
  transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;*/
}
a:hover {
  color: #00a1e9; /*text-decoration: underline;*/
}
input,
select,
img {
  vertical-align: middle;
}
ul,
li {
  list-style: none;
}

/* 超出2行省略号标识 */
.overflow_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

/* 超出2行省略号标识 */
.overflow_1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
