/* 版权样式 */
#MySignature {
  border-radius: 10px;
  box-shadow: 0px 0px 10px #000;
  padding: 10px 15px;
  line-height: 25px;
}
#MySignature a{
  text-decoration: none;
}

/* 分类列表页样式定制 */
.entrylistPosttitle {
  background-color: #2b2b2b;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  border: 3px solid #ffffff;
  box-shadow: 0px 15px 10px -15px #000000;
  margin-bottom: 10px;
}
.entrylistItemTitle span{
  color: white;
}
.entrylistItem {
  margin-bottom: 10px;
}
h1.entrylistTitle {
  display:none;
}

/* 首页样式定制 */
.day {
  background: none;
  margin: auto auto auto auto;
  padding-bottom: 15px;
}
.dayTitle {
  display: none;
}
.postCon {
  border-bottom: 1px solid #cccccc;
}
.postTitle {
  background-color: #2b2b2b;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  border: 3px solid #ffffff;
  box-shadow: 0px 15px 10px -15px #000000;
}
.postTitle a:link, .postTitle a:visited, .postTitle a:active, .postTitle a:hover {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}
.c_b_p_desc {
  padding: 0 20px;
}

/* 装饰红漆隐藏 */
#header {
    background: none;
    height: 210px;
}
/* 副标题居右 */
#header h2 {
    text-align: right;
    padding-right: 60px;
}
/* 装饰红漆隐藏 */
#blogTitle {
    background: none;
}
/* 底部红漆装饰红条隐藏 */
#footer {
    background: none;
    padding-top: 10px;
    padding-bottom: 20px;
}
/* 底部技术支持隐藏 */
#poweredby {
    display:none;
}
/* 关注粉丝园龄隐藏 */
#sidebar_news {
  padding: 0 5px;
}
#sidebar_news .newsItem{
  padding: 0;
}
#profile_block {
  margin-top: -98px;
    /* display:none; */
}
/* 搜索框修改 */
#q {
    width:70%;
}
#btnZzk {
    width: 26%;
    height: 24px;
}
.mySearch h3 {
    display:none;
}
#sidebar_search_box{
    margin-top:20px;
    margin-bottom:20px;
}

/* 随笔分类修改 */
#sidebar_categories h3 {
    display:none;
}
/* #sidebar_categories ul {
    background-color: #490f0f;
} */
/* #sidebar_categories li {
    text-align: center;
    border: solid #2e2e2e;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-collapse:collapse;
    padding: 2px 0;
} */
#sidebar_categories li {
  text-align: center;
  line-height: 30px;
  margin-bottom: 5px;
  width: 228px;
  height: 30px;
  background: #490f0f;
  border-radius: 5px;
  position: relative;
  max-width: 270px;
  box-shadow: 0px 1px 4px rgba(0,0,0,0.3),
              0px 0px 20px rgba(0,0,0,0.1) inset;
}
#sidebar_categories li::before,
#sidebar_categories li::after {
   content:"";
   position:absolute;
   z-index:-1;
}
#sidebar_categories li::before,
#sidebar_categories li::after {
   content:"";
   position:absolute;
   z-index:-1;
   bottom:15px;
   left:10px;
   width:50%;
   height:20%;
}
#sidebar_categories li::before,
#sidebar_categories li::after {
   content:"";
   position:absolute;
   z-index:-1;
   bottom:15px;
   left:10px;
   width:50%;
   height:20%;
   box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
   transform:rotate(-3deg);
}
#sidebar_categories li::after{
   right:10px;
   left:auto;
   transform:rotate(3deg);
 }

/* 详情页去推广 */
#cnblogs_ch {
    display: none;
}
#under_post_card1 {
    display: none;
}
#under_post_card2 {
    display: none;
}
#cnblogs_c1 {
    display: none;
}

/* 上一篇下一篇去除 */
#post_next_prev {
    display: none;
}

