/* 比较常用的css样式 */
@charset "utf-8";
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,fieldset,lengend,button,input,textarea,th,td {margin:0;padding:0;font-family:-apple-system,PingFangSC-Regular,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;}
a {text-decoration:none;color: #000}
a:hover {text-decoration:none;}
a,img,input,div {-webkit-tap-highlight-color:rgba(255,255,255,0);}
@media screen and (min-width:1024px){html{font-size:18px !important;}}
@media screen and (max-width:800px){html{font-size:17px !important;}}
@media screen and (max-width:414px){html{font-size:16px !important;}}
@media screen and (max-width:360px){html{font-size:14px !important;}}
@media screen and (max-width:320px){html{font-size:12px !important;}}
* {
 -webkit-touch-callout:none;
 -moz-touch-callout:none;
 -ms-touch-callout:none;
 touch-callout:none;
 }
 .mt0{
    margin-top: 0 !important;
}
.size20{
    width: 20px;
    height: 20px;
}
.size40{
    width: 40px;
    height: 40px;
}
.size50{
    width: 50px;
    height: 50px;
}
.size80{
    width: 80px;
    height: 80px;
}
.size100{
    width: 100px;
    height: 100px;
}
.themecolor{
    color: #f88601;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flexallcenter{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center; 
}
.flexrow{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;  
    align-items: center;
    -webkit-align-items: center; 
      
}
.flexcolmn{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;  
}
.flexbetween{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content:space-between;  
}
.flexaligncenter{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items:center;
    flex-direction: column;
}
.felxcontainercenter{
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    -webkit-align-items:flex-start;
    justify-content: center;
    -webkit-justify-content:center;  
}
.flex1{
    flex: 1;
}
.page {
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 20px;
    background-color: #f8f8f8;
    font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
}
.select-style {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-color: #fff;
    border-color:#fff;
    font-size: 1rem;
}
.textarea-style{
    padding:5px 5px;
    border:1px dotted #c3c3c3;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    resize: none;
    height: 2.7rem;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 1rem;
}
    .submit-button-full {
        display: block;
        width: 90%;
        margin-left: 15px;
        margin-right: 15px;
        text-align: center;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: #f88601;
        color: #fff;
        padding: 5px;
    }
    .submit-button-full-other{
        display: block;
        width: 90%;
        margin-left: 15px;
        margin-right: 15px;
        text-align: center;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        border:1px solid  #f88601;
        background-color: #fff;
        color: #f88601;
        padding: 5px;  
    }
    .point-none{
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: 1px solid #f88601;
        margin: 0 5px;
        
    }
    .point-full{
        width: 11px;
        height: 11px;
        border-radius: 50%;
        border: 1px solid #f88601;
        margin: 0 5px;
        padding: 2px;
        background-clip: content-box;
        background-color: #f88601;
    }
    .contain-cell {
        padding: 10px 15px;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }
    
    .contain-cell>img {
        width: 100%;
        height: 100%;
    }