/* 打赏主播 */
.anchor-outer {
  background-color: #fff;
  box-sizing: border-box;
  width: 1200px;
  margin: auto;
  padding: 0 40px 30px 40px;
}
.anchor-outer .title {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-bottom: 10px;
}
.gift-list {
  display: flex;
  flex-wrap: wrap;
}
.gift-item {
  text-align: center;
  width: 108px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
}
.gift-item.selected {
  border-color: #EE5C61;
}
.gift-icon-outer {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-icon {
  width: 100%;
}
.gift-name {
  margin: 4px 0;
}
.gift-num {
  line-height: 20px;
}
.gift-num-icon {
  height: 20px;
  margin-top: -4px;
  display: inline-block;
  vertical-align: middle;
}
.gift-btn {
  width: 110px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 20px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 14px;
  background-color: #EE5C61;
  cursor: pointer;
}
.gift-btn:hover {
  opacity: 0.8;
}
/* 用户评论 */
.comment-outer {
  width: 1200px;
  margin: auto;
  margin-top: 20px;
  padding: 30px 40px;
  background-color: #fff;
  box-sizing: border-box;
}
.comment-outer .title {
  background-color: #ddd;
  line-height: 26px;
  padding-left: 10px;
}
.comment-list {
  padding: 0 20px;
}
.comment-item {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}
.comment-item-name {
  font-weight: bold;
}
.comment-item-time {
  margin-left: 10px;
  font-size: 12px;
  color: #aaa;
}
.comment-item-text {
  margin-top: 10px;
  line-height: 1.5em;
}
/* 分页 */
.comment-page {
  margin-top: 20px; 
  padding-left: 40px;
}
/* 发布评论 */
.textarea-input {
  margin-top: 30px;
  width: 100%;
  height: 160px;
  border: 1px solid #409eff;
  border-radius: 4px;
}
.comment-btn {
  display: inline-block;
  padding: 6px 20px;
  margin-left: 20px;
  border-radius: 4px;
  color: #fff;
  background-color: #409eff;
  margin-top: 10px;
  cursor: pointer;
}
.comment-btn:hover {
  opacity: 0.8;
}
/* 分页 */
.clearfix {
	clear: both;
}
.clearfix:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
}

.pager {
	max-width: 800px;
	text-align: center;
	margin-bottom: 30px;
	display: inline-block;
}

.pager a {
	cursor: pointer;
}

.pager a,
.pager span {
	/* 按钮内数字 */
	width: 45px;
	height: 40px;
	border: 1px solid #EBEBEB;
	margin-left: -1px;
	color: #8a8a8a;
	line-height: 40px;
  float: left;
	font-size: 15px;
	text-decoration: none;
	margin: 0 2px;
	border-radius: 6px;
}
.pager a:hover,
.pager span:hover {
	border-color: #3897cd;
	color: #3897cd;
	position: relative;
	z-index: 1;
}

.pager span.current {
	background-color: #53BF1D;
	color: #fff;
	border-color: #EBEBEB;
	position: relative;
	z-index: 1;
}

.pager .pg-first,
.pager .pg-prev,
.pager .pg-next,
.pager .pg-last {
	background: white url(../images/page_bg.jpg)  8px 7px no-repeat;
}

.pager .pg-first:hover,
.pager .pg-prev:hover,
.pager .pg-next:hover,
.pager .pg-last:hover {
	background: white url(../images/page_bg_hover.jpg)  8px 7px no-repeat;
}

.pager .pg-prev,
.pager .pg-prev:hover {
	background-position: 7px -21px;
}

.pager .pg-next,
.pager .pg-next:hover {
	background-position: -21px -21px;
}

.pager .pg-last,
.pager .pg-last:hover {
	background-position: -21px 7px;
}

.pager .pg-prev[disabled='true'],
.pager .pg-prev[disabled='true']:hover {
	cursor: default;
	background-image: url(../images/page_bg.jpg);
}

.pager .pg-next[disabled='true'],
.pager .pg-next[disabled='true']:hover {
	cursor: default;
	background-image: url(../images/page_bg.jpg);
}

.pager .pg-prev[disabled='true'],
.pager .pg-next[disabled='true'] {
	border-color: #eeeeee;
}

.pager span.els {
	border-color: transparent;
}

.pagerHtmlWrap {
	width: 800px;
	margin: 30px auto;
}

.pagerHtmlWrap .cc_cells {
	width: 100%;
	height: 35px;
	padding: 5px 0;
	border-bottom: 1px #cccccc solid;
}

.pagerHtmlWrap .cc_cells a {
	color: #454545;
	font-size: 14px;
	line-height: 35px;
	text-decoration: none;
}

.pagerHtmlWrap .cc_cells a span {
	display: inline-block;
	width: 25%;
	text-align: left;
	margin: 0;
}
.pager .pg-first,
.pager .pg-last {
  display: none;
}
/* toast弹窗 */
.toast-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  text-align: center;
  z-index: 2000;
  display: none;
}
.toast-mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.toast-box {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 200px;
  display: inline-block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 6px #000;
}
.toast-title {
  font-size: 20px;
}
.toast-text {
  line-height: 1.5em;
  margin-top: 30px;
}
.toast-btn {
  position: absolute;
  bottom: 10px;
  background-color: #409eff;
  color: #fff;
  height: 30px;
  line-height: 30px;
  border-radius: 6px;
  left: 0;
  right: 0;
  width: 80px;
  margin: 0 auto;
  cursor: pointer;
}
.toast-btn:hover {
  opacity: 0.8;
}