/* 加载条 */
#nprogress {
    pointer-events: none;
}
#nprogress .bar {
    background: #FE9600;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #FE9600, 0 0 5px #FE9600;
    opacity: 1.0;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}
#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: #FE9600;
    border-left-color: #FE9600;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}
@-webkit-keyframes nprogress-spinner {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 详情页版权 */
#MySignature {
    background-color: #282828;
    color: #ffffff;
}
#MySignature a {
    color: #ffffff;
}

/* 页脚鱼池 */
/* @media only screen and (max-width: 767px){
    #sidebar_search_box input[type=text]{width:calc(100%-24px)}
} */

/* 置顶小火箭样式  start  */
/* body{height:3000px;} */
/* #rocket-to-top div {
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 149px;
}
#rocket-to-top .level-2 {
    background: url("https://images.cnblogs.com/cnblogs_com/blogs/772522/galleries/2233241/o_221023073848_rocket_button_up.png") no-repeat scroll -149px 0 transparent;
    display: none;
    height: 250px;
    opacity: 0;
    z-index: 1;
}
#rocket-to-top .level-3 {
    background: none repeat scroll 0 0 transparent;
    cursor: pointer;
    display: block;
    height: 150px;
    z-index: 2;
}
#rocket-to-top {
    background: url("https://images.cnblogs.com/cnblogs_com/blogs/772522/galleries/2233241/o_221023073848_rocket_button_up.png") no-repeat scroll 0 0 transparent;
    cursor: default;
    display: block;
    height: 250px;
    margin: -125px 0 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 0;
    top: 80%;
    width: 149px;
    z-index: 11;
} */
/* 置顶小火箭样式  end */


/* 浏览器滚动条样式美化 */
::-webkit-scrollbar{
    width:10px!important;
    height:10px!important;
    -webkit-appearance:none;
}
::-webkit-scrollbar-thumb{
    height:5px;border:1px solid transparent;
    border-top:none;border-bottom:none;
    -webkit-border-radius:6px;
    background-color:rgba(0,0,0,.3);
    background-clip:padding-box;
}

/* 点赞小磁怪开始 */
/* #loadingProcess{
  position: absolute;
  position: fixed;
  top:0;
  left: 0;
  height: 3px;
  box-sizing: border-box;
  width: 0%;
  background-color: @AccentColor;
  background-image: linear-gradient(to right,transparent 0%,transparent 80%,#fff 100% );
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}
.syntaxhighlighter{
  z-index: -1
}
@keyframes jumping {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-400px);
  }
  100% {
    transform: translateY(0px);
  }
}
  
@keyframes eyemove {
  0% {
    transform: translate(0px,0px);
  }
  20% {
    transform: translate(0px,0px);
  }
  25% {
    transform: translate(0px,-10px);
  }
  45% {
    transform: translate(0px,-10px);
  }
  50% {
    transform: translate(0px,0px);
  }
  60% {
    transform: translate(0px,0px);
  }
  65% {
    transform: translate(-8px,0px);
  }
  85% {
    transform: translate(-8px,0px);
  }
  90% {
    transform: translate(0px,0px);
  }
  100% {
    transform: translate(0px,0px);
  }
} 
  
@keyframes jumping {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-400px);
  }
  100% {
      transform: translateY(0px);
  }
}
#div_digg {
  bottom: 0px;
  bottom: 70px;
  margin: 0px;
  position: fixed;
  left: 60px;
  animation: jumping 5s ease-in-out;
  animation-iteration-count: infinite;
}
  
.buryit {
  display: none;
}
  
.diggit { 
  background: url(https://images.cnblogs.com/cnblogs_com/blogs/772522/galleries/2233241/o_221024025435_o_ball2.png) no-repeat;
  border-radius: 50%;
  box-shadow: 0px 0px 15px 5px #fff inset;
  cursor: pointer;
  height: 100px;
  margin: 0px;
  padding: 0px;
  width: 100px;
  text-align: center;

  &::before{
    content: "\8FD9\91CC\662F\70B9\8D5E\54E6";
    content: "这里是点赞哦";

    position: absolute;
    top: -40px;
    left: 7px;
    font-size: 14px;
    left: 0px;
    font-size: 18px;
    color: @ThemeColor;
  }
}
#div_digg .diggnum {
  color: #EEE;
  font-family: Verdana;
  font-size: 22px;
  line-height: 4em!important;
}
#digg_tips{
  color: #fa5 !important;
  width: 200px;
  text-align: center;
  margin-left: -50px;
  margin-top: 20px;
}

a.digg_gray{
  font-size: 18px;
}
#xiaociguai{
  position: fixed;
  bottom: 20px;
  left: 52px;
  width: 155px;
  cursor: pointer;
}
#xiaociguai>img{
  width: 155px;
}
#xiaociguai::after{
  content: '';
  width: 2px;
  height: 2px;
  background-color: #666;
  position: absolute;
  left: 69px;
  top: 43px;
  animation: eyemove 10s ease-in-out;
  animation-iteration-count: infinite;
}
#xiaociguai:hover,#xiaociguai.enable-electric{
  -webkit-filter: saturate(7);
  filter: saturate(7);
} */
/* 点赞小磁怪结束 */

