html, body, 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 ,textarea,input,button,textarea{
	margin: 0;
	padding: 0;
	border: 0;
    box-sizing: border-box !important;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body,
html {
    width: 100%;
    /* min-height: 100%; */
    font-family: SourceHanSansCN;
    box-sizing: border-box;
    color:#333333;
}
body{
    position: relative;
}
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;
}


a {
    display: inline-block;
    text-decoration: none;
    outline: none;
}

img{
    border: 0;
}

input ,textarea{
    outline: none;
    /* background: transparent; */
    border:0;
}

button {
    outline: none;
    cursor: pointer;
    background: transparent;
    border:0;
}

span {
    display: inline-block;
}

b,em,i{
    display: inline-block;
    font-style: normal;
}


input::-moz-input-placeholder{
    color:#BBBBBB;
}
input::-ms-input-placeholder{
    color:#BBBBBB;
}
input::-webkit-input-placeholder{
    color:#BBBBBB;
}
textarea::-moz-input-placeholder{
    color:#bbb;
}
textarea::-ms-input-placeholder{
    color:#bbb;
}
textarea::-webkit-input-placeholder {
    color:#bbb;
}
select {
    position: relative;
    /* width: 100%; */
    /* border: 0; */
    box-sizing: border-box;
    /* -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none; */
    border-radius: 5px;
    /* appearance: none; */
    /*去掉下拉箭头*/
    /*清除ie的默认选择框样式清除，隐藏下拉箭头*/
    outline: none;
    z-index:9;
    /* background: transparent; */
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
}
select::-ms-expand {
    display: none;
}
input[type="checkbox"] , input[type="radio"] {
    -webkit-appearance: none;
    /*清除复选框默认样式*/
    -ms-appearance: none;
    /*清除复选框默认样式*/
    appearance: none;
    /*清除复选框默认样式*/
    /*高度*/
    vertical-align: middle;
    border: 0;
    content: "";
    cursor: pointer;
}
.modal{
    position: fixed;
    background: rgba(0,0,0,0.7);
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: none;
    z-index: 100
}
.modal_content{
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    margin:auto;
}
.modal_content h3, .modal_content p{
    text-align: center;
}
.modal_content p{
    padding-top:10px;
    font-size: 14px;
    color:#fb7e22;
}
.modal_close{
    cursor: pointer;
   position: absolute;
   top:-11px;
   right:-11px;
   width:26px;
   height:26px;
   border-radius: 50%;
   border:1px solid #eee;
   background-image: url(../image/close.jpg);
   background-size: 26px 26px;
   background-position: 0 0;
   background-repeat: no-repeat;
}
.modal_btn{
    padding-top:15px;
}
.confirm{
    width:100px;
    height:38px;
    line-height:38px;
    text-align: center;
    border-radius: 10px;
    background: #2b6bd4;
    color:#fff;
    display: block;
    margin:auto;
}
@media screen and (min-width:0px) and (max-width:720px){
    .modal_content{
        width:15rem;
        height:12rem;
        padding:1rem ;
    }
    .modal_close{
        top:-0.75rem;
        right:-0.75rem;
        width:1.875rem;
        height:1.875rem;
        background-size: 1.875rem 1.875rem;
     }
}
@media screen and (min-width:721px){
    .modal_content{
        width:300px;
        height:140px;
        padding:15px 25px;
    }
}