@charset "utf-8";
a{text-decoration:none;color:#333}
ul,li{list-style:none;margin:0;padding:0}
html{background: #FFF}


html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.6;}
body{-webkit-touch-callout:none;line-height:inherit;font-size:14px;color:#333;}
input,label,select,textarea{outline:0;-webkit-user-modify:read-write-plaintext-only;-webkit-tap-highlight-color:transparent;}
label{-webkit-user-modify:read-only;}
input{border:none;background:0 0;-webkit-appearance:none;}
section{min-height:20px;}
section img{ width:100%;}
.clear{clear:both;margin:0;padding:0;}
.mt10{margin-top: 10px;}
.mb10{margin-bottom: 10px;}
.mp10{padding: 10px;}
.mt20{margin-top: 20px;}
.kuang{border:1px solid #fdfdfd; border-radius:4px}

/********index********/
.indexinfo1{margin:10px;background:#ffffff;overflow:hidden;}
.indexinfo{background:#ffffff;overflow:hidden; max-width: 960px;  margin:10px 5px; box-shadow: 2px 3px 4px 2px rgba(0,0,0,.2); padding:10px 10px 0;}
.indexinfo .tit,.indexinfo .txt{ padding:5px 0px; text-align: justify;word-break: break-all;}
.indexinfo .tit{ color:#35dfc5;font-size: 20px;border-bottom: 1px solid #35dfc5;}

.indexinfo .tit1{ color:#35dfc5;font-size: 20px;border-bottom: 2px solid #35dfc5;}

.btn{margin:10px;}
.btn .weui-btn_plain-default{ width:80%}


.weui-navbar{border-bottom: 1px solid #fff;}

/*分页*/
.page{ margin-top: 20px; text-align: center; margin-bottom: 20px;}
.page a{display: inline-block;  background: #f5f5f5; color: #888; padding: 10px 13px; min-width: 15px;  transition:background-color ease .5s; font-family:"microsoft yahei"; border-radius:3px;}
.page span{ display: inline-block; padding: 10px 10px; min-width: 15px;}
.page span.current{ display: inline-block;background: #15c142 url() 0 0 no-repeat; color: #fff;  padding: 10px 13px; min-width: 15px;border-radius:3px;}
.page .pagination li{ display: inline-block; margin-right: 5px; text-align: center;}
.page .pagination li.active span{ background: #15c142 url() 0 0 no-repeat;color: #fff;}


/*支付样式*/
.modal {
    display: none; /* 默认隐藏 */
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    -webkit-animation-name: fadeIn; 
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}
 
/* 弹窗内容 */
.modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    max-width: 600px;
    left: 50%; 
    transform: translate(-50%); 
}
.modal-body ol li{ height:50px; padding:10px;  line-height: 50px;text-align: left; position: relative;display: block;margin-bottom: 15px;background: transparent;border: 1px solid #ddd;border-radius:5px;padding: 0 10px;}
.modal-body ol li span{ margin-left:10px;}
/* 关闭按钮 */
.close {
    color: white;
    float: right;
    font-size: 20px;
    font-weight: bold;
}
 
 
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
 
.modal-header {
    padding: 10px 25px;
    background-color: #5cb85c;
    color: white;
}
 
.modal-body {padding: 25px;}
 
 
/* 添加动画 */
@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}
 
@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}
 
@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
 
@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}