/* 好文要顶、关注我、收藏该文、微博分享、微信分享 */
#green_channel {
  padding: 5px 0 15px 0;
  margin-bottom: 10px;
  margin-top: 10px;
  border: 0;
  /* border-top: #eee 1px dashed;
  border-bottom: #eee 1px dashed;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: rgb(238, 238, 238); */
  font-size: 12px;
  width: 100%!important;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
a#green_channel_digg, a#green_channel_follow, a#green_channel_favorite, a#green_channel_weibo, a#green_channel_wechat {
  text-decoration: none;
  color: #fff;
  margin: auto;
  width: 80px;
  display: inline-block;
  line-height: 30px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  position: relative;
  margin-left: 10px;
  background-image: none;
  margin-top: 10px;
}

#green_channel #green_channel_digg {
  background-color: #282828;
}

a#green_channel_digg {
  background-color: #282828;
  /* box-shadow: 0 15px 18px -6px rgba(95,193,206,0.65); */
}

#green_channel #green_channel_favorite {
  background-color: #282828;
}
a#green_channel_favorite {
  background-color: #282828;
  /* box-shadow: 0 15px 18px -6px rgba(255,198,75,0.65); */
  margin-left: 10px;
}

#green_channel #green_channel_follow {
  background-color: #282828;
}
a#green_channel_follow {
  background-color: #282828;
  /* box-shadow: 0 15px 18px -6px rgba(227,49,0,0.65); */
  margin-left: 10px;
}
/* a#green_channel_wechat {
  padding: 3px 8px!important;
  background-color: #3cb034!important;
  box-shadow: 0 15px 18px -6px rgba(60,176,52,0.65)!important;
  margin-left: 10px;
  width: 35px;
}
a#green_channel_weibo {
  padding: 3px 8px!important;
  background-color: #ff464b!important;
  box-shadow: 0 15px 18px -6px rgba(255,70,75,0.65)!important;
  margin-left: 10px;
  width: 35px;
} */
 
/* 园友开始去除 */
#author_profile{
  display:none;
}

/* 支持、反对 */
/* #div_digg {
  display:none;
} */
#div_digg{
  position:fixed;
  bottom:5px;
  width:50px;
  right:26px;
  border:2px solid #490f0f;
  padding:10px;
  background-color:#fff;
  border-radius:5px 5px 5px 5px !important;
  box-shadow:0 0 0 1px #8d4337, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}
#div_digg .buryit{
  display: none;
}


/* #author_profile_info img.author_avatar {
  border-radius: 100%;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.4);
  border: 3px solid #f7f7f7;
  padding: 0;
  margin-left: 3px;
  margin-right: 7px;
}
// 禁用下划线
.postBody a:link, .postBody a:visited, .postBody a:active {
  text-decoration: none;
} */
/* 园友结束 */
 
