Created
April 30, 2017 11:49
-
-
Save slanterns/65fec32f6d9224e3d0a819ebd15c4ee4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-moz-document url-prefix("http://baidu.com"), url-prefix("http://www.baidu.com"), url-prefix("https://www.baidu.com"), url-prefix("https://baidu.com") { | |
| /*========= Public ========= */ | |
| * { | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| } | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 10px; | |
| background-color: rgba(0, 0, 0, 0); | |
| } | |
| ::-webkit-scrollbar-track { | |
| background-color: rgba(0, 0, 0, 0.1); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| border-radius: 3px; | |
| background-color: rgba(0, 0, 0, 0.2); | |
| transition: all 0.4s ease; | |
| -moz-transition: all 0.4s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.4s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.4s ease; | |
| /* Opera */ | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| border-radius: 3px; | |
| background-color: rgba(0, 0, 0, 0.4); | |
| transition: all 0.4s ease; | |
| -moz-transition: all 0.4s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.4s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.4s ease; | |
| /* Opera */ | |
| } | |
| .animated { | |
| -webkit-animation-duration: 1s; | |
| animation-duration: 1s; | |
| animation-fill-mode: both; | |
| } | |
| @-webkit-keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| -webkit-transform: translate3d(0, 100%, 0); | |
| transform: translate3d(0, 100%, 0); | |
| } | |
| to { | |
| opacity: 1; | |
| -webkit-transform: none; | |
| transform: none; | |
| } | |
| } | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| -webkit-transform: translate3d(0, 100%, 0); | |
| transform: translate3d(0, 100%, 0); | |
| } | |
| to { | |
| opacity: 1; | |
| -webkit-transform: none; | |
| transform: none; | |
| } | |
| } | |
| .fadeInUp { | |
| -webkit-animation-name: fadeInUp; | |
| animation-name: fadeInUp; | |
| } | |
| @-webkit-keyframes bounceInRight { | |
| from, 60%, 75%, 90%, to { | |
| -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| } | |
| from { | |
| opacity: 0; | |
| -webkit-transform: translate3d(3000px, 0, 0); | |
| transform: translate3d(3000px, 0, 0); | |
| } | |
| 60% { | |
| opacity: 1; | |
| -webkit-transform: translate3d(-25px, 0, 0); | |
| transform: translate3d(-25px, 0, 0); | |
| } | |
| 75% { | |
| -webkit-transform: translate3d(10px, 0, 0); | |
| transform: translate3d(10px, 0, 0); | |
| } | |
| 90% { | |
| -webkit-transform: translate3d(-5px, 0, 0); | |
| transform: translate3d(-5px, 0, 0); | |
| } | |
| to { | |
| -webkit-transform: none; | |
| transform: none; | |
| } | |
| } | |
| @keyframes bounceInRight { | |
| from, 60%, 75%, 90%, to { | |
| -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| } | |
| from { | |
| opacity: 0; | |
| -webkit-transform: translate3d(3000px, 0, 0); | |
| transform: translate3d(3000px, 0, 0); | |
| } | |
| 60% { | |
| opacity: 1; | |
| -webkit-transform: translate3d(-25px, 0, 0); | |
| transform: translate3d(-25px, 0, 0); | |
| } | |
| 75% { | |
| -webkit-transform: translate3d(10px, 0, 0); | |
| transform: translate3d(10px, 0, 0); | |
| } | |
| 90% { | |
| -webkit-transform: translate3d(-5px, 0, 0); | |
| transform: translate3d(-5px, 0, 0); | |
| } | |
| to { | |
| -webkit-transform: none; | |
| transform: none; | |
| } | |
| } | |
| .bounceInRight { | |
| -webkit-animation-name: bounceInRight; | |
| animation-name: bounceInRight; | |
| } | |
| @-webkit-keyframes bounceInUp { | |
| from, 60%, 75%, 90%, to { | |
| -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); | |
| } | |
| from { | |
| opacity: 0; | |
| -webkit-transform: translate3d(0, 3000px, 0); | |
| transform: translate3d(0, 3000px, 0); | |
| } | |
| 60% { | |
| opacity: 1; | |
| -webkit-transform: translate3d(0, -20px, 0); | |
| transform: translate3d(0, -20px, 0); | |
| } | |
| 75% { | |
| -webkit-transform: translate3d(0, 10px, 0); | |
| transform: translate3d(0, 10px, 0); | |
| } | |
| 90% { | |
| -webkit-transform: translate3d(0, -5px, 0); | |
| transform: translate3d(0, -5px, 0); | |
| } | |
| to { | |
| -webkit-transform: translate3d(0, 0, 0); | |
| transform: translate3d(0, 0, 0); | |
| } | |
| } | |
| a { | |
| text-decoration: none; | |
| margin-bottom: 2px; | |
| } | |
| .c-showurl:hover { | |
| text-decoration: none; | |
| border: none; | |
| opacity: 0.8; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .res-gap-right16:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .c-showurl { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-tip-arrow:hover { | |
| text-decoration: none; | |
| border: none; | |
| } | |
| .c-default a { | |
| text-decoration: none; | |
| border: none; | |
| } | |
| .c-gap-bottom a:hover { | |
| text-decoration: underline; | |
| } | |
| .op_dict3_morelink a:hover { | |
| text-decoration: underline; | |
| } | |
| .c-btn:hover { | |
| text-decoration: none !important; | |
| } | |
| td a:hover { | |
| text-decoration: underline; | |
| } | |
| em { | |
| text-decoration: none !important; | |
| } | |
| #s_wrap { | |
| display: none; | |
| } | |
| .s-top-nav { | |
| display: none; | |
| } | |
| #s_ctner_menus { | |
| display: none; | |
| } | |
| #s_menu_gurd { | |
| display: none; | |
| } | |
| #s_strpx_span1 { | |
| display: none; | |
| } | |
| #ftCon { | |
| display: none; | |
| } | |
| #bottom_container { | |
| display: none; | |
| } | |
| #lg { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| height: 70px; | |
| padding-top: 150px; | |
| } | |
| #lg img { | |
| display: none; | |
| } | |
| #lg a { | |
| display: none; | |
| } | |
| #head_wrapper { | |
| padding-bottom: 0px; | |
| } | |
| #s_form_wrapper { | |
| margin-top: auto; | |
| } | |
| #s_lg_img { | |
| display: none !important; | |
| } | |
| .s_ipt_wr { | |
| border: none; | |
| border-radius: 3px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| background-position: 100% !important; | |
| z-index: -1; | |
| width: 600px; | |
| height: 39px; | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| padding-top: 4px; | |
| } | |
| .s_ipt { | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| } | |
| .s_ipt_wr:hover { | |
| border: none; | |
| border-radius: 2px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .ipthover { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .iptfocus { | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| } | |
| .s_btn { | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 50%; | |
| font-size: 0px; | |
| border: none; | |
| box-shadow: none; | |
| margin-left: 0px; | |
| z-index: 100; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| margin-top: 0px; | |
| opacity: 0; | |
| } | |
| .s_btn:hover { | |
| opacity: 0.5; | |
| background: rgba(0, 0, 0, 0); | |
| border: none; | |
| box-shadow: none; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .s_btn_wr { | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 50%; | |
| font-size: 0px; | |
| background-color: rgba(0, 0, 0, 0); | |
| background-position: 50%; | |
| border: none; | |
| box-shadow: none; | |
| margin-left: 5px; | |
| z-index: 100; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| margin-top: 6px; | |
| } | |
| .s_btn_wr:hover { | |
| opacity: 0.5; | |
| background: rgba(0, 0, 0, 0); | |
| border: none; | |
| box-shadow: none; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .self-btn { | |
| display: none; | |
| } | |
| .btnhover { | |
| opacity: 0.5; | |
| background-color: rgba(0, 0, 0, 0) !important; | |
| border: none !important; | |
| box-shadow: none; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .hint_toprq_tips { | |
| margin-bottom: 12px; | |
| } | |
| .s_form { | |
| height: 75px; | |
| padding-top: 10px; | |
| } | |
| #s_tab { | |
| padding: 87px 0 0 121px; | |
| } | |
| #content_right { | |
| display: none; | |
| } | |
| #head.s_down { | |
| box-shadow: none; | |
| } | |
| .bdsug { | |
| top: 42px !important; | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| border: none; | |
| border-radius: 0 0 2px 2px; | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| width: 598px !important; | |
| } | |
| .bgsug li { | |
| font-family: Helvetica, "Microsoft Yahei UI" !important; | |
| width: 100% !important; | |
| line-height: 36px !important; | |
| } | |
| .bgsug ul li { | |
| line-height: 32px !important; | |
| } | |
| .bdsug-overflow { | |
| font-family: Helvetica, "Microsoft Yahei UI" !important; | |
| width: 583px !important; | |
| } | |
| #quickdelete { | |
| top: 5px !important; | |
| opacity: 0.5; | |
| } | |
| #kw_tip { | |
| font-family: Helvetica, "Microsoft Yahei UI Light"; | |
| } | |
| #result_logo { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTAxIDMzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMDEgMzM7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojNDg3OUJEO30KCS5zdDF7ZmlsbDojREQ0NDM2O30KCS5zdDJ7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTUwLjQsMTUuM2MtMy44LDAuMy00LDIuNi01LjcsNC43Yy0xLjgsMi4yLTUuNSw0LjEtNiw2LjdjLTAuNiwzLjMsMS4zLDUuMSwzLDUuN2MxLjksMC42LDYuMi0wLjUsOC40LTAuNWgwLjIKCWgwLjJjMi4yLDAsNi40LDEuMSw4LjQsMC41YzEuOC0wLjYsMy41LTMuMiwzLTUuN2MtMC40LTIuMS00LjQtNC41LTYuMi02LjdDNTQuMiwxOCw1NC4zLDE1LjYsNTAuNCwxNS4zeiBNMzcsMTQuOAoJYzAsMi40LDEuNiw0LjMsMy40LDQuM2MxLjksMCwzLjQtMS45LDMuNC00LjNjMC0yLjQtMS42LTQuMy0zLjQtNC4zUzM3LDEyLjUsMzcsMTQuOHogTTQzLjksOC42YzAsMi41LDEuNSw0LjUsMy4zLDQuNQoJYzEuOCwwLDMuMy0yLjEsMy4zLTQuNVM0OSw0LjEsNDcuMSw0LjFDNDUuMyw0LDQzLjksNiw0My45LDguNnogTTUyLjIsOC41YzAsMi4zLDEuNCw0LjMsMy4yLDQuM3MzLjItMS45LDMuMi00LjNzLTEuNC00LjMtMy4yLTQuMwoJUzUyLjIsNi4yLDUyLjIsOC41eiBNNTcuNSwxNS45YzAsMi4zLDEuNSw0LjMsMy4zLDQuM2MxLjgsMCwzLjMtMS45LDMuMy00LjNzLTEuNS00LjMtMy4zLTQuM0M1OC45LDExLjYsNTcuNSwxMy42LDU3LjUsMTUuOXoiLz4KPHBhdGggY2xhc3M9InN0MSIgZD0iTTQsMzAuNHYtNS4xaDYuNGMxLjYsMCwxLjYsMC4zLDEuNiwydjEuNGMwLDEuNi0yLjMsMS44LTMuOSwxLjhMNCwzMC40TDQsMzAuNHogTTQsMjN2LTQuOGg0LjEKCWMxLjYsMCwzLjksMCwzLjksMi4xdjAuMWMwLDEuNC0wLjUsMi42LTEuOCwyLjZDMTAuMywyMyw0LDIzLDQsMjN6IE0xLjcsMTZ2MTYuM2g2LjRjMywwLDYuMiwwLDYuMi0zLjZ2LTEuMWMwLTEuNi0wLjEtMi43LTEuMS0zLjUKCWMxLTAuOCwxLjEtMi4zLDEuMS0zLjZsMCwwYzAtNC41LTMuMi00LjUtNi4yLTQuNUwxLjcsMTZMMS43LDE2eiIvPgo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjUsMjguOWMtMS4xLDEuMS0zLjMsMS4zLTMuNSwxLjNjLTEuMywwLTIuNy0wLjUtMi43LTIuMWMwLTEuNCwwLjUtMi4zLDIuMS0yLjNjMS4zLDAsMi44LDAuMSw0LjEsMC42VjI4Ljl6CgkgTTIxLjQsMzIuM2MwLjQsMCwyLjMtMC4xLDMuNy0wLjlsMC4yLDAuN2gyLjF2LTguOWMwLTMuNi0yLjMtNS01LjctNWMtMS44LDAtNC4zLDAuNy00LjcsMC45bDAuNCwyLjNjMS42LTAuNiwzLTAuNiw0LjItMC42CgljMS44LDAsMy4zLDAuNiwzLjMsMi42VjI0Yy0xLTAuNC0yLjQtMC42LTQuMS0wLjZjLTMsMC00LjUsMS42LTQuNSw0LjdDMTYuNCwzMS44LDE5LjYsMzIuMywyMS40LDMyLjN6Ii8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0zMC4yLDE2LjFjMCwwLjYsMC42LDEuMiwxLjMsMS4yYzAuOCwwLDEuMy0wLjYsMS4zLTEuMmMwLTAuNy0wLjYtMS4zLTEuMy0xLjNDMzAuOCwxNC44LDMwLjIsMTUuMywzMC4yLDE2LjF6CgkgTTMwLjMsMzIuMWgyLjRWMTguNWgtMi40VjMyLjF6Ii8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik03MS4yLDIyLjFoOC40YzAuNCwwLjEsMC42LDAuMywwLjYsMC43djIuNmgtOS43di0yLjZDNzAuNiwyMi40LDcwLjgsMjIuMiw3MS4yLDIyLjF6IE03MS4yLDMwLjUKCWMtMC40LDAtMC42LTAuMy0wLjctMC44di0yLjZoOS43djIuNmMwLDAuNC0wLjIsMC43LTAuNiwwLjdINzEuMnogTTczLjYsMThjLTAuMSwwLjQtMC4xLDAuOS0wLjQsMS43Yy0wLjEsMC4zLTAuMSwwLjUtMC4xLDAuNwoJaC0yLjZjLTEuMywwLjEtMS45LDAuOC0yLDJ2Ny45YzAuMSwxLjEsMC44LDEuOCwyLDEuOWgxMGMxLjItMC4xLDEuOC0wLjcsMS45LTEuOHYtNy45Yy0wLjEtMS4zLTAuNy0xLjktMS45LTIuMWgtNQoJYzAuMS0wLjMsMC4xLTAuOCwwLjMtMS40YzAuMS0wLjQsMC4xLTAuNywwLjEtMC45aDcuMnYtMS44SDY3LjRWMThMNzMuNiwxOEw3My42LDE4eiIvPgo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuNywyMi43Yy0wLjQtMC4xLTAuNS0wLjItMC41LTAuNXYtMC42aDMuMnYwLjZjLTAuMSwwLjMtMC4yLDAuNC0wLjUsMC41SDkzLjd6IE05Ni42LDI0LjEKCWMxLjEtMC4xLDEuNi0wLjUsMS42LTEuNHYtMWgyLjN2LTEuNWgtMi4zdi0xLjFoLTEuOHYxLjFoLTMuMnYtMS4xaC0xLjh2MS4xaC0yLjN2MS41aDIuM3YxYzAuMSwwLjksMC42LDEuNCwxLjYsMS40SDk2LjZ6CgkgTTk0LjgsMzAuNGMxLjYsMC44LDMuNCwxLjMsNS40LDEuOGwwLjktMS43Yy0xLjQtMC4yLTIuOS0wLjYtNC40LTEuMWMxLjEtMC44LDItMS42LDIuNy0yLjVjMC4zLTAuNCwwLjQtMC45LDAuMi0xLjMKCWMtMC4zLTAuNi0wLjgtMC45LTEuNC0wLjloLTl2MS41aDcuN2MwLjIsMCwwLjQsMC4xLDAuNCwwLjFzMCwwLjEtMC4xLDAuM2MtMC42LDAuNi0xLjQsMS4zLTIuMywxLjhjLTEuMi0wLjctMi4xLTEuMy0yLjQtMS44aC0yLjIKCWMwLjksMSwxLjgsMS45LDIuOSwyLjdjLTEuNiwwLjYtMy4zLDEuMS00LjksMS4zbDAuOSwxLjZDOTEuMywzMS44LDkzLjIsMzEuMSw5NC44LDMwLjR6IE04OC4zLDI1LjJ2LTZjMC4xLTAuNiwwLjMtMC45LDAuOC0wLjkKCWgxMS44di0xLjZIOTVjLTAuMS0wLjEtMi4yLTAuMS0yLjIsMGgtNC43Yy0xLjEsMC4xLTEuNywwLjktMS44LDIuMlYyNWMwLjEsMi4xLTAuNCw0LjQtMS4xLDYuN2wxLjksMC42CglDODcuOSwyOS45LDg4LjMsMjcuNiw4OC4zLDI1LjJ6Ii8+CjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik00Ni4zLDI0LjJjMC42LDAsMS4yLDAuMSwxLjcsMC40djMuNGMwLDAuMy0wLjYsMS0xLjksMWMtMS41LDAtMS44LTAuNi0xLjgtMi4xdi0wLjYKCUM0NC4yLDI0LjgsNDQuNywyNC4yLDQ2LjMsMjQuMnogTTQ5LjIsMjAuN0g0OHYyLjVDNDcuNiwyMy4xLDQ3LDIzLDQ2LjMsMjNjLTIuNywwLTMuMywxLTMuMywzLjV2MC4zYzAsMi40LDAuOSwzLjMsMy4yLDMuMwoJYzAuOCwwLDEuMy0wLjEsMS44LTAuNWwwLjEsMC42aDEuMUw0OS4yLDIwLjdMNDkuMiwyMC43eiIvPgo8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNTYuNywyM2gtMS4ydjUuMmMtMC42LDAuNC0xLjcsMC42LTIuNCwwLjZjLTAuOCwwLTEtMC40LTEtMS4zdi00LjZoLTEuMXY0LjhjMCwxLjYsMC41LDIuMywyLjEsMi4zCgljMSwwLDIuMS0wLjMsMi42LTAuNmwwLjEsMC42aDEuMVYyM3oiLz4KPHBhdGggY2xhc3M9InN0MSIgZD0iTTkyLjcsMTUuN2MwLTAuNywwLjYtMS4zLDEuMi0xLjNjMC42LDAsMS4yLDAuNiwxLjIsMS4zUzk0LjUsMTcsOTMuOSwxN0M5My4zLDE2LjksOTIuNywxNi4zLDkyLjcsMTUuN3oiLz4KPC9zdmc+Cg==); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| width: 101px; | |
| height: 33px; | |
| margin-top: 9px; | |
| } | |
| #result_logo img { | |
| display: none; | |
| visibility: hidden; | |
| } | |
| #result_logo a img { | |
| display: none; | |
| visibility: hidden; | |
| } | |
| .c-container { | |
| line-height: 1.65; | |
| } | |
| #rs { | |
| background-color: rgba(0, 0, 0, 0) !important; | |
| } | |
| .c-border { | |
| -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| border-radius: 2px; | |
| border: none; | |
| padding: 20px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-border:hover { | |
| box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16), 0 3px 10px rgba(0, 0, 0, 0.23); | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-tabs-nav { | |
| border: none; | |
| border-radius: 2px 2px 0 0; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-tabs-nav-movetop { | |
| margin-left: -20px; | |
| margin-right: -20px; | |
| margin-top: -20px; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-tabs-nav-selected { | |
| border-top: none !important; | |
| border-left: none !important; | |
| border-right: none !important; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .c-tabs-nav-sep { | |
| display: none !important; | |
| } | |
| #page a { | |
| height: 34px; | |
| border-radius: 2px; | |
| border: none !important; | |
| background-color: rgba(0, 0, 0, 0); | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #page a:hover { | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #page a .pc:hover { | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #page strong { | |
| height: 34px; | |
| border-radius: 2px; | |
| position: relative; | |
| top: -2px; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #page strong .pc { | |
| line-height: 34px; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .fk { | |
| display: none !important; | |
| } | |
| .pc { | |
| border: none !important; | |
| height: 35px; | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .pc:hover { | |
| transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: background-color 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #s_tab a { | |
| width: 59px; | |
| line-height: 44px; | |
| } | |
| #s_tab b { | |
| width: 59px; | |
| line-height: 44px; | |
| } | |
| #s_tab { | |
| padding-bottom: 8px; | |
| padding-top: 89px; | |
| } | |
| .c-icon-tieba { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| } | |
| .toindex { | |
| display: none; | |
| } | |
| #u .pf { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| font-size: 0px; | |
| padding: 14px; | |
| opacity: 0.8; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| padding-top: 18px; | |
| padding-bottom: 10px; | |
| } | |
| #u .pf:hover { | |
| opacity: 1; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| } | |
| .pf .c-icon { | |
| display: none !important; | |
| } | |
| .c-icon-triangle-down { | |
| display: none; | |
| } | |
| .bdpfmenu { | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| border-radius: 2px !important; | |
| border: none; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| margin-left: -10px; | |
| margin-top: 30px; | |
| z-index: 8888 !important; | |
| } | |
| .bdpfmenu a:hover { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .bdnuarrow { | |
| display: none !important; | |
| } | |
| .setpref { | |
| border-radius: 2px 2px 0 0; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .setpref:hover { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #u .lb { | |
| padding: 23px; | |
| border-radius: 50px; | |
| font-size: 0px; | |
| position: absolute; | |
| right: 50px; | |
| top: 3800%; | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #u .lb:hover { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #u .lb:active { | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.19), 0 6px 10px rgba(0, 0, 0, 0.23); | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| .tang-foreground { | |
| border-radius: 2px; | |
| box-shadow: 0 19px 60px rgba(0, 0, 0, 0.3), 0 15px 20px rgba(0, 0, 0, 0.22); | |
| } | |
| #s_upfunc_menus { | |
| display: none; | |
| } | |
| #bg { | |
| background-color: #FFF !important; | |
| border: none; | |
| border-radius: 3px; | |
| background: #FFF; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| background-position: 100% !important; | |
| z-index: -1; | |
| width: 600px; | |
| height: 39px; | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| padding-top: 5px !important; | |
| } | |
| .s_ipt { | |
| border: 0 !important; | |
| height: 20px !important; | |
| border-radius: 2px; | |
| width: 586px !important; | |
| /*margin-top: -4px !important; | |
| padding-top: 14px;*/ | |
| } | |
| .nobg_s_fm_hover { | |
| border: 0 !important; | |
| } | |
| .nobg_s_fm_focus { | |
| border: 0 !important; | |
| border-top: 0px solid #fff !important; | |
| border-bottom: 0px solid #fff !important; | |
| border-left: 0px solid #fff !important; | |
| border-right: 1px solid #38f; | |
| } | |
| .s-title-image { | |
| border: none !important; | |
| border-top: 0px solid #fff !important; | |
| border-bottom: 0px solid #fff !important; | |
| border-left: 0px solid #fff !important; | |
| border-right: 0px solid #fff !important; | |
| } | |
| #s_lg_img { | |
| display: none; | |
| } | |
| #form { | |
| -webkit-animation-duration: 1s; | |
| animation-duration: 1s; | |
| -webkit-animation-fill-mode: both; | |
| animation-fill-mode: both; | |
| animation-name: fadeInUp; | |
| -webkit-animation-name: fadeInUp; | |
| animation-delay: 0.3s; | |
| -webkit-animation-delay: 0.3s; | |
| } | |
| .s-p-top { | |
| transform: scale(0.8); | |
| bottom: 9px !important; | |
| } | |
| .mnav { | |
| display: none; | |
| } | |
| #u_sp .mnav { | |
| display: none; | |
| } | |
| #u1 a.lb { | |
| padding: 23px; | |
| border-radius: 50%; | |
| font-size: 0px; | |
| position: absolute; | |
| right: 44px; | |
| top: 1040%; | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDYgNDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ2IDQ2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMywyM2MyLjksMCw1LjItMi4zLDUuMi01LjJzLTIuMy01LjItNS4yLTUuMnMtNS4yLDIuMy01LjIsNS4yUzIwLjEsMjMsMjMsMjN6IE0yMywyNS42CgljLTMuNSwwLTEwLjQsMS43LTEwLjQsNS4ydjIuNmgyMC43di0yLjZDMzMuNCwyNy4zLDI2LjUsMjUuNiwyMywyNS42eiIvPgo8L3N2Zz4K); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| line-height: 0px; | |
| z-index: 100; | |
| } | |
| #u1 a.lb:hover { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #u1 a.lb:active { | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.19), 0 6px 10px rgba(0, 0, 0, 0.23); | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| } | |
| #u1 a.pf { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| font-size: 0px; | |
| padding: 14px; | |
| opacity: 0.8; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| z-index: 0; | |
| } | |
| #u1 a.bri { | |
| background-color: rgba(0, 0, 0, 0); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| font-size: 0px; | |
| padding: 2px; | |
| opacity: 0.8; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| border: none; | |
| margin-top: 12px; | |
| } | |
| #wrapper .bdbriimgtitle { | |
| padding-top: 23px; | |
| } | |
| #wrapper .bdbri.bdbriimg .bdmainlink a { | |
| border: none; | |
| } | |
| #wrapper .bdbri { | |
| z-index: 2; | |
| } | |
| #u_sp .s_bri { | |
| padding: 5px; | |
| border-radius: 50%; | |
| font-size: 0px; | |
| width: 32px; | |
| height: 32px; | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTAsMTNoM3YtM2gtM1YxM3ogTTE0LjUsMjJoM3YtM2gtM0MxNC41LDE5LDE0LjUsMjIsMTQuNSwyMnogTTEwLDIyaDN2LTNoLTNWMjJ6IE0xMCwxNy41aDN2LTNoLTNWMTcuNXoNCgkgTTE0LjUsMTcuNWgzdi0zaC0zQzE0LjUsMTQuNSwxNC41LDE3LjUsMTQuNSwxNy41eiBNMTksMTB2M2gzdi0zSDE5eiBNMTQuNSwxM2gzdi0zaC0zQzE0LjUsMTAsMTQuNSwxMywxNC41LDEzeiBNMTksMTcuNWgzdi0zaC0zDQoJVjE3LjV6IE0xOSwyMmgzdi0zaC0zVjIyeiIvPg0KPC9zdmc+DQo=); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| -moz-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| ; | |
| /* Opera */ | |
| line-height: 0px; | |
| z-index: 100; | |
| margin-right: 22px; | |
| margin-top: 1px; | |
| } | |
| #u_sp .s_bdbriimgtitle { | |
| padding-top: 73px; | |
| } | |
| #s_usersetting_top { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| font-size: 0px; | |
| padding: 14px; | |
| opacity: 0.8; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| margin-top: 12px; | |
| margin-right: 4px; | |
| z-index: -100; | |
| } | |
| #s_top_wrap { | |
| z-index: -10; | |
| } | |
| #u .toindex { | |
| display: none !important; | |
| } | |
| #s_username_top { | |
| text-decoration: none; | |
| margin-top: 26px; | |
| margin-left: 5px; | |
| border: none; | |
| padding-left: 10px; | |
| padding-right: 10px; | |
| border-radius: 16px; | |
| margin-right: -3px; | |
| } | |
| .user-name { | |
| text-decoration: none !important; | |
| } | |
| .menu-arrow { | |
| display: none !important; | |
| } | |
| .s_user_name_menu { | |
| text-align: center !important; | |
| } | |
| .s-user-set-menu.menu-top { | |
| width: 100px; | |
| } | |
| .s-user-set-menu div { | |
| border: none! important; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px; | |
| } | |
| .s-user-set-menu { | |
| padding-top: 0px; | |
| margin-top: 36px; | |
| border-radius: 2px !important; | |
| } | |
| .s-user-set-menu a { | |
| padding-left: 25px; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| } | |
| .s-user-set-menu a:hover { | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| } | |
| #user { | |
| text-decoration: none !important; | |
| margin-top: 30px; | |
| margin-left: 5px; | |
| border: none; | |
| padding-left: 10px; | |
| padding-right: 10px; | |
| border-radius: 16px; | |
| margin-right: -3px; | |
| height: 23px; | |
| padding-top: 8px; | |
| -webkit-animation-duration: 1s; | |
| animation-duration: 1s; | |
| -webkit-animation-fill-mode: both; | |
| animation-fill-mode: both; | |
| animation-name: bounceInRight; | |
| -webkit-animation-name: bounceInRight; | |
| } | |
| .usermenu { | |
| border: none !important; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| -webkit-box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| width: 83px; | |
| border-radius: 2px !important; | |
| top: -7px !important; | |
| } | |
| .username a { | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| border-radius: 2px; | |
| } | |
| .username a:hover { | |
| background: #4879BD !important; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| } | |
| .username a:active { | |
| background: #4879BD !important; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| } | |
| #user .c-icon { | |
| display: none; | |
| } | |
| #imsg { | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| font-size: 0px; | |
| padding: 14px; | |
| opacity: 0.8; | |
| -moz-transition: all 0.3s ease; | |
| /* Firefox 4 */ | |
| -webkit-transition: all 0.3s ease; | |
| /* Safari 和 Chrome */ | |
| -o-transition: all 0.3s ease; | |
| /* Opera */ | |
| z-index: 0; | |
| padding-top: 25px; | |
| padding-bottom: 21px; | |
| } | |
| #imsg:hover { | |
| opacity: 1; | |
| } | |
| #bds-message-wrapper { | |
| top: 64px; | |
| } | |
| .s-mod-msg { | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| -webkit-box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| border-radius: 3px; | |
| } | |
| .msg-btn { | |
| border-radius: 2px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .msg-btn:hover { | |
| border-radius: 2px; | |
| box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12); | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .msg-btn:active { | |
| border-radius: 2px; | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| -webkit-box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .no-use:hover { | |
| box-shadow: none !important; | |
| } | |
| .top-logo img { | |
| display: none; | |
| } | |
| .top-logo { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTAxIDMzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMDEgMzM7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojNDg3OUJEO30KCS5zdDF7ZmlsbDojREQ0NDM2O30KCS5zdDJ7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTUwLjQsMTUuM2MtMy44LDAuMy00LDIuNi01LjcsNC43Yy0xLjgsMi4yLTUuNSw0LjEtNiw2LjdjLTAuNiwzLjMsMS4zLDUuMSwzLDUuN2MxLjksMC42LDYuMi0wLjUsOC40LTAuNWgwLjIKCWgwLjJjMi4yLDAsNi40LDEuMSw4LjQsMC41YzEuOC0wLjYsMy41LTMuMiwzLTUuN2MtMC40LTIuMS00LjQtNC41LTYuMi02LjdDNTQuMiwxOCw1NC4zLDE1LjYsNTAuNCwxNS4zeiBNMzcsMTQuOAoJYzAsMi40LDEuNiw0LjMsMy40LDQuM2MxLjksMCwzLjQtMS45LDMuNC00LjNjMC0yLjQtMS42LTQuMy0zLjQtNC4zUzM3LDEyLjUsMzcsMTQuOHogTTQzLjksOC42YzAsMi41LDEuNSw0LjUsMy4zLDQuNQoJYzEuOCwwLDMuMy0yLjEsMy4zLTQuNVM0OSw0LjEsNDcuMSw0LjFDNDUuMyw0LDQzLjksNiw0My45LDguNnogTTUyLjIsOC41YzAsMi4zLDEuNCw0LjMsMy4yLDQuM3MzLjItMS45LDMuMi00LjNzLTEuNC00LjMtMy4yLTQuMwoJUzUyLjIsNi4yLDUyLjIsOC41eiBNNTcuNSwxNS45YzAsMi4zLDEuNSw0LjMsMy4zLDQuM2MxLjgsMCwzLjMtMS45LDMuMy00LjNzLTEuNS00LjMtMy4zLTQuM0M1OC45LDExLjYsNTcuNSwxMy42LDU3LjUsMTUuOXoiLz4KPHBhdGggY2xhc3M9InN0MSIgZD0iTTQsMzAuNHYtNS4xaDYuNGMxLjYsMCwxLjYsMC4zLDEuNiwydjEuNGMwLDEuNi0yLjMsMS44LTMuOSwxLjhMNCwzMC40TDQsMzAuNHogTTQsMjN2LTQuOGg0LjEKCWMxLjYsMCwzLjksMCwzLjksMi4xdjAuMWMwLDEuNC0wLjUsMi42LTEuOCwyLjZDMTAuMywyMyw0LDIzLDQsMjN6IE0xLjcsMTZ2MTYuM2g2LjRjMywwLDYuMiwwLDYuMi0zLjZ2LTEuMWMwLTEuNi0wLjEtMi43LTEuMS0zLjUKCWMxLTAuOCwxLjEtMi4zLDEuMS0zLjZsMCwwYzAtNC41LTMuMi00LjUtNi4yLTQuNUwxLjcsMTZMMS43LDE2eiIvPgo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMjUsMjguOWMtMS4xLDEuMS0zLjMsMS4zLTMuNSwxLjNjLTEuMywwLTIuNy0wLjUtMi43LTIuMWMwLTEuNCwwLjUtMi4zLDIuMS0yLjNjMS4zLDAsMi44LDAuMSw0LjEsMC42VjI4Ljl6CgkgTTIxLjQsMzIuM2MwLjQsMCwyLjMtMC4xLDMuNy0wLjlsMC4yLDAuN2gyLjF2LTguOWMwLTMuNi0yLjMtNS01LjctNWMtMS44LDAtNC4zLDAuNy00LjcsMC45bDAuNCwyLjNjMS42LTAuNiwzLTAuNiw0LjItMC42CgljMS44LDAsMy4zLDAuNiwzLjMsMi42VjI0Yy0xLTAuNC0yLjQtMC42LTQuMS0wLjZjLTMsMC00LjUsMS42LTQuNSw0LjdDMTYuNCwzMS44LDE5LjYsMzIuMywyMS40LDMyLjN6Ii8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0zMC4yLDE2LjFjMCwwLjYsMC42LDEuMiwxLjMsMS4yYzAuOCwwLDEuMy0wLjYsMS4zLTEuMmMwLTAuNy0wLjYtMS4zLTEuMy0xLjNDMzAuOCwxNC44LDMwLjIsMTUuMywzMC4yLDE2LjF6CgkgTTMwLjMsMzIuMWgyLjRWMTguNWgtMi40VjMyLjF6Ii8+CjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik03MS4yLDIyLjFoOC40YzAuNCwwLjEsMC42LDAuMywwLjYsMC43djIuNmgtOS43di0yLjZDNzAuNiwyMi40LDcwLjgsMjIuMiw3MS4yLDIyLjF6IE03MS4yLDMwLjUKCWMtMC40LDAtMC42LTAuMy0wLjctMC44di0yLjZoOS43djIuNmMwLDAuNC0wLjIsMC43LTAuNiwwLjdINzEuMnogTTczLjYsMThjLTAuMSwwLjQtMC4xLDAuOS0wLjQsMS43Yy0wLjEsMC4zLTAuMSwwLjUtMC4xLDAuNwoJaC0yLjZjLTEuMywwLjEtMS45LDAuOC0yLDJ2Ny45YzAuMSwxLjEsMC44LDEuOCwyLDEuOWgxMGMxLjItMC4xLDEuOC0wLjcsMS45LTEuOHYtNy45Yy0wLjEtMS4zLTAuNy0xLjktMS45LTIuMWgtNQoJYzAuMS0wLjMsMC4xLTAuOCwwLjMtMS40YzAuMS0wLjQsMC4xLTAuNywwLjEtMC45aDcuMnYtMS44SDY3LjRWMThMNzMuNiwxOEw3My42LDE4eiIvPgo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNOTMuNywyMi43Yy0wLjQtMC4xLTAuNS0wLjItMC41LTAuNXYtMC42aDMuMnYwLjZjLTAuMSwwLjMtMC4yLDAuNC0wLjUsMC41SDkzLjd6IE05Ni42LDI0LjEKCWMxLjEtMC4xLDEuNi0wLjUsMS42LTEuNHYtMWgyLjN2LTEuNWgtMi4zdi0xLjFoLTEuOHYxLjFoLTMuMnYtMS4xaC0xLjh2MS4xaC0yLjN2MS41aDIuM3YxYzAuMSwwLjksMC42LDEuNCwxLjYsMS40SDk2LjZ6CgkgTTk0LjgsMzAuNGMxLjYsMC44LDMuNCwxLjMsNS40LDEuOGwwLjktMS43Yy0xLjQtMC4yLTIuOS0wLjYtNC40LTEuMWMxLjEtMC44LDItMS42LDIuNy0yLjVjMC4zLTAuNCwwLjQtMC45LDAuMi0xLjMKCWMtMC4zLTAuNi0wLjgtMC45LTEuNC0wLjloLTl2MS41aDcuN2MwLjIsMCwwLjQsMC4xLDAuNCwwLjFzMCwwLjEtMC4xLDAuM2MtMC42LDAuNi0xLjQsMS4zLTIuMywxLjhjLTEuMi0wLjctMi4xLTEuMy0yLjQtMS44aC0yLjIKCWMwLjksMSwxLjgsMS45LDIuOSwyLjdjLTEuNiwwLjYtMy4zLDEuMS00LjksMS4zbDAuOSwxLjZDOTEuMywzMS44LDkzLjIsMzEuMSw5NC44LDMwLjR6IE04OC4zLDI1LjJ2LTZjMC4xLTAuNiwwLjMtMC45LDAuOC0wLjkKCWgxMS44di0xLjZIOTVjLTAuMS0wLjEtMi4yLTAuMS0yLjIsMGgtNC43Yy0xLjEsMC4xLTEuNywwLjktMS44LDIuMlYyNWMwLjEsMi4xLTAuNCw0LjQtMS4xLDYuN2wxLjksMC42CglDODcuOSwyOS45LDg4LjMsMjcuNiw4OC4zLDI1LjJ6Ii8+CjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik00Ni4zLDI0LjJjMC42LDAsMS4yLDAuMSwxLjcsMC40djMuNGMwLDAuMy0wLjYsMS0xLjksMWMtMS41LDAtMS44LTAuNi0xLjgtMi4xdi0wLjYKCUM0NC4yLDI0LjgsNDQuNywyNC4yLDQ2LjMsMjQuMnogTTQ5LjIsMjAuN0g0OHYyLjVDNDcuNiwyMy4xLDQ3LDIzLDQ2LjMsMjNjLTIuNywwLTMuMywxLTMuMywzLjV2MC4zYzAsMi40LDAuOSwzLjMsMy4yLDMuMwoJYzAuOCwwLDEuMy0wLjEsMS44LTAuNWwwLjEsMC42aDEuMUw0OS4yLDIwLjdMNDkuMiwyMC43eiIvPgo8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNTYuNywyM2gtMS4ydjUuMmMtMC42LDAuNC0xLjcsMC42LTIuNCwwLjZjLTAuOCwwLTEtMC40LTEtMS4zdi00LjZoLTEuMXY0LjhjMCwxLjYsMC41LDIuMywyLjEsMi4zCgljMSwwLDIuMS0wLjMsMi42LTAuNmwwLjEsMC42aDEuMVYyM3oiLz4KPHBhdGggY2xhc3M9InN0MSIgZD0iTTkyLjcsMTUuN2MwLTAuNywwLjYtMS4zLDEuMi0xLjNjMC42LDAsMS4yLDAuNiwxLjIsMS4zUzk0LjUsMTcsOTMuOSwxN0M5My4zLDE2LjksOTIuNywxNi4zLDkyLjcsMTUuN3oiLz4KPC9zdmc+Cg==); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| height: 100px; | |
| width: 200px; | |
| } | |
| #u_sp .s_bri { | |
| border: 0 !important; | |
| } | |
| .pass-text-input { | |
| background-image: none !important; | |
| } | |
| .pass-text-input-focus { | |
| background-image: none !important; | |
| } | |
| #passport-login-pop { | |
| font-family: -apple-system, "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Source Han Sans SC", "Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif; | |
| border-radius: 2px; | |
| } | |
| #TANGRAM__PSP_2__titleText { | |
| font-family: Helvetica, "Microsoft Yahei UI Light"; | |
| } | |
| .pass-fgtpwd { | |
| font-family: Helvetica, "Microsoft Yahei UI" !important; | |
| } | |
| .pass-sms-btn { | |
| font-family: Helvetica, "Microsoft Yahei UI" !important; | |
| } | |
| .pass-reglink { | |
| font-family: Helvetica, "Microsoft Yahei UI" !important; | |
| } | |
| .tang-foreground { | |
| border-radius: 2px !important; | |
| border: 0 !important; | |
| } | |
| .tang-title { | |
| border-radius: 2px 2px 0 0 !important; | |
| } | |
| .tang-pass-pop-login div.tang-title { | |
| border-radius: 2px 2px 0 0 !important; | |
| } | |
| .pass-checkbox-input { | |
| width: 17px; | |
| height: 17px; | |
| border: #e0e0e0 3px solid !important; | |
| background-color: #fff !important; | |
| box-shadow: none; | |
| } | |
| .tang-pass-pop-login-color-blue .pass-button:focus { | |
| box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| -webkit-box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px !important; | |
| } | |
| #content_right, | |
| .c-recommend, | |
| body > div[class="result-op xpath-log"] { | |
| display: none !important; | |
| } | |
| .rrecom-btn-parent { | |
| display: none !important; | |
| } | |
| .s-p-top { | |
| bottom: -8px !important; | |
| } | |
| input[type="text"]:focus { | |
| border: none !important; | |
| border-top: 0px solid #fff !important; | |
| border-bottom: 0px solid #fff !important; | |
| border-left: 0px solid #fff !important; | |
| border-right: 0px solid #fff !important; | |
| } | |
| a[soft_id] { | |
| display: none; | |
| } | |
| .op-soft-btnbox .c-gap-left-small { | |
| margin-left: 0px !important; | |
| color: #fff; | |
| background-color: #4879BD; | |
| padding: 7px 15px; | |
| border-radius: 2px; | |
| font-size: 14px; | |
| transition: all 0.3s ease; | |
| } | |
| .op-soft-btnbox .c-gap-left-small:hover { | |
| background-color: #7098D0; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); | |
| } | |
| .soutu-input-image{ | |
| top: 6px; | |
| left: 5px; | |
| } | |
| .op-soft-btnbox a:before { | |
| content: "没有流氓的"; | |
| } | |
| #kw{ | |
| background-color:transparent; | |
| } | |
| .s-skin-hasbg #kw { | |
| box-shadow: 0 0px 0px rgba(0,0,0,0.2); | |
| } | |
| .s-skin-hasbg .btn_wr { | |
| width: 35px; | |
| } | |
| #s_usersetting_top { | |
| margin-top:-7px; | |
| } | |
| #s_username_top { | |
| margin-top: 7px; | |
| } | |
| #u_sp { | |
| padding-top:16px; | |
| } | |
| .ipt_rec{ | |
| background:none; | |
| background-image:none; | |
| } | |
| .ipt_rec:hover{ | |
| background:none; | |
| background-image:none; | |
| } | |
| .ipt_rec:after{ | |
| display:none; | |
| margin-top:50px; | |
| } | |
| .bdpfmenu, .usermenu { | |
| border: none; | |
| box-shadow: none; | |
| -webkit-box-shadow: none; | |
| -moz-box-shadow: none; | |
| -o-box-shadow: none; | |
| } | |
| .qrcodeCon { | |
| visibility: hidden; | |
| } | |
| /*========= Light Mode ========= */ | |
| a { | |
| color: #4879BD; | |
| } | |
| h3 a:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .c-showurl { | |
| color: #4CAF50; | |
| } | |
| .op-se-listen-recommend:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .c-gap-bottom-small a:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .c-row a:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| #rs a:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .hint_toprq_tips_items a:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| .c:hover { | |
| border-bottom: #4879BD 1.2px solid; | |
| } | |
| em { | |
| color: #EA4335; | |
| } | |
| /*页面背景*/ | |
| body { | |
| background-color: #F7F7F7; | |
| } | |
| /*输入框*/ | |
| .s_ipt_wr { | |
| background-color: #FFF !important; | |
| background: #FFF; | |
| } | |
| .s_ipt_wr:hover { | |
| background-color: #FFF !important; | |
| background: #FFF; | |
| } | |
| .ipthover { | |
| background-color: #FFF !important; | |
| } | |
| .iptfocus { | |
| background-color: #fff !important; | |
| } | |
| /*按钮*/ | |
| .s_btn { | |
| background-color: rgba(0, 0, 0, 0); | |
| } | |
| /*头部*/ | |
| #head { | |
| background-color: #f1f1f1; | |
| } | |
| .c-border{ | |
| background-color: #fff; | |
| } | |
| /*分类标签*/ | |
| .c-tabs-nav { | |
| background-color: #EEEEEE; | |
| } | |
| .c-tabs-nav-selected { | |
| border-bottom: #F44336 2px solid !important; | |
| background-color: #2196F3 !important; | |
| color: #fff !important; | |
| } | |
| /*页码*/ | |
| #page a{ | |
| background: #fff; | |
| color: #424242; | |
| } | |
| #page a:hover{ | |
| background-color: #e0e0e0 !important; | |
| } | |
| #page a .pc:hover { | |
| background-color: #e0e0e0; | |
| } | |
| #page strong { | |
| background-color: #4285F4 !important; | |
| color: #fff; | |
| } | |
| #page strong .pc { | |
| background-color: #4285F4 !important; | |
| } | |
| .pc:hover { | |
| background-color: #e0e0e0; | |
| } | |
| #s_tab b { | |
| border-bottom: 3px #4879BD solid; | |
| color: #4879BD; | |
| } | |
| #s_tab { | |
| border-bottom: #e0e0e0 1px solid; | |
| } | |
| .bdpfmenu a:hover { | |
| background-color: #4879BD !important; | |
| } | |
| .setpref:hover { | |
| background-color: #4879BD !important; | |
| } | |
| #u .lb { | |
| background-color: #4879BD; | |
| } | |
| #u .lb:hover { | |
| background-color: #618CC7; | |
| } | |
| #u .lb:active { | |
| background-color: #7DA0D0; | |
| } | |
| #bg { | |
| background-color: #FFF !important; | |
| background: #FFF; | |
| } | |
| #u1 a.lb { | |
| background-color: #4879BD; | |
| } | |
| #u1 a.lb:hover { | |
| background-color: #618CC7; | |
| } | |
| #u1 a.lb:active { | |
| background-color: #7DA0D0; | |
| } | |
| #u_sp .s_bri { | |
| background-color: #F44336; | |
| } | |
| #s_username_top { | |
| background-color: #e0e0e0; | |
| } | |
| .s-user-set-menu a:hover { | |
| background-color: #4879BD !important; | |
| } | |
| #user { | |
| background-color: #e0e0e0; | |
| } | |
| .msg-setting-btn { | |
| background-color: #4879BD !important; | |
| } | |
| .no-use { | |
| background-color: #E5E5E5 !important; | |
| } | |
| .pass-text-input { | |
| border-bottom: #e0e0e0 2px solid !important; | |
| border-left: #fff 0px solid !important; | |
| border-right: #fff 0px solid !important; | |
| border-top: #fff 0px solid !important; | |
| } | |
| .pass-text-input-focus { | |
| border-bottom: #4879BD 2px solid !important; | |
| border-left: #fff 0px solid !important; | |
| border-right: #fff 0px solid !important; | |
| border-top: #fff 0px solid !important; | |
| } | |
| .tang-pass-pop-login-color-blue .pass-button { | |
| background-color: #4879BD; | |
| } | |
| .tang-pass-pop-login-color-blue .pass-button:hover { | |
| background-color: #618CC7; | |
| } | |
| /* icons*/ | |
| #lg { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMjU5IDExNiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjU5IDExNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzQyODVGNDt9DQoJLnN0MXtmaWxsOiNFQTQzMzU7fQ0KCS5zdDJ7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTI4LjIsNzdjLTUuNCwwLjQtNS42LDMuNy04LjEsNi43Yy0yLjUsMy4xLTcuNyw1LjgtOC40LDkuNWMtMC44LDQuNywxLjgsNy4yLDQuMyw4YzIuNywwLjksOC44LTAuNywxMS45LTAuNw0KCWgwLjNoMC4zYzMuMSwwLDkuMSwxLjYsMTEuOSwwLjdjMi41LTAuOSw0LjktNC41LDQuMy04Yy0wLjUtMy02LjItNi40LTguNy05LjVDMTMzLjYsODAuNywxMzMuNyw3Ny40LDEyOC4yLDc3eiBNMTA5LjMsNzYuMw0KCWMwLDMuNCwyLjIsNi4xLDQuOCw2LjFjMi43LDAsNC44LTIuNyw0LjgtNi4xcy0yLjItNi4xLTQuOC02LjFTMTA5LjMsNzMsMTA5LjMsNzYuM3ogTTExOSw2Ny41YzAsMy41LDIuMSw2LjQsNC42LDYuNA0KCWMyLjYsMCw0LjctMi45LDQuNy02LjRzLTIuMS02LjQtNC43LTYuNEMxMjEsNjEsMTE5LDYzLjksMTE5LDY3LjV6IE0xMzAuNyw2Ny40YzAsMy4zLDIsNiw0LjUsNnM0LjUtMi43LDQuNS02YzAtMy4zLTItNi00LjUtNg0KCVMxMzAuNyw2NC4xLDEzMC43LDY3LjR6IE0xMzguMiw3Ny44YzAsMy4zLDIuMSw2LDQuNiw2YzIuNiwwLDQuNy0yLjcsNC43LTZjMC0zLjMtMi4xLTYtNC43LTZDMTQwLjIsNzEuOCwxMzguMiw3NC41LDEzOC4yLDc3Ljh6Ig0KCS8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNNjIuOCw5OC4yVjkxaDljMi4yLDAsMi4zLDAuNCwyLjMsMi44djJjMCwyLjMtMy4yLDIuNS01LjUsMi41aC01LjhWOTguMnogTTYyLjgsODcuOFY4MWg1LjgNCgljMi4zLDAsNS41LDAsNS41LDN2MC4xYzAsMi0wLjcsMy43LTIuNSwzLjdDNzEuNiw4Ny44LDYyLjgsODcuOCw2Mi44LDg3Ljh6IE01OS41LDc3Ljl2MjNoOS4xYzQuMywwLDguNywwLDguNy01LjF2LTEuNQ0KCWMwLTIuMy0wLjItMy44LTEuNS00LjljMS40LTEuMSwxLjUtMy4yLDEuNS01LjFsMCwwYzAtNi4zLTQuNS02LjMtOC43LTYuM0w1OS41LDc3LjlMNTkuNSw3Ny45eiIvPg0KPHBhdGggY2xhc3M9InN0MSIgZD0iTTkyLjQsOTYuMWMtMS41LDEuNi00LjYsMS44LTQuOSwxLjhjLTEuOSwwLTMuOC0wLjctMy44LTIuOWMwLTIsMC43LTMuMywyLjktMy4zYzEuOCwwLDQsMC4yLDUuOCwwLjhWOTYuMXoNCgkgTTg3LjMsMTAwLjljMC41LDAsMy4zLTAuMiw1LjItMS4zbDAuMywxaDIuOVY4OGMwLTUuMS0zLjItNy4xLTgtNy4xYy0yLjUsMC02LjEsMS02LjYsMS4ybDAuNiwzLjJjMi4yLTAuOCw0LjItMC45LDUuOS0wLjkNCgljMi42LDAsNC42LDAuOSw0LjYsMy43djEuMWMtMS40LTAuNS0zLjQtMC45LTUuOC0wLjljLTQuMiwwLTYuMywyLjMtNi4zLDYuNkM4MC4zLDEwMC4zLDg0LjcsMTAwLjksODcuMywxMDAuOXoiLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik05OS43LDc4LjFjMCwwLjksMC45LDEuNywxLjgsMS43YzEuMSwwLDEuOS0wLjgsMS45LTEuN2MwLTEtMC44LTEuOC0xLjktMS44QzEwMC42LDc2LjMsOTkuNyw3Nyw5OS43LDc4LjF6DQoJIE05OS45LDEwMC42aDMuNFY4MS41aC0zLjRWMTAwLjZ6Ii8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTU3LjYsODYuNmgxMS44YzAuNSwwLjEsMC44LDAuNCwwLjksMXYzLjZoLTEzLjd2LTMuNkMxNTYuNyw4NywxNTcsODYuNywxNTcuNiw4Ni42eiBNMTU3LjYsOTguNA0KCWMtMC42LDAtMC45LTAuNC0xLTEuMXYtMy42aDEzLjd2My43YzAsMC42LTAuMywxLTAuOSwxSDE1Ny42eiBNMTYwLjksODAuN2MtMC4xLDAuNS0wLjIsMS4zLTAuNSwyLjRjLTAuMSwwLjQtMC4xLDAuNy0wLjIsMWgtMy43DQoJYy0xLjgsMC4xLTIuNywxLjEtMi44LDIuOFY5OGMwLjEsMS42LDEuMSwyLjUsMi44LDIuN2gxNC4xYzEuNy0wLjEsMi42LTEsMi43LTIuNVY4N2MtMC4xLTEuOC0xLTIuNy0yLjctMi45aC03DQoJYzAuMS0wLjQsMC4yLTEuMSwwLjQtMmMwLjEtMC42LDAuMS0xLDAuMi0xLjNoMTAuMnYtMi42aC0yMi4ydjIuNkwxNjAuOSw4MC43TDE2MC45LDgwLjd6Ii8+DQo8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTg5LjQsODcuNGMtMC41LTAuMS0wLjctMC4zLTAuNy0wLjd2LTAuOWg0LjV2MC45Yy0wLjEsMC40LTAuMywwLjYtMC43LDAuN0gxODkuNHogTTE5My40LDg5LjQNCgljMS41LTAuMSwyLjItMC43LDIuMy0yVjg2aDMuMnYtMi4xaC0zLjJ2LTEuNmgtMi41djEuNmgtNC41di0xLjZoLTIuNnYxLjZoLTMuMlY4NmgzLjJ2MS40YzAuMSwxLjMsMC44LDIsMi4yLDJIMTkzLjR6IE0xOTAuOSw5OC4zDQoJYzIuMywxLjEsNC44LDEuOSw3LjYsMi42bDEuMi0yLjRjLTItMC4zLTQuMS0wLjgtNi4yLTEuNmMxLjUtMS4xLDIuOC0yLjIsMy44LTMuNWMwLjQtMC42LDAuNS0xLjIsMC4zLTEuOWMtMC40LTAuOC0xLjEtMS4yLTItMS4yDQoJaC0xMi43djIuMWgxMC44YzAuMywwLDAuNSwwLjEsMC42LDAuMnMwLDAuMi0wLjIsMC40Yy0wLjksMC45LTIsMS44LTMuMywyLjZjLTEuNy0xLTIuOS0xLjktMy40LTIuNmgtMy4xYzEuMiwxLjQsMi42LDIuNyw0LjEsMy44DQoJYy0yLjMsMC45LTQuNiwxLjUtNi45LDEuOGwxLjMsMi4yQzE4NS45LDEwMC4yLDE4OC42LDk5LjMsMTkwLjksOTguM3ogTTE4MS43LDkwLjl2LTguNWMwLjEtMC44LDAuNC0xLjIsMS4xLTEuM2gxNi43di0yLjNoLTguMw0KCWMtMC4xLTAuMi0zLjEtMC4xLTMuMSwwaC02LjdjLTEuNSwwLjItMi40LDEuMy0yLjUsMy4xdjguN2MwLjEsMy0wLjUsNi4yLTEuNiw5LjRsMi43LDAuOEMxODEuMSw5Ny42LDE4MS43LDk0LjMsMTgxLjcsOTAuOXoiLz4NCjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xMjIuNSw4OS41YzAuOCwwLDEuNywwLjIsMi40LDAuNXY0LjhjMCwwLjQtMC45LDEuNC0yLjcsMS40Yy0yLjEsMC0yLjYtMC45LTIuNi0yLjl2LTAuOA0KCUMxMTkuNSw5MC40LDEyMC4yLDg5LjUsMTIyLjUsODkuNXogTTEyNi42LDg0LjZoLTEuN3YzLjVjLTAuNi0wLjItMS41LTAuMy0yLjQtMC4zYy0zLjgsMC00LjYsMS40LTQuNiw0Ljl2MC40DQoJYzAsMy40LDEuMyw0LjYsNC41LDQuNmMxLjEsMCwxLjktMC4yLDIuNi0wLjdsMC4yLDAuOGgxLjVMMTI2LjYsODQuNkwxMjYuNiw4NC42eiIvPg0KPHBhdGggY2xhc3M9InN0MiIgZD0iTTEzNy4xLDg3LjhoLTEuN3Y3LjRjLTAuOSwwLjUtMi40LDAuOC0zLjQsMC44Yy0xLjEsMC0xLjQtMC42LTEuNC0xLjl2LTYuNUgxMjl2Ni44YzAsMi4zLDAuNywzLjIsMi45LDMuMg0KCWMxLjQsMCwyLjktMC40LDMuNi0wLjhsMC4xLDAuOGgxLjVWODcuOHoiLz4NCjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xODcuOSw3Ny41YzAtMSwwLjgtMS44LDEuNy0xLjhzMS43LDAuOCwxLjcsMS44cy0wLjgsMS44LTEuNywxLjhDMTg4LjcsNzkuMiwxODcuOSw3OC40LDE4Ny45LDc3LjV6Ii8+DQo8L3N2Zz4NCg==); | |
| } | |
| .s_btn { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzQ3NzlCRDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNC44LDIxLjVjLTAuNCwwLTAuNywwLTEuMS0wLjFjLTIuMS0wLjMtMy45LTEuNC01LjItM2MtMS4zLTEuNy0xLjgtMy43LTEuNi01LjhjMC4zLTIuMSwxLjQtMy45LDMtNS4yCgljMS43LTEuMywzLjgtMS44LDUuOC0xLjZjMi4xLDAuMywzLjksMS40LDUuMiwzYzEuMywxLjcsMS44LDMuOCwxLjYsNS44Yy0wLjMsMi4xLTEuNCwzLjktMyw1LjJDMTguMiwyMSwxNi41LDIxLjUsMTQuOCwyMS41egoJIE0xNC44LDguMWMtMS4yLDAtMi40LDAuNC0zLjMsMS4xYy0yLjQsMS44LTIuOSw1LjMtMSw3LjdjMS44LDIuNCw1LjMsMi45LDcuNywxYzEuMi0wLjksMS45LTIuMiwyLjEtMy42YzAuMi0xLjUtMC4yLTIuOS0xLjEtNC4xCglTMTcsOC40LDE1LjUsOC4yQzE1LjMsOC4yLDE1LDguMSwxNC44LDguMXoiLz4KPGc+Cgk8Zz4KCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjUuMywyNy41TDI1LjMsMjcuNWMtMC42LDAuNC0xLjQsMC4zLTEuOC0wLjJsLTUuMS02LjdjLTAuNC0wLjYtMC4zLTEuNCwwLjItMS44bDAsMAoJCQljMC42LTAuNCwxLjQtMC4zLDEuOCwwLjJsNS4xLDYuN0MyNiwyNi4zLDI1LjksMjcuMSwyNS4zLDI3LjV6Ii8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) !important; | |
| } | |
| .s_btn_wr { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzQ3NzlCRDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNC44LDIxLjVjLTAuNCwwLTAuNywwLTEuMS0wLjFjLTIuMS0wLjMtMy45LTEuNC01LjItM2MtMS4zLTEuNy0xLjgtMy43LTEuNi01LjhjMC4zLTIuMSwxLjQtMy45LDMtNS4yCgljMS43LTEuMywzLjgtMS44LDUuOC0xLjZjMi4xLDAuMywzLjksMS40LDUuMiwzYzEuMywxLjcsMS44LDMuOCwxLjYsNS44Yy0wLjMsMi4xLTEuNCwzLjktMyw1LjJDMTguMiwyMSwxNi41LDIxLjUsMTQuOCwyMS41egoJIE0xNC44LDguMWMtMS4yLDAtMi40LDAuNC0zLjMsMS4xYy0yLjQsMS44LTIuOSw1LjMtMSw3LjdjMS44LDIuNCw1LjMsMi45LDcuNywxYzEuMi0wLjksMS45LTIuMiwyLjEtMy42YzAuMi0xLjUtMC4yLTIuOS0xLjEtNC4xCglTMTcsOC40LDE1LjUsOC4yQzE1LjMsOC4yLDE1LDguMSwxNC44LDguMXoiLz4KPGc+Cgk8Zz4KCQk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjUuMywyNy41TDI1LjMsMjcuNWMtMC42LDAuNC0xLjQsMC4zLTEuOC0wLjJsLTUuMS02LjdjLTAuNC0wLjYtMC4zLTEuNCwwLjItMS44bDAsMAoJCQljMC42LTAuNCwxLjQtMC4zLDEuOCwwLjJsNS4xLDYuN0MyNiwyNi4zLDI1LjksMjcuMSwyNS4zLDI3LjV6Ii8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==) !important; | |
| } | |
| .c-icon-tieba { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0IDI0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzM3QUJFMzt9Cgkuc3Qxe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMC45LDIzLjNIMy4xYy0xLjEsMC0yLTAuOS0yLTJWMi44YzAtMS4xLDAuOS0yLDItMmgxNy44YzEuMSwwLDIsMC45LDIsMnYxOC41QzIyLjksMjIuNCwyMiwyMy4zLDIwLjksMjMuM3oiCgkvPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik01LjIsMTkuOUw0LDE5LjJjMS41LTEuOSwyLjMtMy45LDIuNC01LjhjMC0xLDAuMS0zLjEsMC4xLTYuM0g4YzAsMi4yLDAsNC4zLTAuMSw2LjRjMCwwLjYtMC4xLDEuMi0wLjMsMS44CgkJaDEuMWMwLjUsMC44LDEuMiwyLjQsMi4yLDQuNkg5Yy0wLjYtMS41LTEuMi0yLjgtMS42LTMuOUM3LDE3LjIsNi4zLDE4LjYsNS4yLDE5Ljl6IE00LjEsMTQuOFY2LjFjMC0xLjIsMC41LTEuOCwxLjYtMS44aDMKCQljMSwwLDEuNiwwLjcsMS42LDEuOHY4LjZIOC45VjYuM2MwLTAuNC0wLjMtMC42LTAuNi0wLjZoLTJjLTAuNCwwLTAuNiwwLjItMC42LDAuNnY4LjVINC4xeiBNMTIuOSwxOS41Yy0xLjEsMC0xLjctMC42LTEuOC0xLjZWMTMKCQljMC0xLjEsMC43LTEuNywxLjgtMS44aDFWNC4xaDEuN3YyLjVIMjBWOGgtNC4zdjMuMmgxLjhjMS4xLDAsMS43LDAuNywxLjgsMS44djQuOGMwLDEuMS0wLjYsMS42LTEuOCwxLjdIMTIuOXogTTEyLjgsMTMuM3Y0LjMKCQljMCwwLjQsMC4zLDAuNywwLjcsMC43aDMuMmMwLjUsMCwwLjctMC4zLDAuOC0wLjd2LTQuNGMwLTAuNC0wLjMtMC43LTAuNy0wLjdoLTMuM0MxMy4xLDEyLjYsMTIuOSwxMi44LDEyLjgsMTMuM3oiLz4KPC9nPgo8L3N2Zz4K); | |
| } | |
| #u .pf { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzZENkQ2RDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4yLDE3LjJjMC0wLjQsMC4xLTAuOCwwLjEtMS4yYzAtMC40LDAtMC44LTAuMS0xLjJsMi42LTJjMC4yLTAuMiwwLjMtMC41LDAuMS0wLjhsLTIuNS00LjMKCWMtMC4xLTAuMy0wLjUtMC40LTAuOC0wLjNsLTMuMSwxLjJjLTAuNi0wLjUtMS4zLTAuOS0yLjEtMS4ybC0wLjUtMy4zYzAtMC4zLTAuMy0wLjUtMC42LTAuNWgtNWMtMC4zLDAtMC42LDAuMi0wLjYsMC41bC0wLjUsMy4zCgljLTAuOCwwLjMtMS40LDAuNy0yLjEsMS4yTDcuMyw3LjRDNyw3LjMsNi43LDcuNCw2LjUsNy43TDQsMTEuOWMtMC4yLDAuMy0wLjEsMC42LDAuMSwwLjhsMi42LDJjMCwwLjQtMC4xLDAuOC0wLjEsMS4yCgljMCwwLjQsMCwwLjgsMC4xLDEuMmwtMi42LDJjLTAuMiwwLjItMC4zLDAuNS0wLjEsMC44bDIuNSw0LjNjMC4xLDAuMywwLjUsMC40LDAuOCwwLjNsMy4xLTEuMmMwLjYsMC41LDEuMywwLjksMi4xLDEuMmwwLjUsMy4zCgljMCwwLjMsMC4zLDAuNSwwLjYsMC41aDVjMC4zLDAsMC42LTAuMiwwLjYtMC41bDAuNS0zLjNjMC44LTAuMywxLjQtMC43LDIuMS0xLjJsMy4xLDEuMmMwLjMsMC4xLDAuNiwwLDAuOC0wLjNsMi41LTQuMwoJYzAuMS0wLjMsMC4xLTAuNi0wLjEtMC44TDI1LjIsMTcuMnogTTE2LDIwLjNjLTIuNCwwLTQuMy0xLjktNC4zLTQuM3MxLjktNC4zLDQuMy00LjNzNC4zLDEuOSw0LjMsNC4zUzE4LjQsMjAuMywxNiwyMC4zeiIvPgo8L3N2Zz4K); | |
| } | |
| #u .lb { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDYgNDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ2IDQ2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMywyM2MyLjksMCw1LjItMi4zLDUuMi01LjJzLTIuMy01LjItNS4yLTUuMnMtNS4yLDIuMy01LjIsNS4yUzIwLjEsMjMsMjMsMjN6IE0yMywyNS42CgljLTMuNSwwLTEwLjQsMS43LTEwLjQsNS4ydjIuNmgyMC43di0yLjZDMzMuNCwyNy4zLDI2LjUsMjUuNiwyMywyNS42eiIvPgo8L3N2Zz4K); | |
| } | |
| #u1 a.pf { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzZENkQ2RDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4yLDE3LjJjMC0wLjQsMC4xLTAuOCwwLjEtMS4yYzAtMC40LDAtMC44LTAuMS0xLjJsMi42LTJjMC4yLTAuMiwwLjMtMC41LDAuMS0wLjhsLTIuNS00LjMKCWMtMC4xLTAuMy0wLjUtMC40LTAuOC0wLjNsLTMuMSwxLjJjLTAuNi0wLjUtMS4zLTAuOS0yLjEtMS4ybC0wLjUtMy4zYzAtMC4zLTAuMy0wLjUtMC42LTAuNWgtNWMtMC4zLDAtMC42LDAuMi0wLjYsMC41bC0wLjUsMy4zCgljLTAuOCwwLjMtMS40LDAuNy0yLjEsMS4yTDcuMyw3LjRDNyw3LjMsNi43LDcuNCw2LjUsNy43TDQsMTEuOWMtMC4yLDAuMy0wLjEsMC42LDAuMSwwLjhsMi42LDJjMCwwLjQtMC4xLDAuOC0wLjEsMS4yCgljMCwwLjQsMCwwLjgsMC4xLDEuMmwtMi42LDJjLTAuMiwwLjItMC4zLDAuNS0wLjEsMC44bDIuNSw0LjNjMC4xLDAuMywwLjUsMC40LDAuOCwwLjNsMy4xLTEuMmMwLjYsMC41LDEuMywwLjksMi4xLDEuMmwwLjUsMy4zCgljMCwwLjMsMC4zLDAuNSwwLjYsMC41aDVjMC4zLDAsMC42LTAuMiwwLjYtMC41bDAuNS0zLjNjMC44LTAuMywxLjQtMC43LDIuMS0xLjJsMy4xLDEuMmMwLjMsMC4xLDAuNiwwLDAuOC0wLjNsMi41LTQuMwoJYzAuMS0wLjMsMC4xLTAuNi0wLjEtMC44TDI1LjIsMTcuMnogTTE2LDIwLjNjLTIuNCwwLTQuMy0xLjktNC4zLTQuM3MxLjktNC4zLDQuMy00LjNzNC4zLDEuOSw0LjMsNC4zUzE4LjQsMjAuMywxNiwyMC4zeiIvPgo8L3N2Zz4K); | |
| } | |
| #u1 a.bri { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzZENkQ2RDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zLjcsOS44aDYuMlYzLjdIMy43VjkuOHogTTEyLjksMjguM2g2LjJ2LTYuMmgtNi4yVjI4LjN6IE0zLjcsMjguM2g2LjJ2LTYuMkgzLjdWMjguM3ogTTMuNywxOS4xaDYuMnYtNi4yCglIMy43VjE5LjF6IE0xMi45LDE5LjFoNi4ydi02LjJoLTYuMlYxOS4xeiBNMjIuMiwzLjd2Ni4yaDYuMlYzLjdIMjIuMnogTTEyLjksOS44aDYuMlYzLjdoLTYuMlY5Ljh6IE0yMi4yLDE5LjFoNi4ydi02LjJoLTYuMlYxOS4xCgl6IE0yMi4yLDI4LjNoNi4ydi02LjJoLTYuMlYyOC4zeiIvPgo8L3N2Zz4K); | |
| } | |
| #s_usersetting_top { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzZENkQ2RDt9Cjwvc3R5bGU+CjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4yLDE3LjJjMC0wLjQsMC4xLTAuOCwwLjEtMS4yYzAtMC40LDAtMC44LTAuMS0xLjJsMi42LTJjMC4yLTAuMiwwLjMtMC41LDAuMS0wLjhsLTIuNS00LjMKCWMtMC4xLTAuMy0wLjUtMC40LTAuOC0wLjNsLTMuMSwxLjJjLTAuNi0wLjUtMS4zLTAuOS0yLjEtMS4ybC0wLjUtMy4zYzAtMC4zLTAuMy0wLjUtMC42LTAuNWgtNWMtMC4zLDAtMC42LDAuMi0wLjYsMC41bC0wLjUsMy4zCgljLTAuOCwwLjMtMS40LDAuNy0yLjEsMS4yTDcuMyw3LjRDNyw3LjMsNi43LDcuNCw2LjUsNy43TDQsMTEuOWMtMC4yLDAuMy0wLjEsMC42LDAuMSwwLjhsMi42LDJjMCwwLjQtMC4xLDAuOC0wLjEsMS4yCgljMCwwLjQsMCwwLjgsMC4xLDEuMmwtMi42LDJjLTAuMiwwLjItMC4zLDAuNS0wLjEsMC44bDIuNSw0LjNjMC4xLDAuMywwLjUsMC40LDAuOCwwLjNsMy4xLTEuMmMwLjYsMC41LDEuMywwLjksMi4xLDEuMmwwLjUsMy4zCgljMCwwLjMsMC4zLDAuNSwwLjYsMC41aDVjMC4zLDAsMC42LTAuMiwwLjYtMC41bDAuNS0zLjNjMC44LTAuMywxLjQtMC43LDIuMS0xLjJsMy4xLDEuMmMwLjMsMC4xLDAuNiwwLDAuOC0wLjNsMi41LTQuMwoJYzAuMS0wLjMsMC4xLTAuNi0wLjEtMC44TDI1LjIsMTcuMnogTTE2LDIwLjNjLTIuNCwwLTQuMy0xLjktNC4zLTQuM3MxLjktNC4zLDQuMy00LjNzNC4zLDEuOSw0LjMsNC4zUzE4LjQsMjAuMywxNiwyMC4zeiIvPgo8L3N2Zz4K); | |
| } | |
| #imsg { | |
| background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i5Zu+5bGCXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojNkQ2RDZEO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjUuMyw0LjZoLTE5QzUsNC42LDMuOSw1LjcsMy45LDdsMCwyMS40bDQuOC00LjhoMTYuNmMxLjMsMCwyLjQtMS4xLDIuNC0yLjRWN0MyNy43LDUuNywyNi42LDQuNiwyNS4zLDQuNnoNCgkgTTIyLjksMTguOUg4LjZ2LTIuNGgxNC4zVjE4Ljl6IE0yMi45LDE1LjNIOC42di0yLjRoMTQuM1YxNS4zeiBNMjIuOSwxMS43SDguNlY5LjRoMTQuM1YxMS43eiIvPg0KPC9zdmc+DQo=); | |
| } | |
| /*========= Ad Block ========= */ | |
| div[style*="visibility:visible"] { | |
| display: none !important; | |
| visibility: hidden !important; | |
| opacity: 0; | |
| height: 0px; | |
| overflow: hidden; | |
| } | |
| /*Empty*/ | |
| /*Minimal*/ | |
| #u_sp { | |
| display: none | |
| } | |
| .bd_bear_home_nocard { | |
| display: none; | |
| } | |
| .lb { | |
| display: none; | |
| } | |
| #u1 { | |
| display: none; | |
| } | |
| #u { | |
| display: none; | |
| } | |
| .c-container { | |
| /*border: 1px solid #EEE;*/ | |
| background: #fff; | |
| border-radius: 2px; | |
| padding: 25px; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14); | |
| width: 549px; | |
| } | |
| h3 a:visited { | |
| opacity: 0.4 !important; | |
| color: #bbb !important; | |
| } | |
| .c-container:hover { | |
| transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| box-shadow: rgba(0, 0, 0, 0.117647) 0px 1px 6px, rgba(0, 0, 0, 0.117647) 0px 1px 4px; | |
| } | |
| .c-container:active { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| box-shadow: rgba(0, 0, 0, 0.188235) 0px 10px 30px, rgba(0, 0, 0, 0.227451) 0px 6px 10px; | |
| } | |
| .t { | |
| padding-bottom: 10px; | |
| } | |
| .c-border { | |
| width: 559px; | |
| margin-left: -25px; | |
| box-shadow: none !important; | |
| margin-top: 17px; | |
| margin-bottom: 23px; | |
| border-top: #EEE 1px solid; | |
| border-bottom: #EEE 1px solid; | |
| } | |
| #help { | |
| padding-left: 107px !important; | |
| } | |
| .c-tools a { | |
| border: 0px !important; | |
| } | |
| .f13 a:hover { | |
| border: none !important; | |
| } | |
| .f13 .m:hover { | |
| border-bottom: solid 1px #666 !important; | |
| } | |
| .g .m:hover { | |
| border-bottom: solid 1px #666 !important; | |
| } | |
| .c-row a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| .c-span6 a:hover { | |
| border-bottom: none; | |
| } | |
| .op_vd_mininewest_link:hover { | |
| opacity: 0.8; | |
| } | |
| .op-tieba-offical-lookmore a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| op-tieba-general-lookmore a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| .c-tip-menu ul li a { | |
| color: #4879BD !important; | |
| } | |
| h3 a:hover { | |
| border: none !important; | |
| opacity: 0.7; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| h3 a { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .sitelink_summary a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| .c-gray:hover { | |
| border-bottom: #666 1px solid; | |
| } | |
| .op_kefutable_committel:hover { | |
| border-bottom: #666 1px solid; | |
| } | |
| .op-soft-btnbox a:hover { | |
| border: none !important; | |
| } | |
| .op-soft-as-pc-downbtn { | |
| margin-left: 0px !important; | |
| color: #fff; | |
| background-color: #4879BD; | |
| padding: 3px 15px; | |
| border-radius: 2px; | |
| font-size: 14px; | |
| transition: all 0.3s ease; | |
| border: none; | |
| margin-top: -3px; | |
| } | |
| .op-soft-as-pc-downbtn:hover { | |
| background-color: #7098D0; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| background-image: none; | |
| } | |
| .c-btn-primary { | |
| margin-left: 0px !important; | |
| color: #fff; | |
| background-color: #4879BD; | |
| padding: 3px 15px; | |
| border-radius: 2px; | |
| font-size: 14px; | |
| transition: all 0.3s ease; | |
| border: none; | |
| margin-top: -3px; | |
| } | |
| .c-btn-primary:hover { | |
| background-color: #7098D0; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
| background-image: none; | |
| } | |
| .op-soft-title a:hover { | |
| border: none !important; | |
| opacity: 0.7; | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .op-soft-title a { | |
| transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; | |
| } | |
| .nums { | |
| width: 598px; | |
| } | |
| .search_tool_conter { | |
| width: 598px; | |
| } | |
| .op_offical_weibo_other a:hover { | |
| text-decoration: none !important; | |
| } | |
| .op_offical_weibo_info a:hover { | |
| text-decoration: none !important; | |
| } | |
| .op_offical_weibo_content a:hover { | |
| text-decoration: none !important; | |
| } | |
| .c-btn { | |
| border: none !important; | |
| } | |
| .op-zx-new-mvideo-info:hover { | |
| border-bottom: none; | |
| } | |
| .op-zx-new-mvideo-rlt a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| .op-zx-new-mvideo-oneline a:hover { | |
| border-bottom: #4879BD 1px solid; | |
| } | |
| .hint_common_restop { | |
| color: #EA4335; | |
| font-size: medium; | |
| font-weight: bold; | |
| } | |
| .op-tieba-general-main-col p:hover { | |
| border: none !important; | |
| } | |
| .c-text { | |
| background: #4879BD; | |
| color: #fff; | |
| border: #4879BD 1px solid; | |
| padding-top: 3px; | |
| border-radius: 2px; | |
| } | |
| .c-text:hover { | |
| background: none; | |
| color: #4879BD; | |
| border: #4879BD 1px solid !important; | |
| padding-top: 3px; | |
| border-radius: 2px; | |
| } | |
| /*Background Empty*/ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document domain("bilibili.com"){ | |
| *{transition-timing-function:ease;transition-duration:.25s;transition-property:border-color,background-color,color,box-shadow,opacity} | |
| } | |
| @-moz-document regexp("http(s)?://(www|space|search|bangumi|message|activity|pay|member)\.bilibili\.com.*") { | |
| html,body,#message_center{background-color:#222222 !important;background-image:url( )!important;background-position:center center;background-repeat:no-repeat;background-attachment:fixed;color:#999} | |
| div{color:#999} | |
| .viewbox{ | |
| max-height:40px; | |
| overflow:hidden; | |
| transition:all .35s ease; | |
| } | |
| .viewbox:hover{ | |
| max-height:600px; | |
| } | |
| .viewbox .upinfo{ | |
| opacity:0; | |
| transition:all .35s ease; | |
| } | |
| .viewbox:hover .upinfo{ | |
| opacity:1; | |
| } | |
| /*icon*/.z_top .z_top_nav ul li.home,.header .num li.m-i.m-i-square a.i-link em,.header .num li.m-i.m-i-live a.i-link em,.header .num .search .link-ranking span,.header .num .search button.search-submit,.b-icon,#i_menu_profile .info .email,#i_menu_profile .info .phone,.v1-bangumi-list-view li,.container-row .b-l .b-head .pmt-list.pmt-inline .pmt-icon,.topic-preview-wrapper .slider-bar li,.vl-hd #tab_list_mode .tab-i,.z_top .z_top_nav li .new,.z_top .z_top_nav li .beta,.b-icon.b-icon-delete,.b-icon.b-icon-a,.viewbox .upinfo .r-info .usname a.message,.nav-search .nav-search-submit,.tag-info-pane .btn-right-box a i,.b-icon.b-icon-toggle-down,.header .num li.m-i.m-i-blackroom a.i-link em::before{background-image:url(http://wx4.sinaimg.cn/large/73508f0fgy1fejr5n2d4nj218g1vwn5o.jpg)} | |
| .header .num li.m-i .i_num li a,.header .num li.m-i .i_num li a em{background-image:url(http://ww2.sinaimg.cn/large/73508f0fgw1f9c0aguz0ij20281b8glf.jpg)} | |
| .viewbox .upinfo .live-status-link{background-image:url(http://ww1.sinaimg.cn/large/73508f0fgw1f9c0aep2isg202500o0bq.gif)} | |
| .viewbox .upinfo .live-status-link:hover{background-image:url(http://ww4.sinaimg.cn/large/73508f0fgw1f9c0af14vqj202500o078.jpg)} | |
| /*search*/.icon-logo-distort,#search-wrap.distort .icon-logo,#search-wrap #header-search #logo,.icon-aver-active,.so-info>.switch .aver.active:hover i,.so-info>.switch .aver.active i,.filter-block>.switch .aver.active:hover i,.filter-block>.switch .aver.active i,.icon-imgleft-active,.so-info>.switch .imgleft.active:hover i,.so-info>.switch .imgleft.active i,.filter-block>.switch .imgleft.active:hover i,.filter-block>.switch .imgleft.active i,.icon-imgleft,.icon-search-hover,#search-wrap.distort .loupe:hover,.icon-like,.icon-fav,.icon-live-face-hover,.live-room .headline .filter .cover-btn.active .icon-live-face,.live-room .headline .filter .cover-btn:hover .icon-live-face,.icon-live-frame-hover,.live-room .headline .filter .frame-btn.active .icon-live-frame,.live-room .headline .filter .frame-btn:hover .icon-live-frame{background-image:url(http://wx4.sinaimg.cn/large/73508f0fgy1fcjn81dge5j20cm0fq40a.jpg)} | |
| /*search logo*/.search-b .search-b-head{background-image:url(http://wx1.sinaimg.cn/large/73508f0fgy1fcrrbe56xuj207d01w3ye.jpg)} | |
| /*search icon*/.search-icons{background-image:url(http://wx4.sinaimg.cn/large/73508f0fgy1fcrrbdqfakj200u04y0n6.jpg)} | |
| /*search title icon*/.search-b-title .search-b-title-icon{background-image:url(http://wx3.sinaimg.cn/large/73508f0fgy1fcrrben18xj200s01u741.jpg)} | |
| /*icon3*/.section .count::before,.section .operation,.i-pin-empty-set-icon,.icon,.n-icon,.small-item.new .new-icon,.stm-ly .icon{background-image:url(http://wx3.sinaimg.cn/large/73508f0fgy1fejr5o2p70j216o0z0tb8.jpg)} | |
| /*icons-comment*/.bb-comment .comment-list .list-item .info .like i,.bb-comment .comment-list .list-item .info .hate i,.bb-comment .comment-header .tabs-order li.on::after{background-image:url(http://wx2.sinaimg.cn/large/73508f0fgy1fcjnh7mvfmj20rs0rs74c.jpg)} | |
| /*icons_personalmessage*/.config-me .message-type .icon-config,.config-me .message-type .new-flag,.icon_plane,.config-page .icon,.whisper .whisper_right .chat_room_content .my_msg .chat_msg .chat_bubble_arrow,.whisper .more_chat_msg i,.whisper .whisper_right .chat_room_title .chat_opts{background-image:url(http://wx3.sinaimg.cn/large/73508f0fgy1fcqoag1eomj206o0b6jra.jpg)} | |
| .widescreen .ad-f,.ad-f,.ad-e1,.ad-e2,.player-wrapper .arc-toolbar,.header .num .menu-r,.widescreen .header .h-center .banner-title,.header .h-center .banner-title,.b-header-mask-bg,.b-header-mask,.header .header-layer,.header .header-link,#b_live,#b_p.v_large,.widescreen .v_largeromote + div,.b-gc,.b-zb,.b-ml,.n-i-mlink-bg,#downgrade-player,#msg-bug-report,.b-icon.b-icon-a.b-icon-anim-coin,.b-icon.b-icon-a.b-icon-anim-order,.v_small,.b-icon.b-icon-a.b-icon-stow,.b-icon.b-icon-a.b-icon-coin,.footer .partner,.b-icon.b-icon-arrow-l-d,span[data-ad-type="banner"],.recom{display:none!important} | |
| .widescreen .header .num li.m-i.home,.header .num li.m-i.home,.b-icon.b-icon-triangle-gray-left,#page-index .member-level .lvl-desc::before,.viewbox .bangumi-buybuybuy .bangumi-plan-link{display:none} | |
| body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,select,input,textarea,th,td,a,.bilibili-suggest .keyword-wrap .keyword,.sponsor-list ul li a,.b-head .b-head-t,.v .t,.viewbox .info .v-title h1,.viewbox .bangumi-buybuybuy .total,.v_bgm_list .bangumi-info .info-content #v_bgm_list_data a,.z_top,.z_top a,.z_top.b-header-blur .z_top_nav li a.i-link,.z_top.b-header-blur .uns_box li.u-i a.i-link,.header .num li.m-i a,.footer a,.rank-list-container .rank-list li .title,.uns_box li .i_menu li a,#i_menu_profile .info .coin,#i_menu_profile .info .score,.user-info .points-wrp .points-schedule .now-points,.b-head .b-head-t a,.v-list-live li .lv-t,.rlist li .t,.viewbox .upinfo .r-info .sign,a #layer-link,#video-list .list-wrap .list>h3 a,.filter-block .filter-wrap .filter-list>a,.nav-sub .wrap>.sub,#community_msg .dyn_menu li a,.uns_box li.u-i a.i-link,.search-b-suggest .search-b-hotlist .search-b-hotlist-name a,.search-b-history li a,.vl-hd .vl-tab .tab-i,.elecrank-wrapper .elecrank-content .rank-item .item-name,.elecrank-wrapper .elecrank-header .title,.video.matrix .title,.filter-block li a,#i_menu_login_btn span,#i_menu_register_btn span,.bilibili-suggest .suggest-item a,.bilibili-suggest .history-wrap .history,.bilibili-suggest .hot-wrap_tag .tag,.v1-bangumi-info-wrapper .v1-bangumi-info-title,.sponsor-list-top .sponsor-list-right .sponsor-list-username a,.sponsor-content-header h3,.sponsor-list-child .sponsor-list-right .sponsor-list-username,.bangumi-slider-relate .bangumi-slider-relate-title,.btn-sponsor-list-popupbox,.similar-container-wrp .similar-container .similar-list-wrp .similar-list .similar-list-child a .similar-name,.container-row .rm-list li .rm-item a,.container-row .hs-list li .hs-item .hs-t,.travelBox .rightPart .textLink,.header .num li.m-i .i_num li a,.bangumi-pmt-list li .pmt-item .t,.v1-bangumi-list-part .v1-bangumi-list-part-child a,.tag-list li.unverified .tag-val:hover,.tag-list li:hover .tag-val,.header .num .search .search-keyword,.a-layer .content .layer-row a.user-name,.a-layer .content .layer-row a.layer-link,.v1-bangumi-head-h3,.nav-search.search-focus .nav-search-keyword,.nav-search.search-hover .nav-search-keyword,.message-main-lists .message-main-list .message-main-right .message-username,.section-title,.stm-ly .sd-l a,.stm-ly .ct .stm-filter li,.stm-ly .stm-lst .name a,.main_body .future .future_list .future_block .info .title,.b-btn-cancel,.page_body .page_box .block .info .title,.main_list_new_list .a_title,.user_nav .space_item em,.g1,.side-navi a,.side-navi .side-navi-item-menu a,.step-a-footer .dl-btn,.video-manage .search .search-keyword,.px .pxDiv li a,.sxtj .sxtjDiv li a,.charge-manage,.profile-counter-g p a.t,.sponsor-list-nav li,.manage-tag-wrp .mng-tab ul li.on,input[type="text"],.new_comm,.whisper .whisper_left .rname_card .name,.whisper .whisper_left .uname_card .name,.tag-info-wnd .wnd-head .title,#page-index .member-level .exp-row .exp-detail .current,.collapse-title,.help-navi .list .grid a,.help-content-page .help-content-title,.collapse-sublist li a,.art_list li h2 a,.main_body .pick_up .pick_list .pick_block .info .title,.v1-complete-text .text-wrp .text-wrp-num,.online-list .ebox .etitle,.bpoints-win,.video-list-status-text,.tag-info-pane .tag-header .tag-title,.main-container .b-btn.b-btn-w,.tag-info-wnd .b-btn.b-btn-w,.float-wnd .b-btn.b-btn-w,.whisper .whisper_right .chat_room_title,.whisper .whisper_right .chat_msg_sender #emotion,.whisper .whisper_right .chat_room_title .chat_opts_menu a,.bp_user_box_top p,.bp_box_bot a,.bb_intro_box_top .b_question .b_question_title,.num_span,.card_link,.card_link:hover,.input_num span,.d-button,.box_bot_title a,.datepicker-selector[type="text"],.select_box span,.no_record,.trade_table .trade_title th,.main-nav .nav-wrp .nav-item,.main-nav .out-wrp .out-link,#appeal-main .ap-nav .nav-item,.i-m-title,.home-footer .tool-row .tool-btn,#n-search-input,.idc-uname,.config-page .emoji-wrap .emoji-text-wrap a,.paging-box .current,.paging-box .dian,.paging-box .next,.paging-box .prev,.paging-box .tcd-number,.bb-comment .comment-header .tabs-order li,.user-card .info .social a,.bb-comment .comment-send .comment-emoji,.emoji-box .emoji-text,body[role="2"] .channel .channel-item .channel-name,body[role="3"] .channel .channel-item .channel-name,#page-channel-detail .breadcrumb .item.cur,.synthetical .title,.encyclopedia .title,.video.list .title,.so-wrap .special .title,.movie-item .headline .title,.bubble .bubble-tradition .top-bubble .subTitle,.bubble .bubble-tradition .bubble-message li.message span.title,.bubble .title,.old-ver .filter-block li a,.history-list .r-info .title,.history-list .l-info .lastplay-time .lastplay-d,.user-card .info .user .name,.bilibili-suggest .vertical-text,.draw-item .headline,.live-tabs a,.live-room .headline .filter a,.b-slt-tab a,.sp_large .sort i,.sp_small .sort i,.bgm_list .vidbox.zt li .t,.tag-info-pane .text,.pub-list .info .type .bk-title,.ban-detail .content-box .bk-user-info .name,.ban-detail .content-box .punish-title,.what-ban .text-con .title,.crumbs,.sp-pager-item[_v-c5f256da],.sp-pager-next[_v-c5f256da],.sp-pager-prev[_v-c5f256da],.live-room .room-item .item-title,.channel.guest .channel-item .channel-title .channel-name,.n-data .n-data-v,.tag-info-pane .tag-header .tag-title a,.up-item .info-wrap .up-videos .video-item .video-info .video-desc,.video-hover-wrap .video-title{color:#99a2aa} | |
| .vd-list li .title,.stm-ly .stm-lst .name a:hover,.filter-block .fold:hover,.rank,.side-navi .side-navi-item-menu a:hover,.btn-sponsor-list-popupbox:hover,.message-main-lists .message-main-list .message-main-right.system .message-main-head,.b-btn.b-btn-textonly:hover,button.b-btn-textonly:hover,.help-list .title,.user-info .user-info-desc strong,.bp_box_top,.bb_intro_box_top .b_icon_title,.d-title,.bb-comment .comment-send .comment-emoji.open,.bb-comment .comment-send .comment-emoji:hover,.bubble .bubble-tradition .top-bubble .title,.sp-pager-item a[_v-c5f256da]{color:#ccc!important} | |
| .header .num li.m-i .i_num li:hover a,.viewbox .bangumi-buybuybuy .buy-wrapper .buy,.bpoints-btn.gray,.d-state-highlight:active,.d-state-highlight:hover,.d-button:hover,.main-nav .down-wrp .down-link .title,.btn:hover{color:#fff} | |
| .b-slt-tab li.on,.b-slt-tab .tab-i.on,.message-main-lists .message-main-list .message-main-right a,.uns_box li.u-i.b-post .s-menu li a,#fb-text a,.i-pin-reason,.stm-ly .stm-lst a:hover,.nav-sub .wrap>.sub.active,.vl-hd #tab_list_type .tab-i.on,.viewbox .info.topic .info-right .usname a,.main-content-tab-item.on,.main-content-tab-item:hover,.main-content-tab-item,.charge-manage .charge-tip .charge-tip-more,.recently-list .recently-list-info-text a,.profile-uid-tag a:hover,.n-v2 .n-btn.active,#page-index .member-level .lvl-desc a,.art_list li .event_status .status_ing,.user-info .user-info-desc .help-link,.video.list .headline.av .title,.bpoints-cb-item.on .tt,.tag-info-pane .btn-right-box a,.tag-info-pane .tag-footer .btn-left-box a,.page-info-wrp .info-content .share-panel-wrp .share-hd,.page-info-wrp .info-content .share-panel-wrp .share-list .share-copy,b.bule,.choose_num_click .num_span,span.choose_num_click,.sec-empty-hint a,.my-space #page-qz-fav .section.empty .empty-hint a,.my-space #page-qz-index .section.empty .empty-hint a,.my-space #page-qz-replys .section.empty .empty-hint a,.my-space #page-qz-threads .section.empty .empty-hint a,#setting-new-tag-btn,.home-help,.home-footer .protocal-link,#page-fav .order span.active,#page-video .order span.active,.config-page .config-side .open-status,.history-list .r-info .history-delete, .bb-comment a,.whisper .more_chat_msg,.bb-comment .nameplate .nameplate-card .nameplate-text .n-type a,.bilibili-suggest .history-wrap .clearall,.sort.sp .swc li.on,.zt-i-s .autoheight,#list_bangumi_new .a-link a,.about .ban-user-info .status,.publicity .header .type span.on,.ban-detail .content-box .link-box a,.i-live .i-live-fo-btn,.i-live .i-live-off-guest a,.bgm-calendar .b-tab ul li.on span{color:#276} | |
| .user-v,.user-v *,a.b-vip-red{color:#276!important} | |
| .section .count,#page-index .info .friend-data .item:first-child,.bgm-calendar a.c-clink,.tag-list li .border,.sponsor-list-top .sponsor-list-right .sponsor-list-usermessage,.help-content-page .help-content-title,.bpoints-cb-item.on .ico,.main-container .b-btn.b-btn-simple,.tag-info-wnd .b-btn.b-btn-simple,.float-wnd .b-btn.b-btn-simple,.whisper .whisper_left .chat_history_list .rname_card.active,.whisper .whisper_left .chat_history_list .uname_card.active,#list_bangumi_new .a-link{border-color:#276} | |
| .notice-list .stick,.b-slt-tab.b-tab-normal li.on,.container-row .b-head .b-slt-tab li.on,.b-slt-tab.b-tab-normal .tab-i.on,.container-row .b-head .b-slt-tab .tab-i.on,.tabs-mk2 .active,.v1-bangumi-list-season-content .v1-bangumi-list-season li.cur,.viewbox .upinfo .r-info .b-btn.elec,.user-card .btn-box a,.header .num li.m-i.on a.i-link{color:#276;border-color:#276} | |
| .b-slt-tab.b-tab-normal li::before,.container-row .b-head .b-slt-tab li::before,.b-slt-tab.b-tab-normal .tab-i::before,.container-row .b-head .b-slt-tab .tab-i::before,#dyn_wnd .dyn_menu .line::before,.tabs-mk2 .active::after,.v1-bangumi-list-season-content .v1-bangumi-list-season li.cur::after,.manage-tag-wrp .mng-tab ul li.on,.sponsor-list-nav li.cur::after,.bgm-calendar .b-tab,.bgm-calendar .b-tab ul li.on,.bgm-calendar .b-tab ul li::before{border-bottom-color:#276} | |
| .header .num li.m-i.on a.i-link em,.vl-hd .vl-tab .tab-i.on,.v_bgm_list .bangumi-info .info-head .b-tab li.on,.sponsor-list-nav li.cur{color:#276;border-bottom-color:#276} | |
| .subscribe-wrp #btn_tag_config.b-btn{border-left-color:#276!important} | |
| .sponsor-list-top .sponsor-list-right .sponsor-list-usermessage span,.sponsor-list-top .sponsor-list-right .sponsor-list-usermessage span::before{border-color:#276 #276 transparent transparent} | |
| .uns_box li.u-i.b-post a.i-link,#dyn_wnd .dyn_menu .line,.n .n-cursor,.btn.blue,.nav-sub .wrap .hover-bar,.filter-block li.active,.index-nav .n-i.customize:hover,.v_bgm_list .bangumi-info .info-content #v_bgm_list_data a.active,#bofqi.float .move .t,#bofqi.float .move .close:hover,#bofqi.float .move .gotop:hover,.side-navi a.on,.subscribe-tab li.on,.box-tab-item.on,.side-navi .side-navi-item-menu a.on,.charge-manage .charge-tip .charge-partin-btn.join,.charge-manage .charge-agreement .charge-agree-confirm,.control-content-tab-item.on,.search-list li.on,.viewbox .upinfo .r-info .b-btn.elec.on,.v1-bangumi-info-wrapper .v1-bangumi-info-btn div.v1-order-btn,#community_msg .dyn_menu li a .inner-num,#dyn_wnd .dyn_list li .r .title span.sp,.v_bgm_list .bangumi-info .bangumi-order-btn,.h-follow,.h-v2 .h-follow,.collapse-sublist li a.active,#b_tag_promote .r-promote .t .btn-subscribe,.page-info-wrp .info-content .info-btm-l .btn-dy,.video.list .headline.av .avid,.viewbox .bangumi-buybuybuy .buy-wrapper .buy,.bpoints-btn.gray,.complete-list .slider-list-content>div .slider-list li.cur a,.complete-list .slider-list-content>div .slider-list li.cur:hover a,.video-list-status-text .video-list-status-order span.order-btn,.tag-info-pane .tag-header .btn-subscribe,.whisper .whisper_right .chat_msg_sender button,.v1-bangumi-list-part .short-list .v1-bangumi-list-part-child.cur a,.v1-bangumi-list-part .short-list .v1-bangumi-list-part-child:hover a,.d-state-highlight,.channel .empty-state .button,.bili-btn.ok,.pager ul li span.current,.bb-comment .comment-send .comment-submit,.user-card .btn-box a.like,.bb-comment .no-login .baffle .b-btn,.bubble .button,.m-layer .b-btn,.history-list .l-info .lastplay-time .history-red-round,.search-b-suggest .search-b-hotlist .search-b-hotlist-num.special,.draw-item .draw-type,#id-card .idc-btn.blue,.elec .elec-trigger,.qz .qz-duty.qz-2,.up-item .info-wrap .headline .attention-btn{border-color:#276;background:#276} | |
| .header .num li.m-i .v-num span,.uns_box .u-i .num,.rlist li .number.n1,.rlist li .number.n2,.rlist li .number.n3,.container-row .hs-list li i.number.n1,.container-row .hs-list li i.number.n2,.bgm-calendar .c-list li.new .c-item p.num span,.section .count,.bgm-calendar a.c-clink:hover{background-color:#276;color:#ddd} | |
| .sp-pager-item-active[_v-c5f256da]{background:#276!important;border-color:#276!important} | |
| a:hover,.tabs a.active,.b-slt-tab li:hover,.b-slt-tab .tab-i:hover | |
| .b-slt-tab.b-tab-normal li:hover,.container-row .b-head .b-slt-tab li:hover,.b-slt-tab.b-tab-normal .tab-i:hover,.container-row .b-head .b-slt-tab .tab-i:hover,.index-online a:hover,.b-head .pmt-list .pmt-link a:hover,.v:hover .t,.rlist li:hover .t,.header .num li.m-i a:hover,#dyn_wnd .dyn_list li .r .info a,#dyn_wnd .dyn_menu li.on,#dyn_wnd .dyn_menu li:hover,.mini-wnd .list li a:hover,#community_msg .dyn_menu li a:hover,.bgm-calendar .c-list li .c-item a:hover,.n .n-btn.active,.fav-item .edit,.fav-item .delete,.uns_box li.u-i:hover a.i-link,.z_top .i-link:hover,.message_pagination_list.active .message-type,.message_pagination_list:hover .message-type,.message-main-lists .message-main-list .message-main-right a:hover,.uns_box li .i_menu li a:hover,.tabs-mk2 span:hover,.i-live .i-live-fo-btn:hover,#fb-text a:hover,.stm-ly .stm-lst a,.nav-sub .wrap>.sub:hover,.filter-block li:hover:not(.active) a,.video.matrix .title:hover,.footer a:hover,.bilibili-suggest .suggest-item .suggest_high_light,.bgm-calendar a.c-clink,.fcname ul.n_num li.on a,.fcname ul.n_num li:hover a,.vl-hd .vl-tab .tab-i:hover,.b-slt-tab .tab-i:hover,.vd-list li .l-r .up-info .v-author:hover,.viewbox .info .tminfo a:hover,.viewbox .info .tminfo span a:hover,.a-layer .content .layer-row a.user-name:hover,.pagelistbox.small .p.active,.pagelistbox.small .p:hover,.viewbox .upinfo .r-info .usname a.message:hover,.viewbox .info.topic .info-right .usname a:hover,.browseMode,a.bw,.g1:hover,.mn-ot-l-m:hover .mn-ot-l-m-tle,#dyn_wnd .dyn_list a:hover,.box-tab-item,.profile-counter-g p a.t:hover,.recently-list .recently-list-info-text a:hover,.v1-bangumi-list-season-content .v1-bangumi-list-season li:hover,.manage-tag-wrp .mng-tag-list li .ctrl-wrp .ctrl-btn .btn-txt,.v_info #newtag a,.sponsor-list-nav li:hover,.tag-info-wnd .wnd-head .title:hover,.header .num .search .link-ranking span,.bangumi-pmt-list li .pmt-item:hover .t,.container-row .hs-list li .hs-item .hs-t:hover,.art_list li h2 a:hover,.user-info .user-info-desc .help-link:hover,#i_menu_profile .info .coin:hover,.v1-complete-text:hover .text-wrp-num-content,.online-list .ebox:hover .ol b,.online-list .ebox a:hover .etitle,.bpoints-collapse.on>*,.complete-list .slider-list-content>div .slider-list li:hover a *,.slider-list-content div .slider-list li:hover,.v1-paging-list a.cur,.v1-paging-list a:hover,.s_tag .tag-area li:hover a,.tag-info-pane .tag-header .btn-unsubscribe:hover,.tag-info-pane .tag-footer .btn-left-box a:hover,.s_tag .btn-view-tag a:hover,#page-subs .action .sub-action,.h-fs:hover p,.page-info-wrp .info-content .share-panel-wrp .share-list .share-copy:hover,.viewbox .upinfo .live-status-link,.whisper .whisper_left .chat_history_list .rname_card.active .name,.whisper .whisper_left .chat_history_list .uname_card.active .name,.whisper .whisper_right .chat_room_title .chat_opts_menu a:hover,.bp_user_box i,.bp_box_bot a:hover,.bb_intro_box_top .b_question .b_question_title:hover,.num_span:hover,.main-nav .nav-wrp .nav-item:hover,.main-nav .nav-wrp .nav-item:hover i,.main-nav .out-wrp .out-link:hover,.main-nav .out-wrp .out-link:hover i,#appeal-main .ap-nav .nav-item:hover:not(.active),#appeal-main .ap-nav .nav-item:hover:not(.active) span,.sec-empty-hint a:hover,.link:hover,.rank-container .rank-tab .on,.rank-list-container .rank-list li .pts div,.rank-list-container .rank-list li .rank-item:hover .title,#page-fav #submit-video-type-filter a.active,#page-fav .order span:hover,#page-video #submit-video-type-filter a.active,#page-video .order span:hover,.i-live:hover .i-live-title,.idc-uname:hover,.so-episode>.list:hover .bgm-list-title,.bb-comment .comment-header .tabs-order li:hover,.bb-comment .comment-list .list-item .user .name:hover,.bb-comment .hot-line a:hover,.bb-comment .comment-list .list-item .info .btn-hover:hover,.bb-comment .comment-list .list-item .reply-box .view-more .btn-more:hover,.paging-box .current:hover,.paging-box .dian:hover,.paging-box .next:hover,.paging-box .prev:hover,.paging-box .tcd-number:hover,.bb-comment .comment-list .list-item .info .plad a:hover,#dyn_wnd .dyn_list li .r .title span.live,.channel .content .channel-item .channel-name:hover,.synthetical .title:hover,.encyclopedia .title:hover,.video.list .title:hover,.so-wrap .special .title:hover,.movie-item .headline .title:hover,.bb-comment .reply-notice .notice-item a,.history-list .r-info .typename:hover,.history-list .r-info .title:hover,.history-list .r-info .history-delete:hover,.bb-comment .nameplate .nameplate-card .nameplate-text .n-type a:hover,.bb-comment a:hover,.keyword,.bilibili-suggest .suggest_high_light,.draw-item .headline:hover,.draw-item .info-con .up-name:hover,.live-tabs a:hover,.live-room .headline .filter a.active,.live-room .headline .filter a:hover,.live-user .headline .user-more:hover,.relvid_list .vidbox.zt .v:hover .t,.relvid_list .sort .swc li:hover,.notice-list:hover,.ban-text .bk-gf:hover,.ban-detail .content-box .punish-title .moral,.ban-detail .content-box .link-box a:hover,.crumbs a:hover,.sp-pager-item:hover a[_v-c5f256da],.sp-pager-next:hover a[_v-c5f256da],.sp-pager-prev:hover a[_v-c5f256da],.so-icon .up-name:hover,.b-toggle-block .b-toggle-btn:hover,.n-fs:hover p, .n-gz:hover p,.tag-info-pane .tag-header .tag-title a:hover,.up-item .info-wrap .up-videos .video-item .video-info .video-desc:hover{color:#298} | |
| .whisper .whisper_left .chat_tab_wrapper .chat_tab,.filter-block ul.sub li.active a,.box_bot_title a:active,.box_bot_title a:hover,.user-v :hover,.user-v:hover,a.b-vip-red:hover,.bb-comment .vip-red-name,.user-card .vip-red-name,.pub-list .info .type .jc{color:#298!important} | |
| .b-input:hover,.b-input:focus,.control-inpt-input:focus,.bpoints-collapse.on .collapse-wrapper,.complete-list .slider-list-content>div .slider-list li:hover a,.s_tag .tag-area li:hover,.s_tag .btn-add:hover,.whisper .whisper_right .chat_msg_sender textarea:focus,a.bp_box_bot_click,.charge_bot_title .link_click,.choose_num_click .num_span,span.choose_num_click,input:focus,textarea:focus,#i-ann-text:focus,#i-ann-text:hover,#page-favlist .fav-create:hover .fav-covers,.n-search.active,.pager .custom-right input:focus,.pager .custom-right input:hover,.so-episode>.list:hover,.bb-comment .comment-send .textarea-container.focus textarea,.bb-comment .comment-send .textarea-container:hover textarea,.s_tag .ipt,.bgm_list .vidbox.zt li:hover,.topic-preview-wrapper.ex .slider-bar .current,.sp-pager-item[_v-c5f256da]:hover,.sp-pager-next[_v-c5f256da]:hover, .sp-pager-prev[_v-c5f256da]:hover{border-color:#298!important} | |
| .uns_box li.u-i.b-post:hover a.i-link,.btn.blue:hover,.elec-trigger:hover,#dyn_wnd .num,.mini-preview-wrapper .slider-bar li.on a,.mini-preview-wrapper .slider-bar li.on:hover a,.mini-preview-wrapper .slider-bar li:hover a,.v_bgm_list .bangumi-info .info-content #v_bgm_list_data a:hover,#bofqi.float .move:hover .t,.bgre,.slider-control.active,.side-navi a.on:hover,.subscribe-tab li:hover,.side-navi .side-navi-item-menu a.on:hover,.px .pxDiv li a:hover,.sxtj .sxtjDiv li a:hover,.profile-stat .stat-val span.v,.search-list li:hover,.viewbox .upinfo .r-info .b-btn.elec.on:hover,.v1-bangumi-list-part .v1-bangumi-list-part-child .e-item-new,.v_bgm_list .bangumi-info .bangumi-order-btn:hover,.h-follow:hover,.n-v2 .n-cursor,.h-v2 .h-follow:hover,#i_menu_loc,.user-info .points-wrp .points,.user-info .points-wrp .lt,.viewbox .upinfo .r-info .b-btn.elec:hover,.page-info-wrp .info-content .info-btm-l .btn-dy:hover,.viewbox .bangumi-buybuybuy .buy-wrapper .buy:hover,.s_tag .btn-add:hover span,.tag-info-pane .tag-header .btn-subscribe:hover,.main-container .b-btn.b-btn-w:hover,.tag-info-wnd .b-btn.b-btn-w:hover,.float-wnd .b-btn.b-btn-w:hover,.whisper .whisper_right .chat_msg_sender button:hover,#i_menu_profile .info .vip-hinter[data-vip-type],.d-state-highlight:active,.d-state-highlight:hover,.home-footer .tool-row .tool-btn:hover,.config-page .save-wrap .save-btn,.paging-box-big .current,.paging-box-big .current:hover,.paging-box-big .dian:hover,.paging-box-big .next:hover,.paging-box-big .prev:hover,.paging-box-big .tcd-number:hover,.bb-comment .comment-send .comment-submit:hover,.user-card .btn-box .like:hover,.m-layer .b-btn:hover,#list_bangumi_new .a-link:hover,#id-card .idc-btn.blue:hover,.elec .elec-trigger:hover{border-color:#298;background:#298} | |
| .datepicker table tr td.day.focused,.datepicker table tr td.day:hover,.datepicker table tr td.active,.datepicker table tr td.active:hover,#appeal-main .ap-nav .nav-item.active,.red-dot::after,.channel .empty-state .button:hover,.setting-privacy-item.active .setting-privacy-icon,.setting-index-module:hover,.bili-btn.ok:hover,.config-page .config-content .switch .switch-btn.on,.bb-comment .no-login .baffle .b-btn:hover,.uns_box #i_menu_become_vip .red_point,.whisper .whisper_right .chat_room_content .my_msg .chat_msg .chat_bubble,.live-room .room-item .img-wrapper .item-hover .hover-point,.i-tg .i-tg-stage .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,.stm-ly .stm-lst span.sp,#miniPlayerSwitch:hover,.up-item .info-wrap .headline .attention-btn:hover{background:#298} | |
| .ban-modal .modal-title .more:hover,.section .more:hover,.b-btn-cancel:hover,.b-btn.w:hover,button.w:hover,.b-btn.b-btn-w:hover,button.b-btn-w:hover,#page-index .video .go-manage:hover,.v1-bangumi-info-wrapper .v1-bangumi-info-btn.v1-app-btn:hover,.main-container .b-btn.b-btn-simple:hover,.tag-info-wnd .b-btn.b-btn-simple:hover,.float-wnd .b-btn.b-btn-simple:hover,.i-pin-empty-set:hover,.rank-container .rank-menu li.on,.pager ul li a:hover,.s-paging>ul>a:hover:not(.disabled):not(.current),.s-paging>ul>span:hover:not(.disabled):not(.current),.bb-comment .comment-header .tabs-order li,.bb-comment .reply-notice .notice-item,.user-card .btn-box a:hover,.bilibili-suggest .hot-wrap_tag .tag:hover,.live-tabs a.active,.so-wrap .special .attention-btn:hover,.bb-comment .stick,.tag-list li.tag-item:hover{color:#298!important;border-color:#298!important} | |
| #b_tag_promote .r-promote .t .btn-subscribe.subscribed{box-shadow:inset 0 0 0 1px #298} | |
| .v_bgm_list .bangumi-head .t,.sponsor-list .list-head,.t-sponsor-count span{color:#398} | |
| .player-wrapper,.v_bgm_list,.v_info,.b-icon-anim-fav,.rank-container .rank-body,.viewbox .upinfo,.mini-wnd .list.history li.timeline .date,.mini-wnd .list.history li.timeline,.mini-wnd .list li:hover,#dyn_wnd .dyn_list,.z_top .i-link:hover,.vd-list li .l-item,.vd-list.l2 li .l-item,.vd-list.l2 li,.b-toggle-block .b-toggle-btn,.elecrank-wrapper .elecrank-header,.video.matrix,.footer .footer-wrp,.no-result,#dyn_wnd .dyn_list li .history-tag,.bilibili-suggest .b-line span,.bilibili-suggest .b-line,#message_right,.n .n-left,#page-index .col-1,.col-full,.so-wrap .synthetical-episode .bangumi-more,.stm-ly .usr,.stm-ly .usr .info,.stm-ly .usr .status,.stm-ly>.sd>.sec,.stm-ly>.ct,.stm-ly .ct .stm-filter li.on,.stm-ly .stm-lst,.share,.live-box,.topic-wrapper,#footer,.main_body_box,.browseMode,.elec:hover .elec-status,.elec-status-bg-grey,.elec-status,.box-title,.box-inner,.side-navi .side-navi-item-menu,.box-tab,.fix-notice,.form-post .content-page-topsider,.content-page-topsider,.form-post,.recently-list .recently-list-info-comment,.manage-tag-wrp .mng-list li .ctrl-wrp .ctrl-btn:hover,.whisper .whisper_left .chat_tab_wrapper,.help-navi,.help-list,.art_list li,.config-page .config-content .switch,.bb-comment{border:0;background:0 0} | |
| .header .num.nav-main ul.nav-menu,#dyn_wnd .dyn_list li.history,.rank-list-container .rank-list li,.similar-container-wrp .main-inner,.sponsor-modal-header,.page-video-wrp .v,.page-video-wrp .v .preview,.ov-box .v-preview,.ov-box .v-data,.index-nav .n-i.customize,.v1-bangumi-info-wrapper,.viewbox .info .v-title-info .v-title-line.icon_btn_coin,.v_info .s_tag,.viewbox .info .v-title-info .v-title-line.v-stow,.header .num li.m-i.m-i-square.m-i-ex .i_num .square-pmt-field,.synthetical,.stm-ly .stm-lst li + li,.fixed-nav .upper,.fixed-nav .bottom,#page-index .col-2 .section-title,#page-index .info .meta .row,.sponsor-content-wrapper,.h-avatar,#page-video #v-filters .item,#page-fav #v-filters .item,#i_menu_profile .member-menu,#page-index .info .friend-data,.banner_search .d_left_data,.video-manage .search,.form-post li,.form-post.filter .block,.form-post li .item-r,.recently-list li,.box-id-profile,.profile-counter,.profile-stat,.profile-stat .stat-val:first-child,.profile-counter-g,.manage-tag-wrp,.manage-tag-wrp .tag-mng,.sponsor-list-top .sponsor-list-right .sponsor-list-usermessage span::before,.whisper .whisper_left,.whisper .whisper_left .chat_history_list .rname_card .last_msg,.whisper .whisper_left .chat_history_list .uname_card .last_msg,.h-v2 .h-avatar,.help-content,.help-navi ul,.help-list .title,.help-navi .sort,.b-head.event,.video.list,.v_bgm_list .info .preview,.bpoints-background,#page-subs .mini-item,.main-container .b-btn,.whisper .whisper_right .chat_room_title,.v1-bangumi-list-part .short-list .v1-bangumi-list-part-child a,.config-me,.elec-avatar,.idc-avatar,.config-page .config-side,.bb-comment .hot-line,.group-play-info .upload-user,.bilibili-suggest .title,.a-layer .content .user-face{border:0} | |
| #content .nomore,.video-manage .search button.search-submit,.banner,.whisper .whisper_right .chat_msg_sender,.config-page .config-content{border:0;background-color:transparent} | |
| .filter-block,.paging-wrap,.elecrank-wrapper .elecrank-header .name,#dyn_wnd .dyn_list_wrapper,#dyn_wnd .dyn_list li.d-data:hover,#community_msg .dyn_menu li:hover,.uns_box li.u-i:hover,.index-online,body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,.online-list .ebox,.bpoints-collapse-label,.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover,.rank-container .rank-tab-wrp,.rank-list-container .rank-list-head .rank-tip-wrp #rank_tips,.config-page .save-wrap .btn,.bb-comment .hot-line span,.group-play-info .upload-user .upload-user-text,.bilibili-suggest .title>span,.hd2.sp{background:0 0} | |
| .mini-wnd .list li a:hover{background:0 0!important} | |
| .bpoints-cb-item.on .ico,.bpoints-win .ico,.bpoints-collapse .collapse-wrapper,.extends.collapse-wrapper,.bpoints-collapse.on .collapse-wrapper,.slider-list-content div .slider-list li.cur::after,.v1-bangumi-list-season-content.slider-list-content div .v1-bangumi-list-season li::after,.main-nav .down-wrp .down-link.live,.main-nav .down-wrp .down-link.upload,.zt-i-s .autoheight{background-color:transparent} | |
| .n .n-left,.col-full,.idc-btn.message,.n-inner,.select_box ul,.ul_click,.datepicker-selector.active[type="text"],.datepicker-selector[type="text"]:focus,.datepicker,.article-wrp .empty-wrp .bili-btn{box-shadow:none} | |
| .b-btn.w,button.w,.b-btn.b-btn-w,button.b-btn-w,a.b-btn.w,abutton.w,a.b-btn.b-btn-w,abutton.b-btn-w,.pagelistbox.small .p,.mini-wnd .read-more,#dyn_wnd .wnd_bottom a.read-more,#dyn_wnd .wnd_bottom a.btn-ignore-all,#dyn_wnd .wnd_bottom a.btn-live-more,.tag-list li.tag-item,.b-head .b-link-more a,.ov-box,#video-list,.container-row .more-link a,.pagelistbox .p,.viewbox .upinfo .r-info .b-btn.f.on,.message-title,#message_left,.section,.s-paging>ul>a,.s-paging>ul>span,#id-card,.rlist li .number,.container-row .hs-list li i.number,#page-video #submit-video-keyword,#page-fav #submit-video-keyword,.main_body .future .next_button,.top_search,.tip,.navi,.container-grid-layout,.sxtjBtn,.sxtjDiv,.sxtj:hover .pxDiv,.charge-manage .charge-agreement,.group-page,.whisper,.b-btn.b-btn-textonly,button.b-btn-textonly,#page-index .member-level .lvl-desc,.page_body .page_box .block .info .button.official,.user-info .user-info-desc,.v1-bangumi-list-part .short-list .v1-bangumi-list-part-child a,.sponsor-modal-container,.choose_sure,.config-page,.user-card,.paging-box-big .dian,.paging-box-big .next,.paging-box-big .prev,.paging-box-big .tcd-number,.history-list .r-info,.sp_small,.sp_large{border-color:#334;background:#334;color:#99a2aa} | |
| .tag-list li.unverified,.search-b-suggest .search-b-hotSearch,.search-b-suggest .search-b-searchHistory,.page-video-wrp,.b-head .read-push,.uns_box li .i_menu,.mini-wnd,#dyn_wnd,#community_msg,.uns_box li.u-i.b-post .s-menu,.b-slt,.index-nav .n-i.gotop .btn_gotop,.index-nav .nav-list,.b-btn,button,.viewbox .upinfo .r-info .b-btn.f,.b-slt.on,.b-slt.on:hover,.b-slt:hover,.search-b .b-slt.on,.search-b .b-slt.on:hover,.search-b .b-slt:hover,#search-wrap #header-search #search-block #search-button,.search-b .search-b-sureBtn,.b-slt .list,.message-main-lists .message-main-list,#page-index .col-2 .section,#video-management,.s-paging>ul>a:not(.disabled):not(.current):not(a),.s-paging>ul>span:not(.disabled):not(.current):not(a),.stm-ly .stm-lst li,.z_top .z_top_nav ul li .i_div,.fixed-nav .o,.fixed-nav .order-trigger,.fixed-nav .back-to-top,.n-inner,#page-video #submit-video-type-filter,#page-fav #submit-video-type-filter,.listnavBgC,.main_list_new_list .index-new-list,.u-btn-e,.bggr,.b-input,input.b-input,textarea.b-input,.manage-tag-wrp .mng-list,.tag-info-wnd,.filter-block ul.sub,.n-v2 .n-inner,.bgm-calendar .c-list li .c-item p.num span,.header .num .search .link-ranking,.header .num .search #searchform,.v1-complete-text,.tag-info-pane,.page-inner-box,.v1-bangumi-list-part-wrapper .slider-list-contro .slider-next,.v1-bangumi-list-part-wrapper .slider-list-contro .slider-prev,#bp_user_box,.bb_box,.bp_box,.bb_intro_box,.bb_intro_box_top,.balance_bp_box,.box_bot,.channel_box_bot,.main-nav,.bb-comment .no-login .baffle,.bb-comment .no-login .comment-emoji,.bubble,.old-ver .filter-block li.active,.bb-comment .nameplate .nameplate-card,.draw-item,.ban-modal,#miniPlayerSwitch,.video-hover-wrap{border-color:#334;background-color:#334} | |
| .bb-comment .no-login .comment-submit{border-color:#334!important;background-color:#334!important} | |
| .z_top,.b-header-mask-wrp,.all a:hover,.hot .game_img_box:hover,.travelBox .leftPart .imgBox:hover,#search-wrap #header-search #search-block .input-wrap,.travelBox .rightPart .textLink:hover,.type-desc,#search-wrap.distort,.help-content-page .help-content-title,.viewbox .upinfo .r-info .b-btn.elec,.online-list .ebox .ol,.whisper .whisper_right .chat_msg_sender #emotion,.whisper .whisper_right .chat_msg_sender .emotion_list,.sponsor-icon,.d-outer,.select_box ul,.datepicker,#app .z_header,#page-favlist .fav-create .fav-covers,.setting-privacy-item .cursor,.bili-box,.config-page .config-content .switch .switch-btn .ball,.config-page .emoji-wrap,.emoji-box,.emoji-box .emoji-tabs,.ban-detail .content-box,.what-ban .text-con{background:#334} | |
| .vl-hd,.footer .boston-postcards li,.v1-bangumi-info-wrapper .v1-bangumi-info-btn div.v1-order-num,.v1-bangumi-info-wrapper .v1-bangumi-info-btn.v1-app-btn,.v1-bangumi-list-season-wrapper,.v1-bangumi-list-wrapper,.nav-sub,.v_info .intro,.filter-block,.sponsor-list-top .sponsor-list-left img,.vl-hd .s-line,.tip_box,.manage-tag-wrp .mng-tab,.tag-list .tag-sep-line,.viewbox .info .v-title-info .v-title-line.v-coin,.v_bgm_list .bangumi-info .info-head,.index-online i.s-line,.b-head .pmt-list .pmt-link,.b-head.online,.online-list .ebox,.bpoints-win .ico,.bpoints-collapse .collapse-wrapper,.extends.collapse-wrapper,.bpoints-wrp,.trade_table .trade_title th,.bb-comment .comment-header,.bb-comment .comment-list .list-item .con,.bb-comment .comment-list .list-item:last-child .con,.bb-comment .comment-send .textarea-container textarea,.bb-comment .comment-send .comment-emoji,.so-wrap .synthetical-episode,.so-wrap .synthetical-movies,.history-list .l-info,.so-wrap .special,.publicity .header .type span,.up-item{border-color:#334} | |
| .uns_box li.u-i .i_face.scale-in,.sxtj.px:hover .sxtjBtn,.sxtj:hover .sxtjBtn{border-color:#334!important} | |
| #search-wrap #header-search #search-block .input-wrap input{border-color:#334;color:#99a2aa} | |
| .bilibili-suggest{border:0;background:#334;color:#99a2aa!important} | |
| .whisper .whisper_right .chat_msg_sender #emotion.open{border-top-color:#334} | |
| .tabs a::after,.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{color:#334} | |
| .v1-bangumi-list-part .v1-bangumi-list-part-child:hover,.viewbox .upinfo .r-info .b-btn.f:hover,.b-btn:hover,button:hover,.index-nav .n-i.gotop .btn_gotop:hover,#search-wrap #header-search #search-block #search-button:hover,.b-head .b-link-more a:hover,.b-head .read-push:hover,.container-row .more-link a:hover,.v_info #newtag a:hover,.v-plist .curPage,.alist .curPage,.v-plist a:hover,.alist a:hover,.v-plist .p-close:hover,.alist .p-close:hover,.pagelistbox .p.active,.pagelistbox .p:hover,.bilibili-suggest .suggest-item.focus,.search-b .search-b-sureBtn:hover,.b-slt .list li:hover,.index-nav .n-i.sortable.on,.index-nav .n-i .name:hover,.tminfo .charge-appeal-init:hover,.mini-wnd .read-more:hover,.s-paging>ul>a:hover:not(.disabled):not(.current):not(a),.s-paging>ul>span:hover:not(.disabled):not(.current):not(a),.s-paging>ul>a.current,.s-paging>ul>span.current,.stm-ly .sd-l a:hover,.filter-block .fold:hover,.index-nav .pointer-block,.idc-btn.message,.idc-btn.unfollow,.fixed-nav .o.active,.fixed-nav .order-trigger.active,.fixed-nav .back-to-top.active,.fixed-nav .o:hover,#dyn_wnd .wnd_bottom a.read-more:hover,#dyn_wnd .wnd_bottom a.btn-ignore-all:hover,#dyn_wnd .wnd_bottom a.btn-live-more:hover,.b-btn-cancel,.main_body .future .next_button:hover,.space_line,.u-btn-e:hover,.side-navi a:hover,.side-navi .side-navi-item-menu a:hover,.to-contribute-btn,.main-content-tab-item.on,.table-normal thead tr td,.charge-manage .charge-agreement .charge-agree-cancel,.control-content-tab-item,#content .btn,.messagebox-wrapper .btn,.pm-wrapper .btn,.pic-dialog .btn,#content .btn:hover,.messagebox-wrapper .btn:hover,.pm-wrapper .btn:hover,.pic-dialog .btn:hover,.recently-list .recently-list-detail,.page li,.page li:hover,.btn-sponsor-list-popupbox:hover,.new_comm,.whisper .whisper_left .chat_history_list .rname_card:hover,.whisper .whisper_left .chat_history_list .uname_card:hover,.b-btn.b-btn-textonly:hover,button.b-btn-textonly:hover,#page-index .member-level .exp-row .exp-bar,.page_body .page_box .block .info .button.official:hover,.header .num .search .link-ranking:hover,.header .num .search #searchform:hover,.header .num .search.search-focus #searchform,.tag-info-pane .tag-header .btn-unsubscribe,.main-container .b-btn.b-btn-w,.tag-info-wnd .b-btn.b-btn-w,.float-wnd .b-btn.b-btn-w,.page-info-wrp .info-content .share-panel-wrp .share-hd.on,.page-info-wrp .info-content .share-panel-wrp .share-list,.whisper .whisper_right .chat_room_title .chat_opts_menu,.button.ready,.button.ready:active,.button.ready:hover,.d-button,.trade_table .trade_title,.bb-comment .hot-line a:hover,.bb-comment .comment-list .list-item .info .btn-hover:hover,.bb-comment .comment-list .list-item .reply-box .view-more .btn-more:hover,.user-card .btn-box .message,#setting-new-tag-btn,.sp-pager-item[_v-c5f256da],.sp-pager-next[_v-c5f256da], .sp-pager-prev[_v-c5f256da]{border-color:#446;background-color:#446} | |
| .uns_box li.u-i.b-post .s-menu li:hover,.page-info-wrp .info-content .info-btm .share-wrp,.tag-list li .progress,.tag-info-pane .tag-footer .btn-left-box a:hover,.s_tag .btn-add span,.whisper .whisper_left .chat_history_list .rname_card.active,.whisper .whisper_left .chat_history_list .uname_card.active,.sponsor-choice-item.active .sponsor-icon,.v1-bangumi-list-part-wrapper .slider-list-contro .slider-next:hover,.v1-bangumi-list-part-wrapper .slider-list-contro .slider-prev:hover,a.bp_box_bot_click,.select_box ul li:hover,.main-nav .nav-wrp .nav-item.active,.main-nav .down-wrp .down-link.upload:hover,.main-nav .down-wrp .down-link.live:hover,.setting-privacy-icon,.config-page .config-content .switch .switch-btn,.emoji-box .emoji-tabs .tab-link.on,.emoji-box .emoji-text:hover,.bb-comment .reply-notice .notice-item{background-color:#446} | |
| .header .num li.m-i .i_num li:hover,.bilibili-suggest .vertical-text:hover{background-color:#446!important} | |
| .home-footer .box-line{background:#446} | |
| .search-b-suggest .search-b-hotlist li,.search-b-history li,.subscribe-head,.main-content-tab,.table-wrapper,.charge-manage .charge-agreement .charge-agreement-cont,.control-inpt-input:hover,.top-search,.manage-tag-wrp .mng-tag-list li,.tag-info-wnd .info,.tag-list li,#page-index .video .go-manage,.fav-covers,.section .more,.v_bgm_list .bangumi-info .info-content #v_bgm_list_data a,.video.list .type,.complete-list .slider-list-content>div .slider-list li a,.btn-sponsor-list-popupbox,.v1-bangumi-info-wrapper .v1-bangumi-info-btn.subscribed .v1-order-btn,.tag-info-pane .btn-right-box,.s_tag .tag-area li,.s_tag .btn-add,.whisper .whisper_right .chat_msg_sender textarea,.whisper .whisper_right .chat_msg_sender #emotion,.whisper .whisper_right .chat_msg_sender .emotion_list,.sponsor-icon,.sponsor-custom input,.bp_box_top,.bp_user_box_top,.bp_user_box_bb,.charge_bot_title a,.num_span,.d-title,.box_bot_title,.datepicker-selector[type="text"],.select_box,.select_box ul,.datepicker,.datepicker-selector.active[type="text"],.datepicker-selector[type="text"]:focus,.datepicker table tr td.day,.main-nav .down-wrp,.main-nav .out-wrp,.main-nav .nav-wrp,.i-pin-tab,.i-pin-empty-set,.i-m-r2,.i-m-upload,#page-favlist .fav-create .fav-covers,#page-qz-index .qz .mini-item,.setting-index-container,.setting-index-module,input[type="text"],.home-footer .tool-row .tool-btn,.i-live .i-live-fo-count,.i-live .i-live-unfo-btn,.config-page .config-content .text-area,.config-page .save-wrap .btn.disabled,.config-page .save-wrap .btn,.config-page .emoji-wrap,.pager ul li a,.pager ul li span,.pager .custom-right input,.so-episode>.list,.paging-box-big .page-jump input,.channel .content .channel-item,.old-ver #search-wrap #header-search #search-block .input-wrap input,.history-list .r-info:hover,.bb-comment .nameplate .nameplate-card .nameplate-text,.bilibili-suggest .hot-wrap_tag .tag,.sort.sp_r,.zt-i-s .autoheight,.zt-t-s .info,.bgm_list .vidbox.zt li,.ban-modal .modal-title .more,.pub-list .info dl,.integral li,.integral,.ban-detail .content-box .bk-text-con,.ban-detail .content-box .link-box,.user .tags,.video-hover-wrap .video-info,.video-hover-wrap .up-info{border-color:#446} | |
| .ul_click{border-color:#446!important} | |
| #page-index .col-2 .section:last-child{border-bottom-color:#446} | |
| .s_tag .btn-view-tag{color:#446} | |
| .v1-bangumi-list-part-wrapper .slider-list-contro .slider-prev-wrp{background:linear-gradient(to right,#446 0,rgba(255,255,255,0) 100%)} | |
| .v1-bangumi-list-part-wrapper .slider-list-contro .slider-next-wrp{background:linear-gradient(to left,#446 0,rgba(255,255,255,0) 100%)} | |
| .pagelistbox .custom-right .custom-right-inner.custompage,.bpoints-wrp{background:rgba(0,0,0,0.65)!important} | |
| .bb-comment .comment-send .textarea-container textarea{background-color:#000!important;color:#99a2aa} | |
| .z_top .search-hover #nav_searchform,.search-b .search-b-content{border-color:#111;background:#111;color:#99a2aa} | |
| .container,.travelBox,.user-info .points-wrp .bar{background-color:#222} | |
| .nav-search #nav_searchform,.nav-search.search-focus #nav_searchform,.message-main-lists .message-main-list .message-main-right .message-content-wrapper,.search-input,.browseMode:hover,.video-manage .search .search-keyword,.control-inpt-input,#input_num{border-color:#222;background-color:#222} | |
| .filter-block .filter-wrap .filter-list>a:hover{background:#356} | |
| .z_top.b-header-blur .uns_box li.u-i a.i-link:hover,.uns_box li.u-i a.i-link:hover{color:#fff} | |
| .header .num li.m-i .i_num li:hover{background:#f25d8e} | |
| #bofqi{margin:0 auto;box-shadow:none} | |
| .viewbox{position:relative;top:5px;padding:5px 12px;border-radius:4px 4px 0 0;background:0 0} | |
| .viewbox .bangumi-buybuybuy,.viewbox .upinfo{margin:3px 0} | |
| .bilibili-comment{padding:0 12px;border-radius:4px;background:0 0} | |
| .alist,.sponsor-list .list-total{background:rgba(17,17,17,0.8)} | |
| .arc-toolbar{margin:0 auto 15px!important;height:79px!important;border-radius:0 0 4px 4px} | |
| .b-icon-anim-fav{margin:0!important} | |
| .charge-entrance .charge-support{background-color:rgba(22,22,22,0.75)} | |
| .player-wrapper{margin:5px 0 0 0;padding:0} | |
| .v-plist .plist-content,.alist .plist-content,.v-plist .alist-content,.alist .alist-content,.footer .boston-postcards{margin:0} | |
| .v-plist .curPage,.alist .curPage,.v-plist .p-close,.alist .p-close,.v-plist a,.alist a{margin:0 5px 3px} | |
| .alist a,.alist .p-close,.v-plist a,.v-plist .p-close{height:14px!important;border-color:#334;background:#334;color:#99a2aa;line-height:14px!important} | |
| .v-plist .curPage,.alist .curPage{height:14px!important;line-height:14px!important} | |
| .v-plist .plist-content,.alist .plist-content,.v-plist .alist-content,.alist .alist-content{height:auto} | |
| .uns_box li.u-i.b-post a.i-link{z-index:7001} | |
| .header,.header .header-layer{height:100px!important;background:0 0!important} | |
| .header .num{position:absolute;top:42px;height:55px;background-color:rgba(0,0,0,0.8)} | |
| .header .num .search{position:absolute!important;top:10px;right:0px;z-index:10000!important} | |
| .header .num .menu-wrapper,.footer .footer-wrp{padding:0} | |
| .header .logo{top:-32px;left:-70px;z-index:10001;transform:scale(0.3)} | |
| .header .h-center .banner-title{top:92px;z-index:200} | |
| .rank-list-container .rank-list li .rank-item:hover,.user-card .face{border:0;box-shadow:0 2px 4px #111} | |
| #i_menu_profile .member-bottom,.a-layer{z-index:400;border:0;background-color:#334} | |
| .header .num li.m-i{height:55px} | |
| .header .num li.m-i .v-num{top:10px} | |
| .widescreen .header .num li.m-i{margin:0} | |
| .widescreen .header .num li.m-i a.i-link em{margin:0 8.5px;height:44px} | |
| .widescreen .header .num li.m-i.m-i-square{margin:0 10px} | |
| .widescreen .header .num li.m-i.m-i-blackroom{margin-left:10px} | |
| .header .num li.m-i a.i-link em{margin:0 3.2px;height:50px} | |
| .header .num li.m-i.m-i-blackroom{margin-left:4px} | |
| .header .num li.m-i.m-i-square,.header .num li.m-i.m-i-live{margin:0 4px;height:55px} | |
| .header .num li.m-i .i_num{top:48px;background-color:rgba(0,0,0,0.8)} | |
| .viewbox .info{padding:0} | |
| .viewbox .info .v-title-info .v-title-line,.viewbox .info .v-title-info .v-title-line.icon_btn_coin{padding-right:0} | |
| .viewbox .info .tminfo,.viewbox .bangumi-buybuybuy .total{margin-top:4px;margin-bottom:4px} | |
| .widescreen .v_large{width:auto;max-width:1160px} | |
| .v_large{width:auto;max-width:980px} | |
| .message-title,.z_top,#h-avatar,#bofqi.float::before,.index-nav .n-i.gotop .btn_gotop,.whisper,#page-index .follow .list .item .avatar,#page-index .fans .list .item .avatar,#page-index .member-level .lvl-desc,.main_body .pick_up .pick_list .pick_block .pic,.i-pin-c,.config-page,.history-list .r-info:hover,.a-layer .content .user-face,.elec .elec-trigger,.qz .qz-cover,#miniPlayerSwitch,.video-hover-wrap{box-shadow:1px 1px 4px #000} | |
| .message-source-logo{border-radius:15px} | |
| .section{padding:12px;border-radius:4px} | |
| .stm-ly .ct .stm-filter li.on{border-bottom:3px solid #446} | |
| .stm-ly .stm-lst li{margin-bottom:10px;border-radius:4px;box-shadow:1px 1px 4px #000} | |
| #page-index .col-1{padding:0;width:calc(100% - 370px)} | |
| #page-index .coin .content,#page-index .video .content{margin:0;width:auto} | |
| .small-item{padding:8px} | |
| #i_menu_profile .member-bottom a.logout{margin:0 0 6px;padding:0 8px;border-radius:4px;background:#b21;box-shadow:1px 1px 3px #222;color:#ddd;font-weight:bold;line-height:26px} | |
| .elec-trigger,.sxtjDiv,.sxtj:hover .pxDiv,.large-item .cover img,.n-v2 .n-inner,.elec-avatar,.idc-avatar,.bubble{box-shadow:1px 1px 4px #222} | |
| .box-title{text-shadow:none} | |
| .video-manage .search .search-keyword{padding:0 0 0 8px} | |
| .control-inpt-input{box-shadow:inset 1px 1px 3px #111} | |
| .recently-list .recently-list-detail{width:auto} | |
| .recently-list .info-r .r{width:calc(100% - 170px)} | |
| .recently-list .recently-list-detail{border-radius:4px;box-shadow:1px 1px 3px #222} | |
| .bgm-calendar .b-tab ul li.on{border-radius:4px 4px 0 0} | |
| .viewbox .bangumi-buybuybuy{width:auto} | |
| .viewbox .bangumi-buybuybuy .buy-wrapper .buy{height:30px;line-height:30px;width:120px} | |
| .bpoints-win{padding-left:44px} | |
| .bpoints-sb.to-bangumi{background:#334;padding:10px;width:24px;height:auto;border-radius:6px 0 0 6px} | |
| .bpoints-sb.to-bangumi:after{content:"我要承包";font-size:22px;line-height:16px} | |
| .bpoints-sb.to-bangumi:hover{background:#446} | |
| .bpoints-win iframe.mask.wrp{left:44px} | |
| .e-item-new{border-radius:4px} | |
| .e-item-new:after{color:#fff;content:"New";padding:3.5px} | |
| .d-close{background:#900;border-radius:10px;color:#ccc;font-size:16px;font-weight:bold;text-indent:3.5px;height:20px;width:20px} | |
| .d-close:hover{background:#b00;color:#fff} | |
| div[style="position:fixed; z-index:10035; top:50%; margin-top:-245px; left:50%; width:540px; margin-left:-320px; padding:30px 50px; background-color:rgb(255,255,255); border-radius:6px; box-shadow:1px 1px 40px 0px rgba(0,0,0,0.6); display:block;"]{background:#222!important} | |
| .gray-panel-header,.gray-panel-content{color:#99a2aa!important} | |
| .col-full{padding:20px 0} | |
| .sponsor-tosponsor-btn{background:#8f741c;box-shadow:0 3px 4px #634d1c} | |
| .sponsor-tosponsor-btn:hover{background:#bf9d1c} | |
| .t-sponsor-btn{background:#8f741c} | |
| .t-sponsor-btn:hover{background:#bf9d1c} | |
| /*HTML5 Player*/ | |
| .bgray-line,.bilibili-player .bilibili-player-promote-wrap,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-panel-wrp .bilibili-player-video-float-panel .bilibili-player-video-float-split,.bilibili-player-advanced-danmaku-control-container.mask::after,.bilibili-player-promote-wrap{display:none!important} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite .bilibili-player-danmaku-setting-lite-row .bilibili-player-danmaku-setting-lite-title,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite .bilibili-player-danmaku-setting-lite-row .bpui-checkbox-text,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-quality .bpui-selectmenu .bpui-selectmenu-list-row,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-watching,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row .bilibili-player-block-label.label-black,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-title,.bilibili-player-context-menu-container>ul>li a,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .day-span.day-enable,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button .bpui-button-text,.m-layer.m-coin .coin-panel .coin-main .coin-main-title,.m_layer.m-coin .coin-panel .coin-main .coin-main-title,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-panel-scrollbar .bilibili-player-recommend-video .bilibili-player-recommend-right .bilibili-player-recommend-title,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-lastplay,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-caption span.danmaku-info-danmaku,.bilibili-player .bilibili-player-panel-area .bilibili-player-panel-area-title,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-header{color:#99a2aa} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled .bilibili-player-iconfont,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled .bpui-button-text,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled.bpui-state-hover .bilibili-player-iconfont,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled.bpui-state-hover .bpui-button-text,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled.bpui-state-hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-block span.danmaku-info-danmaku,.bilibili-player .bilibili-player-block-filter-function .bilibili-player-block-filter-label,.bilibili-player .bilibili-player-block-filter-type .bilibili-player-block-filter-label,.bilibili-player .bilibili-player-panel-title,.bilibili-player-color-picker-container .bilibili-player-color-picker-input-group .bilibili-player-color-picker-color-code,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .bilibili-player-danmaku-date-picker-week .day-span,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span,.bilibili-player-video-message-container .bilibili-player-video-message-btn,.bpui-selectmenu-list-row,.bpui-tab-list-type-button .bpui-tab-list-row,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-block.bpui-selected span,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-protect span.danmaku-info-danmaku,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-protect.bpui-selected span,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-special span.danmaku-info-danmaku,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-special.bpui-selected span,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row .bilibili-player-block-type-keyword:hover,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row .bilibili-player-block-type-user:hover{color:#666} | |
| .bilibili-player .mCSB_scrollTools .mCSB_draggerRail,.bpui-selectmenu-list-row:hover,.bpui-slider-tracker{background-color:#444} | |
| .bgray-btn,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-volume .bilibili-player-video-volumebar-wrp,.bilibili-player .bilibili-player-area .bilibili-player-video-control,.bilibili-player .bilibili-player-auxiliary-area,.bilibili-player .bilibili-player-block-filter-function .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player .bilibili-player-block-filter-type .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player-context-menu-container,.bilibili-player-danmaku-date-picker-container,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span .selection-icon i,.bilibili-player-mode-selection-container,.bilibili-player-video-sendbar,.bpui-selectmenu-list,.m-layer.m-button,.m_layer.m-button{border-color:#171717;background-color:#171717} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen .bilibili-player-video-web-fullscreen,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen .bilibili-player-video-web-fullscreen:hover,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-quality .bpui-selectmenu .bpui-selectmenu-list-row:hover,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn:hover,.bilibili-player .bilibili-player-area .bilibili-player-video-message,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-panel,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-block,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-setting,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-adv-danmaku,.bilibili-player-color-picker-container,.bilibili-player-video-sendbar .bilibili-player-video-btn:hover,.bpui-selectmenu-arrow,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-recommend,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap{background-color:#171717} | |
| .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-string,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-string-short,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row.bilibili-player-border,.bilibili-player-color-picker-container .bilibili-player-color-picker-input-group .bilibili-player-color-picker-color-code,.bilibili-player-video-message-container .bilibili-player-video-message-btn,.bilibili-player-video-message-container .bilibili-player-video-message-panel .bilibili-player-video-message-ul li.current,.bpui-spinner{background:#070707} | |
| .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row.active-1 .bilibili-player-block-type-keyword, .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row.active-2 .bilibili-player-block-type-user{background:#070707;border:0;color:#99a2aa} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-triangle{background-color:#171717;border-color:#334 transparent transparent #334!important} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite .bilibili-player-danmaku-setting-lite-type-list .bilibili-player-block-filter-type:hover .bilibili-player-iconfont,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen .bilibili-player-video-web-fullscreen i,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen.video-state-fullscreen-off>i,.bilibili-player .bilibili-player-block-filter-function:hover,.bilibili-player .bilibili-player-block-filter-type:hover,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span .selection-icon:hover,.bilibili-player-video-sendbar .bilibili-player-video-btn,.bpui-button-text-only .bpui-icon-checkbox.icon-12checkbox{color:#334} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-progress-buffer-range,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row:hover>span,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line:hover,.bilibili-player-context-menu-container>ul>li a.hover,.bilibili-player-context-menu-container>ul>li a:hover,.bilibili-player-context-menu-container>ul>li.context-menu-descipline a,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .day-span.day-enable.active,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .day-span.day-enable:hover,.bpui-selectmenu-list-row:hover,.bpui-slider-tracker,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-lastplay,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-protect span,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row-caption span{background-color:#334} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-progress-detail-time{background-color:#334;color:#999} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row .bilibili-player-block-list-spread-btn,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row-inline .bpui-selectmenu:hover,.bpui-selectmenu,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap,.bilibili-player .bilibili-player-area-separator,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-history,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button{border-color:#334} | |
| .bpui-button-text-only:hover .bpui-icon-checkbox.icon-12checkbox{box-shadow:inset 0 0 1px 1px #334} | |
| .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row-inline .bpui-selectmenu .bpui-selectmenu-list,.bpui-selectmenu.selectmenu-mode-absolute .bpui-selectmenu-list{border:1px solid #334;border-color:transparent #334 #334 #334} | |
| .st0{fill:#334!important} | |
| .bilibili-player-iconfont-checkbox.icon-12checkbox,.bilibili-player-iconfont.icon-12checkbox,.bpui-icon-checkbox.icon-12checkbox{border-color:#446;background-color:#446} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite .bilibili-player-danmaku-setting-lite-type-list .bilibili-player-iconfont,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen .bilibili-player-video-web-fullscreen:hover i,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-fullscreen.video-state-fullscreen-off>i:hover,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn:hover .bilibili-player-iconfont,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button .bilibili-player-iconfont,.bilibili-player .bilibili-player-block-filter-function,.bilibili-player .bilibili-player-block-filter-type,.bilibili-player .bilibili-player-panel-title .bilibili-player-panel-close,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span .selection-icon,.bilibili-player-video-sendbar .bilibili-player-video-btn:hover .bilibili-player-iconfont,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-watching .bilibili-player-watching-number,.advanced-danmaku-group .adv-danmaku-color i,.bilibili-player .bilibili-player-block-filter-function:hover .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player .bilibili-player-block-filter-type:hover .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player .bilibili-player-panel-title .bilibili-player-panel-back:hover{color:#446} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-block-btn,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-report-btn,.bilibili-player .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover,.bilibili-player .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar:hover,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .day-span.day-enable.day-current,.bpui-slider-tracker .bpui-slider-progress,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list.active:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list.disabled:hover,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line.block-state-selected,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line:hover{background-color:#446} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-hover,.advanced-danmaku-group .adv-danmaku-text,.advanced-danmaku-group .adv-danmaku-start-time,.bilibili-player-adv-danmaku .bilibili-player-color-picker-container,.bilibili-player-color-picker-container,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-mylist[data-active="false"],.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-mylist{border-color:#446} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-history:hover{border-color:#446;color:#99a2aa} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row.bpui-selected>span,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row.bpui-selected,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row.bpui-selecting>span{background-color:#446;color:#298} | |
| .bilibili-player .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.bilibili-player .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.bpui-slider-tracker .bpui-slider-handle{background-color:#669;box-shadow:none!important} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-disabled,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-function,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info,.bilibili-player-video-sendbar .bilibili-player-video-inputbar.focus,.bilibili-player-video-sendbar .bilibili-player-video-inputbar.unlogin,.bpui-button.bpui-button-type-small,.bpui-button.bpui-button-type-small:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-btn:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.active,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.active.bpui-state-hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.bpui-state-hover{background:0} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-quality .bpui-selectmenu .bpui-selectmenu-list,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-string,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-string-short,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row.bilibili-player-border,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel,.bilibili-player .bilibili-player-panel-title,.bilibili-player-color-picker-container .bilibili-player-color-picker-input-group .bilibili-player-color-picker-color-code,.bilibili-player-color-picker-container .bilibili-player-color-picker-input-group .bilibili-player-color-picker-color-current,.bilibili-player-color-picker-container .bilibili-player-color-picker-panel .color-span,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-body .day-span,.bilibili-player-danmaku-date-picker-container .bilibili-player-danmaku-date-picker-header,.bilibili-player-video-sendbar .bilibili-player-video-inputbar,.bpui-spinner,.bpui-spinner-button.bpui-spinner-down,.bpui-spinner-button.bpui-spinner-up,.m-layer.m-coin .coin-panel .coin-main,.m_layer.m-coin .coin-panel .coin-main,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-panel-wrp .bilibili-player-video-float-panel,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-panel-wrp .bilibili-player-video-float-panel .bilibili-player-video-float-quality-lists,.advanced-danmaku-group .adv-danmaku-color,.bilibili-player .bilibili-player-panel-area{border:0} | |
| .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row-inline .bpui-selectmenu .bpui-selectmenu-list,.bpui-selectmenu-list,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row-inline .bpui-selectmenu:hover,.bilibili-player,.bilibili-player-context-menu-container,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.active,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap,.bpui-selectmenu-on{box-shadow:none} | |
| .bgray-btn.active,.bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-danmaku .bilibili-player-danmaku-setting-lite-panel .bilibili-player-danmaku-setting-lite .bilibili-player-danmaku-setting-lite-type-list .bilibili-player-block-filter-type.disabled .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row span.danmaku-info-block,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line-state,.bilibili-player .bilibili-player-block-filter-function.disabled .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player .bilibili-player-block-filter-type.disabled .bilibili-player-block-filter-image .bilibili-player-block-filter-disabled,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span .selection-icon:hover ~ .selection-name,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span.active .selection-icon i,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span.active .selection-name,.bpui-button-text-only.bpui-state-active .bpui-icon-checkbox.icon-12select,.bpui-button-text-only.bpui-state-indeterminate .bpui-icon-checkbox.icon-12selected2,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button .bilibili-player-iconfont,.bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-lastplay-time,.bilibili-player-video-sendbar .bilibili-player-video-inputbar .bilibili-player-video-danmaku-wrap a,.bpui-button.bpui-button-text-only{color:#276} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-block-btn:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-report-btn:hover,.bpui-button,.bpui-button-text-only.bpui-state-active .bpui-button-text .bpui-flex-button,.bpui-button.bpui-button-theme-pink,.bpui-button.bpui-button-theme-red,.m-layer.m-coin .coin-panel .coin-nav .coin-nav-single.active,.m_layer.m-coin .coin-panel .coin-nav .coin-nav-single.active{border-color:#276;background:#276} | |
| .bpui-button-text-only.bpui-state-active .bpui-button-text .bpui-flex-wrap{border-color:#276} | |
| .bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-tabpanel-row .bilibili-player-block-list-spread-btn:hover,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span.active[data-type="fontsize"] .selection-name,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span.active[data-type="pool"] .selection-name,.bpui-tab-list-type-button .bpui-tab-list-row.bpui-state-selected,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.active .bpui-button-text{border-color:#276;color:#276} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-progress-detail-sign-down{border-color:#276 transparent transparent} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-progress-detail-sign-up{border-color:transparent transparent #276} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-quality .bpui-selectmenu .bpui-selectmenu-list-row:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku .bilibili-player-danmaku-filter .bpui-button.bpui-state-hover .bpui-button-text,.bilibili-player .bilibili-player-panel-title .bilibili-player-panel-close:hover,.bilibili-player-mode-selection-container .bilibili-player-mode-selection-panel .bilibili-player-mode-selection-row .row-selection .selection-span .selection-name:hover,.bilibili-player-video-message-container .bilibili-player-video-message-btn:hover,.bpui-tab-list-type-button .bpui-tab-list-row:hover,.m-layer.m-coin .coin-panel .coin-nav .coin-nav-single:hover,.m-layer.m-coin .coin-panel .coin-main .coin-main-title .coin-main-number,.m_layer.m-coin .coin-panel .coin-main .coin-main-title .coin-main-number,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-panel-scrollbar .bilibili-player-recommend-video .bilibili-player-recommend-right .bilibili-player-recommend-title:hover,.bilibili-player .bilibili-player-block .bilibili-player-block-tabpanel .bilibili-player-block-list-wrap .bilibili-player-block-list .bilibili-player-block-line-delete:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-btn:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu:hover,.bilibili-player-video-sendbar .bilibili-player-video-inputbar .bilibili-player-video-hint a:hover,.bilibili-player-video-sendbar .bilibili-player-video-inputbar .bilibili-player-video-danmaku-wrap a:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.bpui-state-hover .bpui-button-text,.bpui-button.bpui-button-text-only.bpui-state-hover, .bpui-button.bpui-button-text-only:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row:hover > span,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-filter .bpui-button.active.bpui-state-hover .bpui-button-text{color:#298} | |
| .bpui-button:hover,.bpui-button.bpui-button-theme-pink:hover,.bpui-button.bpui-button-theme-red:hover,.bilibili-player .bilibili-player-area .list-hint-red,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-info .bilibili-player-setting-menu-wrap .bilibili-player-setting-menu-list .active-point,.bilibili-player-video-message-container .bilibili-player-video-message-panel .bilibili-player-video-message-setting .bilibili-player-video-message-close:hover{border-color:#298;background:#298} | |
| .m_layer.m-coin .coin-panel .coin-nav .coin-nav-single:hover{color:#298;background:#298} | |
| .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-history:hover, .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-mylist:hover, .bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-btn-mylist[data-active="false"]:hover,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-report-btn,.bilibili-player .bilibili-player-auxiliary-area .bilibili-player-danmaku-wrap .bilibili-player-danmaku-list .danmaku-info-row .danmaku-info-block-btn{color:#298;border-color:#298} | |
| .m-layer.m-coin .coin-panel .coin-nav .coin-nav-single:hover,.m-layer.m-coin .coin-panel .coin-nav .coin-nav-single.active:hover,.m_layer.m-coin .coin-panel .coin-nav .coin-nav-single.active:hover{border-color:#298} | |
| .bilibili-player .bilibili-player-area .list-hint-red .list-hint-triangle{border-color:#298 transparent transparent} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-control .bilibili-player-video-btn.bilibili-player-video-btn-quality .bpui-selectmenu .bpui-selectmenu-list-row[data-selected]{background:#171717;color:#276} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-wrap.bilibili-player-video-wrap-plus{height:100%!important} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-wrap{height:100%!important;width:100%!important} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-control{display:block;opacity:0!important;transition:0.2s;position:absolute;bottom:0px} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-control:hover, | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-sendbar:hover{opacity:0.85!important} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-sendbar{display:block;opacity:0!important;transition:0.2s;position:absolute;top:0px} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-sendbar .bilibili-player-mode-selection-container{height:120px;border-radius:5px;top:100%} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-sendbar .bilibili-player-color-picker-container{height:208px;border-radius:5px;top:100%} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-info-container{top:40px} | |
| #bilibiliPlayer.mode-webfullscreen .bilibili-player-video-float-lastplay{bottom:30px} | |
| .bilibili-player .bilibili-player-area .bilibili-player-video-wrap .bilibili-player-video-float-panel-wrp .bilibili-player-video-float-panel .bilibili-player-video-float-type{border-radius:2px} | |
| .bilibili-player-advanced-danmaku-control-container.mask::after{background-color:rgba(0,0,0,.4)} | |
| } | |
| /*直播*/ | |
| @-moz-document regexp("http(s)?://live\.bilibili\.com.*") { | |
| html,body,#message_center{background-color:#222222;background-image:url(http://ww1.sinaimg.cn/large/73508f0fgw1f6b5v9qeuij21hc0xc44s.jpg);background-position:center center;background-repeat:no-repeat;background-attachment:fixed;color:#aaa} | |
| a{color:#99b} | |
| a:visited{color:#669} | |
| .room-bk .bk-img, | |
| .main-wrap{background-image:url(http://ww1.sinaimg.cn/large/73508f0fgw1f6b5v9qeuij21hc0xc44s.jpg)!important} | |
| div,.darkgray[_v-769e1d50]{color:#ccc} | |
| .footer-section[_v-6bea6b7a]{background:#334} | |
| .treasure,.super-gift-ctnr,.rank-list-ctnr,.live-footer,.chat-list-ctnr .gift-msg-1000,.chat-list-ctnr .chat-msg-list .chat-msg .medal-icon,.chat-list-ctnr .chat-msg-list .system-msg .medal-icon,.chat-msg .user-level-icon,.system-msg .user-level-icon,.live-title-icon,.vip-icon,.doz-z.delay,.doz-z,.gift-msg,.live-ad-full,#profile-ctrl,.room-left-sidebar hr,.announcement-container.summer-sys,.announcement-container,.bulletins .block-ctnr .block.wide,.chat-list-ctnr .chat-msg-list .system-msg,.bk-changers,.check-my-title,.live-haruna-ctnr{display:none!important} | |
| input,textarea,.main-section.recommend-anchor .news-list-ctnr .topNews,.main-section.recommend-anchor .section-title-ctnr .section-title,.area-section .title-link[data-v-7927cc66],.user-panel-ctnr .user-panel,.user-level-detail[_v-769e1d50],.value-color[_v-029f7138],.top3-panel,.bili-link,.top3-panel .activity-rank .tab-content .list .item .uname,.recommend-videos .video-title,.recommend-videos .icon-span,.livehime-section .livehime-desc[_v-0bc6c3bf],.attention-content .attention-item .attention-user-info .attention-user-desc[_v-db119114],.list-item span.name[_v-ed90042e],.value-color[data-v-55f3cd79],.page li a,.page-infinity,.live-dropdown,.live-dropdown .dropdown-items li,.lf-item p,.room-list .item .listVtitle,.body-container .container-main .buttonTab-wrap .item,.body-container .room-box .buttonTab .searchButton,.live-info-manage-dialog .dialog-main .container .manage-list .tb-manage th{color:#aaa} | |
| .main-section.recommend-anchor .news-list-ctnr .news-title,#room-my-attention .my-attention-body .user-name-text,.attention-content .attention-item .attention-user-info .attention-user-name[_v-db119114],.title[_v-ed90042e],.section-title,.main .user-name,#personTask .achieve-normal-list .task-detail .title,.task-info .task-title,.daliy-tasks-section .task-1 .cur-status .status-icon.active,.lf-item:hover p,.area-section .ad-title{color:#ccc} | |
| .live-top-nav-ctnr .live-action-btn,.head-info-panel .room-title-row .room-title,.sidebar-left .menu a:hover,.sidebar-left .menu span:hover,#personTask .black{color:#fff} | |
| .main .dark-text,.my-beat-section .section-title em,.gift-panel.main-section .gift-info-panel .info-ctnr .description, .gift-panel.main-section .gift-info-panel .info-ctnr .effects{color:#999} | |
| .chat-list-ctnr .chat-msg-list .chat-msg,.calendar-checkin .calendar-wrapper .checkin-rewards .future-rewards{color:#666} | |
| .live-navbar-top,.user-panel-ctnr .user-panel,.area-nav-panel,.user-panel-ctnr .user-panel .header-node .level-progress,.user-level-detail[_v-769e1d50],.live-sidebar .live-sidebar-item .live-sidebar-content .live-sidebar-text[_v-695810ff],.sidebar-left-open .room-left-sidebar,.room-body .main-section,.room-left-sidebar,.head-info-panel,.chat-ctrl-panel,.live-hover-panel,body.top-nav-light-theme .live-top-hover-panel,.live-top-nav-ctnr .live-top-hover-panel,.live-popup-panel .panel-content,body.top-nav-light-theme .user-level .level-hint-panel,.live-top-nav-ctnr .user-level .level-hint-panel,.recommend-videos .video-block,.recommend-videos .video-props,.main-section.recommend-anchor .news-list-ctnr .news-list .news-col2,.download-panel,.primary-panel[_v-9b3d329c],.attention-header .attention-switch-bar[_v-db119114],.calendar-checkin,.main,.sidebar-left .menu,.sidebar-left .sub-menu li.active,.sidebar-left .sub-menu>li,.body-container .result-box .list-content .anchor-list .item{background-color:#334;border-color:#334} | |
| #personTask .task-section .task-tab-container .task-tab.active,#personTask .task-section .task-tab-container .task-tab,.live-box,.chat-ctrl-panel .ctrl-panel,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member,.user-panel .user-live-ctnr[data-v-7756e51e],.gift-panel.main-section .gift-info-panel,.live-info-manage-dialog .dialog-main .container,.live-info-manage-dialog .cover-manage .cover-list-section,#room-my-attention .attention-toggle-btn .switch-icon{background-color:#334} | |
| body.top-nav-light-theme,.live-top-nav-ctnr{background-color:#334!important} | |
| .user-panel-ctnr .user-panel .content-ctnr,.live-hover-panel::before,.live-popup-panel input{border-color:#334} | |
| .user-level-detail[_v-769e1d50]::after,.primary-panel[_v-9b3d329c]::before,body.top-nav-light-theme .user-level .level-hint-panel::after,.live-top-nav-ctnr .user-level .level-hint-panel::after,.calendar-checkin::after{border-left-color:#334} | |
| #personTask .task-section .task-tab-container .task-tab.active{border-bottom-color:#334} | |
| .gift-panel.main-section .gift-info-panel::before{border-top-color:#334} | |
| .live-info-manage-dialog,.live-info-manage-dialog.mult-tab{background-color:#11111e} | |
| .live-info-manage-dialog .dialog-main .tab .tab-list .item.on{background-color:#334;color:#aaa} | |
| .top3-panel .activity-rank .tab-list.twoTab .item{color:#446} | |
| .anchor-card .hover-panel .bg-merge[data-v-7195851d],.user-panel .user-live-ctnr[_v-5f7dcf34],.user-panel-ctnr .user-panel .content-ctnr .ctrl-btn:hover,.user-level-detail .detail-link[_v-769e1d50]:hover,.room-enter-btn:active,.room-enter-btn:hover,.room-live-guide:active,.room-live-guide:hover,#room-my-attention .my-attention-body .list-item:hover,.head-info-panel .attention-btn-ctrl .right-part,.live-top-nav-ctnr .nav-link-item:hover,.ps-container:hover>.ps-scrollbar-y-rail:hover,body.top-nav-light-theme .user-level .more-info .detail-link:hover,.live-top-nav-ctnr .user-level .more-info .detail-link:hover,.main-section.recommend-anchor .news-list-ctnr .news-list .news-col2:hover,.item-ctnr .divider-v,.attention-content .attention-item[_v-db119114]:hover,.attention-footer[_v-db119114]:hover,.task-footer[_v-50998791]:hover,.area-nav-panel .area-list-item:hover,.area-nav-panel .static-link:hover,.sidebar-left .menu a:hover,.sidebar-left .menu span:hover,#personTask .achieve-normal-list .task-action .get-reward.disable,.page li a,.page-infinity,.live-dropdown,.live-dropdown.active,.live-dropdown:hover,.live-lr .banner a:hover,.chat-ctrl-panel .danmu-config-panel .shieldlist-set .shield-section-delete:hover,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile:hover,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member:hover,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile.cur,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member.cur,.user-login-btns-ctrl .top-nav-login-btn:hover{background-color:#446} | |
| .user-panel-ctnr .user-panel hr,.search-bar-ctnr .search-bar,.live-tag,.live-popup-panel .close-btn.right-top,.danmu-config-panel .close-btn.right-top,.live-close-btn.right-top,.top3-panel .activity-rank .tab-list.twoTab .item,.top3-panel .cur-anchor-info,hr,.attention-content .attention-item .attention-info[_v-db119114],.primary-panel .panel-footer-content[_v-9b3d329c],.calendar-checkin .calendar-wrapper .calendar,.area-nav-panel hr,.sidebar-left .menu>li,#personTask .page-list li,#personTask .task-section,#personTask .task-section .task-tab-container .task-tab,.main .user-role-label,.history-section .user-item .user-img .attention-btn,.my-attention-section .user-item .user-img .attention-btn,.page li a,.page-infinity,.live-lf .lf-list,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member,.live-info-manage-dialog .dialog-main .container .manage-list,.live-input{border-color:#446} | |
| .room-enter-btn,.user-panel-ctnr .user-panel .content-ctnr .ctrl-btn.colored,.user-level-detail .detail-link[_v-769e1d50],.room-left-sidebar .section-title,#room-my-attention .read-more,.live-btn.ghost,.room-body .main-section .section-title,.gift-panel.main-section .control-panel .ctrl-item .link,.chat-list-ctnr .chat-msg-list .chat-msg .user-name.color,.chat-list-ctnr .chat-msg-list .system-msg .user-name.color,.attention-footer[_v-db119114],.task-footer[_v-50998791],.list-item span.gift-name[_v-ed90042e],.main .modify-user-name a,.main .user-level span,.main .blue-text,.sidebar-left .menu li.active>a,#personTask .task-intro a,.history-section .user-item .user-title a,.my-attention-section .user-item .user-title a,.room-closed-wrap .open-live-room,.live-box .title,.chat-ctrl-panel .danmu-config-panel .panel-title,.chat-ctrl-panel .danmu-config-panel .shieldlist-set .shield-section-delete,.live-popup-panel .popup-title,.room-management-ctnr .live-notice a,.live-info-manage-dialog .dialog-main .container .live-manage .cover-upload-guide a,.live-info-manage-dialog .cover-manage .desc-wrap a,.danmu-sender .danmu-mask .btn-login{color:#276} | |
| .award-area-tag[data-v-2fa3dfa4],.user-panel-ctnr .user-panel .header-node,.room-left-sidebar .capsule-toy .item .progress-wrap .progress-bar,.room-left-sidebar .section-title::before,.room-body .main-section .section-title::before,.live-btn.default,.head-info-panel .attention-btn-ctrl .left-part,.live-top-nav-ctnr .live-action-btn,.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y,body.top-nav-light-theme #top-nav-logout-link,.live-top-nav-ctnr #top-nav-logout-link,.user-level .level-progress .progress-bar,.main-section.recommend-anchor .anchor-list .anchor-card .anchor-info .bg-merge,.main-section.recommend-anchor .news-list-ctnr .news-list .news-col1,.area-section .card-ctnr .dynamic-count[data-v-7927cc66],.primary-panel .panel-header-content[_v-9b3d329c],.attention-header .attention-switch-close .attention-switch-control[_v-db119114],.calendar-checkin .title,.tab-header span.active[_v-352fb3f6],.user-level-progress-bar .progress-bar,.sidebar-left .menu span.task-num,#personTask .task-section .task-search .btn-task-search,.daliy-tasks-section .progress-bar-wrap .progress-data,.live-btn.default.dark-blue,.live-haruna-section .section-store .tab-header li.active,.live-haruna-section .section-store .tab-body .item .locked-icon,.chat-ctrl-panel .danmu-config-panel .config-span-scroll-bar .scroll-bar-w,.chat-ctrl-panel .danmu-config-panel .live-config-confirm,.chat-ctrl-panel .danmu-config-panel .shield-ul-btn i,.live-popup-panel .close-btn.right-top,.danmu-config-panel .close-btn.right-top,.live-close-btn.right-top,.award-area-tag[_v-2e814bc1],.live-popup-panel .popup-button.confirm,#room-my-attention .attention-toggle-btn{background-color:#276} | |
| .live-sidebar .live-sidebar-item[data-v-3051e870],#personTask .page-list li.active,.page li.current,.limited-gifts .gift-num{background-color:#276;border-color:#276} | |
| #room-my-attention .read-more,.live-btn.ghost,.user-level .level-progress,.section-title,.daliy-tasks-section .task-1 .cur-status .status-icon.active{border-color:#276} | |
| .area-section .card-ctnr .dynamic-count[data-v-7927cc66]::before{border-color:#276 #276 transparent transparent} | |
| .tab-header span.active[_v-352fb3f6]::after,.live-haruna-section .section-store .tab-header li.active::after,.live-haruna-section .section-store .tab-body .item .locked-icon::after{border-color:#276 transparent transparent transparent} | |
| .user-panel .user-live-ctnr:hover .room-enter-btn[_v-5f7dcf34]:hover,.main-section.recommend-anchor .news-list-ctnr .topNews:hover,.main-section.recommend-anchor .news-list-ctnr .news-title:hover,.main-section.recommend-anchor .section-title-ctnr .section-title:hover,.area-section .title-link[data-v-7927cc66]:hover,.live-navbar-top .nav-item:hover,.dynamic-btn-ctnr .more-btn:hover,.dynamic-btn-ctnr .refresh-btn:hover,.user-panel-ctnr .user-panel .content-ctnr .ctrl-btn:hover,.room-live-guide:active,.room-live-guide:hover,.live-sidebar .live-sidebar-item .live-sidebar-content .live-sidebar-text[data-v-3051e870],.search-bar-ctnr .search-bar .search-btn:hover,.main-section.recommend-anchor .news-list-ctnr .more-btn:hover,.room-left-sidebar .help-center .help-link:hover,.bili-link:hover,.chat-list-ctnr .chat-msg-list .chat-msg .user-name:hover,.chat-list-ctnr .chat-msg-list .system-msg .user-name:hover,.chat-list-ctnr .chat-msg-list .chat-msg .msg-content:hover,.chat-list-ctnr .chat-msg-list .system-msg .msg-content:hover,.head-info-panel .room-title-row .report-link:hover,.head-info-panel .room-title-row .share-link:hover,.head-info-panel .room-title-row .room-manage:hover,body.top-nav-light-theme .nav-link-item:hover,.live-top-nav-ctnr .nav-link-item:hover,body.top-nav-light-theme .link-color:hover,.live-top-nav-ctnr .link-color:hover,body.top-nav-light-theme .download-link:hover,.live-top-nav-ctnr .download-link:hover,body.top-nav-light-theme .live-top-nav-panel .nav-item:hover,.live-top-nav-ctnr .live-top-nav-panel .nav-item:hover,.room-left-sidebar .small-wrap .small-btn:hover,body.top-nav-light-theme .user-level .more-info .detail-link:hover,.live-top-nav-ctnr .user-level .more-info .detail-link:hover,.top3-panel .activity-rank .tab-list.twoTab .item.on,.recommend-videos .video-block:hover .video-title,.recommend-section .more-link:hover,.head-info-panel .anchor-info-panel .current-rank:hover,.livehime-section .livehime-desc[_v-0bc6c3bf]:hover,.room-enter-btn:hover span,#personTask .page-list li:hover,.sidebar-left .menu li.item-2.active>span,.sidebar-left .menu li.item-2-1.active>a,.live-dropdown.active,.live-dropdown:hover,.live-haruna-section .section-stage .character-preview-btn .name,.sidebar-left .menu li.item-2-2.active>a,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile.cur ~ .shield-type-p,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member.cur ~ .shield-type-p,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile:hover ~ .shield-type-p,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member:hover ~ .shield-type-p,.body-container .result-box .title .read-more:hover,.livehime-section .livehime-desc[_v-a14cfc50]:hover,.livehime-section .live-hime-link .live-hime-item a:hover span[_v-a14cfc50],.body-container .room-box .buttonTab .searchButton.hover, .body-container .room-box .buttonTab .searchButton:hover,body.top-nav-light-theme .live-top-hover-panel .link-item:hover,.live-top-nav-ctnr .live-top-hover-panel .link-item:hover,.room-enter-btn:hover i,.live-info-manage-dialog .dialog-main .container .required-dot,body.top-nav-light-theme .top-nav-login-btn:hover, .live-top-nav-ctnr .top-nav-login-btn:hover,.bilibili-live-player .blpui-btn.text-btn.active, .bilibili-live-player .blpui-btn.text-btn:hover{color:#298!important} | |
| .live-sidebar .live-sidebar-item .live-sidebar-dot[data-v-3051e870],.sign-and-mission .has-new,#room-my-attention .read-more:hover,.live-btn.ghost:hover,.live-btn.ghost.active,.head-info-panel .attention-btn-ctrl .left-part:hover,.gift-panel.main-section .control-panel .items-package .has-new,.live-btn.default:hover,.room-left-sidebar .small-wrap .small-btn.attention .has-new,.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y,.live-switcher.on,.main-section.recommend-anchor .anchor-list .anchor-card .area-tag,.main-section.recommend-anchor .news-list-ctnr .news-list .news-col1:hover,.user-panel-ctnr .user-avatar.active::before,.attention-header .attention-switch-control[_v-db119114],.history-section .user-item .user-img .attention-btn:hover,.my-attention-section .user-item .user-img .attention-btn:hover,.page li a:hover,.page-infinity:hover,.live-btn.default.dark-blue:hover,.live-dropdown .dropdown-items li:hover,.lf-item i::before,.chat-ctrl-panel .danmu-config-panel .live-config-confirm:hover,.chat-ctrl-panel .danmu-config-panel .live-config-checkbox.active,.room-list .item .listVimg .live-mask-play .play-dot,.live-top-nav-ctnr .user-avatar .user-avatar-image.active::before,.live-popup-panel .popup-button.confirm:hover,.room-left-sidebar .small-wrap .small-btn.sign .has-new,.blpui-slider-container.vertical-slider .blpui-slider-span.slider-span-active::after{background-color:#298} | |
| .progress{background-color:#298!important} | |
| .search-bar-ctnr .search-bar-focus,.live-popup-panel input:focus,.live-switcher.on::before,.top3-panel .activity-rank .tab-list.twoTab .item.on,#personTask .page-list li:hover,.history-section .user-item .user-img .attention-btn:hover,.my-attention-section .user-item .user-img .attention-btn:hover,.page li a:hover,.page-infinity:hover,.chat-ctrl-panel .danmu-config-panel .live-input-bottom:focus,.chat-ctrl-panel .danmu-config-panel .live-input-bottom:active,.chat-ctrl-panel .danmu-config-panel .live-input-enter:focus,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile:hover,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member:hover,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-mobile.cur,.chat-ctrl-panel .danmu-config-panel .shield-type-list .shield-type-member.cur,.chat-ctrl-panel .danmu-config-panel .live-config-checkbox.active,.livehime-section .live-hime-link .live-hime-win a:hover i[_v-a14cfc50],.live-input:focus{border-color:#298} | |
| .body-container .container-main .buttonTab-wrap .item:hover, .body-container .container-main .buttonTab-wrap .item.hover,.tags[data-v-175ee1c7]:hover,.live-tag:hover{color:#298;border-color:#298} | |
| .room-left-sidebar .capsule-toy .item .progress-wrap,.chat-list-ctnr,.danmu-sender .danmu-textbox,.live-popup-panel input,.user-level-progress-bar,#personTask .task-section .task-search .input-search,.daliy-tasks-section .progress-bar-wrap,.chat-ctrl-panel .danmu-config-panel .live-input-bottom,.chat-ctrl-panel .danmu-config-panel .config-span-scroll-bar,.chat-ctrl-panel .danmu-config-panel .shield-ul-btn,.chat-ctrl-panel .danmu-config-panel .live-input-enter,.live-input,.danmu-sender .danmu-mask{background-color:#060606!important} | |
| body.top-nav-light-theme .live-top-nav-panel .nav-item,.live-top-nav-ctnr .live-top-nav-panel .nav-item,body.top-nav-light-theme .user-level .more-info .detail-link,.live-top-nav-ctnr .user-level .more-info .detail-link,.main-ctnr[_v-7851163e],.live-haruna-section .section-stage .stage-wrap,.body-container .search-form-wrap,.room-list .item,.room-list .item .upInfo{background:0 0} | |
| .danmu-sender,.recommend-videos .video-preview,#personTask .achieve-normal-list,#personTask .task-filter .task-selected,#personTask .task-section .task-search .input-search,.task-item,.history-section .user-item,.my-attention-section .user-item,.chat-ctrl-panel .danmu-config-panel .live-input-bottom,.chat-ctrl-panel .danmu-config-panel .live-input-enter,.body-container .result-box .list-content .anchor-list .item .user-img{border:0} | |
| .head-info-panel .attention-btn-ctrl .left-part,.head-info-panel .attention-btn-ctrl .right-part,.recommend-videos .video-preview,#personTask .achieve-normal-list,#personTask .task-filter .task-selected,.task-item,.history-section .user-item,.my-attention-section .user-item,.page li.current,.page li a,.page-infinity{box-shadow:0 0 3px #111} | |
| .body-container .result-box .list-content .anchor-list .item .user-img,.live-info-manage-dialog{box-shadow:1px 1px 3px #111} | |
| .danmu-sender .danmu-textbox{width:233px} | |
| .activity-gift-panel .gift-send .ipt-gift-num{width:144px} | |
| .chat-list-ctnr .chat-msg-list{height:100%} | |
| body.player-full-win .chat-list-ctnr{height:calc(100% - 127px)} | |
| .chat-list-ctnr{height:606px} | |
| .room-left-sidebar .help-center{background-color:#334;border-radius:5px 5px 0 0;box-shadow:0 0 3px #111} | |
| .live-box{width:auto} | |
| .live-lr{width:240px} | |
| } | |
| @-moz-document regexp("http(s)?://pay\.bilibili\.com.*") { | |
| .button{border-color:#276;background:#276} | |
| .button:active,.button:hover{border-color:#298;background:#298} | |
| } | |
| @-moz-document regexp("http(s)?://elec\.bilibili\.com.*") { | |
| body{color:#999} | |
| .wrapper .modal-header .title,.wrapper .modal-body .choice-wrp .battery-desp{color:#99a2aa} | |
| .wrapper .modal-body .elec-pay .elec-count{color:#ccc} | |
| .wrapper .content,.wrapper .modal-body .choice-wrp .battery{background-color:#334} | |
| .wrapper .modal-header .u-info{background-color:#446;border-color:#446} | |
| .wrapper .modal-body .choice-wrp.selected .battery{background-color:#446} | |
| .wrapper .elec-btn.disabled{background-color:#446!important} | |
| .wrapper .modal-body .choice-wrp .battery,.wrapper .modal-body .choice-wrp .battery-desp input{border-color:#446} | |
| .wrapper .elec-btn{background-color:#276} | |
| .wrapper .modal-header .u-name,.wrapper .modal-body .elec-protocol a:hover,.wrapper .modal-body .choice-wrp.selected .battery-desp{color:#298} | |
| .wrapper .elec-btn:hover{background-color:#298} | |
| .wrapper .modal-body .choice-wrp.selected .battery,.wrapper .modal-body .choice-wrp.selected .elec-input{border-color:#298} | |
| .wrapper .modal-header{background:0 0} | |
| .wrapper .modal-body .choice-wrp .battery-desp input{background-color:#171717} | |
| } | |
| @-moz-document regexp("http(s)?://(www|bangumi)\.bilibili\.com.*") { | |
| #searchform,.link-ranking{background:#334!important} | |
| #searchform:hover,#searchform:focus,.link-ranking:hover{background:#446!important} | |
| .z_top .z_top_nav{margin:0 0 0 85px} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-moz-document domain(live.bilibili.com) { | |
| /* 房间本体 */ | |
| /* 房间广告 */ | |
| .room-body > a { | |
| display: none; | |
| } | |
| /* 修复位置大幅度偏移 */ | |
| .room-main-ctnr { | |
| transform: translate(0) !important; | |
| } | |
| /* 房间左侧边栏:隐藏 */ | |
| .room-left-sidebar { | |
| display: none; | |
| } | |
| /* 房间背景:淡灰 */ | |
| .room-bk { | |
| background-color: #F0F0F0; | |
| } | |
| .room-bk .bk-img { | |
| display: none; | |
| } | |
| /* 推荐视频绘画 */ | |
| .recommend-section { | |
| display: none !important; | |
| } | |
| /* 顶栏背景 */ | |
| .body.top-nav-light-theme, .live-top-nav-ctnr { | |
| background: transparent !important; | |
| box-shadow: none; | |
| } | |
| /* B 站直播 LOGO */ | |
| .nav-logo { | |
| display: none; | |
| } | |
| /* 下载链接 */ | |
| .download-link { | |
| display: none; | |
| } | |
| /* 搜索框 */ | |
| #top-nav-search-form { | |
| border: none; | |
| border-bottom: 1px solid; | |
| } | |
| /* 页面底部 */ | |
| .live-footer { | |
| display: none; | |
| } | |
| /* 播主信息 */ | |
| .anchor-info-row { | |
| display: none; | |
| } | |
| /* 直播状态开关 */ | |
| .live-status-switcher .live-switcher { | |
| display: none; | |
| } | |
| /* 礼品信息面板 */ | |
| .gift-info-panel, .live-hover-panel { | |
| display: none !important; | |
| } | |
| /* 礼物容器 */ | |
| .super-gift-ctnr, .gift-msg-1000 { | |
| display: none; | |
| } | |
| /* 会员勋章 */ | |
| .medal-icon { | |
| display: none; | |
| } | |
| /* 其他勋章标志 */ | |
| .chat-msg > a { | |
| display: none; | |
| } | |
| /* 房间内通知 */ | |
| .system-msg { | |
| display: none; | |
| } | |
| /* 系统广播 */ | |
| .announcement-container { | |
| display: none; | |
| } | |
| /* 帐号操作区(发送框下方)*/ | |
| .profile-ctrl { | |
| visibility: hidden; | |
| } | |
| /* 屏蔽看板娘 */ | |
| .live-haruna-ctnr { | |
| display: none; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-moz-document domain("tieba.baidu.com"), domain("www.tieba.com") { | |
| /* | |
| ——WebFonts—— | |
| Google Fonts: https://www.google.com/fonts | |
| Google Material icons: https://design.google.com/icons/ | |
| */ | |
| @font-face { | |
| font-family: 'Open Sans'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: url(https://fonts-gstatic.proxy.ustclug.org/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2) format('woff'); | |
| } | |
| @font-face { | |
| font-family: 'Material Icons'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: url(https://fonts-gstatic.proxy.ustclug.org/s/materialicons/v17/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format('woff2'), | |
| url(http://onox.qiniudn.com/maverick/materialicons_safari_v16.woff) format('woff'); | |
| } | |
| body, | |
| .tb-ueditor-fullscreen .tb_rich_poster_container{ | |
| background-color: #F1F1F1 !important; | |
| background-image: url(http://onox.qiniudn.com/maverick/tbbg/1.jpg) !important; | |
| background-size: cover !important; | |
| background-attachment: fixed !important; | |
| background-repeat: no-repeat !important; | |
| } | |
| body, | |
| .tb-ueditor-fullscreen .tb_rich_poster_container { | |
| background-image: none !important; | |
| } | |
| body::selection { | |
| color: #fff; | |
| background-color: #4879BD; | |
| text-shadow: none; | |
| } | |
| * { | |
| font-family: 'Open Sans', 'Microsoft Yahei UI', 'Microsoft Yahei'; | |
| } | |
| a { | |
| transition: color .4s ease; | |
| } | |
| /*替换Banner*/ | |
| .star_banner img[src$="default_head20141014.jpg"], | |
| .vertical_card_banner img[src$="default_head20141014.jpg"], | |
| .card_banner img[src$="default_head20141014.jpg"]{ | |
| display: block; | |
| background: #fff; | |
| padding-top: 180px; | |
| padding-left: 100%; | |
| width: 0 !important; | |
| height: 0 !important; | |
| background-size: cover; | |
| background-position: center; | |
| background-image: url(http://ww2.sinaimg.cn/large/7bde02fbgw1f3yt89p0xej20xc064tae.jpg); | |
| } | |
| /*替换吧头像*/ | |
| div[class*="_theme2"] img.card_head_img[src$="c1d719f7905298227221ab8bd6ca7bcb0b46d458.jpg"], | |
| div[class*="_theme2"] img.card_head_img[src$="199a87d6277f9e2fa0419bf01930e924b999f3e0.jpg"], | |
| div[class*="_theme2"] img.card_head_img[src$="7bf78245d688d43f147b01ba7c1ed21b0cf43b98.jpg"], | |
| div[class*="_theme2"] img.card_head_img[src$="default_avatar20141017.jpg"]{ | |
| padding-top: 60px; | |
| padding-left: 60px; | |
| width: 0 !important; | |
| height: 0 !important; | |
| } | |
| img.card_head_img[src$="c1d719f7905298227221ab8bd6ca7bcb0b46d458.jpg"], | |
| img.card_head_img[src$="199a87d6277f9e2fa0419bf01930e924b999f3e0.jpg"], | |
| img.card_head_img[src$="7bf78245d688d43f147b01ba7c1ed21b0cf43b98.jpg"], | |
| img.card_head_img[src$="default_avatar20141017.jpg"]{ | |
| display: block; | |
| background: #fff; | |
| padding-top: 150px; | |
| padding-left: 150px; | |
| width: 0 !important; | |
| height: 0 !important; | |
| background-size: cover; | |
| background-position: center; | |
| background-image: url(http://ww2.sinaimg.cn/mw690/7bde02fbgw1f4dg4jwknej2046046gly.jpg); | |
| } | |
| /*贴吧会员相关项*/ | |
| .u_member, | |
| #celebrity, | |
| .aside_region.celebrity, | |
| .j-placeholder-pay-member, | |
| .icon-crown-super-non, | |
| .j_thread_setmembertop, | |
| .j_thread_dismembertop, | |
| .sign_tip_sbox_1key, | |
| .p-post-forbid-speech, | |
| /*超级会员各种提示*/ | |
| .poster_success .success-foot-tip, | |
| .l_thread_manage #notify_bubble, | |
| .quick-reply-desc { | |
| display: none !important; | |
| } | |
| #d_post_manage:hover #j_quick_thread>li:nth-of-type(3){ | |
| transition-delay: .0s; | |
| } | |
| #d_post_manage:hover #j_quick_thread>li:nth-of-type(4){ | |
| transition-delay: .1s; | |
| } | |
| #d_post_manage:hover #j_quick_thread>li:nth-of-type(5){ | |
| transition-delay: .2s; | |
| } | |
| #d_post_manage:hover #j_quick_thread>li:nth-of-type(6){ | |
| transition-delay: .3s; | |
| } | |
| .tbui_fbar_share,/*右侧浮层-分享*/ | |
| .tbui_fbar_favor,/*右侧浮层-爱逛的吧*/ | |
| .tbui_fbar_props,/*右侧浮层-魔法道具*/ | |
| .tbui_fbar_tsukkomi,/*右侧浮层-神来一句*/ | |
| .search_main_fixed,/*搜索栏浮层*/ | |
| .edui-btn-toolbar .edui-btn-medal,/*编辑框贴吧特权按钮*/ | |
| .save_face_bg,.achievement_medal_section,.achievement_medal_wrapper,/*楼层挽尊按钮,徽章*/ | |
| .lzl_cnt .pre_icon_wrap,.p_postlist .pre_icon_wrap,/*帖子内页会员标识*/ | |
| .share_thread,/*一楼分享按钮*/ | |
| .post-foot-send-gift-btn,/*一楼送礼物按钮*/ | |
| #selectsearch-icon,/*划词搜索*/ | |
| [id="pagelet_entertainment-game/pagelet/game_head_middle"],/*部分游戏贴吧头部游戏域*/ | |
| [id="pagelet_frs-aside/pagelet/hottopic"], | |
| .l_container .plat_head_v2_unmain_wrapper,/*认证吧帖子内页头部详细信息*/ | |
| .p_reply_first,.d_post_content_firstfloor .core_reply_tail .p_reply,/*屏蔽具有误导性的一楼内容下方回复按钮*/ | |
| .suggestion_list >li[data-field*="operation_title"],.suggestion_list >li[data-field*="operation_item"],.bdfengyun,/*搜索悬浮窗-大伙正在聊*/ | |
| .suggestion_list >li[data-field*="relation_game_title"],.suggestion_list >li[data-field*="game_item"],/*搜索悬浮窗-相关游戏*/ | |
| .tbui_fbar_square { | |
| display: none !important; | |
| } | |
| /*楼层气泡*/ | |
| .post_bubble_top,.post_bubble_bottom{ | |
| display: none !important; | |
| } | |
| .post_bubble_middle{ | |
| background: none !important; | |
| padding: 0 !important; | |
| width: 100% !important; | |
| } | |
| /*标题输入框文字对齐方式*/ | |
| .poster_body .editor_title, | |
| .poster_body .tbui_placeholder, | |
| .pprefix-item{ | |
| text-align: center !important; | |
| } | |
| /*帖子列表页会员标识和非实名认证印记*/ | |
| /*悬停显示*/ | |
| .frs_bright_preicon, | |
| .frs_bright_icons>*:not([data-name="user_type"]):not([data-name="is_verify"]){ | |
| opacity: 0; | |
| transition: opacity .4s ease; | |
| } | |
| .threadlist_bright .j_thread_list:hover .frs_bright_preicon, | |
| .threadlist_bright .j_thread_list:hover .frs_bright_icons>*:not([data-name="user_type"]):not([data-name="is_verify"]){ | |
| opacity: 1; | |
| } | |
| .j_thread_list .red_text, | |
| .j_thread_list .red-text, | |
| .j_thread_list .vip_red, | |
| .j_thread_list .vip-red, | |
| .j_thread_list .vip_red:hover, | |
| .j_thread_list .vip-red:hover, | |
| .j_thread_list .vip_red:visited, | |
| .j_thread_list .vip-red:visited{ | |
| color: inherit !important; | |
| } | |
| .j_thread_list .sign_highlight{ | |
| color: inherit !important; | |
| } | |
| .threadlist_bright .j_thread_list:hover .sign_highlight{ | |
| color: #ffa640 !important; | |
| } | |
| .threadlist_bright .j_thread_list:hover .red_text, | |
| .threadlist_bright .j_thread_list:hover .red-text, | |
| .threadlist_bright .j_thread_list:hover .vip_red, | |
| .threadlist_bright .j_thread_list:hover .vip-red{ | |
| color: #f74d4a!important; | |
| } | |
| .threadlist_li_left, .j_threadlist_li_left { | |
| align-items: center; | |
| } | |
| /*用户面板*/ | |
| .u_xiu8,/*个人-我的秀场*/ | |
| .u_wallet,/*T逗账单*/ | |
| .u_tbmall,/*贴吧商城*/ | |
| .u_app,/*移动客户端*/ | |
| /*杂项*/ | |
| .split, | |
| .u_split, | |
| .u_appcenterEntrance, | |
| .u_joinvip, | |
| .u_bdhome { | |
| display: none; | |
| } | |
| /*用户面板-动画延迟*/ | |
| .userbar>ul>li.u_username:hover~li:nth-of-type(2) { | |
| transition-delay: 0s; | |
| } | |
| .userbar>ul>li.u_username:hover~li:nth-of-type(4) { | |
| transition-delay: .05s; | |
| } | |
| .userbar>ul>li.u_username:hover~li:nth-of-type(6) { | |
| transition-delay: .1s; | |
| } | |
| .userbar>ul>li.u_username:hover~li { | |
| transition-delay: .15s; | |
| } | |
| .userbar>ul>li.u_setting:hover~li:nth-of-type(4) { | |
| transition-delay: 0s; | |
| } | |
| .userbar>ul>li.u_setting:hover~li:nth-of-type(6) { | |
| transition-delay: .05s; | |
| } | |
| .userbar>ul>li.u_setting:hover~li { | |
| transition-delay: .1s; | |
| } | |
| .userbar>ul>li.u_news:hover~li:nth-of-type(6) { | |
| transition-delay: 0s; | |
| } | |
| .userbar>ul>li.u_news:hover~li { | |
| transition-delay: .05s; | |
| } | |
| /*广告和无用功能*/ | |
| .tbui_fbar_bazhu, | |
| .game-head-game-info-wrapper, | |
| [id="pagelet_entertainment-liveshow/pagelet/video_head"], | |
| .l_post_bright[data-field*="user_name\"\:\"\\u4e3f\\u5929\\u4e36\\u4e4b\\u6b87"][data-field*="content\"\:\"\\u5e0c\\u671b\\u5404\\u4f4d\\u5427\\u53cb\\u80fd\\u652f\\u6301\\u9b54\\u5427\\u6708\\u520a\\u3002\""], | |
| .l_post_bright[data-field*="template_id"], | |
| .l_post_bright[data-field*="monitor_id"], | |
| #duoku_servers_list_wrapper, | |
| a[locate*="common_search_button"], | |
| .play_list_panel, | |
| .middle-sec, | |
| .game_live_list, | |
| .firework_sender_wrap, | |
| [data-daid], | |
| #pb_adbanner, | |
| #forum_recommend, | |
| .top-sec, | |
| .r-top-sec, | |
| #spage_liveshow_slide, | |
| #plat_act_wrapper, | |
| #spage_game_tab_wrapper, | |
| .member_rank, | |
| #search_fengchao, | |
| #search_union_mod, | |
| #search_bottomad, | |
| .app_forum_top_nav_holdplace, | |
| .app_forum_top_nav, | |
| .fav-toolbar, | |
| img.close_btn, | |
| img.close_btn.j_click_close+div, | |
| p.switch_radios+div, | |
| #aside_ad, | |
| .region_bright#tieba-notice+div, | |
| .thread_recommend, | |
| #platform_left_float, | |
| .content_top, | |
| .aside_region.my_app.j_encourage_entry, | |
| img[src^="http://tb1.bdstatic.com/tb/cms/ngmis/adsense/"], | |
| #top_activity, | |
| .life_helper, | |
| .middle-sec>div>.iframe_wrapper, | |
| #search_fengchao_left, | |
| div[id="pagelet_entertainment-base/pagelet/xiu8_aside_slide"], | |
| [id="pagelet_frs-aside/pagelet/ad"], | |
| div[id="pagelet_frs-header/pagelet/head_content_middle"] > div:first-child > div[class^="iframe_"], | |
| .j_voice_ad_gif, | |
| .p_share_ding,/*发帖域顶部分享控件*/ | |
| .p_mall_tail,/*层主使用了贴吧特权标识*/ | |
| #pop_frame,/*右下弹窗*/ | |
| #encourage_entry,/*右边栏-我的应用*/ | |
| #global_notice_wrap,/*全贴吧底部公共通知*/ | |
| .firework-wrap,.firework-wrap2,/*烟花*/ | |
| ul#thread_list>li:not([data-field]):not(.thread_top_list_folder),/*帖子列表所有项*/ | |
| #j_p_postlist>div:nth-of-type(1)~div:not([data-field]):not(#j_p_postlist),/*帖子内页所有楼层*/ | |
| ul#thread_list>li.j_df_card,/*推广*/ | |
| #j_p_postlist>div[data-isautoreply]:not(:first-of-type),/*推广*/ | |
| .diamond-mall-aside,/*贴吧夺宝*/ | |
| #pc2client,/*i贴吧页面客户端广告*/ | |
| #com_u9_head{ | |
| display: none !important; | |
| } | |
| .creativeplatform-wrap-word-repost-btn .btn-default, | |
| #selectsearch-icon { | |
| font-size: 14px; | |
| line-height: 20px; | |
| padding: 4px 6px; | |
| padding-right: 9px; | |
| background: #4879BD; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08) !important; | |
| color: #fff; | |
| border-radius: 4px; | |
| transition: background .4s ease; | |
| z-index: 9999; | |
| } | |
| .creativeplatform-wrap-word-repost-btn .btn-default{ | |
| padding: 2px 4px !important; | |
| } | |
| .creativeplatform-wrap-word-repost-btn .btn-default:hover, | |
| #selectsearch-icon:hover { | |
| background: #4285F4; | |
| } | |
| #selectsearch-icon:before { | |
| content: "\e8b6"; | |
| font-family: 'Material Icons' !important; | |
| line-height: 1; | |
| font-size: 18px; | |
| display: inline-block; | |
| vertical-align: bottom; | |
| padding-bottom: 1px; | |
| } | |
| #selectsearch-icon:after { | |
| content: "搜索"; | |
| display: inline-block; | |
| vertical-align: bottom; | |
| } | |
| #selectsearch-icon img { | |
| /*display:none或visibility:hiddend掉竟然会导致点击无效*/ | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| border: none !important; | |
| width: 100% !important; | |
| height: 100% !important; | |
| z-index: 99; | |
| opacity: 0; | |
| } | |
| /*贴吧头部资料*/ | |
| .vertical_head_bg{ | |
| background: none!important; | |
| position: relative; | |
| } | |
| .vertical_head .card_top_wrap{ | |
| width: 100% !important; | |
| height: 96px !important; | |
| padding: 15px 0 0 100px !important; | |
| box-sizing: border-box; | |
| } | |
| .star_banner, | |
| .vertical_card_banner, | |
| .card_banner { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| overflow: hidden; | |
| } | |
| .star_head, | |
| .plat_head{ | |
| padding: 0 !important; | |
| border: none !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| } | |
| .head_card{ | |
| background: rgba(0, 0, 0, .04) !important; | |
| } | |
| .card_top_left{ | |
| margin: 5px 0; | |
| } | |
| .plat_head_v2_unmain_wrapper, | |
| .plat_head_v2_main_wrapper { | |
| border-left: none !important; | |
| border-right: none !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| border-top: 1px solid rgba(0,0,0,.06) !important; | |
| } | |
| .star_header{ | |
| padding: 13px 17px !important; | |
| background: none !important; | |
| border: none !important; | |
| } | |
| .star_header_right{ | |
| position: static !important; | |
| } | |
| .star_info{ | |
| margin-right: 20px; | |
| } | |
| .star_nav_btns_wrap{ | |
| position: static !important; | |
| } | |
| .star_nav_btns_wrap:nth-last-of-type(2){ | |
| display: none !important; | |
| } | |
| .plat_recom_carousel { | |
| width: 100% !important; | |
| } | |
| .time_axis_slide_button_wrapper, | |
| a.starchannel_entrance{ | |
| margin: 0 !important; | |
| } | |
| .plat_header{ | |
| padding: 0 !important; | |
| background: none !important; | |
| border: none !important; | |
| } | |
| .plat_card_top { | |
| margin: 20px 0; | |
| margin-left: 20px; | |
| position: relative; | |
| } | |
| .card_top_wrap{ | |
| background: rgba(0, 0, 0, .03) !important; | |
| margin: 0 !important; | |
| border-left: none !important; | |
| border-top: none !important; | |
| border-right: none !important; | |
| padding: 0 !important; | |
| position: relative; | |
| z-index: 9; | |
| } | |
| .star_picbox, | |
| .plat_picbox, | |
| .card_head { | |
| padding: 5px !important; | |
| background: rgba(255,255,255,.5) !important; | |
| border: none !important; | |
| } | |
| .plat_picbox img, | |
| .card_head_img{ | |
| width: 150px !important; | |
| height: 150px !important; | |
| } | |
| div[class*="_theme2"] .plat_picbox img, | |
| div[class*="_theme2"] .card_head_img{ | |
| width: 60px !important; | |
| height: 60px !important; | |
| } | |
| .plat_title_h3, | |
| .card_title_fname{ | |
| text-transform: capitalize; | |
| font-size: 24px !important; | |
| line-height: 32px !important; | |
| color: #555 !important; | |
| text-decoration: none !important; | |
| } | |
| .card_slogan{ | |
| color: #555 !important; | |
| } | |
| .focus_btn{ | |
| width: auto !important; | |
| height: auto !important; | |
| line-height: 24px !important; | |
| border-radius: 12px; | |
| font-size: 12px !important; | |
| margin: 0 !important; | |
| margin-left: 10px !important; | |
| margin-right: 4px !important; | |
| margin-top: 5px !important; | |
| background: none !important; | |
| padding: 0 10px !important; | |
| background-color: rgba(0,0,0,.06) !important; | |
| color: #999 !important; | |
| text-decoration: none !important; | |
| transition-property: background-color,color; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .focus_btn:hover{ | |
| background-color: #F44336 !important; | |
| color: #fff !important; | |
| } | |
| .focus_btn:before{ | |
| font-family: 'Material Icons'; | |
| font-size: 14px !important; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-right: 2px; | |
| text-indent: -2px; | |
| } | |
| .cancel_focus:before{ | |
| content: "\e87d"; | |
| } | |
| .cancel_focus:after{ | |
| content: "已关注"; | |
| } | |
| .islike_focus{ | |
| background-color: #4879BD !important; | |
| color: #fff !important; | |
| } | |
| .islike_focus:hover{ | |
| background-color: #4285F4 !important; | |
| } | |
| .islike_focus:before{ | |
| content: "\e87e"; | |
| } | |
| .islike_focus:after{ | |
| content: "关注"; | |
| } | |
| .plat_use_total *, | |
| .card_num *, | |
| .card_info *{ | |
| color: #aaa !important; | |
| } | |
| .plat_post_num, | |
| .card_menNum, | |
| .card_infoNum, | |
| .card_info a[href]{ | |
| color: #888 !important; | |
| text-decoration: none !important; | |
| } | |
| .card_info a[href]:hover{ | |
| color: #666 !important; | |
| } | |
| /*theme2*/ | |
| .plat_head.plat_head_theme2, | |
| .card_top_wrap.card_top_theme2{ | |
| padding-top: 10px !important; | |
| } | |
| .card_top_theme2 .card_top { | |
| height: 84px !important; | |
| padding-left: 104px !important; | |
| padding-top: 4px !important; | |
| box-sizing: border-box; | |
| position: relative; | |
| } | |
| .card_top_theme2 .card_title_fname { | |
| margin-top: 1px !important; | |
| } | |
| .card_top_theme2 .card_num{ | |
| white-space:nowrap; | |
| position: absolute; | |
| margin: 0 !important; | |
| left: 1px; | |
| bottom: -18px; | |
| } | |
| .plat_head_theme2 .plat_card_top { | |
| margin-top: 16px; | |
| margin-bottom: 24px; | |
| position: relative; | |
| } | |
| .plat_head_theme2 .plat_header_left { | |
| height: 86px !important; | |
| } | |
| .plat_head_theme2 .plat_picbox, | |
| .card_top_theme2 .card_head { | |
| padding: 4px !important; | |
| width: 60px !important; | |
| height: 60px !important; | |
| margin: 4px 20px !important; | |
| } | |
| .plat_head_theme2 .plat_picbox{ | |
| margin: -7px 15px 0 0 !important; | |
| } | |
| .card_top_theme2 .focus_btn, | |
| .plat_head_theme2 .focus_btn{ | |
| margin-top: 6px !important; | |
| } | |
| .plat_head_theme2 .plat_use_total{ | |
| white-space:nowrap; | |
| position: absolute; | |
| left: 79px; | |
| bottom: -2px; | |
| } | |
| /*签到*/ | |
| .plat_header_right, | |
| .card_top_right{ | |
| position: absolute !important; | |
| width: auto !important; | |
| height: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| right: 0; | |
| top: 0; | |
| z-index: 1; | |
| } | |
| .sign_mod_bright{ | |
| width: 240px; | |
| } | |
| .sign_box_bright{ | |
| width: auto !important; | |
| height: auto !important; | |
| background: none !important; | |
| position: absolute !important; | |
| top: 50% !important; | |
| right: 20px !important; | |
| transform: translateY(-50%) !important; | |
| } | |
| .j_signbtn{ | |
| display: block; | |
| position: relative; | |
| width: 64px !important; | |
| height: 2px !important; | |
| background: #4879BD; | |
| color: #fff; | |
| box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.1); | |
| } | |
| .j_signbtn:before{ | |
| content: "\e616"; | |
| font-family: 'Material Icons'; | |
| position: absolute; | |
| z-index: 1; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%,-50%) !important; | |
| display: block; | |
| width: 64px; | |
| height: 64px; | |
| border-radius: 50%; | |
| background: inherit; | |
| color: inherit; | |
| -moz-box-shadow: inherit; | |
| -webkit-box-shadow: inherit; | |
| line-height: 64px; | |
| font-size: 42px; | |
| text-align: center; | |
| transition-property: background,color; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .j_signbtn:hover{ | |
| background: #4285F4; | |
| } | |
| .sign_today_date{ | |
| display:none !important; | |
| } | |
| .sign_keep_span, | |
| .sign_month_lack_days{ | |
| position: absolute; | |
| width: auto !important; | |
| margin:0 !important; | |
| padding: 0 !important; | |
| right: auto !important; | |
| bottom: auto !important; | |
| top: auto !important; | |
| white-space: nowrap; | |
| display: inline-block; | |
| font-size: 12px !important; | |
| line-height: 22px !important; | |
| background: inherit; | |
| color: inherit !important; | |
| -moz-box-shadow: inherit; | |
| -webkit-box-shadow: inherit; | |
| text-align: right !important; | |
| padding-left: 8px !important; | |
| padding-right: 20px !important; | |
| border-radius: 10px 0 0 10px; | |
| left: 18px !important; | |
| transform: translateX(-50%); | |
| opacity: 0; | |
| transition-property: opacity, transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .sign_month_lack_days span{ | |
| color: inherit !important; | |
| } | |
| .sign_keep_span{ | |
| top: -20px !important; | |
| } | |
| .sign_month_lack_days{ | |
| top: 4px !important; | |
| } | |
| .sign_mod_bright:hover .sign_keep_span, | |
| .sign_mod_bright:hover .sign_month_lack_days{ | |
| opacity: 1; | |
| transform: translateX(-100%); | |
| } | |
| .sign_month_lack_days:nth-of-type(2){ | |
| display: none !important; | |
| } | |
| .signstar_signed{ | |
| background: #eee !important; | |
| color: #999 !important; | |
| box-shadow: none !important; | |
| } | |
| .signstar_signed:before{ | |
| content: "\e614" !important; | |
| color: #ccc !important; | |
| } | |
| .sign_mod_bright .sign_succ1 { | |
| top: 90px; | |
| right: -12px; | |
| } | |
| .sign_tip_bd_arr { | |
| right: 57px; | |
| } | |
| /*特殊吧头部*/ | |
| .plat_skin .wrap1, | |
| .skin_2103 .wrap1, | |
| .app_forum_body .wrap1{ | |
| margin: 0 auto; | |
| background-position: center 138px !important; | |
| } | |
| .app_forum_body .head_content{ | |
| background: transparent !important; | |
| } | |
| .app-header-wrapper { | |
| width: 100% !important; | |
| border-radius: inherit; | |
| } | |
| .app_header{ | |
| padding-top: 16px !important; | |
| width: 100% !important;; | |
| height: 100px !important; | |
| box-sizing: border-box; | |
| background: rgba(0, 0, 0, .04) !important; | |
| border-radius: inherit; | |
| color: #555 !important; | |
| } | |
| .app_header_title_main { | |
| margin-top: 10px !important; | |
| } | |
| .app_header_forum_name { | |
| font-size: 24px !important; | |
| padding: 0px 0 0 15px !important; | |
| text-transform: capitalize; | |
| } | |
| .app_header_forum_name, | |
| .app_header_forum_name_href{ | |
| color: #555 !important; | |
| } | |
| .app_header_focus_btn { | |
| margin: -5px 0 0 !important; | |
| } | |
| .app_header_focus_info { | |
| white-space: nowrap; | |
| position: absolute; | |
| margin: 0 !important; | |
| left: 104px; | |
| bottom: 10px; | |
| } | |
| .app_header_focus_info_focusnum, | |
| .app_header_focus_info_tienum { | |
| color: #888 !important; | |
| } | |
| .app_header_main_background{ | |
| display: none !important; | |
| } | |
| [id="pagelet_platform-official/pagelet/official_forum_card"], | |
| .official_head, | |
| .head_banner, | |
| .head_banner_img, | |
| [id="pagelet_encourage-appforum/pagelet/head_top"], | |
| .app_forum_top{ | |
| border-radius: inherit; | |
| } | |
| .app_header_avatar { | |
| padding: 0px 0 0 20px !important; | |
| } | |
| .app_header_avatar_img{ | |
| width: 60px !important; | |
| height: 60px !important; | |
| padding: 4px; | |
| background: rgba(255,255,255,.5) !important; | |
| border: none !important; | |
| } | |
| .app_forum_body .sign_mod_bright .sign_succ1 { | |
| top: 68px; | |
| right: 32px; | |
| } | |
| .skin_2103 [id="pagelet_frs-header/pagelet/head"], | |
| .app_forum_body [id="pagelet_frs-header/pagelet/head"]{ | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| } | |
| .app_forum_body [id="pagelet_frs-header/pagelet/head"]>div{ | |
| box-shadow: none !important; | |
| width: 100% !important; | |
| } | |
| .skin_2103 .head_top, | |
| .app_forum_body .head_top{ | |
| box-sizing: border-box; | |
| border: 1px solid #DBDCE0 !important; | |
| border-bottom: none !important; | |
| position: relative; | |
| z-index: 4; | |
| } | |
| .app_forum_body [id="pagelet_entertainment-game/pagelet/game_head_middle"]{ | |
| border-top: 4px solid #EAEAEA; | |
| } | |
| /*头部指引*/ | |
| .top_content { | |
| background: none !important; | |
| } | |
| .top_cont_main{ | |
| background: rgba(0,0,0,.02) !important; | |
| border-top: 1px solid rgba(0,0,0,.06); | |
| } | |
| .top_cont_toggle{ | |
| transition: right .4s ease; | |
| z-index: 9; | |
| border-radius: 6px 6px 0 0; | |
| border: 1px solid rgba(0,0,0,.1); | |
| border-bottom: none; | |
| background: #fff; | |
| color: #2D64B3; | |
| height: 24px; | |
| line-height: 24px; | |
| overflow: hidden; | |
| } | |
| .top_content_closed .top_cont_toggle{ | |
| right: 100px; | |
| } | |
| .top_cont_toggle:before{ | |
| content:'\e8ef'; | |
| font-family: 'Material Icons'; | |
| font-size: 24px; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-right: -4px; | |
| padding-left: 4px; | |
| } | |
| .top_cont_toggle .toggleBtn { | |
| display: inline-block !important; | |
| height: 100%; | |
| margin-left: -24px; | |
| margin-right: -4px; | |
| text-indent: 31px; | |
| background: none !important; | |
| font-size: 0 !important; | |
| color: inherit; | |
| } | |
| .top_cont_toggle .toggleBtn:before { | |
| content: '收起指引'; | |
| font-size: 12px; | |
| } | |
| .top_cont_toggle .toggleBtn:after { | |
| content: '\e316'; | |
| font-family: 'Material Icons'; | |
| font-size: 20px; | |
| display: inline-block; | |
| vertical-align: top; | |
| text-indent: 0; | |
| } | |
| .top_content_closed .toggleBtn:before{ | |
| content: '展开指引'; | |
| } | |
| .top_content_closed .toggleBtn:after{ | |
| content: '\e313'; | |
| } | |
| /*导航重制*/ | |
| .forumInfo_nav_wrap, | |
| .star_nav_wrap, | |
| .ihome_nav_wrap, | |
| :not(.forum_radio_aside)>.nav_wrap { | |
| width: 100% !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| border: none !important; | |
| border-top: 1px solid rgba(0, 0, 0, .04) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| height: 47px !important; | |
| box-sizing: border-box; | |
| display: flex; | |
| } | |
| .forumInfo_nav_list, | |
| .star_class_nav, | |
| .ihome_nav_list, | |
| .nav_list { | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| height: auto !important; | |
| width: 0 !important; | |
| background: none!important; | |
| border: none!important; | |
| position: relative; | |
| float: none !important; | |
| flex: 1; | |
| overflow: visible!important; | |
| display: flex; | |
| } | |
| .star_class_nav, | |
| .nav_list{ | |
| box-sizing: border-box; | |
| } | |
| .forumInfo_nav_list>li, | |
| .star_class_nav>li, | |
| .nav_list>li{ | |
| flex: 1; | |
| } | |
| .forumInfo_nav_list>li, | |
| .star_class_nav>li, | |
| .ihome_nav_list>li, | |
| .nav_list>li, | |
| .forumInfo_nav_list>li *, | |
| .star_class_nav>li *, | |
| .ihome_nav_list>li *, | |
| .nav_list>li *{ | |
| display: block; | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| border: none!important; | |
| height: auto !important; | |
| width: auto !important; | |
| float: none !important; | |
| } | |
| .forumInfo_nav_list>li a, | |
| .star_class_nav>li .star_nav_ico, | |
| .ihome_nav_list>li .nav_icon, | |
| .nav_list>li .j_tbnav_tab_a{ | |
| display: inline-block !important; | |
| vertical-align: top; | |
| height: 46px !important; | |
| line-height: 42px !important; | |
| font-size: 16px !important; | |
| color: #777 !important; | |
| border: none !important; | |
| box-sizing: border-box; | |
| text-align: center; | |
| border-bottom: 4px solid rgba(0, 0, 0, 0) !important; | |
| transition-property: border; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .star_class_nav>li .star_nav_ico *, | |
| .ihome_nav_list>li .nav_icon *, | |
| .nav_list>li .j_tbnav_tab_a *{ | |
| display: inline !important; | |
| color: inherit !important; | |
| } | |
| .forumInfo_nav_list>li.focus a, | |
| .star_class_nav>li.focus .star_nav_ico, | |
| .ihome_nav_list>li.focus .nav_icon, | |
| .nav_list>li.focus .j_tbnav_tab_a{ | |
| background: rgba(0,0,0,.06) !important; | |
| } | |
| .forumInfo_nav_list>li a:hover, | |
| .star_class_nav>li .star_nav_ico:hover, | |
| .ihome_nav_list>li .nav_icon:hover, | |
| .nav_list>li .j_tbnav_tab_a:hover{ | |
| border-bottom: 4px solid rgba(0, 0, 0, .2) !important; | |
| } | |
| .forumInfo_nav_list>li a, | |
| .nav_list>li .j_tbnav_tab_a{ | |
| padding: 0 !important; | |
| width: 100% !important; | |
| } | |
| .star_class_nav>li .star_nav_ico, | |
| .ihome_nav_list>li .nav_icon{ | |
| padding: 0 20px !important; | |
| width: 100% !important; | |
| } | |
| .star_class_nav>li .star_nav_ico:empty:after, | |
| .ihome_nav_list>li .nav_icon:empty:after, | |
| .nav_list>li .j_tbnav_tab_a:empty:after{ | |
| content:"空项" | |
| } | |
| .star_class_nav>li .star_nav_ico:before, | |
| .ihome_nav_list>li .nav_icon:before, | |
| .nav_list>li .j_tbnav_tab_a:before{ | |
| content: "\e871"; | |
| font-family: 'Material Icons'; | |
| font-size: 18px; | |
| display: inline-block !important; | |
| vertical-align: top; | |
| margin-right: 3px; | |
| } | |
| .nav_list>li[data-tab-main] .j_tbnav_tab_a:before, | |
| .star_class_nav>li .star_nav_ico.star_nav_ico_tie:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabmain"]:before{ | |
| content: "\e24d"; | |
| } | |
| .star_class_nav>li .star_nav_ico.star_nav_ico_photo:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabfrsphotogood"]:before{ | |
| content: "\e410"; | |
| } | |
| .star_class_nav>li .star_nav_ico.star_nav_ico_good:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabgood"]:before{ | |
| content: "\e838"; | |
| font-size: 20px; | |
| } | |
| .star_class_nav>li .star_nav_ico.star_nav_ico_video:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabvideo"]:before{ | |
| content: "\e04b"; | |
| font-size: 20px; | |
| } | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="st_value=wanle"]:before{ | |
| content: "\e332"; | |
| } | |
| .nav_list>li .j_tbnav_tab_a[href*="tab=game"]:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabplay"]:before{ | |
| content: "\e021"; | |
| } | |
| .star_class_nav>li .star_nav_ico.star_nav_ico_group:before, | |
| .nav_list>li .j_tbnav_tab_a[stats-data*="tabgroup"]:before{ | |
| content: "\e7ef"; | |
| font-size: 20px; | |
| } | |
| .nav_list>li .j_tbnav_tab_a[href*="/show/zhanqi"]:before{ | |
| content: "\e639"; | |
| text-indent: 2px; | |
| } | |
| .nav_list>li .j_tbnav_tab_a[href*="tab=tuan"]:before{ | |
| content: "\e8cb"; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_main:before{ | |
| content: "\e88a"; | |
| font-size: 22px; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_msg:before{ | |
| content: "\e7f4"; | |
| font-size: 20px; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_collect:before{ | |
| content: "\e865"; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_concern:before{ | |
| content: "\e87d"; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_post:before{ | |
| content: "\e24d"; | |
| } | |
| .ihome_nav_list>li .nav_icon.nav_achieve:before{ | |
| content: "\e545"; | |
| font-size: 20px; | |
| } | |
| .star_class_tip{ | |
| display: none !important; | |
| } | |
| /*帖子排序按钮*/ | |
| .thread_list_order { | |
| position: absolute; | |
| top: auto; | |
| bottom: 0; | |
| cursor: pointer; | |
| display: inline-block; | |
| white-space: nowrap; | |
| font-size: 0; | |
| margin-left: 12px; | |
| color: #777; | |
| line-height: 16px; | |
| padding: 0 8px; | |
| padding-top: 4px; | |
| border-radius: 4px 4px 0 0; | |
| background: rgba(0,0,0,.06); | |
| transition: color .4s ease; | |
| } | |
| .thread_list_order:hover{ | |
| color: #444; | |
| } | |
| .thread_list_order:before { | |
| content: "\e8fe"; | |
| font-size: 18px; | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-right: 2px; | |
| } | |
| .thread_list_order:after { | |
| content: "按回复排序"; | |
| font-size: 12px; | |
| } | |
| /*吧内搜索*/ | |
| .star_nav_btns_wrap, | |
| .search_internal_wrap{ | |
| float: none !important; | |
| height: 44px !important; | |
| margin: 0 !important; | |
| display: block; | |
| box-sizing: border-box; | |
| padding: 6px 10px !important; | |
| width: 18% !important; | |
| min-width: 240px !important; | |
| position: relative; | |
| margin-left: 12% !important; | |
| } | |
| .search_internal_wrap.pull_right{ | |
| display: flex; | |
| } | |
| .j_search_internal_form{ | |
| position: relative; | |
| width: 100%; | |
| box-sizing: border-box; | |
| display:flex; | |
| } | |
| .search_internal_input{ | |
| flex: 1; | |
| display: block; | |
| float: none !important; | |
| width: 0 !important; | |
| height: 30px !important; | |
| background: rgba(0, 0, 0, 0.04); | |
| outline: none !important; | |
| border: none !important; | |
| margin: 0 !important; | |
| padding: 0 8px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| box-sizing: border-box; | |
| color: #666 !important; | |
| font-size: 12px !important; | |
| line-height: 26px !important; | |
| } | |
| .search_internal_placeholder{ | |
| color: darkgrey !important; | |
| position: absolute; | |
| top: 1px !important; | |
| left: 8px !important; | |
| display: block; | |
| line-height: 26px !important; | |
| font-size: 12px !important; | |
| } | |
| .search_internal_btn{ | |
| background: none !important; | |
| background-color: rgba(0, 0, 0, .04) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| box-sizing: border-box; | |
| margin-left: 4px; | |
| height: 30px !important; | |
| width: 30px !important; | |
| display: inline-block; | |
| float: none !important; | |
| vertical-align: top; | |
| text-indent: 0 !important; | |
| font-size: 0 !important; | |
| position: relative; | |
| } | |
| .search_internal_input, | |
| .search_internal_btn{ | |
| transition-property: background, border-bottom; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .search_internal_input:focus{ | |
| background: rgba(255, 255, 255, .4) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .2) !important; | |
| } | |
| .search_internal_btn:hover{ | |
| background-color: rgba(0, 0, 0, 0.06) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .1) !important; | |
| } | |
| .search_internal_btn:before, | |
| .j_search_internal_form:before { | |
| content: "\e8b6"; | |
| font-family: 'Material Icons'; | |
| display: block; | |
| color: #999; | |
| font-size: 20px; | |
| position: absolute; | |
| right: -5px; | |
| top: 13px; | |
| transform: translate(-50%, -50%) translateY(1px); | |
| } | |
| /*贴子内容页右侧*/ | |
| .right_section { | |
| display: none !important; | |
| width: 240px; | |
| } | |
| .right_section { | |
| width: 240px; | |
| } | |
| .right_section >div { | |
| display: none !important; | |
| } | |
| .right_section >div[id] { | |
| display: block !important; | |
| } | |
| /*首页帖子列表块*/ | |
| .forum_content{ | |
| display: flex; | |
| } | |
| #contet_wrap, | |
| #content_wrap { | |
| flex: 1; | |
| box-sizing: border-box; | |
| float: none !important; | |
| display: block; | |
| width: 0 !important; | |
| } | |
| #aside { | |
| width: 18% !important; | |
| min-width: 240px !important; | |
| box-sizing: border-box; | |
| float: none !important; | |
| display: block; | |
| } | |
| .region_header, | |
| .region_bright > .title, | |
| .region_bright > .trip_title, | |
| .aside_album_good_title, | |
| .zyq_bright .mod .tl{ | |
| background: rgba(0,0,0,.04); | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| border-radius: 14px; | |
| width: 100%; | |
| padding: 0 10px; | |
| margin-left: -10px; | |
| color: #777 !important; | |
| } | |
| .region_title, | |
| .region_title a, | |
| .zyq_mod_title, | |
| .aside_album_good_title span, | |
| .region_bright > .title h1{ | |
| color: inherit !important; | |
| font-weight: bold !important; | |
| height: inherit !important; | |
| font-size: 14px; | |
| } | |
| .region_header a, | |
| .aside_album_good_title a, | |
| .zyq_bright .mod .tl a{ | |
| color: inherit !important; | |
| text-decoration: none !important; | |
| } | |
| .aside_region { | |
| border-top: none !important; | |
| } | |
| .region_bright { | |
| border-top: none !important; | |
| background: none; | |
| } | |
| .zyq_bright .mod, | |
| .aside_album_good_bright{ | |
| background: none !important; | |
| } | |
| .aside_region, | |
| .region_bright, | |
| .zyq_bright .mod, | |
| .aside_album_good_bright{ | |
| border-bottom: 1px solid rgba(0,0,0,.06); | |
| } | |
| .aside_album_good_title>a[href], | |
| .region_header .j_op a{ | |
| display: inline !important; | |
| font-size: 0 !important; | |
| opacity: .5; | |
| transition: opacity .4s ease; | |
| } | |
| .region_header .j_op{ | |
| height: 100% !important; | |
| } | |
| .aside_album_good_title>a[href]:hover, | |
| .region_header .j_op a:hover{ | |
| opacity: 1; | |
| } | |
| .aside_album_good_title>a[href]:after, | |
| .region_header .j_op a:after{ | |
| content: '\e5d3'; | |
| font-family: 'Material Icons' ; | |
| font-size: 28px; | |
| } | |
| .region_header .j_op a.p_balv_btnmanager:after, | |
| .region_header .j_op a.j_zyq_mod_edit_entry:after{ | |
| content: '\e869'; | |
| font-size: 16px; | |
| margin-right: 4px; | |
| } | |
| .user_level, | |
| .my_current_forum{ | |
| position: static !important; | |
| margin: 0 !important; | |
| } | |
| .user_level .title, | |
| .my_current_forum .title{ | |
| display: none !important; | |
| } | |
| .my_current_forum .badge, | |
| .user_level .badge{ | |
| position: relative; | |
| height: 24px; | |
| line-height: 24px; | |
| border: 1px rgba(0,0,0,.1) solid !important; | |
| border-radius: 4px; | |
| background: rgba(0,0,0,.04); | |
| overflow: hidden; | |
| } | |
| .my_current_forum .badge_index, | |
| .user_level .badge_index{ | |
| position: absolute; | |
| top: 0 !important; | |
| left: auto !important; | |
| right: 0 !important; | |
| margin: 0 !important; | |
| height: 100% !important; | |
| line-height: inherit !important; | |
| background: rgba(0,0,0,.3) !important; | |
| color: #fff !important; | |
| z-index: 1; | |
| padding: 0; | |
| text-align: center; | |
| width: 24px; | |
| text-indent: 0 !important; | |
| font-family: inherit !important; | |
| } | |
| .user_level .badge_name, | |
| .my_current_forum .badge_name { | |
| position: absolute; | |
| width: 72px; | |
| color: #4C4C4C; | |
| text-align: center; | |
| } | |
| .user_level .exp, | |
| .my_current_forum .exp{ | |
| padding: 0 !important; | |
| } | |
| .exp_bar { | |
| border: none !important; | |
| border-radius: 0 !important; | |
| height: 16px !important; | |
| background: rgba(0,0,0,.1); | |
| } | |
| .exp_bar_current { | |
| margin: 0 !important; | |
| height: 100% !important; | |
| border: none !important; | |
| border-radius: 0 !important; | |
| background: rgba(0,0,0,.1) !important; | |
| } | |
| .exp_num { | |
| top: 0 !important; | |
| height: 100% !important; | |
| line-height: 16px !important; | |
| font-size: 12px !important; | |
| } | |
| .region_cnt:hover .exp_num { | |
| display: block; | |
| } | |
| .exp_bar span, | |
| .exp_bar .exp_current_num { | |
| color: #666 !important; | |
| } | |
| #content_leftList, | |
| div[id="pagelet_frs-list/pagelet/thread_list"], | |
| #thread_list, | |
| .j_thread_list, | |
| .threadlist_bright .t_con{ | |
| width:100% !important; | |
| box-sizing: border-box; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border: none !important; | |
| } | |
| .threadlist_bright li.thread_top_list_folder{ | |
| background: none !important; | |
| } | |
| .interview .threadListGroupCnt, | |
| .threadlist_bright li{ | |
| border-bottom: 1px solid rgba(0,0,0,.06) !important; | |
| transition: background .4s ease; | |
| } | |
| .threadlist_bright li:last-of-type{ | |
| border-bottom: none !important; | |
| } | |
| /*.interview .threadListGroupCnt:hover,*/ | |
| .threadlist_bright li:hover{ | |
| background: rgba(0,0,0,.02) | |
| } | |
| .threadlist_bright .thread_pic_bright, | |
| .threadlist_bright .t_con { | |
| padding: 12px 0 !important; | |
| display: flex; | |
| align-items: stretch; | |
| } | |
| .threadlist_li_left, | |
| .j_threadlist_li_left{ | |
| float: none !important; | |
| width: 8% !important; | |
| min-width: 75px !important; | |
| padding: 0 14px 0 10px !important; | |
| box-sizing: border-box; | |
| margin-top: -3px !important; | |
| position: relative; | |
| display: flex; | |
| } | |
| .threadlist_rep_num { | |
| background: rgba(0,0,0,.04) !important; | |
| overflow: hidden; | |
| width: 100% !important; | |
| height: 24px !important; | |
| line-height: 24px !important; | |
| text-align: center; | |
| color: #666; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| border-radius:12px; | |
| } | |
| .threadlist_li_right, | |
| .j_threadlist_li_right{ | |
| margin: 0 !important; | |
| float: none !important; | |
| width: 0 !important; | |
| flex: 1; | |
| position: static !important; | |
| } | |
| .threadlist_bright .threadlist_lz, | |
| .threadlist_bright .threadlist_detail{ | |
| width: 100% !important; | |
| display: flex; | |
| padding: 0 !important; | |
| } | |
| .threadlist_bright .threadlist_lz{ | |
| overflow: visible; | |
| } | |
| .threadlist_bright .threadlist_detail{ | |
| padding-top: 4px !important; | |
| } | |
| .threadlist_bright .threadlist_title, | |
| .threadlist_bright .threadlist_text{ | |
| float: none !important; | |
| width: 0 !important; | |
| flex: 1; | |
| display: flex; | |
| margin-right: 20px; | |
| padding: 0 !important; | |
| box-sizing: border-box; | |
| height: auto !important; | |
| overflow: visible; | |
| } | |
| .threadlist_bright .threadlist_abs_onlyline{ | |
| flex: 1 1 100%; | |
| } | |
| .threadlist_bright .threadlist_text{ | |
| font-size: 12px !important; | |
| flex-wrap: wrap; | |
| } | |
| .threadlist_bright .threadlist_title{ | |
| height: 24px!important; | |
| line-height: 17px!important; | |
| font-size: 14px!important; | |
| flex-wrap: nowrap; | |
| } | |
| .threadlist_bright .threadlist_title a.j_th_tit { | |
| order: 1; | |
| flex: 0 1 auto; | |
| text-overflow: ellipsis; | |
| overflow: hidden; | |
| } | |
| .threadlist_bright .threadlist_title.threadlist_img{ | |
| overflow: visible; | |
| } | |
| .threadlist_bright .threadlist_title.threadlist_img img{ | |
| display: none; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listThreadTitle a, | |
| .threadlist_title a.j_th_tit { | |
| color: #2d64b3 !important; | |
| font-size: inherit !important; | |
| } | |
| .threadlist_title a.j_th_tit:hover { | |
| text-decoration: underline; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listThreadTitle a:visited, | |
| .threadlist_title a.j_th_tit:visited { | |
| color: #566c84 !important; | |
| } | |
| .threadlist_bright .threadlist_abs_onlyline, | |
| .threadlist_bright .threadlist_abs{ | |
| color: #666 !important; | |
| } | |
| .threadlist_title .see-lz{ | |
| order: 2; | |
| font-size: 12px !important; | |
| padding: 0 6px; | |
| margin-left: 5px; | |
| margin-top: -2px; | |
| height: 20px; | |
| line-height: 20px; | |
| text-decoration: none !important; | |
| border-radius: 4px; | |
| background: rgba(0,0,0,.25); | |
| color: #fff !important; | |
| transition: background .4s ease; | |
| } | |
| .threadlist_title .see-lz:hover{ | |
| order: 2; | |
| font-size: 12px !important; | |
| padding: 0 6px; | |
| margin-left: 5px; | |
| height: 20px; | |
| line-height: 20px; | |
| text-decoration: none !important; | |
| border-radius: 4px; | |
| background: rgba(0,0,0,.4); | |
| color: #fff !important; | |
| } | |
| .threadlist_bright .threadlist_author{ | |
| float: none !important; | |
| display: flex; | |
| width: 16% !important; | |
| min-width: 155px; | |
| padding-right: 20px; | |
| white-space: nowrap; | |
| font-size: 0 !important; | |
| overflow: visible !important; | |
| } | |
| .tb_icon_author, | |
| .tb_icon_author_rely{ | |
| position: relative; | |
| display: inline-block !important; | |
| background: none !important; | |
| padding: 0 !important; | |
| height: 20px !important; | |
| line-height: 20px !important; | |
| margin: 0 !important; | |
| overflow: visible !important; | |
| flex: 1; | |
| float: none !important; | |
| z-index: 2; | |
| pointer-events: none; | |
| } | |
| .tb_icon_author *, | |
| .tb_icon_author_rely *{ | |
| pointer-events: auto; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listUser:before, | |
| .frs_bright_preicon, | |
| .tb_icon_author:before, | |
| .tb_icon_author_rely:before{ | |
| display: inline-block; | |
| font-family: 'Material Icons'; | |
| font-size: 12px; | |
| width: 30px; | |
| vertical-align: top; | |
| text-align: center; | |
| color: #bbb; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listUser:before, | |
| .tb_icon_author:before{ | |
| content:"\e7fd"; | |
| font-size: 16px; | |
| } | |
| .tb_icon_author_rely:before{ | |
| content:"\e0ca" | |
| } | |
| .threadlist_bright .icon_author, | |
| .threadlist_bright .icon_replyer{ | |
| display: none !important; | |
| } | |
| .threadlist_author .j_user_card, | |
| .threadlist_author .frs-author-name { | |
| display: inline-block; | |
| width: auto !important; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| font-size: 12px; | |
| } | |
| .threadlist_reply_date, | |
| .frs-author-name { | |
| font-size: 12px; | |
| } | |
| .frs_bright_preicon{ | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| } | |
| .frs_bright_preicon>*{ | |
| margin: -2px 0 0 7px!important; | |
| } | |
| .frs_bright_icons{ | |
| vertical-align: top !important; | |
| padding-left: 6px; | |
| padding-top: 2px; | |
| } | |
| /*帖子缩略图*/ | |
| .threadlist_bright .small_wrap, | |
| .threadlist_bright .small_list{ | |
| position: relative; | |
| z-index: 2; | |
| pointer-events: none; | |
| } | |
| .threadlist_bright .small_wrap *:not(.small_list), | |
| .threadlist_bright .small_list *{ | |
| pointer-events: auto; | |
| } | |
| .feed_item .large_status, | |
| .threadlist_bright .media_box{ | |
| position: relative; | |
| z-index: 2; | |
| margin: 0 !important; | |
| border-top: solid 1px rgba(0,0,0,.04); | |
| padding-bottom: 20px; | |
| } | |
| .feed_item .large_box, | |
| .threadlist_bright .media_disp { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 50px; | |
| background: none !important; | |
| border: none !important; | |
| display: block; | |
| position: relative; | |
| left: 0 !important; | |
| box-sizing: border-box; | |
| text-align: center; | |
| } | |
| .feed_item .tools, | |
| .media_pic_control .tb_icon_fav, | |
| .threadlist_bright .media_pic_control { | |
| position: relative; | |
| height: 30px; | |
| line-height: 30px; | |
| margin-bottom: 8px !important; | |
| width: auto !important; | |
| display: inline-block; | |
| padding: 0 20px; | |
| box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2) !important; | |
| background: #eee !important; | |
| border-radius: 0 0 10px 10px; | |
| color: rgba(0, 0, 0, .2); | |
| } | |
| .feed_item .tools_foot>.enter:before{ | |
| content: '进入贴子' | |
| } | |
| .feed_item .tools>a, | |
| .feed_item .tools_foot>.enter, | |
| .threadlist_bright .enter_pb_wrapper>a, | |
| .media_pic_control>a{ | |
| color: rgba(0, 0, 0, .6) !important; | |
| padding: 0 !important; | |
| background-image: none !important; | |
| width: auto !important; | |
| } | |
| .feed_item .tools>a:hover, | |
| .feed_item .tools_foot>.enter:hover, | |
| .threadlist_bright .enter_pb_wrapper>a:hover, | |
| .media_pic_control>a:hover{ | |
| text-decoration: none; | |
| color: rgba(0, 0, 0, .8) !important; | |
| } | |
| .media_pic_control .line { | |
| margin: 0 10px; | |
| color: rgba(0, 0, 0, .2); | |
| } | |
| .media_pic_control [class^="icon_"], | |
| .media_pic_control [class*=" icon_"]{ | |
| display: none; | |
| } | |
| .feed_item .tools>a:before, | |
| .media_pic_control>a:before, | |
| .media_pic_control>a:before{ | |
| font-family: 'Material Icons'; | |
| font-style: normal; | |
| font-size: 20px; | |
| display: inline-block; | |
| width: 20px; | |
| height: 20px; | |
| vertical-align: top; | |
| } | |
| .feed_item .tools .fold_btn:before, | |
| .media_pic_control .j_retract:before{ | |
| content: "\e318"; | |
| } | |
| .feed_item .tools .screen_full:before, | |
| .media_pic_control .j_ypic:before{ | |
| content: "\e56b"; | |
| font-size: 16px; | |
| } | |
| .media_pic_control .j_rotation_left:before{ | |
| content: "\e419"; | |
| } | |
| .media_pic_control .j_rotation_right:before{ | |
| content: "\e41a"; | |
| } | |
| .media_pic_control .j_pop_media:before{ | |
| content: "\e89e"; | |
| font-size: 16px; | |
| margin-left: 20px; | |
| } | |
| .media_pic_control .tb_icon_fav{ | |
| position: absolute; | |
| right: -20px !important; | |
| top: 0; | |
| transform: translateX(100%); | |
| padding: 0 8px !important; | |
| text-indent: -2px; | |
| } | |
| .media_pic_control .tb_icon_fav.done{ | |
| color: #FF7C7C !important; | |
| } | |
| .media_pic_control .tb_icon_fav.done:hover{ | |
| color: #f24949 !important; | |
| } | |
| .media_pic_control .tb_icon_fav:before{ | |
| content: "\e87e"; | |
| font-size: 16px; | |
| margin-right: -1px; | |
| } | |
| .media_pic_control .tb_icon_fav.done:before{ | |
| content: "\e87d"; | |
| } | |
| .feed_item .tools_foot, | |
| .threadlist_bright .enter_pb_wrapper{ | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| position: absolute; | |
| left: auto; | |
| right: 0; | |
| bottom: 20px; | |
| width: auto !important; | |
| } | |
| .feed_item .tools_foot>.enter, | |
| .threadlist_bright .enter_pb_wrapper>a{ | |
| margin: 0 !important; | |
| padding: 0 14px !important; | |
| height: 30px; | |
| line-height: 30px !important; | |
| text-align: center; | |
| font-size: 14px; | |
| overflow: hidden; | |
| border: none !important; | |
| box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2) !important; | |
| background: #eee !important; | |
| border-radius: 15px 0 0 15px; | |
| } | |
| .icon_thread_hidden { | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| z-index: 1; | |
| width: 0; | |
| height: 0; | |
| border-top: 24px solid rgba(0,0,0,.2); | |
| border-left: 24px solid transparent; | |
| background: none !important; | |
| transition: border .4s ease; | |
| } | |
| .icon_thread_hidden:hover { | |
| border-top: 24px solid rgba(0,0,0,.4); | |
| } | |
| .icon_thread_hidden:before { | |
| content: "\e5cd"; | |
| position: absolute; | |
| top: -17px; | |
| right: 1px; | |
| font-family: 'Material Icons'; | |
| font-size: 12px; | |
| line-height: 0; | |
| color: #fff; | |
| } | |
| .icon_top_folder { | |
| position: absolute; | |
| left: -25px; | |
| top: 0; | |
| width: 24px; | |
| height: auto; | |
| border-radius: 10px 0 0 10px; | |
| box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.08); | |
| background: #fefefe !important; | |
| overflow: hidden; | |
| word-break: break-all; | |
| padding: 10px 6px; | |
| box-sizing: border-box; | |
| line-height: 16px; | |
| font-size: 12px; | |
| color: #aaa; | |
| } | |
| .icon_top_folder:hover { | |
| color: #666; | |
| } | |
| .icon_top_folder:before { | |
| content:"展开置顶"; | |
| } | |
| .tb_rich_poster { | |
| margin-left: 20px; | |
| } | |
| .tb_rich_poster_container { | |
| width: 100% !important; | |
| padding: 0 !important; | |
| padding-top: 20px !important; | |
| } | |
| #pb-footer-header:empty { | |
| display: none !important; | |
| } | |
| /*视频浮窗*/ | |
| #pop_video{ | |
| left: 50vw !important; | |
| top: 50vh !important; | |
| right: auto!important; | |
| bottom: auto !important; | |
| transform: translate(-50%,-50%); | |
| padding-bottom: 6px !important; | |
| } | |
| /*发帖编辑框*/ | |
| .tb_rich_poster { | |
| margin: 0 20px !important; | |
| } | |
| .poster_body { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .poster_head { | |
| border: none !important; | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| margin-bottom: 10px !important; | |
| line-height: 28px; | |
| } | |
| .poster_head_text{ | |
| width: auto !important; | |
| padding: 0 10px !important; | |
| background: rgba(0,0,0,.06); | |
| border-radius: 6px; | |
| color: #999; | |
| font-weight: normal !important; | |
| font-size: 14px !important; | |
| } | |
| .poster_head_text>a{ | |
| line-height: inherit !important; | |
| font-size: inherit !important; | |
| font-weight: inherit !important; | |
| color: inherit !important; | |
| margin-right: 14px !important; | |
| } | |
| .poster_head_text>a:last-of-type{ | |
| margin-right: 4px !important; | |
| } | |
| .poster_head_text .split_text, | |
| .poster_head_text .post_head_btn_icon{ | |
| display: none !important; | |
| } | |
| .poster_head_text>a:before{ | |
| display: inline-block; | |
| font-family: 'Material Icons'; | |
| font-size: 16px; | |
| width: 24px; | |
| vertical-align: top; | |
| text-align: center; | |
| color: #bbb; | |
| } | |
| .poster_head_text .add_thread_btn:before{ | |
| content:"\e253"; | |
| } | |
| .poster_head_text .add_thread_btn[title="发表新贴"]:before{ | |
| content:"\e254"; | |
| } | |
| .poster_head_text .add_vote_btn:before{ | |
| content:"\e01d"; | |
| font-size: 18px; | |
| } | |
| .poster_head_text a.cur{ | |
| color: #666 !important; | |
| } | |
| .poster_head_text a.cur:before{ | |
| color: #777 !important; | |
| } | |
| /*标题编辑域*/ | |
| .title_container { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| padding-bottom: 10px !important; | |
| } | |
| .poster_body .editor_title { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 10px !important; | |
| box-sizing: border-box !important; | |
| outline: none !important; | |
| border: none !important; | |
| font-size: 18px !important; | |
| height: 40px !important; | |
| line-height: 36px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| background: rgba(0, 0, 0, 0.04) !important; | |
| color: #666 !important; | |
| transition-property: background, border-bottom; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .poster_body .tbui_placeholder { | |
| width: 100% !important; | |
| position: absolute; | |
| font-size: 18px !important; | |
| height: 36px !important; | |
| line-height: 36px !important; | |
| color: #bbb !important; | |
| left: 0 !important; | |
| } | |
| /*标题前缀*/ | |
| .pprefix-list { | |
| display: block !important; | |
| background: #f8f8f8; | |
| border: none !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .2) !important; | |
| pointer-events: none; | |
| opacity: 0; | |
| transform: translateY(-40px); | |
| transition-property: opacity, transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .pprefix-list[style*="block"] { | |
| opacity: 1; | |
| transform: none; | |
| pointer-events: auto; | |
| } | |
| .pprefix-item { | |
| color: #666; | |
| cursor: pointer; | |
| transition-property: background; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .editor_content_wrapper { | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| background: none !important; | |
| box-sizing: border-box; | |
| } | |
| .old_style_wrapper { | |
| width: 100% !important; | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| border: none !important; | |
| box-sizing: border-box; | |
| } | |
| .poster_body .edui-container { | |
| width: 100% !important; | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .poster_body .edui-body-container { | |
| min-height: 216px !important; | |
| width: 100% !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .edui-body-container *::selection { | |
| background-color: rgba(0,0,0,.12); | |
| text-shadow: none; | |
| } | |
| .tb_poster_placeholder{ | |
| position: absolute !important; | |
| left: 0 !important; | |
| top: 55px !important; | |
| width: 100% !important; | |
| padding: 0 15px !important; | |
| box-sizing: border-box; | |
| } | |
| .tb_poster_placeholder p{ | |
| width: 100% !important; | |
| } | |
| /*编辑框控件域*/ | |
| .edui-toolbar { | |
| background: rgba(0, 0, 0, .08) !important; | |
| box-sizing: border-box; | |
| border-bottom: 4px solid rgba(0, 0, 0, .1); | |
| height: 40px !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .poster_body .edui-editor-body .edui-body-container { | |
| padding: 0 10px !important; | |
| } | |
| .poster_body .editor_title:focus, | |
| .poster_body .edui-editor-body .edui-body-container:focus { | |
| background: rgba(0, 0, 0, 0.02) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .2) !important; | |
| } | |
| .edui-popup { | |
| z-index: 9 !important; | |
| } | |
| .edui-btn-toolbar { | |
| position: absolute; | |
| top: 0; | |
| width: 100% !important; | |
| background: none !important; | |
| padding: 0 !important; | |
| height: 40px !important; | |
| line-height: 36px !important; | |
| box-sizing: border-box; | |
| } | |
| .edui-btn { | |
| height: 40px !important; | |
| display: block !important; | |
| width: 60px !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| float: left !important; | |
| background: none !important; | |
| overflow: hidden; | |
| cursor: pointer; | |
| box-sizing: border-box; | |
| border-bottom: 4px solid rgba(0, 0, 0, 0) !important; | |
| transition-property: border; | |
| transition-duration: 1s; | |
| transition-timing-function: ease; | |
| } | |
| .edui-toolbar .edui-btn-red, | |
| .edui-toolbar .edui-btn-bold, | |
| .edui-toolbar .edui-btn-fullscreen { | |
| width: 36px !important; | |
| float: right !important; | |
| } | |
| .edui-toolbar .edui-btn[style*="none"] { | |
| display: none !important; | |
| } | |
| .edui-btn:hover { | |
| border-bottom: 4px solid rgba(0, 0, 0, .2) !important; | |
| } | |
| .edui-btn:hover .edui-icon { | |
| transform: translateY(-38px); | |
| } | |
| .edui-icon { | |
| height: 36px !important; | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| width: 100% !important; | |
| transition-property: transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .edui-icon:before { | |
| content: '\e22a'; | |
| font-family: 'Material Icons'; | |
| display: block; | |
| color: #999; | |
| font-size: 24px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| .edui-icon:after { | |
| content: '未定义'; | |
| display: block; | |
| color: #666; | |
| font-size: 12px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%) translateY(38px); | |
| white-space: nowrap; | |
| } | |
| .edui-icon-fullscreen:before { | |
| content: "\e5d0"; | |
| } | |
| .tb-ueditor-fullscreen .edui-icon-fullscreen:before { | |
| content: "\e5d1"; | |
| } | |
| .tb-ueditor-fullscreen .edui-icon-fullscreen:after { | |
| content: "还原"; | |
| } | |
| .edui-icon-fullscreen:after { | |
| content: "全屏"; | |
| } | |
| .edui-icon-bold:before { | |
| content: "\e238"; | |
| margin-top: 1px; | |
| } | |
| .edui-icon-bold:after { | |
| content: "加粗"; | |
| } | |
| .edui-icon-red:before { | |
| content: "\e23c"; | |
| font-size: 18px; | |
| } | |
| .edui-icon-red:after { | |
| content: "红字"; | |
| } | |
| .edui-icon-paypost:before { | |
| content: "\e263"; | |
| } | |
| .edui-icon-paypost:after { | |
| content: "付费可见"; | |
| } | |
| .edui-icon-medal:before { | |
| content: "\e838"; | |
| } | |
| .edui-icon-medal:after { | |
| content: "贴吧特权"; | |
| } | |
| .edui-btn-name-portrait .edui-icon-medal:before { | |
| content: "\e253"; | |
| font-size: 20px; | |
| } | |
| .edui-btn-name-portrait .edui-icon-medal:after { | |
| content: "发帖气泡"; | |
| } | |
| .edui-icon-image:before { | |
| content: "\e251"; | |
| } | |
| .edui-icon-image:after { | |
| content: "图片"; | |
| } | |
| .edui-icon-video:before { | |
| content: "\e02c"; | |
| } | |
| .edui-icon-video:after { | |
| content: "视频"; | |
| } | |
| .edui-icon-music:before { | |
| content: "\e405"; | |
| } | |
| .edui-icon-music:after { | |
| content: "音乐"; | |
| } | |
| .edui-icon-formula:before { | |
| content: "\e24a"; | |
| } | |
| .edui-icon-formula:after { | |
| content: "数学公式"; | |
| } | |
| .edui-icon-emotion:before { | |
| content: "\e24e"; | |
| } | |
| .edui-icon-emotion:after { | |
| content: "表情"; | |
| } | |
| .edui-icon-scrawl:before { | |
| content: "\e3b7"; | |
| } | |
| .edui-icon-scrawl:after { | |
| content: "涂鸦"; | |
| } | |
| .edui-icon-attachment:before { | |
| content: "\e2bc"; | |
| font-size: 26px; | |
| } | |
| .edui-icon-attachment:after { | |
| content: "附件"; | |
| } | |
| .edui-icon-quick-reply:before { | |
| content: "\e539"; | |
| } | |
| .edui-icon-quick-reply:after { | |
| content: "快速回帖"; | |
| } | |
| .edui-icon-topic:before { | |
| content: '#'; | |
| font-family: fantasy; | |
| font-size: 24px; | |
| font-weight: bold; | |
| margin-top: -0.5px; | |
| } | |
| .edui-icon-topic:after { | |
| content: "话题"; | |
| } | |
| /*付费可见编辑框*/ | |
| .poster_body .paypost-fee-editor { | |
| margin: 0 !important; | |
| margin-top: 2px !important; | |
| } | |
| .paypost_tdou_ipt_area { | |
| width: 260px !important; | |
| height: 36px !important; | |
| line-height: 36px !important; | |
| padding-left: 14px; | |
| position: absolute; | |
| z-index: 1; | |
| } | |
| .j_paypost_tdou_ipt { | |
| box-sizing: border-box; | |
| padding: 0 6px !important; | |
| margin: 0 2px !important; | |
| width: 70px !important; | |
| outline: none !important; | |
| border: none !important; | |
| background: rgba(255, 255, 255, .4) !important; | |
| transition-property: background; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .j_paypost_tdou_ipt:focus { | |
| background: rgba(255, 255, 255, .8) !important; | |
| } | |
| .paypost_editor_close_wrap { | |
| height: 36px; | |
| } | |
| .paypost_editor_close { | |
| display: block; | |
| width: 36px !important; | |
| height: 36px !important; | |
| ; | |
| background: none !important; | |
| color: #999 !important; | |
| } | |
| .paypost_editor_close:hover { | |
| color: #F44336 !important; | |
| } | |
| .paypost_editor_close:before { | |
| content: "\e5c9"; | |
| font-family: 'Material Icons'; | |
| display: block; | |
| font-size: 24px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| .paypost-fee-editor .edui-btn-toolbar { | |
| padding-left: 260px !important; | |
| } | |
| /*签名档选择域*/ | |
| .lzl_panel_error, | |
| .poster_error{ | |
| display: inline-block !important; | |
| box-sizing: border-box; | |
| margin: 0 !important; | |
| padding: 0 10px !important; | |
| height: 26px !important; | |
| line-height: 26px !important; | |
| background: rgba(0, 0, 0, .08); | |
| border-radius: 0 0 10px 10px; | |
| color: #999 !important; | |
| position: relative; | |
| left: 50% !important; | |
| transform: translateX(-50%); | |
| } | |
| .lzl_panel_error:empty, | |
| .poster_error:empty{ | |
| display: none !important; | |
| } | |
| .editor_content_wrapper .poster_error{ | |
| position: absolute; | |
| } | |
| .poster_share, | |
| .poster_signature { | |
| display: inline-block !important; | |
| box-sizing: border-box; | |
| margin: 0 !important; | |
| padding: 0 20px !important; | |
| height: 40px !important; | |
| line-height: 40px !important; | |
| background: rgba(0, 0, 0, .08); | |
| border-radius: 0 0 10px 10px; | |
| color: #999 !important; | |
| } | |
| .poster_head_surveillance a[href], | |
| .poster_signature a[href] { | |
| color: #666 !important; | |
| text-decoration: none !important; | |
| } | |
| .poster_head_surveillance a[href]:hover, | |
| .poster_signature a[href]:hover { | |
| color: #999 !important; | |
| } | |
| .poster_signature[display*="none"] { | |
| display: none !important; | |
| } | |
| .poster_share > label, | |
| .poster_signature > label { | |
| padding: 11px 0; | |
| line-height: 18px; | |
| cursor: pointer; | |
| -moz-user-select: none; | |
| -webkit-user-select: none; | |
| } | |
| .poster_share input, | |
| .poster_signature input { | |
| cursor: pointer; | |
| width: 18px !important; | |
| height: 18px !important; | |
| display: inline-block !important; | |
| vertical-align: top !important; | |
| margin-right: 4px; | |
| margin-top: -1px; | |
| } | |
| /*编辑框底部面板*/ | |
| .editor_bottom_panel { | |
| width: 100% !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| margin-top: 20px !important; | |
| } | |
| .poster_body .poster_submit { | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| padding: 0 10px !important; | |
| box-sizing: content-box; | |
| } | |
| .poster-right-area { | |
| width: 600px; | |
| position: relative; | |
| } | |
| .poster_body .save-to-quick-reply-btn { | |
| width: auto !important; | |
| padding: 0 14px !important; | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| } | |
| .poster_body .save-to-quick-reply-btn:before { | |
| content: "\e149"; | |
| font-size: 24px; | |
| text-indent: -6px; | |
| margin-right: 2px; | |
| } | |
| .save-to-quick-reply-btn * { | |
| color: inherit !important; | |
| } | |
| .poster_draft_status { | |
| position: absolute !important; | |
| top: 0 !important; | |
| right: 180px !important; | |
| } | |
| .j_floating > .poster_draft_status { | |
| position: relative !important; | |
| right: 5px !important; | |
| top: -2px !important; | |
| } | |
| /*发帖成功提示*/ | |
| .tb_poster_info { | |
| position: absolute !important; | |
| left: 50% !important; | |
| top: 50% !important; | |
| transform: translate(-50%,-50%) !important; | |
| border: none !important; | |
| background-color: #4879BD !important; | |
| border-radius: 6px !important; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 16px 0 rgba(0, 0, 0, 0.2) !important; | |
| color: #fff !important; | |
| margin: 0 !important; | |
| padding: 8px 20px !important; | |
| } | |
| .tb_poster_info *{ | |
| color: inherit !important; | |
| } | |
| .poster_success_content { | |
| margin: 0 !important; | |
| text-align: center; | |
| } | |
| .poster_success_content > * { | |
| display: inline-block !important; | |
| float: none !important; | |
| vertical-align: top; | |
| } | |
| .post_success_exp { | |
| width: 48px !important; | |
| } | |
| /*搜索栏*/ | |
| .header_divider{ | |
| border: none; | |
| } | |
| .search_form form{ | |
| margin: 0; | |
| } | |
| .search_bright{ | |
| height: auto !important; | |
| margin: 0 auto; | |
| position: relative; | |
| background: none !important; | |
| padding-top: 20px !important; | |
| margin-bottom: 20px !important; | |
| } | |
| .search_top, | |
| .search_main_wrap{ | |
| position: relative; | |
| height: 30px !important; | |
| width: 100% !important; | |
| box-sizing: border-box; | |
| padding-right: 14px !important; | |
| } | |
| .search_top{ | |
| display: flex; | |
| position: absolute !important; | |
| z-index: 1; | |
| pointer-events: none; | |
| } | |
| .search_main, | |
| .search_form{ | |
| width: 100% !important; | |
| padding: 0 !important; | |
| background: none !important; | |
| box-sizing: border-box; | |
| } | |
| .search_form { | |
| display: flex; | |
| } | |
| .search_top:before, | |
| .search_logo, | |
| #search_logo_small { | |
| position: static !important; | |
| width: 60px !important; | |
| height: 30px !important; | |
| margin: 0 !important; | |
| background: none !important; | |
| font-size: 36px; | |
| line-height: 28px; | |
| text-align: center; | |
| color: rgba(0,0,0,.2); | |
| pointer-events: auto; | |
| } | |
| .search_top:hover:before | |
| .search_logo:hover, | |
| #search_logo_small:hover { | |
| text-decoration: none; | |
| color: rgba(0,0,0,.4); | |
| } | |
| .search_top:before, | |
| .search_logo:before, | |
| #search_logo_small:before { | |
| content: "\e91d"; | |
| font-family: 'Material Icons'; | |
| } | |
| .search_form #search_logo_small{ | |
| visibility: hidden; | |
| } | |
| .search_logo+#search_logo_small{ | |
| display: none !important; | |
| } | |
| .search_main_fixed #search_logo_small{ | |
| font-size: 30px; | |
| visibility: visible; | |
| } | |
| #tb_header_search_form{ | |
| display: flex; | |
| flex: 1; | |
| } | |
| .search_ipt { | |
| flex: 1; | |
| font-family: inherit !important; | |
| width: 0 !important; | |
| margin: 0 !important; | |
| padding: 0 10px !important; | |
| box-sizing: border-box !important; | |
| outline: none !important; | |
| border: none !important; | |
| font-size: 14px !important; | |
| height: 30px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| color: #999 !important; | |
| transition-property: background, border-bottom; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .search_ipt:focus { | |
| color: #666 !important; | |
| } | |
| .search_btn_wrap{ | |
| display: block !important; | |
| float: none !important; | |
| margin:0 !important; | |
| width: auto !important; | |
| height: auto !important; | |
| background: none !important; | |
| } | |
| .search_nav>a, | |
| .search_btn, | |
| .senior-search-link{ | |
| position: static !important; | |
| margin: 0 !important; | |
| display: block !important; | |
| width: 100px !important; | |
| height: 30px !important; | |
| line-height: 30px !important; | |
| font-size: 14px !important; | |
| text-align: center; | |
| border-radius: 0; | |
| background: rgba(0, 0, 0, .08) !important; | |
| border: none !important; | |
| border-left: 2px solid rgba(0, 0, 0, .04) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| outline: none !important; | |
| box-shadow: none !important; | |
| box-sizing: border-box; | |
| color: #999 !important; | |
| font-family: inherit !important; | |
| text-decoration: none !important; | |
| transition-property: box-shadow, background, height, margin-top, color; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| font-weight: normal !important; | |
| } | |
| .search_nav>a:hover, | |
| .search_btn:hover, | |
| .senior-search-link:hover{ | |
| height: 32px !important; | |
| margin-top: -2px !important; | |
| color: #666!important; | |
| background: rgba(0, 0, 0, .06) !important; | |
| } | |
| .search_nav>a:active, | |
| .search_btn:active, | |
| .senior-search-link:active{ | |
| height: 28px !important; | |
| margin-top: 2px !important; | |
| background: rgba(0, 0, 0, .1) !important; | |
| } | |
| .search_nav>a:first-of-type, | |
| .search_btn_enter_ba{ | |
| border-left: none !important; | |
| } | |
| .j_search_post { | |
| margin-right: 0 !important; | |
| } | |
| #search_baidu_promote { | |
| display: none; | |
| } | |
| .s_tools { | |
| display: none !important; | |
| } | |
| .search_nav { | |
| display: flex; | |
| flex: 1; | |
| padding: 20px 0 !important; | |
| margin: -20px 0 !important; | |
| height: inherit !important; | |
| background: none !important; | |
| opacity: 0; | |
| } | |
| .search_nav *{ | |
| display: none !important; | |
| } | |
| .search_nav>a{ | |
| flex: 1; | |
| } | |
| .search_logo:hover+.head_right_region .search_top, | |
| .search_top:hover .search_nav{ | |
| opacity: 1; | |
| /*事件延迟,降低误操作率*/ | |
| animation-name: eventon_duration; | |
| animation-duration: .8s; | |
| animation-timing-function: linear; | |
| animation-fill-mode: forwards; | |
| } | |
| .search_top:hover+.search_main_wrap{ | |
| opacity: 0; | |
| } | |
| .search_nav, | |
| .search_main_wrap{ | |
| transition-property: opacity; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .search_main_fixed { | |
| position: fixed; | |
| padding: 8px 20px !important; | |
| left: 0; | |
| background-color: #fafafa !important; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important; | |
| } | |
| .search_main_fixed:before { | |
| content: "Design by Maverick"; | |
| position: fixed; | |
| display: block; | |
| height: 39px; | |
| width: 60px; | |
| top: 46px; | |
| right: 25px; | |
| font-size: 0; | |
| background: #fafafa; | |
| border-radius: 0 0 40px 40px; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08) !important; | |
| } | |
| .search_main_fixed .search_btn_wrap+.search_btn_wrap{ | |
| margin-right: 16px !important; | |
| } | |
| .search_main_fixed .senior-search-link{ | |
| display: none !important; | |
| } | |
| /*搜索推荐浮层*/ | |
| .suggestion { | |
| margin: 0 !important; | |
| margin-left: 1px !important; | |
| margin-top: 2px !important; | |
| padding-bottom: 10px; | |
| border-radius: 0 0 4px 4px; | |
| border: none !important; | |
| box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.16); | |
| display: block !important; | |
| pointer-events: none; | |
| opacity: 0; | |
| min-height: 30px; | |
| transform:translateY(-40px); | |
| transition-property: opacity, transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .search_main:not(.search_main_fixed) .suggestion{ | |
| top: 28px !important; | |
| left: 60px !important; | |
| } | |
| .suggestion:before { | |
| content: "输入你要搜索的贴吧,此处将为你提供候选结果"; | |
| white-space: nowrap; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| color: #bbb; | |
| z-index: 0; | |
| } | |
| .suggestion[style*="block"] { | |
| opacity: 1; | |
| transform:none; | |
| pointer-events: auto; | |
| } | |
| .suggestion_list { | |
| background: #fff; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| /*用户面板*/ | |
| .userbar { | |
| overflow: visible !important; | |
| position: fixed !important; | |
| top: 20px !important; | |
| right: 0 !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| padding-right: 10px !important; | |
| } | |
| .userba * { | |
| backface-visibility: hidden; | |
| } | |
| .userbar>ul { | |
| overflow: visible; | |
| text-align: center; | |
| margin-top: 10px; | |
| margin-right: 20px; | |
| perspective: 800px; | |
| } | |
| .userbar>ul>li { | |
| height: 100%; | |
| position: relative; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| margin-bottom: 10px !important; | |
| opacity: 1; | |
| transform-origin: 100% 50%; | |
| transition-property: transform, opacity; | |
| transition-duration: 1s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .userbar>ul>li, | |
| .userbar>ul>li * { | |
| float: none !important; | |
| } | |
| .userbar>ul>li:hover~li { | |
| transform: translateX(50px) rotateY(-90deg) translateZ(-60px); | |
| opacity: 0; | |
| } | |
| .userbar>ul>li.u_wallet:hover~li, | |
| .userbar>ul>li.u_tbmall:hover~li, | |
| .userbar>ul>li.u_hermes:hover~li, | |
| .userbar>ul>li.u_login:hover~li, | |
| .userbar>ul>li.u_reg:hover~li { | |
| opacity: 1; | |
| transform: none; | |
| } | |
| .u_menu_item { | |
| display: block; | |
| margin: 0 auto !important; | |
| padding: 0 !important; | |
| position: relative !important; | |
| height: 50px !important; | |
| width: 50px !important; | |
| border: none !important; | |
| border-radius: 50%; | |
| background: transparent; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08); | |
| transition-property: box-shadow, color, background; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .u_menu_item.u_menu_hover, | |
| .u_menu_item:hover { | |
| background: #fff; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| body>.userbar>ul>li>a, | |
| .u_menu_wrap, | |
| .u_menu_item>a { | |
| display: block; | |
| border-radius: 50%; | |
| height: 50px !important; | |
| width: 50px !important; | |
| background: #4879BD !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| transition-property: background; | |
| transition-duration: 1s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| body>.userbar>ul>li>a, | |
| .u_hermes>.u_menu_item>a { | |
| font-size: 14px; | |
| line-height: 18px; | |
| letter-spacing: 2px; | |
| text-indent: 2px; | |
| padding: 6px !important; | |
| padding-top: 7px !important; | |
| box-sizing: border-box; | |
| } | |
| .u_hermes a, | |
| .u_login a, | |
| .u_reg a { | |
| color: #fff; | |
| font-size: 16px; | |
| line-height: 50px; | |
| font-weight: bold; | |
| } | |
| body>.userbar>ul>.u_hermes>a, | |
| body>.userbar>ul>.u_login>a, | |
| body>.userbar>ul>.u_reg>a { | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| body>.userbar>ul>.u_login>a, | |
| body>.userbar>ul>.u_reg>a { | |
| text-indent: 0; | |
| letter-spacing: 0; | |
| font-size: 16px; | |
| line-height: 34px; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .u_hermes a:hover, | |
| .u_login a:hover, | |
| .u_reg a:hover { | |
| background: #4285F4 !important; | |
| } | |
| .u_menu_hover:after { | |
| display: none !important; | |
| } | |
| .u_news_wrap span { | |
| color: #fff !important; | |
| display: block; | |
| background: #4879BD !important; | |
| line-height: 12px !important; | |
| position: absolute !important; | |
| padding: 2px 4px !important; | |
| text-align: center !important; | |
| top: auto !important; | |
| bottom: -6px !important; | |
| left: 50% !important; | |
| transform: translateX(-50%); | |
| font-size: 12px !important; | |
| border-radius: 6px !important; | |
| white-space: nowrap !important; | |
| box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .u_ddl { | |
| position: absolute !important; | |
| display: block !important; | |
| top: 38px !important; | |
| left: 50% !important; | |
| transform: translateX(-50%); | |
| right: auto !important; | |
| overflow: visible !important; | |
| pointer-events: none; | |
| opacity: 0; | |
| transition-property: opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .u_menu_hover~.u_ddl, | |
| li:hover>.u_ddl { | |
| pointer-events: auto; | |
| opacity: 1; | |
| } | |
| .u_ddl_con { | |
| position: relative !important; | |
| border: none !important; | |
| background: transparent !important; | |
| padding-bottom: 10px; | |
| overflow: visible !important; | |
| } | |
| .u_ddl_con_top { | |
| background: transparent !important; | |
| } | |
| .u_ddl_tit { | |
| background: transparent !important; | |
| } | |
| .u_ddl_con ul { | |
| display: block; | |
| overflow: visible; | |
| padding: 10px !important; | |
| padding-bottom: 0 !important; | |
| } | |
| .u_ddl_con ul.sys_notify_last { | |
| padding-top: 0 !important; | |
| } | |
| .u_ddl_con li { | |
| margin-top: 10px; | |
| padding: 0 !important; | |
| width: auto !important; | |
| transform: translateX(-50px) rotateY(90deg) translateZ(-60px); | |
| opacity: 0; | |
| transform-origin: 100% 50%; | |
| transition-property: transform, opacity; | |
| transition-duration: 1s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .u_ddl_con li:nth-of-type(1) { | |
| transition-delay: 0s; | |
| } | |
| .u_ddl_con li:nth-of-type(2) { | |
| transition-delay: .05s; | |
| } | |
| .u_ddl_con li:nth-of-type(3) { | |
| transition-delay: .1s; | |
| } | |
| .u_ddl_con li:nth-of-type(4) { | |
| transition-delay: .15s; | |
| } | |
| .u_ddl_con li:nth-of-type(5) { | |
| transition-delay: .2s; | |
| } | |
| .u_ddl_con li:nth-of-type(6) { | |
| transition-delay: .25s; | |
| } | |
| .u_ddl_con li:nth-of-type(7) { | |
| transition-delay: .3s; | |
| } | |
| .u_ddl_con li:nth-of-type(8) { | |
| transition-delay: .35s; | |
| } | |
| .u_ddl_con li:nth-of-type(9) { | |
| transition-delay: .4s; | |
| } | |
| .category_item_last { | |
| transition-delay: .3s !important; | |
| } | |
| .u_menu_hover~.u_ddl .u_ddl_con li, | |
| li:hover>.u_ddl .u_ddl_con li { | |
| opacity: 1; | |
| transform: none; | |
| } | |
| .u_ddl_con li a { | |
| color: #999 !important; | |
| background: #fff !important; | |
| display: inline-block; | |
| width: 50px !important; | |
| height: 50px !important; | |
| font-size: 12.5px !important; | |
| letter-spacing: 2px; | |
| line-height: 19.5px !important; | |
| padding: 5px !important; | |
| padding-left: 6px !important; | |
| padding-top: 6px !important; | |
| margin: 0 !important; | |
| border: 0 !important; | |
| white-space: normal; | |
| text-decoration: none; | |
| border-radius: 50px; | |
| box-sizing: border-box !important; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08); | |
| transition-property: box-shadow, color, background; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| font-family: inherit !important; | |
| } | |
| .sys_notify li a { | |
| display: block !important; | |
| left: 50% !important; | |
| transform: translateX(-50%) !important; | |
| } | |
| .u_ddl_con li a:hover { | |
| color: #fff !important; | |
| background: #4285F4 !important; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .u_notity_bd .category_item .unread_num, | |
| .u_notity_bd .category_item .unread-num { | |
| color: #aaa; | |
| background: #fff; | |
| display: block; | |
| line-height: 12px; | |
| font-size: 12px; | |
| border-radius: 12px 0 0 12px; | |
| padding: 2px 0; | |
| padding-left: 6px; | |
| padding-right: 4px; | |
| position: absolute; | |
| top: 50%; | |
| left: 1px; | |
| right: auto; | |
| transform: translate(-100%, -50%); | |
| margin: 0 !important; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .sys_notify_last .unread-num, | |
| .sys_notify_last .unread_num { | |
| left: 25px !important; | |
| } | |
| .u_ddl_con li a:hover .unread-num, | |
| .u_ddl_con li a:hover .unread_num { | |
| color: #fff; | |
| background: #4285F4; | |
| } | |
| .u_ddl_con li.u_logout a { | |
| line-height: 36px !important; | |
| } | |
| .u_ddl_con li.u_logout a:hover { | |
| background: #F44336 !important; | |
| } | |
| .u_ddl_con li a[data-type="atme"], | |
| .u_ddl_con li a[data-type="friendapply"], | |
| .u_ddl_con li a[data-type="fans"] { | |
| font-size: 0 !important; | |
| } | |
| .u_ddl_con li a[data-type]:before { | |
| font-size: 12.5px; | |
| letter-spacing: 2px; | |
| text-indent: 2px; | |
| line-height: 19.5px; | |
| display: inline-block; | |
| } | |
| .u_ddl_con li a[data-type="atme"]:before { | |
| content: "查看@我"; | |
| } | |
| .u_ddl_con li a[data-type="friendapply"]:before { | |
| content: "新的好友"; | |
| } | |
| .u_ddl_con li a[data-type="fans"]:before { | |
| content: "新的粉丝"; | |
| } | |
| .u_username_wrap >* { | |
| float: none !important; | |
| } | |
| .u_username_avatar { | |
| width: 50px !important; | |
| height: 50px !important; | |
| border-radius: 50% !important; | |
| display: block !important; | |
| margin: 0 !important; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| .u_username_title, | |
| .u_menu_wrap:after { | |
| -moz-osx-font-smoothing: grayscale; | |
| -webkit-font-smoothing: antialiased; | |
| z-index: 2; | |
| line-height: 25px; | |
| white-space: nowrap; | |
| position: absolute !important; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| padding: 0 10px !important; | |
| margin: 0 !important; | |
| color: #fff; | |
| background: rgba(0, 0, 0, .6) !important; | |
| border-radius: 4px; | |
| opacity: 0; | |
| transition-property: opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .u_username_title{ | |
| font-size: 12px !important; | |
| } | |
| .u_setting_wrap:after { | |
| content: "设置&服务"; | |
| } | |
| .u_wallet_wrap:after { | |
| content: "T豆账单"; | |
| } | |
| .u_news_wrap:after { | |
| content: "消息通知"; | |
| } | |
| .u_tbmall_wrap:after { | |
| content: "T豆商城"; | |
| } | |
| .u_username_title:after { | |
| display: none !important; | |
| } | |
| .u_menu_hover .u_username_title, | |
| .u_menu_item:hover .u_username_title, | |
| .u_menu_hover .u_menu_wrap:after, | |
| .u_menu_item:hover .u_menu_wrap:after { | |
| border: none !important; | |
| opacity: 1; | |
| } | |
| .category_item { | |
| border: none !important; | |
| } | |
| .u_ddl_con{ | |
| box-shadow: none !important; | |
| } | |
| .u_menu_item>a{ | |
| font-size: 0; | |
| } | |
| .userbar i, | |
| .u_ddl_arrow, | |
| .u_menu_item .i-arrow-down{ | |
| display: none !important; | |
| } | |
| .u_menu_item>a:before { | |
| font-family: 'Material Icons'; | |
| line-height: 1; | |
| display: block; | |
| color: #fff; | |
| font-size: 30px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| .u_username_wrap:before { | |
| content: "\e7fd"; | |
| font-size: 36px; | |
| margin-top: -2px; | |
| } | |
| .u_wallet_wrap:before { | |
| content: "\e850"; | |
| font-size: 28px; | |
| } | |
| .u_news_wrap:before { | |
| content: "\e7f4"; | |
| font-size: 32px; | |
| margin-top: -2px; | |
| } | |
| .u_tbmall_wrap:before { | |
| content: "\e8cc"; | |
| font-size: 28px; | |
| } | |
| .u_app_wrap:before { | |
| content: "\e324"; | |
| } | |
| .u_setting_wrap:before { | |
| content: "\e8b8"; | |
| } | |
| .u_member_wrap:before{ | |
| content: "\e1ac"; | |
| } | |
| .ui_bubble_content { | |
| position: absolute !important; | |
| border: none !important; | |
| left: 0 !important; | |
| background: #4879BD !important; | |
| border-radius: 6px !important; | |
| padding: 5px !important; | |
| padding-left: 7px !important; | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.08) !important; | |
| color: #fff !important; | |
| letter-spacing: 1px; | |
| } | |
| .ui_bubble_up { | |
| transform: translate(-100%, -100%) !important; | |
| top: 0 !important; | |
| } | |
| .ui_bubble_down { | |
| transform: translate(-100%, 50%) !important; | |
| bottom: 0 !important; | |
| } | |
| .ui_bubble_content * { | |
| color: #fff !important; | |
| } | |
| .ui_triangle { | |
| position: absolute !important; | |
| left: 0 !important; | |
| width: 0 !important; | |
| height: 0 !important; | |
| border-top: 6px solid transparent; | |
| border-left: 8px solid #4879BD; | |
| border-bottom: 6px solid transparent; | |
| } | |
| .ui_triangle_up { | |
| transform: translateY(-100%); | |
| margin-top: -10px !important; | |
| bottom: 0 !important; | |
| } | |
| .ui_triangle_down { | |
| transform: translateY(100%); | |
| margin-top: 10px !important; | |
| bottom: 0 !important; | |
| } | |
| .ui_bubble_wrap .close_msg_tip, | |
| .ui_bubble_closed { | |
| background: none !important; | |
| } | |
| .ui_bubble_wrap .close_msg_tip:before, | |
| .ui_bubble_closed:before { | |
| content: "X"; | |
| font-weight: bold; | |
| display: block; | |
| transform: translateY(-2px) scaleY(.8); | |
| } | |
| #com_userbar_message.ui_bubble_wrap { | |
| z-index: 10004; | |
| position: fixed !important; | |
| width: 90px !important; | |
| right: 0 !important; | |
| top: 0 !important; | |
| } | |
| #com_userbar_message .ui_bubble_up { | |
| top: 42px !important; | |
| transform: translateX(-100%) !important; | |
| background-color: #4879BD !important; | |
| } | |
| #com_userbar_message .ui_triangle_up { | |
| top: 48px !important; | |
| transform: none !important; | |
| margin-top: 0 !important; | |
| } | |
| /*帖子内页*/ | |
| .pb_content { | |
| background: none !important; | |
| border: 0 !important; | |
| position: relative; | |
| width: 100% !important; | |
| display: flex; | |
| } | |
| .left_section { | |
| flex: 1; | |
| background: transparent !important; | |
| } | |
| .l_post_bright { | |
| /*楼层*/ | |
| border: none !important; | |
| border-bottom: 1px solid rgba(0,0,0,.1) !important; | |
| background: transparent !important; | |
| width: 100%!important; | |
| position: relative; | |
| box-sizing: border-box; | |
| display: flex; | |
| flex-wrap: wrap; | |
| } | |
| .l_post_bright.noborder_bottom, | |
| .l_post_bright:last-of-type{ | |
| border: none !important; | |
| } | |
| .d_author, | |
| .d_author_anonym { | |
| /*楼层作者栏*/ | |
| width: 180px !important; | |
| padding: 20px 0 !important; | |
| } | |
| .l_post_bright:before { | |
| /*作者层背景*/ | |
| content: "Design by Maverick"; | |
| font-size: 0; | |
| display: block; | |
| position: absolute; | |
| height: 100%; | |
| width: 180px; | |
| background: rgba(0, 0, 0, .01); | |
| border-right: 1px solid rgba(0,0,0,.1) !important; | |
| box-sizing: border-box; | |
| } | |
| /*楼主标识*/ | |
| .louzhubiaoshi_wrap { | |
| border: none; | |
| position: relative; | |
| } | |
| .louzhubiaoshi { | |
| top: -6px !important; | |
| right: 12px !important; | |
| z-index: 1; | |
| background: none !important; | |
| width: 30px; | |
| height: 30px; | |
| line-height: 30px; | |
| } | |
| .louzhubiaoshi a { | |
| width: 30px; | |
| height: 30px; | |
| line-height: 30px; | |
| color: rgba(0, 0, 0, .3) | |
| } | |
| .louzhubiaoshi a:hover { | |
| color: rgba(0, 0, 0, .4) | |
| } | |
| .louzhubiaoshi a:before { | |
| content: "\e853"; | |
| font-family: 'Material Icons'; | |
| font-size: 28px; | |
| display: inline-block; | |
| vertical-align: top; | |
| } | |
| .louzhubiaoshi_wrap .ui_bubble_up { | |
| margin-left: 38px; | |
| transform: translate(0, -100%) translateY(-6px) !important; | |
| } | |
| .louzhubiaoshi_wrap .ui_triangle_up { | |
| margin-left: 30px; | |
| transform: scaleX(-1) translateY(-100%) translateY(-4px); | |
| } | |
| /*作者层头像域*/ | |
| .p_author_face { | |
| background: rgba(0, 0, 0, .04) !important; | |
| border: none !important; | |
| display: block; | |
| height: 110px !important; | |
| width: 110px !important; | |
| padding: 4px !important; | |
| transition-property: box-shadow; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .p_author_face:hover { | |
| box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .p_author_face img { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| /*作者层ID域*/ | |
| .d_author .d_name { | |
| font-size: 14px !important; | |
| } | |
| /*作者层印记域*/ | |
| .d_author .d_pb_icons { | |
| background: rgba(255, 255, 255, .2) !important; | |
| border: 1px solid #eee !important; | |
| } | |
| /*作者层头衔域*/ | |
| .d_badge_bright { | |
| background: rgba(0, 0, 0, .04) !important; | |
| border: none !important; | |
| width: 100px !important; | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| border-radius: 14px; | |
| color: #666; | |
| transition-property: box-shadow; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .d_badge_bright[class*="d_badge_bawu"] { | |
| background: #4879BD !important; | |
| color: #fff !important; | |
| } | |
| .d_badge_bright:hover { | |
| box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08), 0 4px 4px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .d_badge_bright:after { | |
| content: "\e866"; | |
| font-family: 'Material Icons'; | |
| font-size: 36px; | |
| line-height: 1; | |
| position: absolute; | |
| right: 6px; | |
| top: -4px; | |
| color: rgba(0, 0, 0, .2); | |
| } | |
| .d_badge_title { | |
| line-height: inherit !important; | |
| width: 70px !important; | |
| color: inherit !important; | |
| } | |
| .d_badge_title_bawu { | |
| text-indent: 8px; | |
| } | |
| .d_badge_bright .d_badge_lv { | |
| position: absolute; | |
| top: -2px !important; | |
| left: auto !important; | |
| right: 12.5px !important; | |
| margin: 0 !important; | |
| height: 100% !important; | |
| line-height: inherit !important; | |
| background: none !important; | |
| color: #fff !important; | |
| z-index: 1; | |
| padding: 0; | |
| text-align: center; | |
| width: 24px; | |
| text-indent: 0 !important; | |
| font-family: inherit !important; | |
| } | |
| .d_author .d_pb_icons .icon_saparater { | |
| background: none !important; | |
| } | |
| .d_post_content_main { | |
| /*楼层右栏*/ | |
| flex: 1; | |
| width: 0 !important; | |
| padding: 0 !important; | |
| background: transparent !important; | |
| box-sizing: border-box; | |
| } | |
| /*楼层内容域*/ | |
| .p_content { | |
| padding: 20px !important; | |
| } | |
| .core_reply { | |
| /*楼层下方框架*/ | |
| margin-right: 0 !important; | |
| } | |
| .core_reply:after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } | |
| .replace_tip{ | |
| text-align: center; | |
| background-color: rgba(0,0,0,.6) !important; | |
| border: none !important; | |
| padding: 0 1px !important; | |
| padding-top: 7px !important; | |
| color: #fff; | |
| text-decoration: none !important; | |
| opacity: 1 !important; | |
| transition: background .4s ease; | |
| } | |
| .replace_tip:hover{ | |
| background-color: rgba(0,0,0,.4) !important; | |
| } | |
| .replace_tip:before{ | |
| content: "\e5cf"; | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| vertical-align: top; | |
| font-size: 28px; | |
| } | |
| .replace_tip .txt { | |
| font-size: inherit; | |
| padding: 0; | |
| color: inherit; | |
| } | |
| .replace_tip .expand, | |
| .replace_tip .icon-expand{ | |
| display:none !important; | |
| } | |
| .forbid-speech-banner{ | |
| /*禁言tip*/ | |
| border-top: 1px solid rgba(0, 0, 0, .04) !important; | |
| width: 100% !important; | |
| box-sizing: border-box; | |
| padding: 8px 12px 8px 2px !important; | |
| margin: 0 !important; | |
| } | |
| /*楼层信息域*/ | |
| .core_reply_tail { | |
| width: 100% !important; | |
| margin-right: 0 !important; | |
| position: relative !important; | |
| margin: 10px 0 !important; | |
| color: #bbb !important; | |
| float: right; | |
| box-sizing: border-box; | |
| } | |
| .post-tail-wrap { | |
| position: static !important; | |
| } | |
| .core_reply_tail > *, | |
| .core_reply_tail > * > * { | |
| float: left !important; | |
| } | |
| .post-tail-wrap > *, | |
| .p_mtail > * { | |
| float: right !important; | |
| } | |
| .core_reply_tail > *:not(.p_reply) { | |
| /*楼层信息*/ | |
| display: block; | |
| background: rgba(0, 0, 0, .04); | |
| padding: 0 !important; | |
| height: 28px; | |
| line-height: 28px; | |
| margin: 0 !important; | |
| font-size: 14px; | |
| } | |
| .core_reply_tail * { | |
| color: inherit !important; | |
| } | |
| .core_reply_tail a[href]:hover:not(.tail-info), | |
| .p_reply:hover { | |
| color: #999 !important; | |
| } | |
| .post-tail-wrap { | |
| /*消灭分割线*/ | |
| font-size: 0 !important; | |
| } | |
| .post-tail-wrap > * { | |
| font-size: 14px !important; | |
| } | |
| .p_mtail > li { | |
| font-size: 0 !important; | |
| } | |
| .p_mtail > li >* { | |
| font-size: 14px !important; | |
| } | |
| .core_reply_tail a { | |
| color: inherit !important; | |
| } | |
| .core_reply_tail > .props_appraise_wrap { | |
| /*楼层信息右侧圆角*/ | |
| padding-top: 5px !important; | |
| padding-right: 16px !important; | |
| box-sizing: border-box; | |
| width: auto; | |
| min-width: 16px; | |
| border-radius: 0 16px 16px 0; | |
| } | |
| .j_jb_ele { | |
| /*举报*/ | |
| font-size: 0 !important; | |
| position: relative; | |
| width: 20px; | |
| } | |
| .j_jb_ele:only-child { | |
| margin: 0 !important; | |
| } | |
| .j_jb_ele .pb_list_triangle_down { | |
| display: none !important; | |
| } | |
| .j_jb_ele > a { | |
| font-size: 0 !important; | |
| background: none !important; | |
| } | |
| .lzl_jb { | |
| display: inline-block !important; | |
| font-size: 0 !important; | |
| position: relative; | |
| width: 22px; | |
| height: 22px; | |
| vertical-align: top; | |
| margin-right: 4px; | |
| opacity: .6; | |
| pointer-events: auto; | |
| transition-property: opacity; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .lzl_jb[style*="none"] { | |
| opacity: 0; | |
| pointer-events: none; | |
| } | |
| .lzl_jb_in:before, | |
| .j_jb_ele > a:before { | |
| content: "\e160"; | |
| font-family: 'Material Icons'; | |
| line-height: 1; | |
| display: block; | |
| font-size: 20px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| /*删除*/ | |
| .lzl_jb_in[data-field*="'delete_mine':'1'"]:before, | |
| .j_jb_ele > a[data-field*="'delete_mine':'1'"]:before{ | |
| content: "\e872"; | |
| } | |
| .lzl_jb_in[data-field*="'delete_mine':'1'"]:hover:before, | |
| .j_jb_ele > a[data-field*="'delete_mine':'1'"]:hover:before{ | |
| color: #F44336 !important; | |
| } | |
| .super_jubao { | |
| display: block !important; | |
| position: absolute; | |
| left: 50% !important; | |
| transform: translateX(-50%); | |
| background: #fff; | |
| border: 1px solid #e5e5e5; | |
| text-align: center; | |
| padding: 2px 5px; | |
| width: 90px; | |
| top: 28px; | |
| z-index: 50002; | |
| font-size: 12px; | |
| line-height: 28px; | |
| opacity: 0; | |
| pointer-events: none; | |
| transition-property: opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .j_jb_ele:hover .super_jubao { | |
| opacity: 1; | |
| pointer-events: auto; | |
| } | |
| /*删除*/ | |
| .p_post_del_my, | |
| .p_post_del, | |
| .p_post_ban { | |
| display: inline-block; | |
| padding: 0 4px; | |
| text-indent: -1px; | |
| transition-property: color, text-shadow; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .p_post_del_my:hover, | |
| .core_reply_tail a.p_post_del[href]:hover, | |
| .core_reply_tail a.p_post_ban[href]:hover { | |
| color: #F44336 !important; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | |
| } | |
| .p_post_del_my:before, | |
| .p_post_del:before, | |
| .p_post_ban:before { | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| font-size: 20px; | |
| vertical-align: top; | |
| } | |
| .p_post_del_my:before, | |
| .p_post_del:before { | |
| content: "\e872"; | |
| } | |
| .p_post_ban:before { | |
| content: "\e14b"; | |
| font-size: 18px; | |
| margin-right: 1px; | |
| } | |
| /*点赞*/ | |
| .core_reply_tail .common_complient_container { | |
| border-radius: 14px; | |
| width: auto !important; | |
| margin-left: 2px !important; | |
| } | |
| .complient_number{ | |
| display: inline-block; | |
| width: auto !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| padding-left: 10px !important; | |
| height: 28px !important; | |
| } | |
| .common_complient_container .showContent{ | |
| top: 0 !important; | |
| } | |
| .total_count_number{ | |
| display: inline-block !important; | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| margin:0 2px !important; | |
| } | |
| .total_count_number.hideContent{ | |
| display: none !important; | |
| } | |
| .not_complient_thread, | |
| .complient_thread{ | |
| display: inline-block; | |
| height: 28px !important; | |
| margin: 0 4px !important; | |
| margin-right: 10px !important; | |
| top: 0 !important; | |
| background-position: 0 2px !important; | |
| } | |
| .post-tail-wrap > span.tail-info:nth-last-of-type(2), | |
| .p_tail > li:nth-last-of-type(2)>span { | |
| /*楼层数标识*/ | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| display: block; | |
| background: rgba(0, 0, 0, .04); | |
| border-radius: 16px 0 0 16px; | |
| padding: 0 !important; | |
| padding-left: 10px !important; | |
| padding-right: 30px !important; | |
| font-size: 14px; | |
| height: 28px; | |
| line-height: 28px; | |
| margin: 0 !important; | |
| } | |
| .d_post_content_firstfloor .post-tail-wrap > span.tail-info:nth-last-of-type(2), | |
| .d_post_content_firstfloor .p_tail > li:nth-last-of-type(2)>span { | |
| /*1楼标识*/ | |
| padding-right: 6px !important; | |
| } | |
| .p_reply { | |
| /*回复按钮*/ | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| display: inline-block; | |
| background: transparent !important; | |
| margin: 0 !important; | |
| z-index: 1; | |
| transition-property: color; | |
| transition-duration: .2s; | |
| transition-timing-function: ease; | |
| } | |
| .p_reply > * { | |
| border: 0 !important; | |
| display: block !important; | |
| background: transparent !important; | |
| color: inherit !important; | |
| border-radius: 0 !important; | |
| padding: 0 !important; | |
| font-size: 0 !important; | |
| height: 28px !important; | |
| line-height: 28px !important; | |
| margin: 0 !important; | |
| width: 30px; | |
| } | |
| .p_reply > *:before { | |
| font-family: 'Material Icons'; | |
| display: block !important; | |
| font-size: 20px; | |
| position: absolute !important; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| } | |
| .p_reply .lzl_link_fold { | |
| padding: 0 !important; | |
| } | |
| .lzl_link_unfold:before { | |
| content: "\e0bf"; | |
| } | |
| .lzl_link_fold:before { | |
| content: "\e318"; | |
| font-size: 24px; | |
| } | |
| .p_reply[data-field*='"total_num":null'] .lzl_link_unfold:before, | |
| .p_reply[data-field*="'total_num':'0'"] .lzl_link_unfold:before { | |
| content: "\e0ca"; | |
| } | |
| .p_reply > *[style*="none"] { | |
| display: none !important; | |
| } | |
| .p_reply > *[style*="inline-block"], | |
| .p_reply > *[style*="inline"] { | |
| display: block !important; | |
| } | |
| .l_post_bright .core_reply_wrapper { | |
| /*楼中楼框架*/ | |
| border: 0 !important; | |
| margin: 0 !important; | |
| background: rgba(0, 0, 0, .02) !important; | |
| border-top: 1px solid rgba(0, 0, 0, .04) !important; | |
| margin-top: 0 !important; | |
| width: 100% !important; | |
| box-sizing: border-box; | |
| float: right; | |
| position: relative; | |
| } | |
| .core_reply_wrapper .loading_reply { | |
| margin: 0 !important; | |
| border-radius: 50%; | |
| -webkit-filter: grayscale(1); | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%,-50%); | |
| } | |
| .core_reply_border_top { | |
| /*楼中楼框架顶描边*/ | |
| display: none !important; | |
| } | |
| .core_reply_content { | |
| /*楼中楼内容框架*/ | |
| border: none !important; | |
| } | |
| .core_reply_border_bottom{ | |
| display: none !important; | |
| } | |
| .core_reply_content li { | |
| border-top: 1px solid rgba(0, 0, 0, .04); | |
| } | |
| .lzl_content_reply { | |
| color: #666 !important; | |
| } | |
| .lzl_content_reply a { | |
| color: inherit !important; | |
| } | |
| .lzl_li_pager_s { | |
| color: #666 !important; | |
| } | |
| .interview .threadListGroupCnt .uIconCnt, | |
| .lzl_p_p { | |
| border: none !important; | |
| padding: 2px; | |
| background: rgba(0, 0, 0, .04) !important; | |
| } | |
| /*楼中楼MORE*/ | |
| .lzl_more { | |
| display: inline-block; | |
| height: 30px !important; | |
| line-height: 30px !important; | |
| padding: 0 8px !important; | |
| padding-right: 0 !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| color: inherit !important; | |
| font-size: 14px; | |
| border-radius: 2px; | |
| } | |
| .lzl_more .j_lzl_m { | |
| display: inline-block; | |
| padding: 0 6px; | |
| color: inherit !important; | |
| border-radius: 0 2px 2px 0; | |
| margin-left: -4px; | |
| text-indent: 6px; | |
| transition-property: background, color; | |
| transition-duration: .2s; | |
| transition-timing-function: ease; | |
| } | |
| .lzl_more .j_lzl_m:after { | |
| content: "\e5d3"; | |
| font-size: 30px; | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| vertical-align: top; | |
| text-indent: 0; | |
| } | |
| .lzl_li_pager_s>.btn-sub { | |
| /*我也说一句按钮*/ | |
| font-size: 0 !important; | |
| height: 30px !important; | |
| line-height: 30px !important; | |
| padding: 0 8px !important; | |
| background: rgba(0, 0, 0, .04) !important; | |
| color: inherit !important; | |
| border: none !important; | |
| transition-property: background, color; | |
| transition-duration: .2s; | |
| transition-timing-function: ease; | |
| } | |
| .lzl_more .j_lzl_m:hover, | |
| .lzl_li_pager_s>.btn-sub:hover { | |
| color: #fff !important; | |
| background: rgba(0, 0, 0, .3) !important; | |
| } | |
| .lzl_li_pager_s .icon-reply { | |
| display: none !important; | |
| } | |
| .lzl_li_pager_s>.btn-sub:before { | |
| content: "\e15e"; | |
| font-size: 24px; | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-top: -1px; | |
| text-indent: -2px; | |
| } | |
| .lzl_li_pager_s>.btn-sub:after { | |
| content: "回复层主"; | |
| font-size: 14px; | |
| } | |
| /*楼中楼输入框框架*/ | |
| .edui-container { | |
| width: 100% !important; | |
| } | |
| .edui-editor-body { | |
| height: auto !important; | |
| border: 0 !important; | |
| background: transparent !important; | |
| } | |
| .lzl_simple_wrapper, | |
| .edui-body-container { | |
| /*输入框*/ | |
| position: relative !important; | |
| min-height: 60px !important; | |
| width: 100% !important; | |
| box-sizing: border-box; | |
| padding: 0 10px !important; | |
| resize: vertical; | |
| outline: none !important; | |
| border: none !important; | |
| background: rgba(0, 0, 0, 0.04) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| transition-property: background, border-bottom; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .lzl_simple_wrapper p{ | |
| margin: 0 !important; | |
| width: auto !important; | |
| display: inline-block; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%,-50%); | |
| color: #999; | |
| } | |
| .ueg_pmc-link{ | |
| display: inline-block; | |
| padding: 0 4px; | |
| background: rgba(0,0,0,.1); | |
| border-radius: 4px; | |
| margin-left: 2px; | |
| color: #666; | |
| transition-property: color,background; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .ueg_pmc-link:hover{ | |
| background: rgba(0,0,0,.26); | |
| color:#fff; | |
| } | |
| .edui-body-container:before { | |
| content: "Design by Maverick"; | |
| font-size: 0; | |
| position: absolute; | |
| bottom: 0; | |
| right: 0; | |
| width: 10px; | |
| height: 10px; | |
| cursor: ns-resize; | |
| } | |
| .edui-body-container:focus { | |
| background: rgba(0, 0, 0, 0.02) !important; | |
| border-bottom: 4px solid #4879BD !important; | |
| } | |
| .lzl_editor_container .lzl_panel_wrapper { | |
| /*楼中楼控件域*/ | |
| width: 100% !important; | |
| } | |
| /*发表按钮*/ | |
| #voteFlashPanel .vote_buttons button, | |
| .lzl_panel_submit, | |
| .lzl_panel_submit_disabled, | |
| .poster_submit, | |
| .qp_submit, | |
| .save-to-quick-reply-btn { | |
| background: none !important; | |
| background-color: #4879BD !important; | |
| color: #fff !important; | |
| width: 60px; | |
| height: 26px !important; | |
| line-height: 26px !important; | |
| border: none !important; | |
| border-radius: 13px; | |
| padding: 0 4px !important; | |
| text-indent: 3px; | |
| text-align: center; | |
| transition-property: background, box-shadow; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .lzl_panel_submit_disabled{ | |
| background-color: rgba(0,0,0,.4) !important; | |
| } | |
| .lzl_panel_submit_disabled:before{ | |
| content:"发表"; | |
| } | |
| .lzl_panel_submit:after, | |
| .lzl_panel_submit_disabled:after, | |
| .poster_submit:after, | |
| .qp_submit:after, | |
| .save-to-quick-reply-btn:before { | |
| content: "\e163"; | |
| font-family: 'Material Icons'; | |
| font-size: 18px; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-left: 2px; | |
| margin-top: -1px; | |
| text-indent: 2px; | |
| } | |
| #voteFlashPanel .vote_buttons button:hover, | |
| .lzl_panel_submit:hover, | |
| .poster_submit:hover, | |
| .qp_submit:hover, | |
| .save-to-quick-reply-btn:hover { | |
| background-color: #4285F4 !important; | |
| box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 6px 0 rgba(0, 0, 0, 0.08); | |
| } | |
| .lzl_panel_smile { | |
| width: auto !important; | |
| } | |
| /*表情选择按钮*/ | |
| .lzl_insertsmiley_holder, | |
| .qp_insertsmiley_holder, | |
| .interview .qp_interview_insertsmiley { | |
| background: none !important; | |
| height: 26px; | |
| line-height: 26px; | |
| color: #4879BD !important; | |
| width: 30px; | |
| text-align: center; | |
| margin: 0 !important; | |
| transition-property: color, text-shadow; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| cursor: pointer; | |
| } | |
| .lzl_insertsmiley_holder:hover, | |
| .qp_insertsmiley_holder:hover { | |
| color: #4285F4 !important; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | |
| } | |
| .interview .threadListGroupCnt .mini .placeholder:before, | |
| .lzl_insertsmiley_holder:before, | |
| .qp_insertsmiley_holder:before { | |
| content: "\e24e"; | |
| font-family: 'Material Icons'; | |
| line-height: inherit; | |
| font-size: 24px; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-left: 2px; | |
| margin-top: -1px; | |
| text-indent: 2px; | |
| } | |
| /*楼中楼表情选框*/ | |
| .lzl_edui_dialog_container { | |
| left: -390px !important; | |
| top: 34px !important; | |
| } | |
| .emotion_container .s_tab_content .selected .s_tab_btnbg { | |
| background: none !important; | |
| background-color: #4879BD !important; | |
| } | |
| .d_sign_split { | |
| /*签名档分割线*/ | |
| height: 0 !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| width: 100% !important; | |
| border: none !important; | |
| border-bottom: 1px solid rgba(0, 0, 0, .08) !important; | |
| } | |
| .j_user_sign{ | |
| /*签名档*/ | |
| margin: 10px !important; | |
| } | |
| .sofa_post { | |
| /*沙发层*/ | |
| display: flex; | |
| background: transparent !important; | |
| width: 100%; | |
| } | |
| .sofa_content { | |
| background: transparent !important; | |
| } | |
| .sofa_content .core_reply_tail { | |
| position: static !important; | |
| } | |
| .sofa_content .p_tail { | |
| background: none !important; | |
| } | |
| .sofa_content .p_tail > li:nth-last-of-type(1)>span { | |
| position: absolute; | |
| left: 0; | |
| display: block; | |
| background: rgba(0, 0, 0, .04); | |
| color: inherit !important; | |
| border-radius: 0 16px 16px 0; | |
| padding: 0 !important; | |
| padding-left: 6px !important; | |
| padding-right: 16px !important; | |
| font-size: 14px; | |
| height: 28px; | |
| line-height: 28px; | |
| margin: 0 !important; | |
| } | |
| .sofa_content .p_tail > li:nth-last-of-type(2)>span { | |
| top: auto !important; | |
| } | |
| .core_title_wrap_bright { | |
| /*帖子标题*/ | |
| top: 0 !important; | |
| border: none !important; | |
| overflow: visible !important; | |
| width: 100% !important; | |
| background: none; | |
| border-bottom: 1px solid rgba(0,0,0,.1) !important; | |
| } | |
| /*挽尊*/ | |
| .save_face_bg { | |
| opacity: 0; | |
| top: -1px; | |
| right: 23px; | |
| transition-property: opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .l_post_bright:hover .save_face_bg { | |
| opacity: 1; | |
| } | |
| /*隐藏用户*/ | |
| .user-hide-post-down, | |
| .user-hide-post-up { | |
| display: block !important; | |
| right: 2px !important; | |
| top: 2px !important; | |
| background: none !important; | |
| width: auto !important; | |
| height: auto !important; | |
| color: #bbb !important; | |
| font-size: 20px; | |
| cursor: pointer; | |
| transition-property: color,opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: ease; | |
| } | |
| .user-hide-post-down[style*="none"] { | |
| opacity: 0; | |
| pointer-events: none; | |
| } | |
| .user-hide-post-down:hover, | |
| .user-hide-post-up:hover { | |
| color: #999 !important; | |
| } | |
| .user-hide-post-down:before, | |
| .user-hide-post-up:before { | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| vertical-align: top; | |
| } | |
| .user-hide-post-down:before { | |
| content: "\e15c"; | |
| } | |
| .user-hide-post-up:before { | |
| content: "\e409"; | |
| transform: scale(1.5); | |
| } | |
| .user-hide-post-action { | |
| right: 26px !important; | |
| top: 1px !important; | |
| border-radius: 6px; | |
| overflow: hidden; | |
| -moz-user-select: none; | |
| -webkit-user-select: none; | |
| } | |
| .user-hide-post-action a { | |
| padding: 2px 8px !important; | |
| transition-property: color, background; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .user-hide-post-action a:hover { | |
| color: #fff !important; | |
| background: #aaa !important; | |
| } | |
| .core_reply_wrapper .user-hide-post-down, | |
| .core_reply_wrapper .user-hide-post-up { | |
| right: -8px !important; | |
| top: 0 !important; | |
| font-size: 18px; | |
| } | |
| .core_reply_wrapper .user-hide-post-action { | |
| right: 14px !important; | |
| top: -2px !important; | |
| } | |
| .pb_list_pager, | |
| .l_reply_num { | |
| height: 25px !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| display: block; | |
| position: relative; | |
| color: inherit !important; | |
| } | |
| .l_reply_num { | |
| padding: 0 20px !important; | |
| font-size: 0 !important; | |
| } | |
| .l_reply_num>span { | |
| display: block; | |
| font-size: 12px !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| color: inherit !important; | |
| line-height: 18px; | |
| float: left; | |
| margin-top: 13px !important; | |
| } | |
| .l_reply_num>span:nth-of-type(1):before { | |
| content: "回复:"; | |
| } | |
| .l_reply_num>span:nth-of-type(2):before { | |
| margin-left: 12px; | |
| content: "页数:"; | |
| } | |
| .p_thread { | |
| border: none !important; | |
| width: 100% !important; | |
| position: relative; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| -moz-user-select: none; | |
| -webkit-user-select: none; | |
| height: 45px !important; | |
| background: rgba(0,0,0,.02) !important; | |
| border-bottom: 1px solid rgba(0,0,0,.1) !important; | |
| color: #666; | |
| } | |
| .p_thread.thread_theme_7 { | |
| border-top: 1px solid rgba(0,0,0,.1) !important; | |
| } | |
| .l_thread_info { | |
| height: 100% !important; | |
| width: 100% !important; | |
| margin: 0 !important; | |
| display: flex; | |
| position: absolute; | |
| } | |
| .l_thread_info > * { | |
| float: left !important; | |
| } | |
| .l_posts_num { | |
| height: 100% !important; | |
| float: left; | |
| line-height: 1 !important; | |
| white-space: nowrap; | |
| font-size: 0; | |
| flex: 1 | |
| } | |
| .l_posts_num li { | |
| height: 100% !important; | |
| display: inline-block !important; | |
| vertical-align: top; | |
| margin: 0 !important; | |
| box-sizing: border-box; | |
| } | |
| .l_posts_num > li:empty, | |
| .thread_theme_bright_absolute .l_posts_num > li:empty { | |
| display: none !important; | |
| } | |
| #tofrs_up { | |
| display: none !important; | |
| } | |
| .pb_list_pager { | |
| padding-top: 10px !important; | |
| padding-left: 20px !important; | |
| } | |
| .itb_pager >*, | |
| .pagination-default >*, | |
| .pager >*, | |
| .j_pager >*, | |
| .pb_list_pager >* { | |
| float: none !important; | |
| display: inline-block !important; | |
| text-align: center; | |
| min-width: 13px !important; | |
| line-height: 25px !important; | |
| height: 25px !important; | |
| padding: 0 10px !important; | |
| margin: 0 !important; | |
| border: none !important; | |
| overflow: visible !important; | |
| color: inherit !important; | |
| background: rgba(0, 0, 0, .05) !important; | |
| border-radius: 12.5px !important; | |
| transition-property: background; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .pagination-default >.pagination-current, | |
| .pager > .cur, | |
| .j_pager > .tP, | |
| .pb_list_pager > .tP { | |
| color: #fff !important; | |
| background: rgba(0, 0, 0, .3) !important; | |
| width: auto !important; | |
| } | |
| .itb_pager >a:hover, | |
| .pagination-default >a:hover, | |
| .pager >a:hover, | |
| .j_pager >a:hover, | |
| .pb_list_pager >a:hover { | |
| background: rgba(0, 0, 0, .1) !important; | |
| } | |
| .p_thread input { | |
| position: relative; | |
| width: 80px !important; | |
| height: 30px !important; | |
| background: rgba(0, 0, 0, 0.04); | |
| outline: none !important; | |
| border: none !important; | |
| margin: 0 !important; | |
| padding: 0 4px !important; | |
| margin-top: 7px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| box-sizing: border-box; | |
| color: transparent !important; | |
| font-size: 18px !important; | |
| line-height: 26px !important; | |
| padding-top: 4px !important; | |
| text-align: center; | |
| transition-property: transform, box-shadow, background; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .p_thread input::-webkit-inner-spin-button { | |
| -webkit-appearance: none; | |
| } | |
| .p_thread input::-webkit-outer-spin-button { | |
| -webkit-appearance: none; | |
| } | |
| .p_thread input~button { | |
| display: block; | |
| position: absolute; | |
| width: 80px; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| top: 7px; | |
| height: 30px; | |
| border: 0; | |
| outline: none; | |
| background: transparent !important; | |
| font-size: 0; | |
| pointer-events: none; | |
| animation-name: eventoff_duration; | |
| animation-duration: .5s; | |
| animation-timing-function: linear; | |
| animation-fill-mode: forwards; | |
| transition-property: transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .p_thread input~button:after { | |
| content: ""; | |
| position: absolute; | |
| font-size: 16px; | |
| left: 8px; | |
| top: 0; | |
| line-height: 28px; | |
| color: rgba(0, 0, 0, 0.5); | |
| } | |
| .p_thread input[id^="jumpPage"]~button:after { | |
| content: "跳转到页"; | |
| } | |
| .p_thread input[name="elevatorFloor"]~button:after { | |
| content: "跳转到楼"; | |
| } | |
| .p_thread input[id^="jumpPage"]:focus~button:after { | |
| content: "页"; | |
| } | |
| .p_thread input[name="elevatorFloor"]:focus~button:after { | |
| content: "楼"; | |
| } | |
| .p_thread input:focus { | |
| background: #4879BD !important; | |
| color: #fff !important; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 12px 0 rgba(0, 0, 0, 0.1); | |
| transform: scale(1.5); | |
| z-index: 9999; | |
| } | |
| .p_thread input:focus~button { | |
| animation: none !important; | |
| pointer-events: auto !important; | |
| transform: scale(1.5); | |
| z-index: 9999; | |
| } | |
| .p_thread input:focus~button:before, | |
| .p_thread input:focus~button:after { | |
| position: absolute; | |
| font-size: 14px; | |
| top: 0; | |
| line-height: 30px; | |
| color: #fff; | |
| background: #4879BD; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 12px 0 rgba(0, 0, 0, 0.1); | |
| animation-duration: .5s; | |
| animation-timing-function: ease; | |
| animation-fill-mode: forwards; | |
| } | |
| .p_thread input:focus~button:before { | |
| content: "跳到"; | |
| padding: 0 4px; | |
| left: -22px; | |
| border-radius: 20px 0 0 20px; | |
| animation-name: button_effect_left; | |
| } | |
| .p_thread input:focus~button:after { | |
| left: auto; | |
| right: -13px; | |
| padding: 0 6px; | |
| border-radius: 0 20px 20px 0; | |
| animation-name: button_effect_right; | |
| } | |
| .l_reply_num~.l_reply_num { | |
| position: relative; | |
| padding: 0 !important; | |
| margin-right: 10px !important; | |
| float: right !important; | |
| } | |
| .creativeplatform-elevator { | |
| font-size: 0 !important; | |
| margin-left: 0 !important; | |
| width: auto !important; | |
| height: 100% !important; | |
| position: relative; | |
| display: block; | |
| color: inherit !important; | |
| margin-right: 10px; | |
| } | |
| .l_thread_manage { | |
| position: absolute; | |
| z-index: 10; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| bottom: -28px; | |
| right: 250px; | |
| transform: translateY(50%); | |
| background: transparent; | |
| font-weight: 600; | |
| } | |
| .l_thread_manage * { | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| color: inherit; | |
| box-sizing: border-box; | |
| } | |
| .d_del_thread, | |
| #d_post_manage { | |
| height: 34px; | |
| width: 98px; | |
| background: #eee; | |
| color: rgba(0, 0, 0, .4) !important; | |
| border: solid rgba(0, 0, 0, .1); | |
| position: relative; | |
| transition-property: background; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .d_del_thread { | |
| border-width: 1px; | |
| border-radius: 8px; | |
| margin-left: -8px !important; | |
| width: 106px !important; | |
| padding-left: 8px!important; | |
| } | |
| .j_thread_delete:before { | |
| margin-left: 8px !important; | |
| } | |
| #d_post_manage { | |
| border-width: 1px 0 1px 1px; | |
| border-radius: 8px 0 0 8px; | |
| } | |
| .d_del_thread:hover, | |
| #d_post_manage:hover { | |
| color: #fff !important; | |
| background: #aaa; | |
| } | |
| .d_del_thread:hover { | |
| background: #F44336 !important; | |
| } | |
| .j_thread_delete, | |
| .d_post_manage_link { | |
| display: block; | |
| background: none !important; | |
| font-size: 14px; | |
| padding-left: 24px !important; | |
| width: 100%; | |
| height: 100%; | |
| line-height: 30px; | |
| text-indent: 6px; | |
| } | |
| .j_thread_delete:before, | |
| .d_post_manage_link:before { | |
| font-family: 'Material Icons'; | |
| speak: none; | |
| font-style: normal; | |
| font-weight: normal; | |
| font-variant: normal; | |
| font-size: 24px; | |
| white-space: nowrap; | |
| word-wrap: normal; | |
| direction: ltr; | |
| position: absolute; | |
| left: 0; | |
| } | |
| .j_thread_delete:before { | |
| content: "\e872"; | |
| } | |
| .d_post_manage_link:before { | |
| content: "\e869"; | |
| font-size: 22px; | |
| } | |
| #j_quick_thread { | |
| display: block !important; | |
| border: none !important; | |
| background: none !important; | |
| position: absolute; | |
| left: 50%; | |
| bottom: 0; | |
| transform: translate(-50%, 100%); | |
| text-align: center; | |
| pointer-events: none; | |
| z-index: 9999; | |
| color: rgba(0, 0, 0, .4) !important; | |
| } | |
| #d_post_manage:hover #j_quick_thread { | |
| pointer-events: auto; | |
| } | |
| #j_quick_thread>li { | |
| width: auto !important; | |
| height: auto !important; | |
| transition-property: transform, opacity; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| transform: translateY(-100%); | |
| opacity: 0; | |
| transition-delay: 0; | |
| } | |
| #j_quick_thread>li>a { | |
| display: block; | |
| width: 100px; | |
| height: 30px; | |
| line-height: 30px; | |
| margin-top: 4px !important; | |
| border-radius: 4px; | |
| background: #eee; | |
| box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2) !important; | |
| transition-property: background, color; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| #j_quick_thread>li>a:hover { | |
| background: #aaa; | |
| color: #fff !important; | |
| } | |
| #d_post_manage:hover #j_quick_thread>li { | |
| transform: none; | |
| opacity: 1; | |
| } | |
| .p_thread .loading-tip { | |
| top: auto !important; | |
| right: auto !important; | |
| bottom: 90px; | |
| margin: 0 !important; | |
| left: 50% !important; | |
| transform: translateX(-50%); | |
| display: block; | |
| position: fixed; | |
| z-index: 9999; | |
| border: none; | |
| background: #4879BD !important; | |
| border-radius: 6px !important; | |
| padding-left: 7px !important; | |
| color: #fff !important; | |
| text-indent: -1px; | |
| letter-spacing: 1px; | |
| padding: 6px 8px !important; | |
| width: 100px; | |
| text-align: center; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 16px 6px rgba(0, 0, 0, 0.2) !important; | |
| } | |
| /*帖子内页-标题栏*/ | |
| .core_title_bg { | |
| background: rgba(0,0,0,.01) !important; | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| width: 100%; | |
| height: 100%; | |
| transition: none !important; | |
| } | |
| .core_title { | |
| border: none !important; | |
| background: transparent !important; | |
| } | |
| .core_title_txt { | |
| font-family: inherit !important; | |
| width: 730px !important; | |
| z-index: 4 !important; | |
| } | |
| .core_title_btns { | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| z-index: 4 !important; | |
| position: absolute; | |
| right: 0; | |
| } | |
| .core_title_btns i{ | |
| display: none !important; | |
| } | |
| .core_title_btns > *, | |
| .core_title_btns .l_lzonly, | |
| .core_title_btns .l_lzonly_cancel, | |
| .core_title_btns .p_favthr_main, | |
| .core_title_btns .j_quick_reply { | |
| float: left !important; | |
| display: block !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| margin-right: 10px !important; | |
| width: 65px !important; | |
| height: 66px !important; | |
| border-radius: 0 0 20px 20px; | |
| background: transparent; | |
| border: none !important; | |
| overflow: visible !important; | |
| position: relative !important; | |
| text-align: center; | |
| line-height: 94px !important; | |
| font-size: 16px !important; | |
| cursor: pointer; | |
| } | |
| .core_title_btns *, | |
| .core_title_btns *:before, | |
| .core_title_btns *:after { | |
| box-sizing: border-box; | |
| color: rgba(0, 0, 0, .4) !important; | |
| transition: none !important; | |
| } | |
| .core_title_btns>* { | |
| box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2) !important; | |
| background: #eee !important; | |
| transition-property: transform !important; | |
| transition-duration: .2s !important; | |
| transition-timing-function: ease !important; | |
| } | |
| .core_title_btns>*:hover { | |
| transition-property: transform, background, box-shadow !important; | |
| background: #aaa !important; | |
| } | |
| .core_title_btns>*:hover, | |
| .core_title_btns>*:hover *, | |
| .core_title_btns>*:hover .d_lzonly_bdaside:before, | |
| .core_title_btns>*:hover #lzonly_cntn:before, | |
| .core_title_btns>#lzonly_cntn:hover:before, | |
| .core_title_btns>#j_favthread:hover:before, | |
| .core_title_btns>.j_favor:hover:before, | |
| .core_title_btns>#quick_reply:hover:before, | |
| .core_title_btns>.quick_reply:hover:before { | |
| color: #fff !important; | |
| } | |
| .core_title_btns>*:active { | |
| box-shadow: 0 4px 2px -1px rgba(0, 0, 0, 0.2) !important; | |
| } | |
| .d_lzonly_bdaside { | |
| font-size: 0 !important; | |
| letter-spacing: 0; | |
| text-indent: 0; | |
| } | |
| .d_lzonly_bdaside:before { | |
| content: "楼主"; | |
| font-size: 16px !important; | |
| } | |
| .core_title_btns #lzonly_cntn:before, | |
| .core_title_btns>#j_favthread:before, | |
| .core_title_btns>.j_favor:before, | |
| .core_title_btns>#quick_reply:before, | |
| .core_title_btns>.quick_reply:before { | |
| font-family: 'Material Icons'; | |
| speak: none; | |
| font-style: normal; | |
| font-weight: normal; | |
| font-variant: normal; | |
| line-height: 1; | |
| white-space: nowrap; | |
| word-wrap: normal; | |
| direction: ltr; | |
| display: block; | |
| font-size: 30px; | |
| position: absolute !important; | |
| left: 50% !important; | |
| top: 50% !important; | |
| transform: translate(-50%, -50%); | |
| margin-top: -14px !important; | |
| } | |
| .core_title_btns #lzonly_cntn:before { | |
| content: "\e8f4" !important; | |
| font-size: 32px !important; | |
| } | |
| .core_title_btns>#j_favthread:before, | |
| .core_title_btns>.j_favor:before { | |
| content: "\e89a"; | |
| } | |
| .core_title_btns>#quick_reply:before, | |
| .core_title_btns>.quick_reply:before { | |
| content: "\e24c"; | |
| } | |
| /*帖子内页底侧浮层*/ | |
| .core_title_absolute_bright { | |
| display: block !important; | |
| z-index: 401 !important; | |
| top: auto !important; | |
| bottom: 10px !important; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| border: none !important; | |
| } | |
| .core_title_absolute_bright .core_title_bg { | |
| background: #4879BD !important; | |
| border-radius: 28px; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 16px 0 rgba(0, 0, 0, 0.08) !important; | |
| } | |
| .core_title_absolute_bright .core_title_txt { | |
| margin-left: 40px; | |
| color: #fff !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns { | |
| float: none !important; | |
| display: block !important; | |
| position: absolute !important; | |
| right: 20px !important; | |
| bottom: 0 !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| height: 100% !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns *, | |
| .core_title_absolute_bright .core_title_btns *:before, | |
| .core_title_absolute_bright .core_title_btns *:after { | |
| color: #fff !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns > * { | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 16px 0 rgba(0, 0, 0, 0.08) !important; | |
| background: #4879BD !important; | |
| transform: translateY(-50%) scale(1) !important; | |
| transition-duration: .6s !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns > *:hover { | |
| transform: translateY(-50%) scale(1.1) !important; | |
| background: #4285F4 !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns > *:active { | |
| transform: translateY(-50%) scale(1.05) !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns > *, | |
| .core_title_absolute_bright .core_title_btns .l_lzonly, | |
| .core_title_absolute_bright .core_title_btns .l_lzonly_cancel, | |
| .core_title_absolute_bright .core_title_btns .p_favthr_main, | |
| .core_title_absolute_bright .core_title_btns .j_quick_reply { | |
| width: 70px !important; | |
| height: 70px !important; | |
| border-radius: 50% !important; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| color: #fff !important; | |
| line-height: 104px !important; | |
| font-size: 12px !important; | |
| letter-spacing: 2px; | |
| text-indent: 2px; | |
| } | |
| /*fix bug*/ | |
| .quick_reply{ | |
| pointer-events: none; | |
| } | |
| .quick_reply > *{ | |
| pointer-events: auto; | |
| } | |
| .core_title_absolute_bright .d_lzonly_bdaside { | |
| line-height: 20px; | |
| } | |
| .core_title_absolute_bright .d_lzonly_bdaside:before { | |
| font-size: 12px !important; | |
| letter-spacing: 2px; | |
| } | |
| .core_title_absolute_bright .d_lzonly_bdaside, | |
| .core_title_absolute_bright .p_favthr_main p { | |
| color: inherit !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns #lzonly_cntn:before, | |
| .core_title_absolute_bright .core_title_btns>#j_favthread:before, | |
| .core_title_absolute_bright .core_title_btns>.j_favor:before, | |
| .core_title_absolute_bright .core_title_btns>#quick_reply:before, | |
| .core_title_absolute_bright .core_title_btns>.quick_reply:before { | |
| display: block !important; | |
| color: inherit !important; | |
| font-size: 32px !important; | |
| margin-top: -10px !important; | |
| z-index: 1; | |
| } | |
| .core_title_absolute_bright .core_title_btns #lzonly_cntn:before { | |
| font-size: 36px !important; | |
| } | |
| /*收藏成功提示框*/ | |
| .recommend_outtest_container { | |
| border: none !important; | |
| background-color: #4879BD !important; | |
| border-radius: 6px !important; | |
| box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 16px 6px rgba(0, 0, 0, 0.2) !important; | |
| color: #fff !important; | |
| z-index: 9999; | |
| margin: 0 !important; | |
| top: 90px !important; | |
| right: 32px !important; | |
| bottom: auto !important; | |
| left: auto !important; | |
| } | |
| .recommend_outtest_container > div { | |
| width: 100% !important; | |
| box-sizing: border-box; | |
| left: auto !important; | |
| margin: 0 !important; | |
| padding: 0 4px !important; | |
| position: relative; | |
| } | |
| .recommend_outtest_container .arrow_top { | |
| width: 0; | |
| height: 0; | |
| border: none !important; | |
| top: -9px; | |
| border-left: 10px solid transparent !important; | |
| border-right: 10px solid transparent !important; | |
| border-bottom: 10px solid #4573b4 !important; | |
| transform: translateX(-50%); | |
| z-index: 1; | |
| margin-left: 100px; | |
| background: transparent !important; | |
| } | |
| .recommend_outtest_container .success_tip { | |
| background: #4573b4; | |
| border-radius: 6px 6px 0; | |
| } | |
| .recommend_outtest_container .success_tip hr, | |
| .recommend_outtest_container .success_tip .collect_tip { | |
| display: none; | |
| } | |
| .recommend_outtest_container .collect_success span { | |
| margin-left: 9px; | |
| font-size: 18px; | |
| top: 10px; | |
| } | |
| .recommend_outtest_container .collect_success span:before { | |
| content: "\e52d"; | |
| font-family: 'Material Icons'; | |
| line-height: 1; | |
| white-space: nowrap; | |
| word-wrap: normal; | |
| direction: ltr; | |
| font-size: 28px; | |
| margin-right: 4px; | |
| margin-top: -2px; | |
| display: block; | |
| float: left; | |
| } | |
| .recommend_outtest_container .success_tip .delete_collect { | |
| position: absolute; | |
| right: 0; | |
| left: auto; | |
| display: block; | |
| float: right; | |
| height: 40px; | |
| line-height: 40px; | |
| width: 40px; | |
| margin: 0 !important; | |
| top: 0; | |
| background: none !important; | |
| cursor: pointer; | |
| text-align: center; | |
| color: rgba(255, 255, 255, .6); | |
| transform: scale(1); | |
| transition-property: color, transform; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .recommend_outtest_container .success_tip .delete_collect:hover { | |
| transform: scale(1.3); | |
| color: rgba(255, 255, 255, 1) | |
| } | |
| .recommend_outtest_container .success_tip .delete_collect:before { | |
| content: "\e5cd"; | |
| font-family: 'Material Icons'; | |
| font-size: 24px; | |
| } | |
| .recommend_outtest_container .rules_tip { | |
| font-size: 14px; | |
| text-align: center; | |
| line-height: 30px; | |
| height: 60px; | |
| margin-bottom: -30px !important; | |
| } | |
| .recommend_outtest_container .show_tag_input { | |
| margin: 0 !important; | |
| padding: 0 6px !important; | |
| z-index: 1; | |
| } | |
| .recommend_outtest_container .j_add_tag { | |
| width: 100% !important; | |
| height: 30px !important; | |
| outline: none !important; | |
| border: none !important; | |
| margin: 0 !important; | |
| box-sizing: border-box; | |
| color: #fff !important; | |
| font-size: 18px !important; | |
| line-height: 26px !important; | |
| text-align: center; | |
| background: rgba(0, 0, 0, 0.08) !important; | |
| padding: 0 4px !important; | |
| padding-top: 4px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| transition-property: transform, box-shadow, background, border-bottom; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .recommend_outtest_container .j_add_tag:focus { | |
| background: rgba(0, 0, 0, 0.1) !important; | |
| border-bottom: 4px solid #4285F4 !important; | |
| } | |
| .recommend_outtest_container .recommend_tag { | |
| margin-top: 12px !important; | |
| padding: 0 6px !important; | |
| } | |
| .recommend_outtest_container .recommend_tag:empty { | |
| display: none; | |
| } | |
| .recommend_outtest_container .pb_recommend_tag { | |
| margin: 0 !important; | |
| margin-bottom: 4px !important; | |
| margin-right: 5px !important; | |
| padding: 0 6px !important; | |
| height: 20px; | |
| line-height: 20px; | |
| float: none; | |
| display: inline-block; | |
| background: rgba(0, 0, 0, .1); | |
| border: none; | |
| cursor: pointer; | |
| } | |
| .recommend_outtest_container .pb_recommend_tag span { | |
| position: static !important; | |
| top: auto !important; | |
| } | |
| .recommend_outtest_container .pb_recommend_tag:hover { | |
| background: #4285F4 !important; | |
| } | |
| .recommend_outtest_container .tag_button { | |
| margin-top: 12px !important; | |
| margin-bottom: 16px !important; | |
| } | |
| .recommend_outtest_container .tag_submit_button { | |
| width: 200px; | |
| height: 27px; | |
| line-height: 27px; | |
| display: block; | |
| position: relative; | |
| margin: 0 auto; | |
| z-index: 1; | |
| background: rgba(0, 0, 0, 0.08) !important; | |
| text-align: center; | |
| cursor: pointer; | |
| letter-spacing: 20px; | |
| text-indent: 20px; | |
| } | |
| .recommend_outtest_container .tag_submit_button:hover { | |
| background: #4285F4 !important; | |
| } | |
| .recommend_outtest_container .tag_submit_button span { | |
| position: static !important; | |
| font-size: inherit !important; | |
| color: inherit !important; | |
| } | |
| .recommend_outtest_container .pb_recommend_tag, | |
| .recommend_outtest_container .tag_submit_button { | |
| transition-property: background; | |
| transition-duration: .4s; | |
| transition-timing-function: ease; | |
| } | |
| .p_favthread .p_favthr_tip { | |
| line-height: 0; | |
| font-size: 0 !important; | |
| width: 80px !important; | |
| height: 80px !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| border-radius: 8px; | |
| background: #4879BD !important; | |
| color: #fff !important; | |
| position: absolute; | |
| top: 80px !important; | |
| right: -8px !important; | |
| z-index: 9999; | |
| box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.2)!important; | |
| display: block !important; | |
| transform: translateY(10px); | |
| pointer-events: none; | |
| opacity: 0 !important; | |
| transition-property: opacity, transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .p_favthread .p_favthr_tip[style*="height:"] { | |
| visibility: visible; | |
| opacity: 1 !important; | |
| transform: none; | |
| } | |
| .core_title_wrap_bright>.p_favthread .p_favthr_tip { | |
| top: 70px !important; | |
| right: 76px !important; | |
| } | |
| .p_favthread .p_favthr_tip * { | |
| display: none; | |
| } | |
| .p_favthread .p_favthr_tip>span:only-child, | |
| .p_favthread .p_favthr_tip>a:nth-of-type(1) { | |
| display: block; | |
| } | |
| .core_title_absolute_bright .p_favthread .p_favthr_tip { | |
| top: -82px !important; | |
| right: -5px !important; | |
| } | |
| .core_title_absolute_bright>.p_favthread .p_favthr_tip { | |
| top: -100px !important; | |
| right: 105px !important; | |
| } | |
| .p_favthread .p_favthr_tip>span:only-child:after, | |
| .p_favthread .p_favthr_tip>a:nth-of-type(1):after { | |
| font-size: 12px; | |
| letter-spacing: 2px; | |
| display: inline-block; | |
| width: 100%; | |
| color: #fff; | |
| margin-top: 12px; | |
| } | |
| .p_favthread .p_favthr_tip>span:only-child:after { | |
| content: "取消成功"; | |
| } | |
| .p_favthread .p_favthr_tip>a:nth-of-type(1):after { | |
| content: "收藏成功"; | |
| } | |
| .p_favthread .p_favthr_tip>span:only-child:before, | |
| .p_favthread .p_favthr_tip>a:nth-of-type(1):before { | |
| font-family: 'Material Icons'; | |
| line-height: 1; | |
| font-size: 42px; | |
| display: block; | |
| margin-top: 6px; | |
| color: #fff; | |
| } | |
| .p_favthread .p_favthr_tip>span:only-child:before { | |
| content: "\e8e7"; | |
| } | |
| .p_favthread .p_favthr_tip>a:nth-of-type(1):before { | |
| content: "\e8e6"; | |
| } | |
| .core_title_absolute_bright~.p_postlist .recommend_outtest_container { | |
| position: fixed !important; | |
| bottom: 86px !important; | |
| right: auto !important; | |
| left: 50% !important; | |
| top: auto !important; | |
| transform: translateX(194px); | |
| width: 360px; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .core_title_absolute_bright~.p_postlist .recommend_outtest_container .arrow_top { | |
| border: none !important; | |
| border-left: 10px solid transparent !important; | |
| border-right: 10px solid transparent !important; | |
| border-top: 10px solid #4879BD !important; | |
| top: auto; | |
| left: 50%; | |
| bottom: -9px; | |
| position: absolute; | |
| margin: 0 !important; | |
| } | |
| .p_thread.thread_theme_bright_absolute { | |
| position: fixed; | |
| z-index: 450 !important; | |
| bottom: -14px !important; | |
| box-sizing: border-box; | |
| height: 80px !important; | |
| width: 746px !important; | |
| background: none !important; | |
| border: none !important; | |
| padding: 0 !important; | |
| margin: 0 !important; | |
| color: #fff !important; | |
| } | |
| .p_thread.thread_theme_bright_absolute:before { | |
| content: "Design by Maverick"; | |
| font-size: 0; | |
| position: absolute; | |
| height: 54px; | |
| width: 740px; | |
| background: #4879BD !important; | |
| } | |
| .p_thread.thread_theme_bright_absolute:before, | |
| .p_thread.thread_theme_bright_absolute>*:not(.loading-tip) { | |
| opacity: 0; | |
| transition-property: opacity; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .p_thread.thread_theme_bright_absolute:hover { | |
| transition-duration: 1s; | |
| } | |
| .p_thread.thread_theme_bright_absolute:hover:before, | |
| .p_thread.thread_theme_bright_absolute:hover>*:not(.loading-tip) { | |
| opacity: 1; | |
| transition-duration: 1s; | |
| } | |
| .p_thread.thread_theme_bright_absolute:hover>* { | |
| /*过渡时禁止事件*/ | |
| animation-name: eventon_duration; | |
| animation-duration: .8s; | |
| animation-timing-function: linear; | |
| animation-fill-mode: forwards; | |
| } | |
| .thread_theme_bright_absolute .l_posts_num .pb_list_pager { | |
| background: none !important; | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| padding-top: 16px !important; | |
| box-sizing: border-box; | |
| margin-right: 10px !important; | |
| } | |
| .thread_theme_bright_absolute .l_thread_info { | |
| display: block; | |
| } | |
| .thread_theme_bright_absolute .pb_list_pager >* { | |
| padding: 0 6px !important; | |
| background: rgba(0, 0, 0, .1) !important; | |
| } | |
| .thread_theme_bright_absolute .pb_list_pager >a:hover { | |
| background: #4285F4 !important; | |
| } | |
| .thread_theme_bright_absolute .l_reply_num>span { | |
| margin-left: 50% !important; | |
| transform: translateX(-50%); | |
| white-space: nowrap; | |
| float: none !important; | |
| margin-top: 2px !important; | |
| } | |
| .thread_theme_bright_absolute .l_reply_num>span:nth-of-type(1) { | |
| margin-top: 10px !important; | |
| } | |
| .thread_theme_bright_absolute .l_reply_num>span:before { | |
| margin-left: -1.5em !important; | |
| } | |
| .thread_theme_bright_absolute .l_reply_num~.l_reply_num { | |
| margin-left: 20px !important; | |
| } | |
| .thread_theme_bright_absolute input { | |
| background: rgba(0, 0, 0, 0.08) !important; | |
| padding: 0 4px !important; | |
| padding-top: 4px !important; | |
| margin-top: 14px !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| } | |
| .thread_theme_bright_absolute input~button { | |
| top: 14px; | |
| } | |
| .thread_theme_bright_absolute input~button:after { | |
| color: rgba(255, 255, 255, 0.5); | |
| } | |
| .thread_theme_bright_absolute input:focus~button:before, | |
| .thread_theme_bright_absolute input:focus~button:after { | |
| background: #4285F4; | |
| } | |
| .thread_theme_bright_absolute input:focus~button:before { | |
| box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 2px 24px 0 rgba(0, 0, 0, 0.1), -10px 0 20px 0px #4879BD; | |
| } | |
| .thread_theme_bright_absolute input:focus~button:after { | |
| box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 2px 24px 0 rgba(0, 0, 0, 0.1), 10px 0 20px 0px #4879BD; | |
| } | |
| .thread_theme_bright_absolute input:focus { | |
| background: #4285F4 !important; | |
| box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1), 0 2px 24px 0 rgba(0, 0, 0, 0.1); | |
| } | |
| .thread_theme_bright_absolute .creativeplatform-elevator { | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .thread_theme_bright_absolute .l_thread_manage { | |
| display: none !important; | |
| } | |
| /*右边栏分割线*/ | |
| .forum_content .aside:before, | |
| .right_bright:before, | |
| .side:before, | |
| .right_aside:before { | |
| content: "Design by Maverick"; | |
| font-size: 0; | |
| display: block; | |
| position: absolute; | |
| height: 100%; | |
| width: 0; | |
| border-left: 1px solid rgba(0,0,0,.1); | |
| } | |
| /*keyframes*/ | |
| @keyframes eventoff_duration { | |
| from { | |
| pointer-events: auto; | |
| } | |
| to { | |
| pointer-events: none; | |
| } | |
| } | |
| @keyframes eventon_duration { | |
| from { | |
| pointer-events: none; | |
| } | |
| to { | |
| pointer-events: auto; | |
| } | |
| } | |
| @keyframes button_effect_left { | |
| from { | |
| opacity: 0; | |
| transform: translateX(80%); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateX(0); | |
| } | |
| } | |
| @keyframes button_effect_right { | |
| from { | |
| opacity: 0; | |
| transform: translateX(-90%); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateX(0); | |
| } | |
| } | |
| /*细节处理*/ | |
| /*帖子内容图片宽度限制*/ | |
| .d_post_content .BDE_Image{ | |
| height: auto !important; | |
| max-width: 100% !important; | |
| } | |
| .d_post_content .BDE_Image[width="560"], | |
| .poster_body .edui-editor-body .edui-body-container img[width="560"] { | |
| width: auto !important; | |
| height: auto !important; | |
| max-width: 100% !important; | |
| } | |
| /*占位符穿透*/ | |
| .tbui_placeholder, | |
| .tb_poster_placeholder { | |
| pointer-events: none; | |
| } | |
| .icon_wrap:empty { | |
| /*印记栏为空不显示*/ | |
| display: none !important; | |
| } | |
| /*话题贴回复框控件域*/ | |
| .qp_btn { | |
| width: 100% !important; | |
| } | |
| .qp_smile { | |
| margin-right: 6px; | |
| float: right; | |
| } | |
| .thread_theme_bright_absolute .pb_list_pager:empty+.l_reply_num { | |
| /*帖子内页页数为1时增大功能栏项目间距*/ | |
| margin-right: 20px !important; | |
| } | |
| .core_reply { | |
| /*楼中楼的最小高度导致帖子内页滚动时跳动*/ | |
| min-height: 0 !important; | |
| } | |
| .j_user_card { | |
| /*楼中楼回复后头像a标签高度出错*/ | |
| display: inline-block; | |
| min-height: 100%; | |
| } | |
| .core_reply_content>ul>li:nth-of-type(1) { | |
| /*楼中楼回复后即使是一楼也会出现上描边*/ | |
| border-top: none; | |
| } | |
| /*编辑快速回帖 输入框宽度问题*/ | |
| #quick-reply-edit-wrapper .quick-reply-item { | |
| margin-right: 0 !important; | |
| } | |
| #quick-reply-edit-wrapper .quick-reply-item .quick-reply-delete-btn { | |
| right: 4px !important; | |
| } | |
| /*右侧浮层*/ | |
| .tbui_aside_float_bar { | |
| border-top: none !important; | |
| position: fixed; | |
| left: 50% !important; | |
| bottom: 10vh !important; | |
| } | |
| .tbui_aside_fbar_button { | |
| box-sizing: content-box; | |
| width: 45px !important; | |
| height: 50px !important; | |
| margin-bottom: 5px; | |
| } | |
| .tbui_aside_fbar_button >a { | |
| display: block; | |
| position: relative; | |
| width: inherit !important; | |
| height: inherit !important; | |
| border-radius: 0 10px 10px 0; | |
| box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.08); | |
| background: #fefefe !important; | |
| overflow:hidden; | |
| font-size: 0; | |
| white-space: nowrap; | |
| text-indent: -45px; | |
| transition-property: text-indent; | |
| transition-duration: .6s; | |
| transition-timing-function: ease; | |
| } | |
| .tbui_aside_fbar_button >a:hover { | |
| text-indent: 0px; | |
| } | |
| .tbui_aside_fbar_button >a:after, | |
| .tbui_aside_fbar_button >a:before{ | |
| display: inline-block; | |
| color: #ccc; | |
| width: inherit !important; | |
| height: inherit !important; | |
| box-sizing: border-box; | |
| vertical-align: top; | |
| white-space: normal; | |
| text-indent: 0; | |
| } | |
| .tbui_aside_fbar_button >a:after{ | |
| content: "\e871"; | |
| font-family: 'Material Icons'; | |
| font-size: 28px; | |
| line-height: 50px; | |
| text-align: center; | |
| text-indent: -2px; | |
| } | |
| .tbui_aside_fbar_button >a:before{ | |
| content: "未知项目"; | |
| font-size: 14px; | |
| line-height: 20px; | |
| padding-top: 5px; | |
| padding-left: 7px; | |
| } | |
| .tbui_fbar_top>a:after { | |
| content:"\e255"; | |
| font-size: 32px; | |
| } | |
| .tbui_fbar_top>a:before { | |
| content:"返回顶部"; | |
| } | |
| .tbui_fbar_tsukkomi>a:after { | |
| content:"\e815"; | |
| } | |
| .tbui_fbar_tsukkomi>a:before { | |
| content:"神来一句"; | |
| } | |
| .tbui_fbar_props>a:after { | |
| content:"\e39f"; | |
| } | |
| .tbui_fbar_props>a:before { | |
| content:"魔法道具"; | |
| } | |
| .tbui_fbar_home>a:after { | |
| content:"\e91d"; | |
| } | |
| .tbui_fbar_home>a:before { | |
| content:"召唤度娘"; | |
| } | |
| .tbui_fbar_square>a:after { | |
| content:"\e639"; | |
| } | |
| .tbui_fbar_square>a:before { | |
| content:"主播广场"; | |
| } | |
| .tbui_fbar_lab>a:after { | |
| content:"\e87b"; | |
| font-size: 26px; | |
| } | |
| .tbui_fbar_lab>a:before { | |
| content:"实验功能"; | |
| } | |
| .tbui_fbar_favor>a:after { | |
| content:"\e87d"; | |
| } | |
| .tbui_fbar_favor>a:before { | |
| content:"爱逛的吧"; | |
| } | |
| .tbui_fbar_share>a:after { | |
| content:"\e80d"; | |
| } | |
| .tbui_fbar_share>a:before { | |
| content:"分享此页"; | |
| } | |
| .tbui_fbar_refresh>a:after { | |
| content:"\e5d5"; | |
| font-size: 30px; | |
| } | |
| .tbui_fbar_refresh>a:before { | |
| content:"立即刷新"; | |
| } | |
| .tbui_fbar_post>a:after { | |
| content:"\e254"; | |
| } | |
| .tbui_fbar_post>a:before { | |
| content:"发表主题"; | |
| } | |
| .tbui_fbar_top{ | |
| overflow: hidden; | |
| padding-right: 2px; | |
| padding-bottom: 2px; | |
| } | |
| .tbui_fbar_top>a{ | |
| transition-property: text-indent,transform; | |
| } | |
| .tbui_fbar_top[style*="hidden"]{ | |
| pointer-events: none; | |
| visibility: visible !important; | |
| } | |
| .tbui_fbar_top[style*="hidden"]>a{ | |
| transform: translateX(-110%); | |
| } | |
| .tbui_fbar_top[style*="visible"]{ | |
| opacity: 1; | |
| } | |
| .tbshare_popup_wrapper{ | |
| position: fixed; | |
| width: inherit; | |
| height: inherit; | |
| text-indent: 0; | |
| font-size: 12px; | |
| } | |
| .tbui_aside_float_bar .tbshare_popup_wrapper{ | |
| transform: translateY(-100%); | |
| } | |
| .tbshare_popup_enter { | |
| width: inherit; | |
| height: inherit; | |
| background: none !important; | |
| } | |
| .tbshare_popup_main { | |
| display: block !important; | |
| left: 0 !important; | |
| top: 50% !important; | |
| pointer-events: none; | |
| opacity: 0; | |
| transform: translate(-120%,-50%); | |
| transition-property: opacity,transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .tbshare_popup_main[style*="block"] { | |
| pointer-events: auto; | |
| opacity: 1; | |
| transform: translate(-100%,-50%); | |
| } | |
| /*根据相关法律政策...*/ | |
| .container .icon-attention{ | |
| font-size: 20px; | |
| text-align: center; | |
| width: 100%; | |
| height: auto; | |
| position: static; | |
| padding: 0; | |
| background: none !important; | |
| margin: 0 0 40px 0; | |
| color: #999; | |
| } | |
| .container .icon-attention:before{ | |
| content: "\e001"; | |
| font-family: 'Material Icons'; | |
| display: block; | |
| width: 100%; | |
| margin: 0 0 20px 0; | |
| font-size: 100px; | |
| line-height: 100px; | |
| } | |
| /*帖子标题标识*/ | |
| .threadlist_title i{ | |
| flex: 0 0 auto; | |
| background-image: none !important; | |
| display: inline-block !important; | |
| width: auto !important; | |
| min-width: 20px; | |
| height: 20px !important; | |
| line-height: 20px; | |
| border-radius: 4px; | |
| background-color: #4285F5; | |
| margin: 0; | |
| margin-top: -1px; | |
| margin-right: 2px; | |
| text-align: center; | |
| font-size: 0 !important; | |
| font-style: normal !important; | |
| color: #fff !important; | |
| } | |
| .threadlist_title i:before{ | |
| font-family: 'Material Icons'; | |
| font-size: 20px; | |
| vertical-align: top; | |
| } | |
| .threadlist_title i:after{ | |
| font-size: 12px; | |
| margin: 0 4px; | |
| } | |
| .threadlist_title i+.j_th_tit { | |
| margin-left: 2px; | |
| } | |
| .threadlist_title:not(.pull_left) span{ | |
| flex: 0 0 auto; | |
| margin-top: -1px; | |
| margin-right: 2px; | |
| } | |
| .threadlist_title:not(.pull_left) span:empty{ | |
| display: none; | |
| } | |
| .threadlist_title img[src*="idisk.gif"], | |
| .threadlist_title img[src*="icon_bright"]{ | |
| float: right; | |
| width: 20px !important; | |
| height: 20px !important; | |
| padding-left: 20px; | |
| padding-top: 20px; | |
| border-radius: 4px; | |
| margin: 0 !important; | |
| margin-right: 2px !important; | |
| background-color: #4285F5; | |
| box-sizing: border-box; | |
| background-image: url(http://7punbc.com1.z0.glb.clouddn.com/tieba-icon.svg?20160327); | |
| background-repeat: no-repeat; | |
| background-position: 0 20px; | |
| } | |
| .threadlist_title .icon-voice:before{ | |
| content: "\e31d"; | |
| } | |
| .threadlist_title .icon-game-type-mini-game { | |
| background-color: #FF732A; | |
| } | |
| .threadlist_title .icon-game-type-mini-game:after { | |
| content: "小游戏"; | |
| } | |
| .threadlist_title .icon-novel-thanks { | |
| background-color: #FF6666; | |
| } | |
| .threadlist_title .icon-novel-thanks:after { | |
| content: "感谢"; | |
| } | |
| .threadlist_title .icon-novel-genuine, | |
| .threadlist_title .icon-novel-chapter{ | |
| background-color: #FFA800; | |
| } | |
| .threadlist_title .icon-novel-genuine:after, | |
| .threadlist_title .icon-novel-chapter:after{ | |
| content: "章节"; | |
| } | |
| .threadlist_title .icon-game-feature-strategy:after { | |
| content: "策略经营"; | |
| } | |
| .threadlist_title .icon-game-feature-sports:after { | |
| content: "体育竞速"; | |
| } | |
| .threadlist_title .icon-game-feature-shooting:after { | |
| content: "飞行射击"; | |
| } | |
| .threadlist_title .icon-game-feature-network:after { | |
| content: "网络游戏"; | |
| } | |
| .threadlist_title .icon-game-feature-cosplay:after { | |
| content: "角色扮演"; | |
| } | |
| .threadlist_title .icon-game-feature-casual:after { | |
| content: "休闲益智"; | |
| } | |
| .threadlist_title .icon-game-feature-cards:after { | |
| content: "卡片棋牌"; | |
| } | |
| .threadlist_title .icon-game-feature-action:after { | |
| content: "动作冒险"; | |
| } | |
| .threadlist_title .icon-game-type-web { | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-game-type-web:after { | |
| content: "网页游戏"; | |
| } | |
| .threadlist_title .icon-game-type-mobile { | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-game-type-mobile:after { | |
| content: "手机游戏"; | |
| } | |
| .threadlist_title .icon-game-type-client { | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-game-type-client:after { | |
| content: "客户端游戏"; | |
| } | |
| .threadlist_title .icon-novel-reward { | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-novel-reward:after { | |
| content: "捧场"; | |
| } | |
| .threadlist_title .icon-zhengwen-book { | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-zhengwen-book:after { | |
| content: "贴吧原创"; | |
| } | |
| .threadlist_title .icon-fb-solved { | |
| background-color: #5DB772 | |
| } | |
| .threadlist_title .icon-fb-solved:before { | |
| content: "\e876"; | |
| margin: 0 1px; | |
| font-size: 18px; | |
| line-height:19px; | |
| } | |
| .threadlist_title .icon-fb-solved:after { | |
| content: "已解决"; | |
| margin-left: 0; | |
| } | |
| .threadlist_title .icon-fb-following { | |
| background-color: #FF6666; | |
| } | |
| .threadlist_title .icon-fb-following:before { | |
| content: "\e80e"; | |
| margin: 0 2px; | |
| font-size: 16px; | |
| } | |
| .threadlist_title .icon-fb-following:after { | |
| content: "正在跟进"; | |
| margin-left: -1px; | |
| } | |
| .threadlist_title .icon-mass-response { | |
| background-color: #FF914D; | |
| } | |
| .threadlist_title .icon-mass-response:after { | |
| content: "一呼百应"; | |
| } | |
| .threadlist_title .icon-guessing { | |
| background-color: #F8220C; | |
| } | |
| .threadlist_title .icon-guessing:after { | |
| content: "拳王"; | |
| } | |
| .threadlist_title .tb_tag_forward:after, | |
| .threadlist_title .icon-repost:after { | |
| content: "转帖"; | |
| } | |
| .threadlist_title img[src*="membertop_icon.png"], | |
| .threadlist_title .icon-member-top { | |
| background-color: #FFCC26 | |
| } | |
| .threadlist_title .icon-member-top:after { | |
| content: "会员置顶"; | |
| margin-left: -1px; | |
| } | |
| .threadlist_title .icon-member-top:before, | |
| .threadlist_title .icon-top:before{ | |
| content: "\e154"; | |
| display: inline-block; | |
| transform: translateY(-0.5px) rotate(-90deg); | |
| } | |
| .threadlist_title img[src*="membertop_icon.png"], | |
| .threadlist_title img[src*="zding.gif"]{ | |
| background-position: 0 0; | |
| } | |
| .threadlist_title img[src*="tpiao.gif"], | |
| .threadlist_title .icon-vote { | |
| background-color: #55D45D | |
| } | |
| .threadlist_title .icon-vote:before{ | |
| content: "\e01d"; | |
| } | |
| .threadlist_title img[src*="tpiao.gif"]{ | |
| background-position: 0 -80px; | |
| } | |
| .threadlist_title .icon-user-mask:before{ | |
| content: "\e15d"; | |
| font-size: 16px; | |
| margin: 0 2px; | |
| } | |
| .threadlist_title .icon-user-mask:after{ | |
| content: "被屏蔽"; | |
| margin-left: 0; | |
| } | |
| .threadlist_title .icon-activity:before{ | |
| content: "\e153"; | |
| } | |
| .threadlist_title img[src*="jing.gif"], | |
| .threadlist_title .icon-good{ | |
| background-color: #FF6666 | |
| } | |
| .threadlist_title .icon-good:before{ | |
| content: "\e838"; | |
| font-size: 18px; | |
| margin-right: -1px; | |
| } | |
| .threadlist_title img[src*="jing.gif"]{ | |
| background-position: 0 -20px; | |
| } | |
| .threadlist_title .icon-notice:before{ | |
| content: "\e80b"; | |
| font-size: 18px; | |
| } | |
| .threadlist_title img[src*="goodalbum.png"], | |
| .threadlist_title .icon-good-album{ | |
| background-color: #FF6666; | |
| } | |
| .threadlist_title .icon-good-album:before{ | |
| content: "\e3df"; | |
| font-size: 18px; | |
| } | |
| .threadlist_title img[src*="goodalbum.png"], | |
| .threadlist_title img[src*="tupian.gif"]{ | |
| background-position: 0 -60px; | |
| } | |
| .threadlist_title .icon-liveshow-promoter{ | |
| background-color: #FFA825; | |
| } | |
| .threadlist_title .icon-liveshow-promoter:after{ | |
| content:"帝王贴"; | |
| } | |
| .threadlist_title .icon-idisk { | |
| background-position: -254px -81px | |
| } | |
| .threadlist_title .icon-idisk:before { | |
| content: "\e2c8"; | |
| font-size: 16px; | |
| } | |
| .threadlist_title img[src*="idisk.gif"]{ | |
| background-position: 0 -100px; | |
| } | |
| .threadlist_title img[src*="bakan.gif"], | |
| .threadlist_title .icon-bakan { | |
| background-color: #EAB021; | |
| } | |
| .threadlist_title .icon-bakan:before { | |
| content: "\e0e0"; | |
| font-size: 16px; | |
| } | |
| .threadlist_title img[src*="bakan.gif"]{ | |
| background-position: 0 -40px; | |
| } | |
| .threadlist_title .icon-picture:before{ | |
| content: "\e3df"; | |
| font-size: 18px; | |
| } | |
| .threadlist_title .icon_interview_picture:after{ | |
| content:"图片话题"; | |
| } | |
| .threadlist_title .icon-zhaoji{ | |
| background-color: #b77df0; | |
| } | |
| .threadlist_title .icon-zhaoji:after{ | |
| content:"召集"; | |
| } | |
| .threadlist_title .icon-userdefine-diamond-mall{ | |
| background-color: #FF6666; | |
| } | |
| .threadlist_title .icon-userdefine-diamond-mall:after{ | |
| content:"夺宝"; | |
| } | |
| /*吧详情页*/ | |
| .container_wrap .card_top_wrap{ | |
| padding-bottom: 10px !important; | |
| } | |
| .forum_info_wrap{ | |
| overflow: hidden; | |
| } | |
| /*吧广播页*/ | |
| .container>.content{ | |
| width: 1002px !important; | |
| } | |
| /*帖子列表页话题*/ | |
| .interview .threadListGroupCnt{ | |
| padding: 12px 0 !important; | |
| background: none; | |
| z-index: 4; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt{ | |
| display: flex; | |
| margin: 0 !important; | |
| margin-bottom: 10px !important; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listReplyNum { | |
| float: none !important; | |
| width: 8% !important; | |
| min-width: 75px !important; | |
| padding: 0 14px 0 10px !important; | |
| box-sizing: border-box; | |
| margin-top: -3px !important; | |
| background: none !important; | |
| overflow: hidden; | |
| height: 24px !important; | |
| line-height: 24px !important; | |
| text-align: center; | |
| color: #666; | |
| margin: 0 !important; | |
| border-radius: 12px; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listReplyNum:after { | |
| content: ''; | |
| display: block; | |
| transform: translateY(-100%); | |
| background: rgba(0,0,0,.04) !important; | |
| height: 24px !important; | |
| border-radius: 12px; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listUser{ | |
| float: none !important; | |
| display: flex; | |
| width: 16% !important; | |
| min-width: 155px; | |
| padding: 0 !important; | |
| padding-right: 20px !important; | |
| white-space: nowrap; | |
| overflow: visible !important; | |
| line-height: 20px !important; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listThreadTitle{ | |
| float: none !important; | |
| width: 0 !important; | |
| flex: 1; | |
| display: flex; | |
| margin-right: 20px; | |
| padding: 0 !important; | |
| box-sizing: border-box; | |
| height: auto !important; | |
| overflow: visible; | |
| } | |
| .interview .threadListGroupCnt .listUser a{ | |
| background: none !important; | |
| padding: 0 !important; | |
| display: inline-block; | |
| width: auto !important; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| font-size: 12px; | |
| line-height: 20px !important; | |
| text-decoration: none !important; | |
| } | |
| .interview .topic_thread_danmu, | |
| .interview .threadListGroupCnt .listDescCnt, | |
| .interview .threadListGroupCnt .listBtnCnt, | |
| .interview .threadListGroupCnt .listTalkCnt, | |
| .interview .threadListGroupCnt .listPostCnt, | |
| .interview .threadListGroupCnt .listEditorCnt { | |
| margin-left: 78px; | |
| margin-right: 40px; | |
| } | |
| #interview-share-wrapper, | |
| .interview .threadListGroupCnt .mini .faceIcon, | |
| #liveIcon{ | |
| display: none !important; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listThreadTitle a:first-of-type:before{ | |
| content: '今日话题'; | |
| background-color: #4285F5; | |
| height: 20px !important; | |
| line-height: 20px; | |
| border-radius: 4px; | |
| padding: 0 4px; | |
| vertical-align: top; | |
| flex: 0 0 auto; | |
| display: inline-block !important; | |
| width: auto !important; | |
| margin-top: 1px; | |
| margin-right: 2px; | |
| text-align: center; | |
| font-size: 12px !important; | |
| font-style: normal !important; | |
| color: #fff !important; | |
| } | |
| .interview .threadListGroupCnt .listTitleCnt .listThreadTitle img[src*="interview_icon.gif"]+a:first-of-type:before{ | |
| content: '访谈直播'; | |
| } | |
| /*还弹幕...真的笑,笑出声*/ | |
| .opui-barrage-setup { | |
| position: absolute; | |
| top: 0; | |
| left: 100%; | |
| overflow: hidden; | |
| text-indent: 0; | |
| cursor: pointer; | |
| width: 24px; | |
| height: auto !important; | |
| border-radius: 0 6px 6px 0; | |
| box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.08); | |
| background: #4879BD !important; | |
| word-break: break-all; | |
| padding: 10px 6px; | |
| box-sizing: border-box; | |
| line-height: 16px; | |
| font-size: 12px; | |
| color: #fff; | |
| } | |
| .opui-barrage-setup:before{ | |
| content: "\e56b"; | |
| font-size: 16px; | |
| font-family: 'Material Icons'; | |
| font-style: normal; | |
| display: inline-block; | |
| height: 20px; | |
| vertical-align: top; | |
| margin-left: -1.5px; | |
| } | |
| .opui-barrage-setup:after{ | |
| content: "展开弹幕" | |
| } | |
| .interview .threadListGroupCnt .mini{ | |
| background: rgba(0, 0, 0, 0.04) !important; | |
| border: none !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, .04) !important; | |
| } | |
| .interview .threadListGroupCnt .mini .placeholder:before{ | |
| position: absolute; | |
| right: 8px; | |
| top: 2px; | |
| color: #aaa !important; | |
| } | |
| .interview .threadListGroupCnt .listTalkCnt, | |
| .interview .threadListGroupCnt .listPostCnt{ | |
| background: rgba(0, 0, 0, .01) !important; | |
| border: 1px solid rgba(0, 0, 0, .1) !important; | |
| padding: 6px 0; | |
| } | |
| .interview .threadListGroupCnt .listGroupCnt{ | |
| padding: 0 10px; | |
| } | |
| .interview .threadListGroupCnt .listItemCnt{ | |
| background: none !important; | |
| border-top: 1px solid rgba(0, 0, 0, .04); | |
| } | |
| .interview .threadListGroupCnt .listItemCnt:first-of-type{ | |
| border-top: none; | |
| } | |
| .interview .pInfoCnt .pReply, | |
| .interview .pInfoCnt .pLogin, | |
| .interview .threadListGroupCnt .pTail .pFrom{ | |
| color: #999; | |
| text-decoration: none !important; | |
| text-transform: capitalize; | |
| } | |
| .interview .threadListGroupCnt .listTalkCnt .listTitle, | |
| .interview .threadListGroupCnt .listPostCnt .listTitle{ | |
| position: absolute; | |
| z-index: 2; | |
| left: -25px; | |
| top: -1px; | |
| width: 24px; | |
| height: auto; | |
| border-radius: 6px 0 0 6px; | |
| border: 1px solid rgba(0, 0, 0, .1); | |
| border-right: none; | |
| background: #fefefe; | |
| overflow: hidden; | |
| word-break: break-all; | |
| padding: 10px 6px; | |
| box-sizing: border-box; | |
| line-height: 16px; | |
| font-size: 12px; | |
| color: #aaa; | |
| } | |
| .interview .threadListGroupCnt .listPostCnt .listTitle:before{ | |
| content:'吧友讨论' | |
| } | |
| .interview .threadListGroupCnt .listTalkCnt .listTitle:before{ | |
| content:'访谈内容'; | |
| color: #4879BD; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn{ | |
| border-radius: 6px 6px 0 0; | |
| border: 1px solid rgba(0,0,0,.1); | |
| background: #fff; | |
| color: #2D64B3; | |
| width: auto; | |
| height: 20px; | |
| line-height: 20px; | |
| margin-top: 6px; | |
| padding: 0 6px; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn:before{ | |
| content: '展开'; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn:after { | |
| content: '\e313'; | |
| font-family: 'Material Icons'; | |
| font-size: 20px; | |
| display: inline-block; | |
| vertical-align: top; | |
| text-indent: 0; | |
| width: 16px; | |
| margin-left: -2px; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn.down{ | |
| border-bottom: none; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn.down:before{ | |
| content: '收起'; | |
| } | |
| .interview .threadListGroupCnt .listBtnCnt .slideBtn.down:after { | |
| content: '\e316'; | |
| } | |
| .interview .listBtnCnt .list_announcement_cnt{ | |
| padding: 0 !important; | |
| background: none !important; | |
| } | |
| .interview .listBtnCnt .list_announcement_cnt:before{ | |
| content: '\e050'; | |
| font-family: 'Material Icons'; | |
| font-size: 20px; | |
| display: inline-block; | |
| vertical-align: top; | |
| text-indent: 0; | |
| color: #aaa; | |
| margin-right: 2px; | |
| } | |
| /*link-icon*/ | |
| .apc_src_wrapper{ | |
| background:none !important; | |
| padding-left: 0 !important; | |
| } | |
| .apc_src_wrapper:before{ | |
| content: '\e157'; | |
| font-family: 'Material Icons'; | |
| font-size: 18px; | |
| display: inline-block; | |
| vertical-align: top; | |
| margin-right: 2px; | |
| } | |
| /*语音*/ | |
| .voice_player a.voice_player_inner{ | |
| display: inline-block; | |
| width: 160px; | |
| height: 24px; | |
| line-height: 24px; | |
| padding: 3px 4px; | |
| background: rgba(0,0,0,.04); | |
| border: 1px solid rgba(0,0,0,.04); | |
| box-shadow: none; | |
| border-radius: 4px; | |
| color: #666; | |
| position: relative; | |
| } | |
| .voice_player_mini{ | |
| width: auto !important; | |
| vertical-align: middle; | |
| } | |
| .voice_player_mini a.voice_player_inner{ | |
| width: 100px; | |
| } | |
| .voice_player .middle{ | |
| width: 100%; | |
| white-space: nowrap; | |
| background: none !important; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| padding: 0 4px; | |
| } | |
| .voice_player_mini .middle{ | |
| top: 3px; | |
| } | |
| .voice_player .time { | |
| padding-right: 16px; | |
| width: auto !important; | |
| float: right; | |
| } | |
| .voice_player .before, | |
| .voice_player .after{ | |
| display: none !important; | |
| } | |
| .voice_player_inner.playing, | |
| .voice_player.playing a.voice_player_inner{ | |
| animation-name: breathe; | |
| animation-duration: 1s; | |
| animation-iteration-count: infinite; | |
| animation-timing-function: linear; | |
| animation-direction: alternate; | |
| } | |
| @keyframes breathe { | |
| from {box-shadow:inset 0 0 2px rgba(255,255,255,0);} | |
| to {box-shadow:inset 0 0 10px rgba(0,0,0,.2);} | |
| } | |
| .voice_player .speaker{ | |
| background: none !important; | |
| vertical-align: top; | |
| } | |
| .voice_player .speaker:before{ | |
| content: '\e037'; | |
| font-family: 'Material Icons'; | |
| font-size: 24px; | |
| display: inline-block; | |
| } | |
| .loading .speaker:before{ | |
| content: '\e86a'; | |
| animation-name: rotate; | |
| animation-duration: 2s; | |
| animation-iteration-count: infinite; | |
| animation-timing-function: linear; | |
| } | |
| @keyframes rotate { | |
| from {transform:rotate(0deg);} | |
| to {transform:rotate(360deg);} | |
| } | |
| .playing .speaker:before{ | |
| content: '\e047'; | |
| } | |
| /*发帖话题*/ | |
| .topic_sug_box_wrapper{ | |
| z-index: 9999; | |
| margin-top: 20px; | |
| margin-left: -8px; | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn{ | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| height: 40px; | |
| line-height: 40px; | |
| text-align: center; | |
| margin: 0 !important; | |
| overflow: hidden; | |
| box-sizing: border-box; | |
| background: rgba(0,0,0,.04) !important; | |
| border-bottom: 4px solid rgba(0, 0, 0, 0); | |
| transition-property: border; | |
| transition-duration: 1s; | |
| transition-timing-function: ease; | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn:hover{ | |
| border-bottom: 4px solid rgba(0, 0, 0, .1); | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn:before{ | |
| content: '#'; | |
| font-family: fantasy; | |
| font-size: 22px; | |
| font-weight: bold; | |
| color: #999 !important; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%); | |
| transition-property: transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn:hover:before{ | |
| transform: translate(-50%, -50%) translateY(-38px); | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn:after { | |
| content: "话题"; | |
| color: #666 !important; | |
| font-size: 12px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%, -50%) translateY(38px); | |
| transition-property: transform; | |
| transition-duration: .5s; | |
| transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); | |
| } | |
| .tb_rich_poster .poster_body .topic_add_btn:hover:after{ | |
| transform: translate(-50%, -50%); | |
| } | |
| /*帖子内页投票*/ | |
| #voteFlashPanel .vote_buttons button{ | |
| text-indent: 0; | |
| } | |
| .vote_progress_base{ | |
| background: rgba(0,0,0,.1); | |
| } | |
| .vote_progress_bar_container { | |
| height: 10px; | |
| border: none !important; | |
| } | |
| .vote_progress_bar{ | |
| height: 10px; | |
| opacity: .8; | |
| border: none !important; | |
| } | |
| .spread_btn{ | |
| z-index: 999; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)(/*|(?!/+tbmall/+).*)$") { | |
| /*T逗商城以外的页面*/ | |
| /*主体框架*/ | |
| .forum_info_wrap, | |
| .good_list_outer, | |
| .content { | |
| margin: 20px auto !important; | |
| background: #FdFdFd !important; | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| /*border: 1px solid #DBDCE0 !important;*/ | |
| box-sizing: border-box !important; | |
| position: relative; | |
| margin-bottom: 0 !important; | |
| min-height: 0; | |
| border-radius: 20px; | |
| } | |
| .skin_2103 [id="pagelet_frs-header/pagelet/head"], | |
| .app_forum_body [id="pagelet_frs-header/pagelet/head"], | |
| .head_top, | |
| .head_content, | |
| .card_banner { | |
| border-radius: 20px 20px 0 0; | |
| } | |
| #main_wrapper #footer, | |
| .pb_footer, | |
| .foot, | |
| .forum_foot, | |
| .good_list_inner{ | |
| border-radius: 0 0 20px 20px; | |
| } | |
| .foot, | |
| .plat_skin .wrap1, | |
| .skin_2103 .wrap1, | |
| .app_forum_body .wrap1, | |
| .head_main .head_middle, | |
| .head_main .head_content, | |
| .search_form_fixed, | |
| .search_bright, | |
| .l_container, | |
| .forum_info_wrap, | |
| .good_list_outer, | |
| .content{ | |
| width: 980px !important; | |
| } | |
| .tbui_aside_float_bar { | |
| margin-left: calc(980px / 2) !important; | |
| } | |
| .core_title_absolute_bright { | |
| width: calc(980px + 58px) !important; | |
| } | |
| .l_container .content{ | |
| width: 100% !important; | |
| border-top-left-radius: 10px; | |
| border-top-right-radius: 10px; | |
| } | |
| .forum_info_wrap, | |
| .good_list_outer{ | |
| border-top-left-radius: 10px; | |
| border-top-right-radius: 10px; | |
| } | |
| .header~.content { | |
| margin: 0 auto !important; | |
| border-radius: 0; | |
| border-top: none !important; | |
| border-bottom: none !important; | |
| } | |
| .head_content, | |
| .foot { | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| box-sizing: border-box; | |
| /*border: 1px solid #DBDCE0 !important;*/ | |
| border-top: none !important; | |
| } | |
| #main_wrapper #footer, | |
| .ibody, | |
| body:not(.app_forum_body):not(.skin_2103) .head_top, | |
| .app_forum_body .app-header-wrapper, | |
| .skin_2103 .app-header-wrapper, | |
| .forum_content, | |
| .head_content, | |
| .foot { | |
| background: #FdFdFd !important; | |
| } | |
| .ibody .w750, | |
| [id="pagelet_encourage-appforum/pagelet/head_top"], | |
| [id="pagelet_navigation/pagelet/navigation"], | |
| [id="pagelet_poster/pagelet/rich_poster"]{ | |
| /*遮盖阴影*/ | |
| background: #FdFdFd !important; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .head_content { | |
| border-bottom: none !important; | |
| } | |
| .foot { | |
| border-top: none !important; | |
| margin-bottom: 50px !important; | |
| } | |
| .head_content { | |
| border-bottom: none !important; | |
| } | |
| .good_list_outer .card_top_wrap, | |
| .forum_info_wrap .card_top_wrap, | |
| .plat_recom_carousel, | |
| .star_head, | |
| .star_banner, | |
| .vertical_card_banner, | |
| .content>.card_top_wrap, | |
| .forum_header, | |
| .plat_head, | |
| .plat_banner{ | |
| border-radius: inherit; | |
| border-bottom-left-radius: 0; | |
| border-bottom-right-radius: 0; | |
| } | |
| .head_top{ | |
| margin-top: 30px !important; | |
| } | |
| .head_top+.head_content{ | |
| border-radius: 0; | |
| } | |
| .plat_banner{ | |
| overflow: hidden; | |
| } | |
| .pb_footer { | |
| width: 100% !important; | |
| background: none !important; | |
| } | |
| .pb_footer { | |
| border-left: none !important; | |
| border-right: none !important; | |
| } | |
| .forum_content { | |
| border-right: none !important; | |
| border-left: none !important; | |
| border-bottom: none !important; | |
| z-index: 3; | |
| position: relative; | |
| } | |
| .forum_foot { | |
| border-right: none !important; | |
| border-left: none !important; | |
| padding: 0 !important; | |
| } | |
| .frs_content_footer_pagelet { | |
| width: 100% !important; | |
| padding: 0 !important; | |
| } | |
| .forum_foot, | |
| .frs_content_footer_pagelet { | |
| background:none !important; | |
| } | |
| .footer { | |
| clear: both; | |
| line-height: 22px; | |
| text-align: center; | |
| margin: 0 auto !important; | |
| padding: 20px 0 !important; | |
| display: block; | |
| color: #bbb !important; | |
| } | |
| .footer * { | |
| color: inherit !important; | |
| } | |
| /*全屏编辑框*/ | |
| .tb-ueditor-fullscreen [id="pagelet_poster/pagelet/rich_poster"], | |
| .tb-ueditor-fullscreen .tb_rich_poster_container{ | |
| padding-top: 0 !important; | |
| z-index: 10000 !important | |
| } | |
| .tb-ueditor-fullscreen .poster_head, | |
| .poster_clear_fullscreen{ | |
| display: none !important; | |
| } | |
| .tb-ueditor-fullscreen #rich_ueditor_tpl{ | |
| padding-top: 20px !important; | |
| width: 980px !important; | |
| background-color: #FdFdFd !important; | |
| margin: 0 auto !important; | |
| padding-bottom: 40px !important; | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| border-radius: 0 0 20px 20px; | |
| } | |
| .tb-ueditor-fullscreen .edui-body-container{ | |
| height: 60vh; | |
| } | |
| .fullscreen-word-limit{ | |
| height: 40px !important; | |
| line-height: 40px !important; | |
| color: #ccc !important; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)(/*|(?!/+home/+).*)$") { | |
| /*个人主页以外的页面*/ | |
| .wrap1, | |
| .wrap2 { | |
| background-color: transparent !important; | |
| } | |
| body:not(.app_forum_body):not(.skin_2103) .wrap1, | |
| .wrap2{ | |
| background-image: none !important; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)/+p/+.*$") { | |
| /*帖子内页调整*/ | |
| .tbui_aside_float_bar { | |
| margin-bottom: 12vh; | |
| } | |
| #container { | |
| margin-bottom: 80px !important; | |
| } | |
| .tb_rich_poster_container>.tb_rich_poster .poster_head_text{ | |
| padding: 0 14px !important; | |
| color: #666; | |
| } | |
| .tb_rich_poster_container>.tb_rich_poster .poster_head_text:before{ | |
| content:"\e253"; | |
| display: inline-block; | |
| font-family: 'Material Icons'; | |
| font-size: 16px; | |
| width: 24px; | |
| vertical-align: top; | |
| text-align: center; | |
| color: #777; | |
| margin: 0 -4px; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)/+p/+\\d+.*\\?(.*&)*see_lz=[1-9]+\\d*.*$") { | |
| /*帖子内页-只看楼主*/ | |
| .core_title_btns #lzonly_cntn:before { | |
| content: "\e8f5" !important; | |
| font-size: 30px !important; | |
| } | |
| .core_title_absolute_bright .core_title_btns #lzonly_cntn:before { | |
| font-size: 34px !important; | |
| } | |
| .d_lzonly_bdaside:before { | |
| content: "取消"; | |
| } | |
| .louzhubiaoshi_wrap { | |
| display: none !important; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)/+home/+.*$") { | |
| /*个人主页*/ | |
| /*迷之页面结构...无力吐槽....*/ | |
| body>.wrap1 { | |
| width: 980px; | |
| border-radius: 20px; | |
| overflow: visible !important; | |
| /*border: 1px solid #DBDCE0 !important;*/ | |
| box-sizing: border-box; | |
| background-position: center -20px; | |
| margin-top: 90px; | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| } | |
| .headinfo_wrap { | |
| margin: 0 auto; | |
| border-radius: 20px; | |
| overflow: hidden; | |
| } | |
| #head { | |
| margin: 0 auto; | |
| position: absolute; | |
| top: -80px !important; | |
| } | |
| .search_bright{ | |
| width: 982px !important; | |
| } | |
| .userinfo_wrap { | |
| width: 100% !important; | |
| border: none !important; | |
| } | |
| .container_wrap { | |
| width: 100% !important; | |
| border: none !important; | |
| background: #FdFdFd !important; | |
| border-radius: 0 0 20px 20px; | |
| position: relative; | |
| } | |
| .left_aside { | |
| background: none !important; | |
| border: none !important; | |
| } | |
| .right_aside { | |
| background: none !important; | |
| border: none !important; | |
| } | |
| .right_aside > * { | |
| background: none !important; | |
| z-index: 2; | |
| position: relative; | |
| } | |
| .right_aside:before { | |
| width: 239px; | |
| border-top: 1px solid #e0e0e0; | |
| border-left: 1px solid #e0e0e0; | |
| background: rgba(0, 0, 0, .02); | |
| z-index: 1 | |
| } | |
| .ihome_nav_wrap { | |
| margin: 0 !important; | |
| } | |
| .footer { | |
| position: absolute; | |
| left: 50%; | |
| bottom: -50px; | |
| transform: translateX(-50%); | |
| } | |
| .content_wrap{ | |
| width: 742px !important; | |
| } | |
| .fix-for-ie8{ | |
| display: none !important; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)/+(index.html.*)*([\\?#]+.*)*$") { | |
| /*贴吧首页*/ | |
| .head_right_region{ | |
| width: 100% !important; | |
| padding: 0 10px !important; | |
| box-sizing: border-box; | |
| float: none !important; | |
| } | |
| .search_logo { | |
| position: absolute; | |
| background-position: center !important; | |
| z-index: 1; | |
| pointer-events: none; | |
| } | |
| .search_top:before{ | |
| content: "Desgin by Maverick"; | |
| font-size: 0; | |
| display: block; | |
| width: 60px; | |
| height: 30px; | |
| pointer-events: auto; | |
| float: none !important; | |
| } | |
| #spage-tbshare-container{ | |
| display: none; | |
| } | |
| .footer, | |
| .main-sec{ | |
| background: #FdFdFd !important; | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| position: relative; | |
| } | |
| .main-sec{ | |
| padding: 20px 10px !important; | |
| border-radius: 10px 10px 0 0; | |
| } | |
| .main-sec>div{ | |
| position: relative; | |
| z-index: 3; | |
| } | |
| .bottom-bg { | |
| bottom: 0; | |
| left: 0; | |
| position: absolute !important; | |
| height: 20px; | |
| width: 100%; | |
| z-index: 2 !important; | |
| background: #FdFdFd; | |
| } | |
| .footer{ | |
| border: none !important; | |
| width: 1020px; | |
| padding: 0 !important; | |
| padding-top: 20px !important; | |
| border-radius: 0 0 20px 20px; | |
| margin-bottom: 20px !important; | |
| } | |
| .footer p { | |
| margin: 0 !important; | |
| } | |
| .tbui_aside_float_bar { | |
| margin-left: 510px !important; | |
| } | |
| .wrap2:before { | |
| display: none !important; | |
| } | |
| } | |
| @-moz-document regexp("^https?://(tieba.baidu.com|www.tieba.com)/+i/+.*$") { | |
| /*i贴吧*/ | |
| #main_wrapper #footer, | |
| .ibody{ | |
| width: 980px !important; | |
| border: none !important; | |
| position: relative; | |
| } | |
| .footer{ | |
| margin-bottom: 20px !important; | |
| } | |
| #content{ | |
| position: relative; | |
| padding: 10px; | |
| padding-top: 40px; | |
| margin: 0 !important; | |
| } | |
| .main_header, | |
| .ibody, | |
| .footer{ | |
| box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1); | |
| } | |
| .main_header{ | |
| margin-bottom: 0 !important; | |
| background-color: #4879BD; | |
| background-image: url(http://onox.qiniudn.com/maverick/lines.svg); | |
| background-position: right; | |
| background-repeat: no-repeat; | |
| border-radius: 6px 6px 0 0; | |
| overflow: hidden; | |
| height: 60px !important; | |
| position: relative; | |
| } | |
| .nav_bar{ | |
| display: none !important; | |
| background: none !important; | |
| position: absolute; | |
| bottom: 0; | |
| padding: 0 2px; | |
| box-sizing: border-box; | |
| } | |
| .nav_bar>li{ | |
| margin-right: 2px; | |
| } | |
| .nav_bar>li a{ | |
| background: none !important; | |
| font-weight: normal !important; | |
| font-size: 12px !important; | |
| line-height: 32px !important; | |
| } | |
| .nav_bar>li a:hover{ | |
| background: rgba(255,255,255,.16) !important; | |
| } | |
| .nav_bar>li.nav_cur a{ | |
| background: #f2f2f2 !important; | |
| color: #4879BD !important; | |
| } | |
| .a_p_title, | |
| .nav_item_hot_flag, | |
| .tb_icon_new{ | |
| display: none !important; | |
| } | |
| .sub_nav{ | |
| margin: 0 !important; | |
| } | |
| .sub_nav>ul, | |
| .tab_content{ | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: auto !important; | |
| margin: 0 !important; | |
| background: #f2f2f2 !important; | |
| border-bottom: 1px rgba(0,0,0,.04) solid; | |
| } | |
| .sub_nav>ul>li, | |
| .tab_content>li{ | |
| display: inline-block !important; | |
| background: none !important; | |
| border: none !important; | |
| position: static !important; | |
| width: auto !important; | |
| height: auto !important; | |
| margin: 0 20px; | |
| float: none !important; | |
| line-height: 40px !important; | |
| overflow: visible !important; | |
| } | |
| .sub_nav>ul>li a, | |
| .tab_content>li a{ | |
| background: none !important; | |
| font-weight: normal !important; | |
| font-size: 12px !important; | |
| line-height: inherit; | |
| padding: 0 !important; | |
| display: inline !important; | |
| } | |
| .sub_nav>ul>li a:hover, | |
| .tab_content>li a:hover{ | |
| background: rgba(255,255,255,.16) !important; | |
| } | |
| .sub_nav>ul>li.current a, | |
| .tab_content>li.tab_cur a{ | |
| color: #4879BD !important; | |
| } | |
| .content_aside{ | |
| width: 100% !important; | |
| position: absolute; | |
| top: -60px; | |
| left: 0; | |
| height: 60px; | |
| } | |
| .w750{ | |
| width: 100%; | |
| float: none; | |
| } | |
| .feed{ | |
| width: 100%; | |
| padding: 0 6px; | |
| margin: 0 !important; | |
| box-sizing: border-box; | |
| } | |
| #xiangce{ | |
| width: 100% !important; | |
| margin: 0 !important; | |
| } | |
| .aside_menu{ | |
| float: left; | |
| margin: 0 !important; | |
| margin-top: 28px !important; | |
| padding: 0 10px!important; | |
| width: auto; | |
| height: 32px !important; | |
| line-height: 32px !important; | |
| box-sizing: border-box; | |
| } | |
| .aside_menu>ul>li{ | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| display: inline-block; | |
| line-height: inherit !important; | |
| font-size: 14px !important; | |
| font-weight: normal !important; | |
| } | |
| .aside_menu>ul>li a{ | |
| display: inline-block; | |
| background: none !important; | |
| font: inherit !important; | |
| color: #fff; | |
| padding: 0 10px; | |
| } | |
| .aside_menu>ul>li a:hover{ | |
| background: rgba(255,255,255,.16) !important; | |
| } | |
| .aside_menu>ul>li.sel{ | |
| background: #f2f2f2 !important; | |
| color: #4879BD !important; | |
| padding: 0 10px !important; | |
| } | |
| .aside_home_li{ | |
| display: none !important; | |
| } | |
| .aside_person_info{ | |
| float: left; | |
| border: none !important; | |
| padding: 8px 10px !important; | |
| margin: 0 !important; | |
| border-radius: 6px 0 6px 0; | |
| background-color: #4879BD; | |
| height: 40px; | |
| overflow: hidden; | |
| transition: height .4s ease; | |
| z-index: 1; | |
| } | |
| .aside_person_info:after{ | |
| content: ''; | |
| position: absolute; | |
| left:0; | |
| top:0; | |
| width: 100%; | |
| height: 100%; | |
| background: rgba(0,0,0,.1); | |
| opacity: 0; | |
| transition: opacity .4s ease; | |
| pointer-events: none; | |
| } | |
| .aside_person_info:hover{ | |
| height: 115px; | |
| } | |
| .aside_person_info:hover:after{ | |
| opacity: 1; | |
| } | |
| .aside_person_info>div:not(.ui_bubble_wrap){ | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .aside_p_info_head{ | |
| border: none !important; | |
| z-index: 2 !important; | |
| } | |
| .right_set{ | |
| position: absolute; | |
| left: 2px; | |
| top: 2px; | |
| } | |
| .right_set a{ | |
| position: relative; | |
| display: block; | |
| width: 100%; | |
| height: 100%; | |
| font-size: 0; | |
| background: rgba(0,0,0,.4); | |
| opacity: 0; | |
| transition: opacity .4s ease; | |
| } | |
| .right_set a:hover{ | |
| opacity: 1; | |
| } | |
| .right_set a:before{ | |
| content: '\e8b8'; | |
| font-family: 'Material Icons'; | |
| color: #fff; | |
| font-size: 28px; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%,-50%); | |
| } | |
| .aside_person_info_wraper, | |
| .aside_userface_wraper, | |
| #img_aside_head, | |
| .aside_user_profile{ | |
| margin: 0 !important; | |
| padding: 0 !important; | |
| } | |
| .aside_userface_wraper{ | |
| position: absolute; | |
| } | |
| .right_set, | |
| .aside_userface_border, | |
| #img_aside_head{ | |
| width: 40px !important; | |
| height: 40px !important; | |
| } | |
| .aside_userface_border{ | |
| padding: 2px !important; | |
| border: none !important; | |
| background: rgba(255,255,255,.2) !important; | |
| } | |
| .aside_user_name, | |
| .aside_user_info, | |
| .aside_user_fans, | |
| .aside_user_concern, | |
| .my_tb_pmclink, | |
| .my_tb_pmclink a, | |
| .aside_interact_num{ | |
| color: #fff !important; | |
| } | |
| .aside_user_name, | |
| .aside_user_info{ | |
| padding-left: 54px; | |
| } | |
| .aside_user_fans, | |
| .aside_user_concern, | |
| .my_tb_pmclink{ | |
| text-align: center; | |
| } | |
| .aside_user_info:empty:before{ | |
| content:'\e016'; | |
| } | |
| .new_reply_num_tip{ | |
| color: #fff; | |
| margin-right: 4px; | |
| padding: 0 6px; | |
| background: rgba(255,255,255,.2); | |
| border-radius: 4px; | |
| } | |
| .new_reply_num_tip:empty{ | |
| display: none !important; | |
| } | |
| #featureList { | |
| width: 100%; | |
| box-sizing: border-box; | |
| margin: 0 !important; | |
| margin-top: 10px !important; | |
| } | |
| .sub_tab_content{ | |
| background: none !important; | |
| border: none !important; | |
| margin: 8px 0 !important; | |
| } | |
| .sub_tab a { | |
| display: block; | |
| color: #999; | |
| padding: 0 10px; | |
| background: rgba(0,0,0,.1); | |
| border-radius: 4px; | |
| border: none !important; | |
| line-height: 22px; | |
| } | |
| .sub_tab_cur a{ | |
| color: #fff; | |
| background: #4285F4; | |
| } | |
| .block, | |
| .simple_block_container li, | |
| .feed_item { | |
| border-bottom: 1px solid rgba(0,0,0,.06) !important; | |
| } | |
| .block:last-of-type, | |
| .simple_block_container li:last-of-type, | |
| .feed_item:last-of-type{ | |
| border-bottom: none !important; | |
| } | |
| .feed_hover { | |
| background: rgba(0,0,0,.02); | |
| } | |
| .feed_item { | |
| display: flex; | |
| position: relative; | |
| } | |
| .feed_left { | |
| flex: 1; | |
| float: none; | |
| width: 0; | |
| padding: 20px 10px; | |
| } | |
| .feed_right { | |
| position: absolute; | |
| padding: 0 10px 20px 0; | |
| bottom: 0; | |
| right: 0; | |
| white-space: nowrap; | |
| line-height: 22px; | |
| } | |
| .feed_time, | |
| .icon_reply{ | |
| float: right; | |
| margin-left: 20px; | |
| padding: 0 !important; | |
| line-height: inherit; | |
| } | |
| .icon_reply a{ | |
| color: #aaa; | |
| background: none !important; | |
| margin: 0 !important; | |
| } | |
| .icon_reply a:before{ | |
| content: '\e253'; | |
| font-family: 'Material Icons'; | |
| display: inline-block; | |
| font-size: 16px; | |
| vertical-align: top; | |
| margin-right: 2px; | |
| } | |
| .icon_reply .reply_del:before{ | |
| content: '\e872'; | |
| font-size: 18px; | |
| } | |
| .reply_del{ | |
| display: inline !important; | |
| visibility: hidden; | |
| } | |
| .showDelBtn .reply_del{ | |
| visibility: visible; | |
| } | |
| .goTop{ | |
| background: #fefefe !important; | |
| width: 45px !important; | |
| height: 50px !important; | |
| margin-left: 490px !important; | |
| border-radius: 0 10px 10px 0; | |
| box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.08); | |
| overflow: hidden; | |
| font-size: 0; | |
| white-space: nowrap; | |
| text-indent: -45px; | |
| transition-property: text-indent; | |
| transition-duration: .6s; | |
| transition-timing-function: ease; | |
| } | |
| .goTop:hover { | |
| text-indent: 0px; | |
| } | |
| .goTop:after, | |
| .goTop:before{ | |
| display: inline-block; | |
| color: #ccc; | |
| width: inherit !important; | |
| height: inherit !important; | |
| box-sizing: border-box; | |
| vertical-align: top; | |
| white-space: normal; | |
| text-indent: 0; | |
| } | |
| .goTop:before{ | |
| content: "返回顶部"; | |
| font-size: 14px; | |
| line-height: 20px; | |
| padding-top: 5px; | |
| padding-left: 7px; | |
| } | |
| .goTop:after{ | |
| content: "\e255"; | |
| font-size: 32px; | |
| font-family: 'Material Icons'; | |
| line-height: 50px; | |
| text-align: center; | |
| text-indent: -2px; | |
| } | |
| .itb_pager >*{ | |
| margin-right: 4px !important; | |
| } | |
| .pager{ | |
| float: none !important; | |
| text-align: center; | |
| } | |
| .pager, | |
| .pager >*{ | |
| font-family: inherit !important; | |
| left: 0 !important; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment