html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td {
  /* border: none; */
  margin: 0px;
  padding: 0px;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
img {
  border: none;
}
ul,
ol,
li {
  list-style-type: none;
}
/*公共方法*/
.clear {
  clear: both;
}
.clearleft {
  clear: left;
}
.clearright {
  clear: right;
}
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
.cursor {
  cursor: pointer;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.multi-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mt0 {
  margin-top: 0 !important;
}

html,
body {
  background: #fff;
  font-size: 0.37rem;
  font-family: PingFangSC-Medium, PingFang SC;
}
.flex {
  display: flex;
  display: -webkit-flex;
}
.flex-between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.border-top,
.border-bottom {
  position: relative;
}
.border-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 8;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.border-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  z-index: 8;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d8d8d8;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .border-top:before,
  .border-bottom:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .border-top:before,
  .border-bottom:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
  }
}
.container {
  margin: 0 auto;
  /* position: relative; */
  width: 100%;
  max-width: 750px;
  min-height: 100vh;
  overflow-x: hidden;
}

/*logo*/
.container .logo {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .logo .thumb {
  display: block;
  width: 100%;
  height: auto;
}
/*menu*/
.container .menu {
  width: 100%;
  height: 40px;
  background: url(/statics/image/phone/menubar.png) no-repeat center top;
  background-size: 100% 40px;
}
.container .menu .item {
  flex: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #b9d7ff;
  font-size: 0.37rem;
  white-space: nowrap;
}
/* .menu .item.cur,
.menu .item:hover {
  color: #fff;
} */
/*content*/
.container .content {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 4rem;
}
/*vpg*/
.container .vpg {
  margin-top: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.container .vpg .item {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  width: 49%;
  border-radius: 6px;
  overflow: hidden;
}
.container .vpg .item:before {
  content: "";
  display: block;
  padding-top: 64%;
}
.container .vpg .item .thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.container .vpg .item .long {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 6;
  min-width: 0.8rem;
  height: 0.5rem;
  box-sizing: border-box;
  padding: 0 0.15rem;
  border-radius: 0.05rem;
  background: #565656;
  line-height: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.37rem;
}
.container .vpg .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 0.7rem;
  box-sizing: border-box;
  padding: 0 0.2rem;
  background: #565656;
  line-height: 0.7rem;
  text-align: center;
  color: #fff;
  font-size: 0.37rem;
}
/*floor*/
.container .floor {
  padding-top: 10px;
}
.container .title-group {
  width: 100%;
  height: 0.5rem;
}
.container .title-group .title {
  position: relative;
  box-sizing: border-box;
  padding-left: 0.2rem;
  line-height: 0.5rem;
  font-size: 0.37rem;
  color: #000;
  /*font-weight: bold;*/
}
.container .title-group .title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.05rem;
  height: 0.5rem;
  background: #0047a9;
}
.container .title-group .more {
  align-items: center;
  line-height: 0.4rem;
  font-size: 0.37rem;
  color: #707070;
  font-weight: 400;
}
.container .title-group .more .arrow {
  margin-left: 0.1rem;
  width: 0.2rem;
  height: 0.4rem;
}
/*video-group*/
.container .video-group {
  margin-top: 12px;
  width: 100%;
  flex-wrap: wrap;
}
.container .video-group .item {
  margin-bottom: 16px;
  display: inline-block;
  width: 49%;
}
.container .video-group .item .cover-group {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}