/* 上一篇下一篇 */
/* #post_next_prev {
  font-size: 14px;
  color: #535353;
} */

/* 底部分类隐藏 */
#BlogPostCategory {
  display: none;
}

/* 底部标签隐藏 */
#EntryTag {
  display: none;
}

/* 底部微博分享隐藏 */
a#green_channel_weibo {
  display: none;
}

/* 底部微信分享隐藏 */
a#green_channel_wechat {
  display: none;
}

/* 舒心评论、刷新页面、返回顶部隐藏 */
#comment_nav {
  display: none;
}

/*作者名称、MD、编辑、收藏、举报隐藏 */
#topics .postDesc {
  display: none;
}

/* 编辑、收藏 */
#topics .postDesc a {
  background-color: #51C332;
  border-radius: 3px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px #8B0000;
  padding: 3.7px 13px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 3px;
  box-shadow: black 0px 2px 8px;
}

/* 防止图片溢出开始 */
#cnblogs_post_body img {
  max-width: 100%;
}
// 如果没有bug可以忽略这一条
// 溢出隐藏设置
#topics, #mainContent {
  overflow: visible;
}
#postDesc {
  float: none;
}
/* 防止图片溢出结束 */

/* 留言富文本美化 */
#comment_form_container .comment_textarea {
  width: 100%
}

/* 评论区美化开始 */
/* 用户头像 */
.blog_comment_body > img.user-avatar {
    position: absolute;
    left: -72px;
    top: 0px;
    width: 48px;
    height: 48px;
}
.myself .blog_comment_body > img.user-avatar {
    left: initial;
    right: -72px;
}
#blog-comments-placeholder {
    /* border: solid 1px #CCC;
    border-radius: 5px; */
}
div#comments_pager_top {
    display: none;
}
#blog-comments-placeholder > br {
    display: none;
}
/* 评论列表 */
.feedbackManage {
    width: 130px;
    display: none;
    /* position: absolute;
    right: 150px;
    top: 6px; */
}
.feedbackItem:hover .feedbackManage {
    display: block;
}
/* 所有评论里面的A标签 */
.feedbackItem a {
    color: #989898 !important;
    transition: all .2s;
}
.feedbackItem a:hover {
    color: #FF661C !important;
    text-decoration: underline;
}
/* 评论分割 */
.feedbackCon {
    background: none;
    clear: both;
    /* margin: 10px 0 0 30px; */
}
/* 楼层 */
.feedbackListSubtitle a.layer {
    background: #B2E866;
    color: #414141 !important;
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 4px;
    /*display: none;*/
}
/* 评论 */
.feedbackListSubtitle a[target="_blank"] {
    color: #FF6969 !important;
}
/* 评论时间 */
.feedbackItem .comment_date {
    color: #BCBCBC;
    margin-right: 4px;
}
/* 楼主颜色 */
.feedbackListSubtitle {
    color: #0AB300;
}
/* 支持与反对 */
.comment_vote{
  display: none;
}
/* .comment_vote {
    float: right;
    margin-top: -34px;
    display: block;
} */
/* 鼠标经过时显示支持与反对 */
/* .feedbackItem:hover .comment_vote {
    display: block;
} */
/* 评论内容颜色 */
.feedbackItem {
    color: #464646;
    position: relative;
}
/* 评论背景 */
.blog_comment_body {
    background: #B2E866;
    float: left;
    padding: 8px 12px;
    border-radius: 10px;
    position: relative;
    overflow: visible;
    margin-left: 33px;
    max-width: 500px;
}
/* 评论三角 */
.blog_comment_body:before {
    content: '';
    display: block;
    position: absolute;
    left: -17px;
    top: 9px;
    width: 0;
    height: 0;
    border-right: solid 18px #B2E866;
    border-top: solid 6px rgba(0, 0, 0, 0);
    border-bottom: solid 10px rgba(0, 0, 0, 0);
}
/* 评论头像 */
.blog_comment_body:after {
    content: attr(data-louceng);
    display: none;
    width: 48px;
    height: 48px;
    position: absolute;
    left: -72px;
    top: 0px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.42);
    font-family: 'Microsoft Yahei';
    background: linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);
    background: -o-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);
    background: -ms-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);
    background: -moz-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);
    background: -webkit-linear-gradient(top , #74DA2D 12% , #87FF4B 35% , #47B31C 86%);
    background-size: contain;
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+0) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_00.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+1) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_01.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+2) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_02.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+3) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_03.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+4) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_04.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+5) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_05.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+6) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_06.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+7) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_07.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+8) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_08.bmp);
}
#blog-comments-placeholder .feedbackItem:nth-child(10n+9) .blog_comment_body:after {
    background-image: url(//files.cnblogs.com/files/liuxianan/auto_avatar_09.bmp);
}


