@charset "UTF-8";



@font-face {
    font-family: 'din_alternatebold';
    src: url('../fonts/din_alternate_bold-webfont.woff2') format('woff2'),
         url('../fonts/din_alternate_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'din_condensed';
    src: url('../fonts/din_condensed-webfont.woff2') format('woff2'),
         url('../fonts/din_condensed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*Base on Eric Meyer Css Reset  */
/**
 * Initialization all html tag default value
 */
div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-weight: normal;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
/* Initialization tag
   ========================================================================== */
/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
 
html, body {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
 
/**
 * setting page default font siez
 * font-size: 62.5%; -->  10 ÷ 16 × 100% = 62.5%
 */
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
 
body {
  font-size: 12px;
  font-size: 1.2rem;
  color: #222;
  line-height: 1.6;
  font-style: normal;
  font-weight: normal;
  font-family: "PingFang SC","Lantinghei SC","Microsoft YaHei","HanHei SC","Helvetica Neue","Open Sans",Arial,"Hiragino Sans GB","微软雅黑",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;
}
ol, ul {
  list-style: none;
}
 
blockquote, q {
  quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
 
table {
  border-collapse: collapse;
  border-spacing: 0;
}
 
hr {
  height: 0;
}
 
/* Embedded content
   ========================================================================== */
img, embed, object {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
 
svg:not(:root) {
  overflow: hidden;
}
 
/* Forms
   ========================================================================== */
input, select {
  vertical-align: middle;
}
 
input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  border-radius: 0;
  outline: none;
  border: none;
}
/*clean ie select arrow*/
select::-ms-expand { display: none; }
button, input, optgroup, select, textarea {
  margin: 0;
}
 
input[type="submit"], input[type="radio"], input[type="checkbox"], input[type="button"], input[type="reset"] {
  cursor: pointer;
}
 
input[type="radio"], input[type="checkbox"] {
  padding: 0;
}
 
button, select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background: transparent;
  border:none;
}

input[type="button"], input[type="submit"], input[type="reset"] {
 
-webkit-appearance: none;
 
}
textarea { 
  -webkit-appearance: none;
  resize: none;
  display: block;
}  
 
/* Links
   ========================================================================== */
a {
  text-decoration: none;
  background-color: transparent;
  transition: all .1s ;
}
a:active, a:hover {
  outline: 0;
}
 
/* lists
   ========================================================================== */
/**
 * clear ol, ul list style
 */
ul, li, ol {
  list-style: none;
}
 
/* box-sizing
   ========================================================================== */
/**
 * clear all box-sizing setting
 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
 
