/*common style*/
* {
  margin: 0;
  padding: 0
}
a {
  color: inherit;
  text-decoration: none;
}
.ellipsis-text {
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
img {
  width: 100%;
}
.text-center {
  text-align: center;
}
/*粉黄的分割线*/
.separator-line {
  width: 100%;
  height: 1px;
  background: #FFF3EA;
  margin-top: 2px;
  margin-bottom: 2px;
}
/*好几个页面都用到的，关于活动的最大标题的样式*/
#huge-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 13px;
  margin-top: 3px;
  color: #464646;
}
/*几个连在一起的长的tab的样式*/
.tabs {
  display: flex;
  margin-bottom: 20px;
  margin-top: 10px;
}
.tab {
  width: 50%;
  border: 1px solid #ff9f48;
  color: #ff9f48;
  text-align: center;
  border-right: 0;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
}
.tab:first-child {
  border-radius: 2px 0 0 2px;
}
.tab:last-child {
  border-radius: 0 2px 2px 0;
  border-right: 1px solid #ff9f48;
}
.selected-tab {
  background: #FF9F48;
  color: #fff;
}
/*几个小的tab的样式，灰色的*/
.type-btns {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9C9C9C;
  margin-top: 20px;
}
.type-btn-item {
  background: #F3F3F3;
  padding: 3px 6px;
  text-align: center;
  border-radius: 2px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.selected-btn {
  background: #FAB0AF;
  color: #fff;
}



.indent-p {
  text-indent: 2em;
}
.main__info {
  padding: 10px;
  color: #464646;
  min-height: calc(100vh - 104px);
}
.main__container {
  margin-bottom: 70px;
}
.title {
  color: #C00201;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.title span {
  border-bottom: 3px solid;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 8px;
}
.list-item {
  border-bottom: 1px dashed #DCDCDC;
  padding: 20px 0;
  display: flex;
}
.list-item img {
  width: 120px;
  border-right: 2px;
}
.list-item-desc {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}
.small-p {
  font-size: 12px !important;
  color: #939393;
}
.support-desc {
  font-size: 10px;
  color: #A1A1A1;
  text-align: center;
  /*position: fixed;
  bottom: 0;
  width: calc(100% - 20px);
  background: #fff;*/
}
.support-desc span {
  margin-right: 5px;
}
.support-desc span:last-child {
  margin-right: 0;
}
.back-to-top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: rgba(172,172,172,0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
}
.back-to-top-btn span {
  font-size: 30px;
  line-height: 45px;
  color: #fff;
}
.search-icon-input {
  position: relative;
}
.list-search-input {
  padding: 6px 25px 6px 10px;
  margin-top: 5px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #F5D0CF;
}
.input-search-icon {
  position: absolute;
  top: 11px;
  right: 8px;
  color: #D53937;
}
.bg-orange-textarea {
  background: #FFF6EF;
  padding: 10px;
  border-radius: 4px;
}
.bg-p {
  color: #767676;
  font-size: 12px !important;
}
.text-items {
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.5em;
}
.text-items p {
  margin-bottom: 5px;
}
.text-items p:last-child {
  margin-bottom: 0;
}
.text-items-title {
  color: #BC5F0F;
}
.orange-btn {
  padding: 6px 55px;
  border: 0;
  color: #fff;
  font-weight: bold;
  border-radius: 2px;
  background: #FF9F48;
}
.box-shadow {
  box-shadow: 1px 3px 3px #ECECEC;
}
.liner-bg {
  background: linear-gradient(to right, #DE5801, #FE7211);
}

/*图片在上面的list，参考7*/
.image-item {
  padding: 5px;
  margin: 20px 0;
  background: #FFFBF8;
}
.image-item img {
  width: 100%;
}
.image-item p {
  line-height: 2.5em;
  font-size: 14px;
}
.image-item span {
  background: #FF9431;
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  margin-right: 10px;
}
/*带视频和图片和小的列表，参考页面8*/
.video-list {
  display: flex;
  flex-wrap: wrap;
}
.video-list-items {
  width: calc(50% - 7px);
  margin-right: 10px;
  position: relative;
  border: 1px solid #F3F3F3;
  border-radius: 4px;
  margin-bottom: 15px;
}
.video-list-items:nth-child(even) {
  margin-right: 0;
}
.video-list-items .video-play-icon {
  width: 40px;
  position: absolute;
  left: 3px;
  /*top: 53px;*/
  bottom: 65px;
}
.video-list-items-title {
  font-size: 14px;
}
.video-list-items-tip {
  font-size: 12px;
  color: #A4A4A4;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.video-list-items-tip .btn {
  padding: 2px 15px;
  border: 1px solid;
  color: #FE9E47;
  border-radius: 2px;
}
.video-list-items-text {
  padding: 0 5px 5px;
}

/*视频播放的对话框*/
.video-dialog {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}
.video-dialog-body {
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.8) !important;
  filter: alpha(opacity=80) !important;
  position: fixed !important;
  top: 0;
  z-index: 99;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-dialog-content {
  width: calc(100% - 120px);
  border-radius: 4px;
  z-index: 999;
}
.video-style {
  width: 100%;
}
.close-btn {
  margin-top: 15px;
  padding: 8px 50px;
  border-radius: 15px;
  border: 0;
  color: #fff;
  background: #f53939;
}
.list-tip-img {
  width: 100px;
}
@font-face{
  font-family: HY;
  src:url("../fonts/HYk1gj.ttf");
}
/*信息提示对话框*/
.notification-dialog-content{
  background-color: #ffffff;
  width: calc(100% - 60px);

}
.notification-dialog-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F2F3F2;
  padding: 10px 20px;
}
.notification-dialog-text_title{
  font-size: 14px;
  padding: 10px 20px;
  color: #7D7D7D;
}
.notification-dialog-text_content{
  text-indent:25px;
  font-size: 14px;
  margin: 10px 20px;
  line-height: 25px;
  height: 50vh;
  overflow: auto;
  border-bottom: 1px solid #999999;
  padding-bottom: 10px;
  color: #7D7D7D;
}
.notification-dialog-btnline{
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
.notification-dialog-btn{
  width: 38%;
  padding: 10px;
  font-size: 16px;
  background-color: #C40000;
  text-align: center;
  color: #fff;
}