﻿@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: PingFang SC,tahoma,arial,'Microsoft Yahei','Hiragino Sans GB','\5b8b\4f53',sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  font: 12px/1.5tahoma, arial, \5b8b\4f53;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

address,
cite,
dfn,
em,
var {
  font-style: normal;
}

code,
kbd,
pre,
samp {
  font-family: couriernew, courier, monospace;
}

small {
  font-size: 12px;
}

ul,
ol {
  list-style: none;
}

a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
  text-decoration: none;
  outline: none;
  color: black;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

fieldset,
img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  /* calc(100vw / 7.5) */
  font-size: 26.6666vw;
}

@media screen and (min-width: 375px) {
  :root {
    font-size: 100px;
  }
}

body {
  color: #333;
  font-size: 0.14rem;
  background-color: #fff;
}

/*
 * $duration 规定完成动画所花费的时间 (3s)
 * $timing 规定动画的速度曲线 (linear, ease, ease-in, ease-out, ease-in-out, cubic-bezier(n, n, n, n) n = 0~1)
 * $count 定义动画的播放次数 (n, infinite 无限次)
 * $mode 规定动画在播放之前或之后，其动画效果是否可见 (none | forwards | backwards | both)
 */
@keyframes upToDown {
  0% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  50% {
    transform: translate(0px, -10px);
    opacity: 0.6;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@-webkit-keyframes upToDown {
  0% {
    -webkit-transform: translate(0px, 0px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0px, -10px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes brees {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@-webkit-keyframes brees {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.row {
  zoom: 1;
}

.row:after {
  display: block;
  height: 0;
  clear: both;
  content: "";
  visibility: hidden;
}

.flex-1 {
  float: left;
  width: 8.33333%;
}

.flex-2 {
  float: left;
  width: 16.66667%;
}

.flex-3 {
  float: left;
  width: 25%;
}

.flex-4 {
  float: left;
  width: 33.33333%;
}

.flex-5 {
  float: left;
  width: 41.66667%;
}

.flex-6 {
  float: left;
  width: 50%;
}

.flex-7 {
  float: left;
  width: 58.33333%;
}

.flex-8 {
  float: left;
  width: 66.66667%;
}

.flex-9 {
  float: left;
  width: 75%;
}

.flex-10 {
  float: left;
  width: 83.33333%;
}

.flex-11 {
  float: left;
  width: 91.66667%;
}

.flex-12 {
  float: left;
  width: 100%;
}

.inner {
  padding: 0 .14rem;
  background: white;
}

body {
  background: #F6F6F6;
}

/* 清除浮动 */
.float-clear:after {
  content: "";
  display: block;
  clear: both;
}

.float-clear {
  *zoom: 1;
  /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ellipsis2 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.breakword {
  word-wrap: break-word;
  word-break: break-all;
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.living-tag {
  position: relative;
  float: left;
  width: .15rem;
  height: .12rem;
  background: #dd4d30;
  border-radius: 1px;
}

.living-tag .living-triangle {
  position: absolute;
  width: .05rem;
  height: .05rem;
  border: .035rem solid transparent;
  border-radius: 2px;
  border-left-color: #fff;
  left: .06rem;
  top: .025rem;
}

/* 兼容 ie 浏览器 */
[hidden] { display: none; }
