*,
::before,
::after {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
em,
i {
  font-style: normal;
}
table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  word-break: break-all;
  word-wrap: break-word;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g-main {
  width: 1100px;
  margin: 0 auto;
}

.fixed-box {
  z-index: 1;
  width: 320px;
  height: 200px;
  background: #ffffff;
  padding: 0px;
  position: fixed;
  right: 10px;
  bottom: 0px;
}
.fixed-box .title {
  text-align: center;
}
.fixed-box .title span {
  line-height: 34px;
  font-size: 20px;
  font-weight: bold;
  color: #087cc4;
  position: relative;
}
.fixed-box .title span::before {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../img/title-before.png) center no-repeat;
  position: absolute;
  left: -20px;
  top: 8px;
}
.fixed-box .title span::after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../img/title-after.png) center no-repeat;
  position: absolute;
  right: -20px;
  top: 8px;
}
.fixed-box .imgs a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.fixed-box .imgs img {
  width: 100%;
  height: 200px;
}
.fixed-box .btns {
  overflow: hidden;
}
.fixed-box .btns ul > li {
  float: left;
  width: 50%;
  padding: 0 20px;
  line-height: 30px;
  font-size: 14px;
  color: #cccccc;
  cursor: no-drop;
}
.fixed-box .btns ul > li.btn-left {
  text-align: right;
}
.fixed-box .btns ul > li.btn-right {
  text-align: left;
}
.fixed-box .btns ul > li.active {
  cursor: pointer;
  color: white;
}
