input,
button,
select,
textarea {
    outline: none;
    border: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}


/* remember to define focus styles! */

:focus {
    outline: 0;
}


/* remember to highlight inserts somehow! */

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}


/* tables still need 'cellspacing="0"' in the markup */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* 禁用iPhone中Safari的字号自动调整 */

html {
    -webkit-text-size-adjust: none;
}


/* 设置HTML5元素为块 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block;
}


/* 设置图片视频等自适应调整 */

img {
    max-width: 100%;
    height: auto;
    width: auto;
    /* ie8 */
}

.video embed,
.video object,
.video iframe {
    width: 100%;
    height: auto;
}

body {
    width: 100%;
    background-color: #f0eff5;
    font-family: arial, simhei;
}

ul,
ol {
    list-style: none;
}


/*input[disabled]{-webkit-text-fill-color:#fff; -webkit-opacity: 1;}*/

input,
button,
select,
textarea {
    outline: none;
    border: 0;
}


/*input[type="button"],input[type="submit"]{-webkit-appearance: none;}*/

input {
    appearance: button;
    /*解决苹果手机上边框阴影及按钮格式自带样式*/
    -moz-appearance: button;
    /* Firefox */
    -webkit-appearance: button;
    /* Safari 和 Chrome */
}


/*header{width:100%;height:1.2rem;background-color:#36353b;}*/

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}


/*点击没闪*/

html {
    -webkit-tap-highlight-color: transparent;
}


/*隐藏滚动条*/

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    width: 0;
}


/* 滚动条的滑轨背景颜色 */

::-webkit-scrollbar-thumb {
    width: 0;
}


/* 滑块颜色 */

::-webkit-scrollbar-button {
    width: 0;
}


/* 滑轨两头的监听按钮颜色 */

::-webkit-scrollbar-corner {
    width: 0;
}


/* 横向滚动条和纵向滚动条相交处尖角的颜色 */


/*清除浮动*/

.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    *zoom: 1;
}


/*IE/7/6*/


/*默认按钮*/

.btn {
    height: 0.7rem;
    margin-left: 10px;
    padding: 0 12px;
    background: #c942c7;
    color: #fff;
    border-radius: 2px;
    font-size: 0.36rem;
    cursor: pointer;
}


/*placeholder属性颜色设置*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #dedede;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #dedede;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #dedede;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #dedede;
}

.container {
    max-width: 768px;
    margin: 0 auto;
    padding-top: 1.2rem;
}