/**
 * 当`body`宽度大于`html`宽度时，某些浏览器会出现内部滚动条，所以给`html、body`设置宽度100%。
 * 取消部分浏览器点击有阴影。
 * 优化移动端滚动事件。
 */
/**
 * 移除常用标签的浏览器默认的`margin、padding`
 * pre、code、legend、fieldset、blockquote……等其他标签不是很常用，所以本css都不会一一列举出来，为了简化。如果项目中用到，可以自己单独写。
 */
/**
 * 移除浏览器部分元素的默认边框。
 * acronym、fieldset……等其他标签不是很常用，所以本css都不会一一列举出来，为了简化。如果项目中用到，可以自己单独写。
 */
/*因为`input`默认不继承父元素的居中样式，所以让`input`元素继承父元素的文本居中方式*/
/*让`textarea`默认不可以放缩*/
/**
 * 由于以下元素的部分属性没有继承父节点样式，所以声明这些元素的这些属性为父元素的属性。
 * 取消这些元素的`outline`样式。
 */
/**
 * 如果绝对定位元素找不到被设置过定位信息的上级元素，那么此元素基于根节点定位，所以给`body`设置相对定位，让这些元素基于`body`定位。
 * 使字体渲染更顺滑。
 */
/*使如下元素默认鼠标经过是`小手`的形状（一般表示可以点击，在PC端挺好）*/
/***公共部分***/
/***侧边栏***/
html {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 100px;
  height: 100%;
  overflow-scrolling: touch;
  width: 100%;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "微软雅黑", sans-serif !important;
  height: 100%;
  overflow-scrolling: touch;
  position: relative;
  text-rendering: optimizeLegibility;
  width: 100%;
  background: #fff;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: 0;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  /*cursor: pointer;*/
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
  padding: 0;
  font-size: 0;
}
h1 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
h2 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
h3 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
h4 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
h5 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
h6 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
dl {
  margin: 0;
  padding: 0;
}
dd {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
  cursor: pointer;
}
figure {
  margin: 0;
  padding: 0;
}
input {
  margin: 0;
  padding: 0;
  border: none;
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input:-moz-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder {
  color: #999999;
}
textarea {
  margin: 0;
  padding: 0;
  border: none;
  resize: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
textarea::-webkit-input-placeholder {
  color: #999999;
}
textarea:-moz-placeholder {
  color: #999999;
}
textarea::-moz-placeholder {
  color: #999999;
}
textarea:-ms-input-placeholder {
  color: #999999;
}
form {
  margin: 0;
  padding: 0;
}


img {
  border: none;

}
a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
  text-decoration: none;
}
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
option {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
optgroup {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  outline: none;
}
input[type='submit'] {
  cursor: pointer;
}
input[type='button'] {
  cursor: pointer;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
template {
  display: none;
}
.clear {
  zoom: 1;
}
.clear::after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}
.both{clear: both}
.pf {
  -webkit-transform: translateZ(0);
  position: fixed;
}
.middle {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.middle-v {
  -moz-transform: -moz-translateY(-50%);
  -o-transform: -o-translateY(-50%);
  -webkit-transform: -webkit-translateY(-50%);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.to {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.f_l {
  float: left;
}
.f_r {
  float: right;
}
.font_s24 {
  font-size: .24rem;
}
.t_c {
  text-align: center;
}
.t_l {
  text-align: left;
}
.t_r {
  text-align: right;
}
.none {
  display: none;
}
.over_h {
  overflow: hidden;
}
.btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.border_none {
  border: none;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 16;
  -webkit-filter: blur(3px);
  background: rgba(127, 127, 127, 0.5);
  cursor: pointer;
}
.filter {
  -webkit-filter: blur(3px);
}

.block_back {
  text-align: center;
  margin-top: 0.2rem;
}
.logo {
  width: 2.58rem;
}
.block_back .backicn {
  width: 0.25rem;
}
.block_back .hedTIt {
  font-size: 0.34rem;
  margin-left: 1.2rem;
}
.block_back .hed_R img {
  width: 0.44rem;
  vertical-align: middle;
}
.block_back .hed_R h2 {
  font-size: 0.3rem;
  margin-right: 0.2rem;
}
.sidebar {
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 17;
  background: #373755;
  color: #ffffff;
  font-size: .32rem;
}
.sidebar .tx {
  margin-bottom: .45rem;
}
.sidebar .tx img {
  display: inline-block;
  width: 40.625%;
}
.sidebar .tx p {
  padding: .2rem;
}
.sidebar .tx button {
  display: inline-block;
  width: 1.94rem;
  border: 1px solid #fff;
  color: #ffffff;
  height: .5rem;
  line-height: .5rem;
  border-radius: 4px;
  background: transparent;
  font-size: .24rem;
  outline: none;
}
.choice .choiceCa {
  height: 1.2rem;
  line-height: 1.1rem;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  font-size: 0.3rem;
  text-align: center;
}
.choice .choiceCa > span {
  display: inline-block;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.choice .choiceCa > span img {
  width: 0.4rem;
  margin-right: 0.1rem;
  vertical-align: middle;
}
.choice .choiceCa > span em {
  vertical-align: middle;
}
.choice .choiceCa .choiceCaL {
  position: absolute;
  width: 100%;
  height: auto;
  right: 100%;
  top: 0;
  color: #000000;
  background: #f03c3c;
}
.choice .choiceCa .choiceCaL ul {
  padding: 0 0.2rem;
}
.choice .choiceCa .choiceCaL li {
  box-sizing: border-box;
  font-size: 0.3rem;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  height: 1.2rem;
  line-height: 1.2rem;
  border-bottom: 0.5px solid #c82828;
}
.back_ffd {
  background: #f03c3c !important;
}
em {
  font-style: normal;
}
#sele {
  float: right;
  margin-top: -0.45rem;
  cursor: pointer;
}
#sele img {
  width: 0.44rem;
}
.GFH {
  text-align: right;
}
.GFH #seled {
  margin-top: 0.4rem;
  margin-bottom: .4rem;
  margin-right: 0.4rem;
  display: inline-block;
}
.GFH #seled img {
  width: 0.44rem;
}
.no_bgcolor{
  width: 100%;
  overflow: hidden;
  height:135px;
}

@keyframes blink{
  0%{opacity: 1;}
  100%{opacity: 0;}
}
