/* 全局样式 */
* {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  color: #000000;
}

body {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  font-family: 'Microsoft YaHei', 'Arial', arial, sans-serif;
  /* color: #666; */
  font-weight: normal;
}

ul,
li,
ol {
  list-style-type: none;
}

img {
  border: 0;
}


h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: #3b3c36;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

i,
b,
strong {
  font-weight: normal;
  font-style: normal;
}



input,
select,
textarea {
  outline: none;
}

em {
  font-style: normal;
}



/* 处理左右浮动 记得加上clearfix清除浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix:after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

/* 有效区域（根据设计图来） 1440和1200的要考虑适配问题 */

/* 常规宽度（常用） */
.w1680 {
  max-width: 1680px;
  width: 87.5%;
  margin: 0px auto;
}

.w1440 {
  max-width: 1440px;
  width: 75%;
  margin: 0px auto;
}

/* 常规宽度（常用） */
.w1200 {
  max-width: 1200px;
  width: 62.5%;
  margin: 0px auto;
}

.w960 {
  max-width: 960px;
  width: 50%;
  margin: 0px auto;
}



/* 字体文件 */

/* Montserrat */
@font-face {
  font-family: 'Montserrat';
  src: url(../font/Montserrat/Montserrat.otf);
}

@font-face {
  font-family: 'Segoe UI';
  src: url(../font/SegoeUI/SegoeUI.ttf);
}

@font-face {
  font-family: 'KaushanScript';
  src: url(../font/font1410/KaushanScript-Regular.ttf);
}

@media screen and (min-width: 1200px) {
  * {
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  * {
    font-size: 16px;
  }
}

@media screen and (min-width: 1680px) {
  * {
    font-size: 18px;
  }


}