/* 清除浮动 */
.feedbackCon:after {
    content: '';
    display: block;
    clear: both;
}
/* 引用边框 */
.comment_quote {
    border: 1px solid #63921F;
    border-radius: 3px;
}
/* 隐藏小图�? */
.feedbackItem .sendMsg2This {
    display: none;
}

/* 楼主自己的样�? */
.myself .blog_comment_body {
    float: right;
    margin-right: 72px;
    background: #98DDFF;
}
.myself .blog_comment_body:before {
    right: -17px;
    left: initial;
    border-left: solid 18px #98DDFF;
    border-right: none;
}
.myself .blog_comment_body:after {
    content: '';
    display: none;
    width: 48px;
    height: 48px;
    background-image: url(//pic.cnblogs.com/avatar/352797/20160108090502.png) !important;
    background-size: contain;
    position: absolute;
    right: -72px;
    top: 0px;
    left: initial;
}
.myself .feedbackCon{
	margin: 10px 0 0 0px;
}
.myself .comment_vote {
    float: left;
    margin-left: -20px;
}
.myself .comment_quote {
    border: 1px solid #4491B7;
}
.myself .feedbackListSubtitle {
    float: right;
    margin-right: 10px;
    margin-bottom: 10px;
}
.myself .feedbackListSubtitle a.layer {
    display: inline-block;
}
.myself .feedbackManage {
    left: 66px;
    right: initial;
    top: 8px;
    padding-top:2px;
}
/*评论带头像，且支持旋�?*/
.feedbackCon img:hover {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}
.feedbackCon img {
    border-radius: 40px;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
/* 评论区美化结束 */

/* 自动生成的栏目样式修改 */
#navCategory li::marker{
  color: #490f0f;
}
#navCategory li a:hover {
  color: #490f0f;
}
#navCategory ul li {
  margin-top: 10px;
}
#navCategory ul li a{
  text-decoration: none;
}

/* 文章标题h2样式修改 */
#cnblogs_post_body h2{
  box-shadow: 0px 15px 10px -15px #490f0f;
  border: 1px solid #ffffff;
  background-color: #282828;
  color: white;
  border-radius: 5px;
  padding: 10px 10px;
}

/* 文章标题h3样式修改 */
#cnblogs_post_body h3{
  background-color: #490f0f;
  /* border: 1px solid white; */
  padding: 10px 10px;
  box-shadow: inset 0px 15px 20px -15px #000000;
  color: white;
}

/* 文章主标题样式修改 */
#topics .postTitle{
    background-color: #490f0f;
    height: 48px;
    line-height: 50px;
    border: 1px solid white;
    box-shadow: 0px 15px 10px -15px #282828;
    border-radius: 5px;
}
#cb_post_title_url {
  font-size: 22px;
  color: white;
  text-decoration: none;
}
#topics a:hover {
  color: white; 
  text-decoration: none; 
}

/* 下雪特效 */
/* #Snow{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(255,255,240,0.1);
    pointer-events: none;
} */

