@charset "utf-8";

/*
	@名称: base
	@功能: 重设浏览器默认样式
	@说明：Based On Aliceui
*/

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html{
	color:#000;background:#fff;
	-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	margin:0;padding:0;
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display:block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video {
    display: inline-block;*display: inline;*zoom: 1;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,button,input,select,textarea{
  font-size: 12px;
  line-height: 1.5;
  font-family:-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,Helvetica Neue,Helvetica,Arial,PingFang SC,Hiragino Sans GB,Microsoft YaHei UI,Microsoft YaHei,Source Han Sans CN,sans-serif;
}
input,select,textarea{
	font-size:100%;
	vertical-align:middle;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table{
	border-collapse:collapse;border-spacing:0;
}

/* IE bug fixed: th 不继承 text-align*/
th{
	text-align:inherit;
}

/* 去除默认边框 */
fieldset,img{
	border:0;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe{
	display:block;
}

/* 去掉 firefox 下此元素的边框 */
abbr,acronym{
	border:0;font-variant:normal;
}

/* 一致的 del 样式 */
del {
	text-decoration:line-through;
}

address,caption,cite,code,dfn,em,th,var {
	font-style:normal;
	font-weight:normal;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,th {
	text-align:left;
}

/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}

q:before,q:after {
	content:'';
}

/* 统一上标和下标 */
sub, sup {
    font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;
}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* 让链接在 hover 状态下显示下划线 */
a:hover {
	text-decoration:underline;
}

/* 默认不显示下划线，保持页面简洁 */
ins,a {
	text-decoration:none;
}

/* 清理浮动 */
.fn-clear:after {
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}
.fn-clear {
	zoom:1; /* for IE6 IE7 */
}

/* 隐藏, 通常用来与 JS 配合 */
body .fn-hide {
	display:none;
}
a {
  cursor: pointer;
}

/* 设置内联, 减少浮动带来的bug */
.fn-left,.fn-right {
	display:inline;
}
.fn-left {
	float:left;
}
.fn-right {
	float:right;
}

.fn-center {
	text-align:center;
}
.pa {position:absolute}
.pr {position:relative}
.ui-tooltip {
  position: relative;
  -webkit-transform: translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing: antialiased; /* webkit text rendering fix */
}
.ui-tooltip .ui-tooltip-content {
  font-size: 12px;
  background: #7f7f7f;
  bottom: 100%;
  color: #fff;
  display: block;
  left: -100px;
  margin-bottom: 8px;
  opacity: 0;
  padding: 4px 4px;
  width: 200px;
  text-align: center;
  pointer-events: none;
  position: absolute;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
}

.ui-tooltip .ui-tooltip-content:before{
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}
.ui-tooltip .ui-tooltip-content:after {
  border-left: solid transparent 6px;
  border-right: solid transparent 6px;
  border-top: solid #7f7f7f 6px;
  bottom: -5px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  width: 0;

}

.ui-tooltip:hover .ui-tooltip-content {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
     -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
       -o-transform: translateY(0px);
          transform: translateY(0px);
}

html,body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
}
body{
  -webkit-touch-callout: none;
  font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
  background-color: #fff;
  line-height: inherit;
}
blockquote{
  margin: 0;
  padding-left: 10px;
  border-left: 3px solid #DBDBDB;
}
.grid {
  /*width:640px;
  margin:35px auto;
  color:#333333;
  position: relative;*/
}
a {
	color:#607fa6;
  cursor: pointer;
}
img {
  cursor: pointer;
}
.blur-wrap.cover {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  filter: blur(3px);
}
.col-main,.col-sub {
  font-size: 16px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.col-main .main-wrap {
  background:#fff;
}
.col-sub {
  width:170px;
}
.col-main .main-wrap .news {
  position: relative;
  padding: 10px 15px 15px;
  background-color: #fff;
}
.col-main .main-wrap .news > h1 {
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 24px;
}
.col-main .main-wrap .news .desc {
  font-size:16px;
  color:#8c8c8c;
  margin-bottom:18px;
  height: 30px;
  line-height: 1.2;
}
.col-main .main-wrap .news .desc span {
  color: #8c8c8c;
  margin-left: 4px;
}

hr {
  font-family: Avenir, sans-serif;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: solid;
  border-top-color: rgb(234, 234, 234);
  height: 1px;
  margin: 1em 0px;
  padding: 0px;
  color: rgb(51, 51, 51);
  line-height: 22px;
  white-space: normal;

}
.col-main .main-wrap .news .desc .author {
  color:#607fa6;
  font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
  position: relative;
  margin-left: 4px;
}
.col-main .main-wrap .news .desc .author:hover {
  text-decoration: none;
}
.col-main .main-wrap .news .content section {
  white-space: normal !important;
}
.col-main .main-wrap .news .content{
  position: relative;
  overflow: hidden;
  color: #3e3e3e;
}
.col-main .main-wrap .news .content *{
  max-width: 100%!important;
  box-sizing: border-box!important;
  -webkit-box-sizing: border-box!important;
  word-wrap: break-word!important;
}
.col-main .main-wrap .news .content .card_iframe {
  border: 0px;
  width: 100%;
}
.col-main .main-wrap .news .content p {
  clear: both;
  min-height: 1em;
  white-space: pre-wrap;
}
.col-main .main-wrap .news .content em{
  font-style: italic;
}
.col-main .main-wrap .news .content img {
  max-width: 100% !important;
  height: auto;
  max-height: none !important;
  outline-width: 0px;
  vertical-align: top;
}
.col-main .main-wrap .news .content .V5 section img {
  margin-bottom: 0;
}
.col-main .main-wrap .source {
  font-size:17px;
  color:#669bc6;
  vertical-align: middle;
  margin-right:4px;
}
.col-main .main-wrap .source:hover {
  text-decoration: none;
}
.col-main .main-wrap .view-count,
.col-main .main-wrap .expose {
  vertical-align: middle;
  color:#999;
  font-size:17px;
}
.col-main .main-wrap .expose:hover {
  text-decoration: none;
}
.col-sub .weixin-info {
  padding-left:20px;
}
.col-sub .weixin-info dt {
  color:#4f9b05;
  font-size: 16px;
  font-weight: bold;
  margin-bottom:6px;
  background:url(../../../img/shop/single/weixin-icon.png) left center no-repeat;
  text-indent:30px;
}
.col-sub .weixin-info dd {
  color:#999;
}
/*pop*/
.alert-pop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
}
.alert-cover {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(102, 102, 102, 0.6);
  filter: alpha(opacity=60);
}
.alert-box {
  position: fixed;
  width: 80%;
  left: 10%;
  top: 50%;
  opacity: 0;
}
.alert-box .container {
  text-align: center;
}
.alert-box .container .title {
  height: 1.4rem;
  line-height: 1.4rem;
  background: rgba(0, 0, 0, 0.9);
  filter: alpha(opacity=90);
  color: #666;
  border-radius: 0.2rem 0.2rem 0 0;
  font-size: 0.6rem;
}
.alert-box .container .pop-content {
  height: 6rem;
  background: rgba(0, 0, 0, 0.8);
  filter: alpha(opacity=80);
  color: #eaeaea;
  margin: 0;
  border-radius: 0 0 0.2rem 0.2rem;
}
.alert-box .container .pop-content h3 {
  padding-top: 1rem;
  color: #fff;
  font-weight: normal;
  margin: 0;
  font-size: 0.6rem;
}
.alert-box .container .weixin-name {
  margin: 0.3rem auto;
}
.alert-box .container .weixin-name input {
  background: #70cc00;
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  border: none;
  text-align: center;
  -moz-user-select: all;
  -webkit-user-select: all;
  -ms-user-select: all;
  font-size: 0.6rem;
  min-width: 4rem;
}
.alert-box .container .weixin-name span.input-trigger {
  display: inline-block;
  position: absolute;
  left: -9999px;
}
.alert-box .container .copy {
  color: #595959;
  line-height: 1;
}
.alert-box .container .copy span {
  font-size: 0.4rem;
}
.alert-box .copy em img {
  width: 0.5rem;
  margin-bottom: -0.1rem;
}
.alert-box .close {
  position: absolute;
  right: 0;
  top: 0;
}
.alert-box .close a {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  background: #353535;
  border: #fff solid 0.1rem;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.alert-box .close a::before,
.alert-box .close a::after {
  display: block;
  content: '';
  position: absolute;
  width: 60%;
  top: 50%;
  left: 20%;
  height: 0.1rem;
  margin-top: -0.05rem;
  background: #fff;
}
.alert-box .close a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.alert-box .close a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.bottom {
  margin-top:20px;
}

/*@media all and (max-width:720px){
  body{
    font-size: 20px;
  }
}
@media all and (max-width:480px){
  body{
    font-size: 16px;
  }
}
@media all and (max-width:320px){
  body{
    font-size: 12px;
  }
}
@media all and (max-width:500px) {
  html {
    background:#fff;
  }
  .col-sub {
    display: none;
  }
  .grid {
    margin:0;
    width:100%;
    position: relative;
  }
  .col-main {
    width:100%;
  }
  .col-main .main-wrap {
    width:100%;
  }
  .col-main .main-wrap .news h1 {
    font-size:24px;
    color:#000;
    margin-bottom:5px;
  }
  .col-main .main-wrap .news .desc {
    font-size:12px;
    color:#8c8c8c;
  }
  .col-main .main-wrap .news .content {
    width:100%;
  }
  .col-main .main-wrap .news .content p {
    font-size:16px;
    color:#333;
  }
  .col-main .main-wrap .news {
    padding:20px 15px 15px 15px;
  }
  .col-main .main-wrap .source {
    font-size:12px;
  }
}*/

.main-wrap .advise-read hr{
  width: 35%;
  display: inline-block;
  vertical-align: middle;
  border: none;
  border-top: 2px solid #e9e9e9;
}
.main-wrap .advise-read span{
  min-width: 30%;
  display: inline-block;
  text-align: center;
  color: #c6c6c6;
  margin: 1.4em 0 0 0;
}
.main-wrap .advise-read li{
  color: #8c8c8c;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  margin: 0.6em 0;
}
.main-wrap .advise-read a{
  color: #8c8c8c;
}
.main-wrap .advise-read li:before{
  content: "·";
}
div#js_pc_qr_code {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 20px;
  color: #717375;
  text-align: center;
}
.qr_code_pc_inner {
  position: relative;
  width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.qr_code_pc {
  position: absolute;
  right: -145px;
  top: 0;
  padding: 16px;
  border: 1px solid #d9dadc;
  background-color: #fff;
}
.qr_code_pc p {
  font-size: 14px;
  line-height: 20px;
}
.footer {
  text-align: center;
  padding:30px 0;
  color:#999;
}
.footer a {
  color:#999;
}
.list-paddingleft-2 {
  padding-left: 20px;
}
@media(min-device-width:375px) and (max-device-width:667px) and (-webkit-min-device-pixel-ratio:2) {
  .col-main .main-wrap .news .content,
  .col-main .main-wrap .news .desc {
    font-size:17px
  }
}
@media(min-device-width:414px) and (max-device-width:736px) and (-webkit-min-device-pixel-ratio:3) {
  .col-main .main-wrap .news > h1 {
    font-size:25px
  }
}
@media screen and (min-width:1024px) {
  body{
    background-color: #fff;
  }
  .grid {
    width:740px;
    margin-left:auto;
    margin-right:auto
  }
  .col-main{
    padding: 20px;
  }
  .col-main .main-wrap .news > h1{
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e7e7eb;
  }
  .col-main .main-wrap .news .content{
    min-height: 350px;
  }
}
@media screen and (min-width:1025px) {
  body {
    font-family:"Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif
  }
  div#js_pc_qr_code{
    display: block;
  }
}
@media all and (max-width:500px) {
  .qrcode-box {
    width:82%;
    margin-left:-41%;
  }
  .qrcode-box .wrap p {
    font-size:0.9rem !important;
  }
  .footer {
    display: none;
  }
}

/*小程序显示相关样式*/
.weapp_text_link:before {
  content: '';
  display: inline-block;
  line-height: 1;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-image: url("https://qiniu.drip.im/news-thumb/5c1b187e4576d.png");
  vertical-align: middle;
  font-size: 11px;
  color: #888;
  border-radius: 10px;
  background-color: #f4f4f4;
  margin-right: 6px;
  margin-top: -4px;
  background-position: center;
  height: 20px;
  width: 20px;
}
.weapp_image_link:before{
  content: ' ';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 9px;
  right: 9px;
  background: url(https://qiniu.drip.im/news-thumb/5c1b187e4576d.png);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: white;
}
a.weapp_image_link {
  font-size: 0;
  display: inline-block;
  position: relative;
}
.weapp_card.app_context, .weapp_card .weapp_card_bd, .weapp_card .weapp_card_ft, .weapp_card .weapp_card_nickname, .weapp_card .weapp_card_info, .weapp_card .weapp_card_title {
  display: block;
}
.weapp_card.app_context {
  overflow: visible;
}
.weapp_card.app_context {
  padding-top: 12px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  overflow: hidden;
  margin: 1em 0;
}
.weapp_card {
  cursor: pointer;
}
.appmsg_card_context {
  border-width: 0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}
.appmsg_card_context {
  position: relative;
  background-color: #fdfdfd;
}
.weapp_card {
  border: 1px solid #e1e1e1;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  text-indent: 0;
  text-align: left;
  text-decoration: none;
  max-width: 100%!important;
  box-sizing: border-box!important;
  -webkit-box-sizing: border-box!important;
  word-wrap: break-word!important;
}
.appmsg_card_context:before {
  content: " ";
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.weapp_card.app_context .weapp_card_bd {
  padding: 0 12px 12px;
}
.weapp_card.app_context .weapp_card_profile {
  font-size: 12px;
  color: #888;
}
.flex_context {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.weapp_card.app_context .weapp_card_avatar {
  width: 20px;
  height: 20px;
  margin: -0.2em 5px 0 0;
}
.weapp_card .weapp_card_avatar {
  padding: 0;
}
.radius_avatar {
  display: inline-block;
  background-color: #fff;
  padding: 3px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
}
.radius_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #eee;
}
.weapp_card.app_context .weapp_card_nickname {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 400;
}
.flex_bd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  word-wrap: break-word;
  word-break: break-all;
}
.weapp_card.app_context .weapp_card_title {
  padding: .3em 0 .75em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 400;
}
.weapp_card.app_context .weapp_card_thumb_wrp {
  position: relative;
  display: block;
  padding-bottom: 80%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.weapp_card.app_context .weapp_card_ft {
  border-width: 0;
  position: relative;
}
.weapp_card.app_context .weapp_card_ft {
  padding: 0 15px;
  border-top: 1px solid #e1e1e1;
  line-height: 1.56em;
}
.weapp_card.app_context .weapp_card_ft:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.weapp_card_logo {
  color: #888;
  font-size: 13px;
}
.icon_weapp_logo_mini {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: .2em;
  margin-top: -0.2em;
  margin-bottom: 0 !important;
  vertical-align: middle !important;
}
.weapp_web_hidden {
  display: none;
}

.col-main .main-wrap .news .content div{
  display: block !important;
}
