/* 去除标签自带的margin和padding */
* {
  margin: 0;
  padding: 0;
}
/* 设置页面的统一的样式 */
body {
  font: 16px "Microsoft Yahei", HELVETICA;
  background: #fff;
  word-wrap: break-word;
}
/* 去除a标签默认样式 */
a {
  text-decoration: none;
}
a:link,
a:visited {
  text-decoration: none;
  /*超链接无下划线*/
}
a:hover {
  text-decoration: none;
}
/* i使斜体的文字正常 em使强调的内容正常 */
em,
i {
  font-style: normal;
}
/* 去除li元素默认的小圆点 */
li {
  list-style: none;
}
/* 去除图片的margin和padding */
img {
  display: block;
}
/* 清除浮动 */
.clear::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@font-face {
  font-family: 'iconfont';
  src: url('../ttf/iconfontc8de.ttf') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.head {
  width: 100%;
  height: 90px;
  display: flex;
  font-size: 16px;
  justify-content: center;
  padding: 15px;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: repeating-linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
.head .head-container {
  width: 1080px;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.head .head-container .logo {
  width: 310px;
  height: 85%;
  background: url("../png/logo.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
.head .head-container .navigationLabels {
  width: 100%;
  height: 100%;
  line-height: 2.5;
  margin-left: 50px;
  padding: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.head .head-container .navigationLabels .label {
  position: relative;
}
.head .head-container .navigationLabels .label a {
  font-weight: 400;
  color: #fff;
}
.head .head-container .navigationLabels .label .pullDown {
  display: none;
  width: 300px;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  right: -117px;
}
.head .head-container .navigationLabels .label .pullDown .top {
  width: 100%;
  height: 18px;
  background: url("../png/work.png") no-repeat;
  background-size: 100% 100%;
}
.head .head-container .navigationLabels .label .pullDown .nav {
  width: 100%;
  text-align: center;
  background-color: #fffef8;
  display: flex;
  justify-content: center;
}
.head .head-container .navigationLabels .label .pullDown .nav a {
  color: #000;
}
.head .head-container .navigationLabels .label:hover .pullDown {
  display: block;
}
.heads {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  padding: 15px;
  box-shadow: inset 0px -2px 3px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 1000;
  background: repeating-linear-gradient(to top, #ffffff, #ffffff);
}
.heads .head-container {
  width: 1080px;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.heads .head-container .logo {
  width: 310px;
  height: 85%;
  background: url("../png/logo2.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
.heads .head-container .navigationLabels {
  width: 100%;
  height: 100%;
  line-height: 2.5;
  margin-left: 50px;
  padding: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.heads .head-container .navigationLabels .label a {
  font-weight: 400;
  color: #000;
}
.tailBar {
  width: 100%;
  height: 200px;
  background: url("../png/tailbar.png") no-repeat;
  background-size: 100% 100%;
  text-align: center;
  overflow: hidden;
}
.tailBar .content {
  width: 1080px;
  height: 100%;
  font-size: 14px;
  display: inline-block;
  position: relative;
}
.tailBar .content .copyright {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.tailBar .content .links {
  width: 1000px;
  height: 50px;
  margin: 0 auto;
  line-height: 50px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.tailBar .content .links span,
.tailBar .content .links a {
  color: #fff;
}
.tailBar .content .nav {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.tailBar .content .nav .logo {
  width: 100%;
  height: 100%;
}
.tailBar .content .nav .logo .image {
  width: 210px;
  height: 50px;
  margin-top: 50px;
  margin-left: 50px;
  background: url("../png/logo.png") no-repeat;
  background-size: 100% 100%;
}
.tailBar .content .nav .contact {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-left: 50px;
  color: #fff;
}
.tailBar .content .nav .contact span {
  line-height: 2;
  text-align: left;
  display: block;
}
.tailBar .content .nav .contact span .phone {
  transform: rotate(100deg);
}
