
/* *** Common Reset *** */

html {
    -webkit-text-size-adjust: 100%; 
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "SourceHanSansCN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-all;
}


h1, h2, h3, h4, h5, h6, dl, dt, dd, ul, ol, li {
    list-style: none;
}

a, span, i {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: 700;
    display: inline-block;
}

img {
    vertical-align: middle;
    border: 0;
	height: auto; 
    max-width: 100%;
    max-height:100%;
}

/* 3. 폼 요소 초기화 */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    line-height: inherit;
    vertical-align: middle;
    border: 1px solid #ddd;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

button {
    cursor: pointer;
    background-color: transparent;
}

textarea {
    display: block;
    overflow: auto;
    resize: vertical;
}