.container .video-group .item .cover-group:before {
  content: "";
  display: block;
  padding-top: 64%;
}
.container .video-group .item .cover-group .thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.container .video-group .item .cover-group .long {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  z-index: 6;
  min-width: 0.8rem;
  height: 0.5rem;
  box-sizing: border-box;
  padding: 0 0.15rem;
  border-radius: 0.05rem;
  background: #565656;
  line-height: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.37rem;
}
.container .video-group .item .info {
  margin-top: 8px;
  width: 100%;
}
.container .video-group .item .info .name {
  font-size: 0.37rem;
  line-height: 0.5rem;
  color: #0f0f0f;
  font-weight: 400;
}
.container .video-group .ms {
  /* margin-top: 6px; */
  /* height: 14px; */
  margin-top: 0.1rem;
  align-items: center;
}
.container .video-group .ms .text {
  margin-right: 10px;
  width: auto;
  height: 14px;
  align-items: center;
  line-height: 14px;
  font-size: 10px;
  color: #707070;
  font-weight: 400;
}
.container .video-group .ms .text span {
  display: inline-block;
  height: 0.3rem;
  line-height: 0.3rem;
}
.container .video-group .ms .icon {
  margin-right: 6px;
  width: 0.3rem;
  height: 0.3rem;
}
/*big-card*/
.container .big-card {
  margin-top: 14px;
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}
.container .big-card:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.container .big-card .thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
/*video-groupA*/
.container .video-groupA {
  margin-top: 14px;
  width: 100%;
}
.container .video-groupA .item {
  margin-bottom: 6px;
  /* margin-bottom: 14px;*/
  width: 100%;
  border-bottom: 2px dotted #ccc;
}
.container .video-groupA .item .thumb {
  width: 140px;
  /* height: 90px;*/
  border-radius: 6px;
}
.video-groupA .item .info {
  flex: 1;
  /* height: 90px;*/
  box-sizing: border-box;
  padding-left: 12px;
  overflow: hidden;
}
.container .video-groupA .item .name {
  width: 100%;
  /*height: 40px;*/
  font-size: 0.37rem;
  /* line-height: 0.5rem; */
  color: #0f0f0f;
  font-weight: 400;
}
.container .video-groupA .item .name .el-icon-video-camera-solid {
  margin-right: 0.2rem;
  font-size: 0.4rem;
}
.container .video-groupA .item .ds {
  margin-top: 0.6rem;
  /* height: 18px; */
  align-items: center;
}
.container .video-groupA .item .ds .date {
  margin-right: 0.2rem;
  line-height: 0.4rem;
  color: #707070;
  font-size: 0.3rem;
}
.container .video-groupA .item .ds .text {
  margin-right: 10px;
  width: auto;
  height: 14px;
  align-items: center;
  line-height: 14px;
  font-size: 10px;
  color: #707070;
  font-weight: 400;
}
.container .video-groupA .item .ds .text span {
  display: inline-block;
  height: 14px;
  line-height: 14px;
}
.container .video-groupA .item .ds .icon {
  margin-right: 6px;
  width: 14px;
  height: 14px;
}
/*footer*/
.container .footer {
  width: 10rem;
  height: auto;
  box-sizing: border-box;
  /* padding: 14px 10px 12px; */
  padding: 0.2rem;
  background: #f5fbff;
  position: absolute;
  bottom: 0;
}
.container .footer p {
  line-height: 0.5rem;
  font-size: 0.37rem;
  color: #000;
  text-align: center;
  font-weight: 400;
}
.container .footer .map {
  display: block;
  width: 100%;
  line-height: 26px;
  font-size: 0.37rem;
  color: #1158b1;
  text-align: center;
  font-weight: 400;
}
.container .footer .gov {
  margin: 0.3rem auto 0;
  display: block;
  width: 0.9rem;
  height: auto;
}

/*更多*/
.container .bgsky {
  background: url(/statics/images/bgsky.png) #fff no-repeat top center;
  background-size: 100% 148px;
}

.container .pagination {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  margin: 30px 0 20px;
}

.container .pagination .active {
  background: #0047a9;
  color: #fff;
}

.container .pagination li {
  margin: 0 4px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: 1px solid #eaeaea;
  font-size: 12px;
  text-align: center;
  line-height: 32px;
  color: #999;
}
.container .pagination .disabled {
  background: #eaeaea;
  color: #999;
}

