@charset "UTF-8";
/* 基础的css */
html,body,div,span,p,img,ul,ol,li,dd,dt,dl,input,button,form,textarea,select,option,table,tr,th,td,header,footer,section,aside{
  -o-box-sizing:border-box;
  -ms-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
html {
  width:100%;
  min-width:1024px;
  height:100%;
  margin:0 auto;
  position:relative;
  font-family:'Microsoft YaHei';/*font-family:Helvetica;*/
  -moz-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  font-size:10px;
}
body{
  width:100%;
  height:auto;
  min-height: 100%;
  color:#fcfcfc;
  position: relative;
  background-color: #F4F6FD;
  position: relative;
}
a:hover{
  color: #fc6262;
}
*{
  outline: none;
}
img{
  max-width: 100%;
  vertical-align:middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul{
  margin:0;
  padding:0;
  border:0;
}

/* 宽度限制 */
html,body,header,footer,.wrapper{
    min-width: 1200px;
    max-width: 1920px;
    margin:0 auto;
}
.comWidth{margin:0 auto;width: 12rem;}



/* 布局 */
.fl{float:left;}
.fr{float:right;}

.hide{display: none;}

/* input 样式 */
input[type="text"],input[type="password"],textarea,input{outline-style:none;line-height:normal;vertical-align:middle;font-family:"Microsoft YaHei";}
input{-webkit-tap-highlight-color:rgba(255,0,0,0);-webkit-appearance: none;}
input::-webkit-input-placeholder{
  color: #666666;
}

input::-webkit-input-placeholder{
    background: #e1e1e1;
    color: #666666;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    background: #e1e1e1;
    color: #666666;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    background: #e1e1e1;
    color: #666666;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    background: #e1e1e1;
    color: #666666;
}
/*去掉黄色背景*/
input:-webkit-autofill { box-shadow: 0 0 0px 1000px #e1e1e1 inset;}


*{-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;}

/* 按钮点击透明样式 */
.button {
  cursor: pointer;
}
.button:hover {
  opacity:0.9;
}
button{
  outline: none;
  background: none;
  border: none;
}


/* 清除浮动 */
.clear{
  clear:both;
}
.clearfix {
  /* 触发 ie的元素的hasLayout属性,是元素拥有布局（尺寸计算和定位） */ 
  zoom: 1;
}
.clearfix:after {
  content:".";
  display:block;
  height:0;
  visibility:hidden;
  clear:both;
}



/* 显示隐藏 */
.inner {
  overflow: hidden;
  word-wrap: break-word;
}
.hide{display:none;}
.overflow{overflow: hidden;}



/* 单行文字超出省略 */
.ellipsis-one{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 多行文字超出省略 */
.ellipsis-two{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}



/* 加载更多的loading弹出层 */
.loading-more {
  position: absolute;
  bottom: 0.2rem;
  left: 3.1rem;
  width: 0.32rem;
  height: 0.32rem;
}
.loading-more img {
  width:100%;
  height:100%;
}



/* 最外层遮罩层 */
.mask {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 115;
    text-align: center;
}
.slideBardiv {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 116;
    text-align: center;
    display: none;
}




/* 实现文本两端对齐效果 */
.taj {text-align:justify;}



/* table 样式 */
.table {display:table;width: 100%;}
.table td , .table th , .tcell {display:table-cell;vertical-align: middle;}
.table tr , .trow {display: table-row;}




/* css3自定义滚动条样式 */
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/   
.bar::-webkit-scrollbar {
  -webkit-appearance: none;
}
.bar::-webkit-scrollbar:vertical {
  width: 6px;
}
.bar::-webkit-scrollbar:horizontal {
  height: 6px;
}
/*定义滑块 内阴影+圆角*/
.bar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 4px;
  border: 2px solid #fff;
}
/*定义滚动条轨道 内阴影+圆角*/  
.bar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 4px;
  background-color: #fff;
}


/* 自定义动画 */
/* 加速效果 */
.speedup{
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* 缩小缩大动画 */
@keyframes scale{
    0%{
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
    }
    50%{
        -webkit-transform:scale(1.1,1.1);
        transform:scale(1.1,1.1);
    }
    100%{
        -webkit-transform:scale(1,1);
        transform:scale(1,1);
    }
}


@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(.1rem);
        transform: translateY(.1rem);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes float {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
}

@keyframes tabmove{
    0%{
        -webkit-transform:translateX(0);
        tansform:translateX(0);
    }
    0%{
        -webkit-transform:translateX(.1rem);
        tansform:translateX(.1rem);
    }
    100%{
        -webkit-transform:translateX(0);
        tansform:translateX(0);
    }
}


/* 脉冲 */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  25% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  25% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


/* 从右边淡入 */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


/* 向下慢慢滑动 */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}



/* 媒体查询 */
@media only screen and (max-width: 576px){
    html{font-size: 30px;}
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.2% !important;
    }
}
@media only screen and (min-width: 577px) and (max-width: 672px){
    html{font-size: 35px;}
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.2% !important;
    }
}
@media only screen and (min-width: 673px) and (max-width: 768px){
    html{font-size: 40px;}
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.2% !important;
    }
}
@media only screen and (min-width: 769px) and (max-width: 864px){
    html{font-size: 45px;}
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.2% !important;
    }
}
@media only screen and (min-width: 865px) and (max-width: 960px){
    html{font-size: 50px;}
    .appoint_prise .a_step .a_step2 .phone span{
        padding-top: 2.4%;
    }
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.2% !important;
    }
}
@media only screen and (min-width: 961px) and (max-width: 1056px){
    html{font-size: 55px;}
    .appoint_prise .a_step .a_step2 .phone span{
        padding-top: 2%;
    }
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41.5% !important;
    }
}
@media only screen and (min-width: 1057px) and (max-width: 1152px){
    html{font-size: 60px;}
    .camp_pk .c_txt{
        height: 49.5% !important;
        margin-top: -41% !important;
    }
}
@media only screen and (min-width: 1153px) and (max-width: 1248px){
    html{font-size: 65px;}
    .camp_pk .c_txt{
        height: 49% !important;
        margin-top: -41% !important;
    }
}
@media only screen and (min-width: 1249px) and (max-width: 1344px){
    html{font-size: 70px;}
    .camp_pk .c_txt{
        height: 48.5% !important;
        margin-top: -40.5% !important;
    }
}
@media only screen and (min-width: 1345px) and (max-width: 1440px){
    html{font-size: 75px;}
    .camp_pk .c_txt{
        height: 47.5% !important;
        margin-top: -40% !important;
    }
}
@media only screen and (min-width: 1441px) and (max-width: 1536px){
    html{font-size: 80px;}
    .camp_pk .c_txt{
        height: 46% !important;
        margin-top: -39% !important;
    }
}
@media only screen and (min-width: 1537px) and (max-width: 1632px){
    html{font-size: 85px;}
    .camp_pk .c_txt{
        height: 44% !important;
        margin-top: -38% !important;
    }
}
@media only screen and (min-width: 1633px) and (max-width: 1728px){
    html{font-size: 90px;}
    .camp_pk .c_txt{
        height: 41.5% !important;
        margin-top: -37% !important;
    }
    
}
@media only screen and (min-width: 1729px) and (max-width: 1824px){
    html{font-size: 95px;}
}
@media only screen and (min-width: 1825px) and (max-width: 1920px){
    html{font-size: 100px;}
    .camp_pk .c_txt{
        height: 37% !important;
    }
} 
@media only screen and (min-width: 1920px){
    html{font-size: 100px;}
}



