/*********css reset************/
/* 清除内外边距 */
body, p, /* structural elements 结构元素 */
ul, ol, li, /* list elements 列表元素 */
button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    /*font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;*/ /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    font: 12px/1 "SourceHanSansSC";
}

body {
    background: #fff;
}

body, html {
    height: 100%;
}

em, i {
    font-style: normal;
}

/* 将斜体扶正 */

/* 重置列表元素 */
ul, ol, li {
    list-style: none;
}

/* 重置文本格式元素 */
a {
    text-decoration: none;
    color: #000;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

input[type=text], input[type=password], input[type=search] {
    border: none;
    background: transparent;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

button, select, textarea {
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover, a:visited, a:link {
    text-decoration: none;
}

input[type=button] {
    border: none;
}

input[type=button]:disabled {
    background: #AAA9A9;
}

q:before, q:after {
    content: '';
}

/* 重置表单元素 */
img {
    border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
    outline: none;
}


/*@font-face {
	font-family:siyuan;
	src: url("font/SourceHanSansCN-Regular.otf");
}*/


/******清除浮动******/
.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/****placeholder颜色***/
input::-webkit-input-placeholder {
    color: #dcdcdc;
}

input:-moz-placeholder {
    color: #dcdcdc;
}

input::-moz-placeholder {
    color: #dcdcdc;
}

input:-ms-input-placeholder {
    color: #dcdcdc;
}

textarea::-webkit-input-placeholder {
    color: #dcdcdc;
}

textarea:-moz-placeholder {
    color: #dcdcdc;
}

textarea::-moz-placeholder {
    color: #dcdcdc;
}

textarea:-ms-input-placeholder {
    color: #dcdcdc;
}

/********弹窗**********/
.shadeOuter {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1002;
    /*display: none;*/
}

.shadeMiddle {
    width: 100%;
    height: 100%;
    display: table;
}

.shadeInner {
    width: 100%;

    display: table-cell;
    vertical-align: middle;

}

.shadebox {
    width: 90%;

    margin: 0px auto;
    padding: 20px 0px;
    background: #fff;
    margin: 0px auto;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: 0px 0px 15px #1dc651;
    -moz-box-shadow: 0px 0px 15px #1dc651;
    -webkit-box-shadow: 0px 0px 15px #1dc651;
    position: relative;
    z-index: 1003;
    text-align: center;
}

.shadeboxtmp {
    width: 100%;
    height: 100%;
    background: #fff;
}

.closeshade {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 1004;
    background: url(/img/wechatpages/icon_shade_close.png) no-repeat;
    background-size: 100% 100%;
}

.shadeword {
    display: block;
    width: 90%;
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
    padding: 0px 5%;
    text-align: center;
    color: #606060;
    font-size: 16px;
}

.shadeword img.code {
    width: 100%;
}

.shadeword p {
    width: 100%;
}

.shadeword img {
    width: 100%;
}

.shadebtn {
    width: 50%;
    margin: 0px auto;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
}

.shadeword .PileName {
    width: 100%;
    padding-bottom: 8px;
    color: #606060;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    line-height: 30px;
}

.shadeword .tip {
    width: 100%;
    padding-bottom: 10px;
    color: #606060;
    font-size: 14px;
    text-align: left;
}

.shadeword ul.PileFun {
    width: 100%;
}

.shadeword ul.PileFun li {
    width: 21%;
    background: #fcfcfc;
    border: 2px solid #bfbfbf;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkiy-border-radius: 4px;
    float: left;
    margin: 0px 2% 5px 0;
}

.shadeword ul.PileFun li.defaultcheck {
    border-color: #14ab44;
    background: url(/img/wechatpages/icon_required.png) no-repeat left top #fcfcfc;
    background-size: 28px;

}

.shadeword ul.PileFun li.on {
    border-color: #14ab44;
}

.shadeword .Selectcheckbox {
    width: 100%;
    padding: 10px 0px;
}

.shadeword .Selectcheckbox span {
    display: block;
    width: 100%;
    text-align: center;
    color: #606060;
    font-size: 12px;
    line-height: 16px;
}

.shadeword .Selectcheckbox span img {
    height: 26px;
}

.orderbtnbox {
    width: 100%;
}

.orderbtnbox span {
    display: inline-block;
    width: 45%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.orderbtnbox span.continue {
    height: 30px;
    line-height: 30px;
    background: #14AB44;
    float: left;
    color: #fff;
}

.orderbtnbox span.other {
    height: 28px;
    line-height: 28px;
    border: 1px solid #14AB44;
    float: left;
    color: #14AB44;
    float: right;
}

.hotelword {
    width: 100%;
    color: #7D8576;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 4px;
    text-indent: 20px;
    text-align: left;
}

.hotelimg {
    width: 90%;
    margin: 0px auto;
    padding: 10px 0px;
}

.hotelimg img {
    width: 100%;
}

.PileContainer {
    max-width: 480px;
    margin: 0px auto;
}

.PileList {
    width: 100%;
    text-align: left;
}

.PileList li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #DCDCDC;
    position: relative;
}

.PileList li a {
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #606060;
    font-size: 16px;
    line-height: 40px;
    text-indent: 20px;
}

.PileList li:after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    background: url(/img/wechatpages/icon_link.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 10px;
}

/*********营地详情 底部导航条**********/
.footer_nav {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #fff;
    background: #79c92c;
    background: -moz-linear-gradient(top, #a2e661, #64ba69);
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#a2e661), to(#64ba69));
    background: -o-linear-gradient(top, #a2e661, #64ba69);
    z-index: 900;
}

.footer_nav a.nav_btn {
    display: block;
    width: calc(100% / 3);
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    float: left;
    position: relative;

}

.footer_nav.w4 .nav_btn {
    width: 25% !important;
}

.footer_nav.w2 .nav_btn {
    width: 50% !important;
}

.footer_nav .nav_btn:after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
}

.footer_nav .nav_btn:last-child:after {
    display: none;
}


.shade_box {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 0, 0, .3);
    z-index: 998;
    display: none;

}

.shade_box_middle {
    width: 100%;
    height: 100%;
    display: table;
}

.shade_box_inner {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.shade_confirm {
    width: 70%;
    margin: 0px auto;
}

.shade_word {
    padding: 25px 5%;
    text-align: center;
    color: #030303;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
}

.shade_word.pd10 {
    padding: 10px 5%;
}

.shade_checkbox {
    display: flex;
    width: 90%;
    margin-top: -20px;
    padding: 0 5%;
    text-align: left;
    color: #030303;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
}

.shade_checkbox_check {
    display: none;
}

.shade_checkbox_label {
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    float: left;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-top: 10px;
}

.shade_checkbox_check:checked + .shade_checkbox_label {
    border: 1px solid #60c66b;
    background: url(/img/wechat/icon_gou.png) no-repeat center center #60c66b;
    background-size: 12px;
}

.shade_title {
    padding: 10px 5% 0px 5%;
    text-align: center;
    color: #333;
    background: #fff;
    font-size: 16px;
    line-height: 20px;
    border-radius: 10px 10px 0px 0px;
}

.shade_word.borderRadius {
    border-radius: 10px 10px 0px 0px;
}

.shadebtn_box {
    width: 100%;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
}

.shadebtn {
    display: block;
    height: 35px;
    line-height: 35px;
    color: #ff6813;
    font-size: 14px;
    text-align: center;
    border-radius: 0px 0px 10px 10px;
    border-top: 1px solid #cccccc;
}

.shadebtn.w50 {
    width: 50%;
}

.shadebtn.w100 {
    width: 100%;
}

.shadebtn.ok {
    float: right;

}

.shadebtn.no {
    float: left;
    border-radius: 0px 0px 0px 10px;
    position: relative;
}

.shadebtn.no:after {
    content: '';
    display: block;
    width: 1px;
    height: 35px;
    background: #cccccc;
    position: absolute;
    right: 0px;
    top: 0px;
}
