﻿*{
  margin:0;
  padding:0;
}
body{
  font-family: "微软雅黑"
}
.alert-modal{
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: #000;
  opacity: 0.6;
   filter: alpha(opacity=60);
}
.alert-container{
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff;
  border:1px solid #f1f1f1;
  z-index: 99999;
  overflow: hidden;
   -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.alert-title{
  font-size: 16px;
  text-align: center;
  line-height: 42px;
  color:#111;
  background: #fff;
  position: absolute;
  left:0;
  top:0;
  z-index: 999;
  width:100%;
  text-align: center;
}
.alert-content{
  font-size: 14px;
  padding:15px 20px;
  color:#555;
  height:100%;
  overflow: auto;
   -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.alert-content-scrollbar{

}
.alert-btn-box{
  border-top:1px solid #f1f1f1;
  text-align: right;
  position: absolute;
  left:0;
  background: #fff;
  bottom: 0;
  z-index: 999;
  width:100%;
}
.alert-btn-p{
  display: inline-block;
  text-align: center;
  border-right:1px solid #f1f1f1;
  font-size:14px;
  line-height: 35px;
  cursor: pointer;
  color:#222;
  box-sizing: border-box;
}
.alert-btn-p:hover{
  background: #eee;
}
.alert-btn-p:last-child{
  border-right: none;
}
.pcAlert .alert-btn-box{
  padding-right:10px;
  border:none;
}
.pcAlert .alert-btn-p{
  border:1px solid #f1f1f1;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  line-height: 30px;
  margin:7px 0;
  padding:0 10px;
  margin-right:10px;
}
.alert-btn-close{
  position: absolute;
  right:10px;
  top:3px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

.alert-container-black{
  background-color:rgba(0,0,0,0.65);
  border:none;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000);
}
.alert-container-black .alert-content{
    color: #fff;  
}

.linearTop{
  -webkit-animation-name: linearTop;
  -moz-animation-name: linearTop;
  -o-animation-name: linearTop;
  animation-name: linearTop;
}

.linearBottom{
  -webkit-animation-name: linearBottom;
  -moz-animation-name: linearBottom;
  -o-animation-name: linearBottom;
  animation-name: linearBottom;
}

@keyframes linearBottom {
   0%{
      -webkit-transform: translate3d(0,0,0);
      -moz-transform: translate3d(0,0,0);
      -o-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
      opacity: 1;
      filter:alpha(opacity=100);
   }
   100%{
      -webkit-transform: translate3d(0,80px,0);
      -moz-transform: translate3d(0,80px,0);
      -o-transform: translate3d(0,80px,0);
      transform: translate3d(0,80px,0);
      opacity: 0;
      filter:alpha(opacity=0);
   }
}

@keyframes linearTop {
   0%{
     -webkit-transform: translate3d(0,80px,0);
      -moz-transform: translate3d(0,80px,0);
      -o-transform: translate3d(0,80px,0);
      transform: translate3d(0,80px,0);
      opacity: 0;
      filter:alpha(opacity=0);
   }
   100%{
       -webkit-transform: translate3d(0,0,0);
      -moz-transform: translate3d(0,0,0);
      -o-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
      opacity: 1;
      filter:alpha(opacity=100);
   }
}

/*显示动画*/


.animated.infinite {
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
}
.animated.linearBottom,
.animated.linearTop,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .45s;
  -moz-animation-duration: .45s;
  -o-animation-duration: .45s;
  animation-duration: .45s;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -moz-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    filter:alpha(opacity=0);
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
    -o-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }


  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    -moz-transform: scale3d(1.2, 1.2, 1.2);
    -o-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }

  65%, 70% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(.75, .75, .75);
    -moz-transform: scale3d(.75, .75, .75);
    -o-transform: scale3d(.75, .75, .75);
    transform: scale3d(.75, .75, .75);
  }

  100% {
    opacity: 0;
     filter: alpha(opacity=0);
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
    -o-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

  .query-cover {position:fixed;left:0;top:0;z-index:20000;width:100%;height:100%;background:#000;opacity:0.7;filter:alpha(opacity=70);display:none;}
.query-pop {position:fixed;left:50%;top:50%;z-index:20001;width:400px;height:307px;padding-top:15px;margin-left:-200px;margin-top:-120px;background:#fff;display:none;font-size:14px;}
.query-pop .tel {overflow:hidden;}
.query-pop .tel .input-wrap,.query-pop .tel .btn-wrap {float:left;}
.query-pop .tel .input-wrap {width:188px;height:40px;border-bottom:1px solid #333;margin-right:10px;}
.query-pop .tel .btn-wrap {width:120px;}
.query-pop .tel .phone-wrap {font-size:34px;font-weight:bolder;line-height:1;}
.query-pop .tel .phone-wrap a {color:#e60012;}
.query-pop .tel .input-wrap input {border:0;height:39px;line-height:39px;padding:0;font-size:20px;}
.query-pop .tel,.query-pop .net {padding:0 40px;margin:10px 0;}
.query-pop .btn-wrap a {background:#e60012;border:none;color:#fff;cursor:pointer;display:block;width:100%;font-size:18px;height:40px;line-height:38px;text-align:center;}
.query-pop .btn-wrap .btn-qqstart {margin-top:12px;}
.query-pop .tip {padding-bottom:5px;}
.query-pop .close-btn {position:absolute;top:10px;right:10px;text-decoration:underline;color:#999;font-size:12px;width:25px;height:25px;text-indent:-100em;overflow:hidden;background:url(../images/pop-closebtn.png) no-repeat center center;}
.query-pop .net #pcnetbtn {display:block;}
#newBridge {display:none!important;}
.query-pop .green_information_safety {background:url(../images/pop_lock.png) left center no-repeat;font-size:12px;line-height:19px;color:#1db816;margin:10px 0 15px;text-indent:1.6em;}
.query-pop .query_pop_box {position:relative;}
.query-pop .query_pop_input {border:1px solid #adada9;width:198px;height:38px;font-size:14px;line-height:38px;color:#333;text-indent:1em;}
.query-pop .query_pop_button {width:120px;height:38px;line-height:38px;padding:0;margin:0;outline:none;box-shadow:none;border:0;color:#fff;background:#1785bd;font-size:14px;}
.query-pop .query_pop_box .red_tip {display:none;font-size:12px;line-height:28px;color:#e70012;position:absolute;top:100%;left:0;width:100%;background:#fff;text-indent:1em;}
.query-pop .query-pop-success {display:none;}
.query-pop .subdetail {font-size:12px;line-height:1.5em;margin-top:14px;color:#666;margin-bottom:10px;}
.query-pop .subdetail li{font-size:12px;line-height:1.5em;}
.query-pop .query-pop-success .subtitle {font-size:30px;line-height:1;color:#e70012;margin-top:42px;text-align:center;font-weight:bold;}
.query-pop .query-pop-success .subdetail {font-size:14px;line-height:1.5;color:#666666;margin-top:22px;text-align:center;}