/*页码*/
.container .page-group {
  width: 100%;
  height: 34px;
  justify-content: center;
}
.container .page-group .item {
  margin: 0 4px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: 1px solid #eaeaea;
  font-size: 12px;
  text-align: center;
  line-height: 32px;
  color: #999;
}
.container .page-group .item.cur {
  background: #0047a9;
  color: #fff;
}
.container .page-group .item.disabled {
  background: #eaeaea;
  color: #999;
}
/*video-info*/
.container .video-info {
  margin-top: 14px;
  width: 100%;
  height: auto;
}
.container .video-info .name {
  font-size: 16px;
  color: #0f0f0f;
  line-height: 24px;
  font-weight: 500;
}
.container .video-info .message {
  margin-top: 6px;
  font-size: 12px;
  color: #707070;
  line-height: 18px;
  font-weight: 400;
}
/*suggestion-group*/
.container .suggestion-group {
  width: 100%;
  padding-top: 10px;
  background: #f4f4f4;
}
.container .suggestion-group .title {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 10px;
  align-items: center;
  background: #fff;
}
.container .suggestion-group .title .icon {
  width: 22px;
  height: 22px;
}
.container .suggestion-group .title .text {
  margin-left: 8px;
  flex: 1;
  height: 48px;
  box-sizing: border-box;
  padding-top: 1px;
  border-bottom: 1px solid #f4f4f4;
  line-height: 46px;
  font-size: 0.37rem;
  color: #000;
  font-weight: 400;
}
/*suggroup*/
.container .suggroup {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 14px 10px 0;
  background: #fff;
}
.container .suggroup .avatar {
  width: 26px;
  height: 26px;
}
.container .suggroup .sug_ta {
  margin-left: 6px;
  flex: 1;
  height: 100px;
  box-sizing: border-box;
  border: 1px solid #9f9f9f;
  padding: 4px;
  border-radius: 6px;
  font-size: 0.37rem;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
.container .suggroup .sug_ta:disabled {
  background: #eaeaea;
}
/*suglist*/
.container .suglist {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 10px;
  background: #fff;
}
.container .suglist .item {
  width: 100%;
  height: auto;
}
.container .suglist .item:last-child .right {
  border-bottom: none;
}
.container .suglist .item .avatar {
  width: 30px;
  height: 30px;
}
.container .suglist .item .right {
  margin-left: 6px;
  flex: 1;
  height: auto;
  box-sizing: border-box;
  padding-bottom: 14px;
  border-bottom: 1px solid #f4f4f4;
}
.container .suglist .item .right .nd {
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.container .suglist .item .right .nd .name {
  font-size: 0.37rem;
  color: #000;
}
.container .suglist .item .right .nd .date {
  font-size: 12px;
  color: #707070;
}
.container .suglist .item .right .text {
  font-size: 0.37rem;
  line-height: 22px;
  color: #000;
}

/* 视频列表 */
.container .fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container .fa-video-camera:before {
  content: "\f03d";
}
.container .index-swiper {
  width: 100%;
  height: 184px;
  border-radius: 6px;
  overflow: hidden;
}
.container .index-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 184px;
}
.container .index-swiper .swiper-slide .thumb {
  display: block;
  width: 100%;
  height: auto;
}
.container .index-swiper .swiper-slide .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28px;
  box-sizing: border-box;
  padding: 0 12px;
  background: #565656;
  text-align: center;
  line-height: 28px;
  font-size: 0.37rem;
  color: #fff;
}
.container .index-swiper .swiper-button-next,
.container .index-swiper .swiper-button-prev {
  top: 70px;
  margin-top: 0;
  width: 20px;
  height: 20px;
  outline: none;
  border-radius: 50%;
  overflow: hidden;
}
.container .index-swiper .swiper-button-next {
  right: 10px;
  background: url(/statics/images/next.png) no-repeat center;
  background-size: 100%;
}
.container .index-swiper .swiper-button-prev {
  left: 10px;
  background: url(/statics/images/prev.png) no-repeat center;
  background-size: 100%;
}
.container .fenyep{
  min-height: 0.8rem;
  /* padding-top: 0.2rem; */
  width: 100%;
  overflow-x: auto;
}
.container .fenyep .el-pagination{
  font-weight: 600;
}
.container .fenyep .el-pagination .btn-next .el-icon, 
.container .fenyep .el-pagination .btn-prev .el-icon{
  font-size: 0.35rem;
}
.container .fenyep .el-pager li{
  font-size: 0.35rem;
}
.container .fenyep .el-pager li.active{
  color: #0047a9;
}