张善主

Merge remote-tracking branch 'origin/main'

Showing 18 changed files with 83 additions and 3708 deletions

Too many changes to show.

To preserve performance only 18 of 18+ files are displayed.

... ... @@ -30,6 +30,7 @@ export struct CustomToast {
.fontSize("27lpx")
.lineHeight("38lpx")
}.borderRadius(`${this.bgBorderRadius}lpx`)
.constraintSize({maxWidth:"86%"})
.padding({top:"23lpx",bottom:'23lpx',left:"35lpx",right:"35lpx"})
.backgroundColor($r("app.color.black"))
.opacity(0.7)
... ...
... ... @@ -297,6 +297,10 @@ export class HttpUrlUtils {
*/
static readonly ATTENTION_BATCH_DATA_PATH: string = "/api/rmrb-interact/interact/zh/c/attention/batch";
/**
* 查询是否设置过密码checkSetPassword
*/
static readonly CHECK_SET_PASSWORD_PATH: string = "/api/rmrb-user-center/user/zh/c/ifSetPassword";
static getHost(): string {
return HostManager.getHost();
... ... @@ -689,4 +693,10 @@ export class HttpUrlUtils {
return url;
}
//查询是否设置过密码
static checkSetPassword() {
let url = HttpUrlUtils.getHost() + HttpUrlUtils.CHECK_SET_PASSWORD_PATH;
return url;
}
}
\ No newline at end of file
... ...
... ... @@ -68,6 +68,7 @@ export class WDRouterPage {
static loginPage = new WDRouterPage("wdLogin", "ets/pages/login/LoginPage");
static oneKeyLoginPage = new WDRouterPage("wdLogin", "ets/pages/login/OneKeyLoginPage");
static forgetPasswordPage = new WDRouterPage("wdLogin", "ets/pages/login/ForgetPasswordPage");
static modifyPasswordPage = new WDRouterPage("wdLogin", "ets/pages/login/ModifyPasswordPage");
//我的 预约
static appointmentListPage = new WDRouterPage("wdComponent", "ets/components/page/AppointmentListPage");
//我的 关注
... ...
... ... @@ -170,13 +170,20 @@ export default struct MinePageUserSimpleInfoUI {
if(value!=null){
if(StringUtils.isEmpty(this.levelHead)){
if(this.userType === "1"){
if(value.levelHead != undefined){
this.levelHead = value.levelHead
}
}
}
if(value.levelId != undefined){
this.levelId = value.levelId
UserDataLocal.setUserLevel(this.levelId)
}
if(StringUtils.isNotEmpty(this.levelHead)){
UserDataLocal.setUserLevelHeaderUrl(this.levelHead + "")
}
}
}).catch((err:Error)=>{
console.log(TAG,JSON.stringify(err))
})
... ...
... ... @@ -3,6 +3,7 @@ import { MineSettingComponent } from '../setting/MineSettingComponent';
import { AccountAndSecurityLayout } from '../setting/AccountAndSecurityLayout';
import router from '@ohos.router';
import { Action, Params } from 'wdBean';
import { DateTimeUtils } from 'wdKit/Index';
@Entry
@Component
... ... @@ -10,11 +11,12 @@ struct SettingPage {
@State message: string = 'Hello World 02'
@State pageType: string = 'mainSetting';
@State params:Params = router.getParams() as Params;
@State enterActivityTime:number = 0;
onPageShow() {
this.pageType = this.params.pageID;
this.enterActivityTime = DateTimeUtils.getTimeStamp()
}
build() {
... ... @@ -22,7 +24,7 @@ struct SettingPage {
if (this.pageType == 'mainSetting') {
MineSettingComponent()
} else {
AccountAndSecurityLayout()
AccountAndSecurityLayout({enterActivityTime:this.enterActivityTime})
}
}.setFullWidth()
}
... ...
... ... @@ -29,6 +29,10 @@ export struct AccountAndSecurityLayout {
@State cacheSice: number = 0
@State protocolState: boolean = false //协议勾选状态
@State isAccountPage: boolean = true
@State ifSetPassword: boolean = false //是否设置过密码
@Watch("checkSetPassword") @Prop enterActivityTime:number = 0;
logoutViewModel = new LogoutViewModel()
dialogController: CustomDialogController = new CustomDialogController({
builder: CustomLogoutDialog({
... ... @@ -61,6 +65,23 @@ export struct AccountAndSecurityLayout {
// 获取设置页面数据
this.getAccountAndSecurityData()
this.addEmitEvent()
this.checkSetPassword()
}
checkSetPassword(){
MineSettingDatasModel.checkSetPassword().then((value) => {
if (value != null) {
if(value.hasSet == "1"){
this.ifSetPassword = true
if(this.listData.length>0){
this.listData[1] = new MineMainSettingFunctionItem(null, '修改密码', null, 0, false,"")
}
}else{
this.ifSetPassword = false
}
}
}).catch((err: Error) => {
})
}
async getAccountAndSecurityData() {
... ... @@ -162,9 +183,14 @@ export struct AccountAndSecurityLayout {
let pageType = {'pageType': 2} as Record<string, number>;
WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
}else if (index == 1) {
if (this.ifSetPassword) {
//修改密码
WDRouterRule.jumpWithPage(WDRouterPage.modifyPasswordPage)
}else{
//设置密码
let pageType = {'pageType': 1} as Record<string, number>;
WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
}
}else if (index == 3) {
this.isAccountPage=false
// WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
... ...
import HashMap from '@ohos.util.HashMap';
import { ResponseDTO, WDHttp } from 'wdNetwork';
import { HttpUrlUtils, ResponseDTO, WDHttp } from 'wdNetwork';
import { Logger, SPHelper } from 'wdKit';
import { MineMainSettingFunctionItem } from '../viewmodel/MineMainSettingFunctionItem';
import { SpConstants } from 'wdConstant/Index';
import { CheckSetPasswordItem } from '../viewmodel/CheckSetPasswordItem';
const TAG = "MineSettingDatasModel"
... ... @@ -108,6 +109,33 @@ class MineSettingDatasModel{
// })
// }
/**
* 判断是否设置过密码
*/
checkSetPassword(): Promise<CheckSetPasswordItem> {
return new Promise<CheckSetPasswordItem>((success, error) => {
Logger.info(TAG, `checkSetPassword start`);
this.fetchCheckSetPassword().then((navResDTO: ResponseDTO<CheckSetPasswordItem>) => {
if (!navResDTO || navResDTO.code != 0) {
error(null)
return
}
Logger.info(TAG, "checkSetPassword then,checkSetPasswordResDTO.timeStamp:" + navResDTO.timestamp);
let navigationBean = navResDTO.data as CheckSetPasswordItem
success(navigationBean);
}).catch((err: Error) => {
Logger.error(TAG, `checkSetPassword catch, error.name : ${err.name}, error.message:${err.message}`);
error(null)
})
})
}
fetchCheckSetPassword() {
let url = HttpUrlUtils.checkSetPassword()
return WDHttp.get<ResponseDTO<CheckSetPasswordItem>>(url)
};
}
const mineSettingDatasModel = MineSettingDatasModel.getInstance()
... ...
export class CheckSetPasswordItem{
hasSet: string = "0" //是否设置过密码,0未设置,1已设置
}
\ No newline at end of file
... ...
/****reset****/
body,
div,
table,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
label,
select,
textarea,
p,
u,
i,
em,
ul,
ol,
li,
dl,
dd,
dt,
img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
border: 0;
outline: 0;
}
li {
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
a,
input,
select,
textarea,
area,
button {
outline: none;
font-family: inherit;
font-size: inherit;
border: none;
background: none;
color: inherit;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
textarea {
overflow: auto;
resize: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
cursor: pointer;
-webkit-appearance: none;
}
html,
body {
overflow-x: hidden;
width: 100%;
height: 100%;
background: #ffffff;
}
* {
-webkit-overflow-scrolling: touch;
}
html {
-webkit-tap-highlight-color: transparent;
}
body {
text-align: left;
}
body #app {
height: 100%;
}
body #app::-webkit-scrollbar {
display: none;
}
body #app::-webkit-scrollbar-thumb {
display: none;
}
body #app::-webkit-scrollbar-track {
display: none;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix {
zoom: 1;
}
.clearfix::before,
.clearfix::after {
display: table;
content: " ";
}
.clearfix::after {
clear: both;
height: 0;
font-size: 0;
visibility: hidden;
}
.ant-skeleton {
display: table;
width: 100%;
}
.ant-skeleton + .ant-skeleton {
margin-top: 0.64rem;
}
.ant-skeleton.active {
display: none;
}
.ant-skeleton-content {
display: table-cell;
width: 100%;
margin-bottom: 0.64rem;
vertical-align: top;
}
.ant-skeleton-content .ant-skeleton-title {
width: 100%;
height: 0.53333rem;
margin-top: 0.26667rem;
background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
margin-top: 0.64rem;
}
.ant-skeleton-content .ant-skeleton-paragraph {
padding: 0;
}
.ant-skeleton-content .ant-skeleton-paragraph > li {
width: 23.3%;
height: 0.32rem;
list-style: none;
background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-paragraph > li + li {
margin-top: 0.26667rem;
}
.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
width: 61%;
}
.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar,
.ant-skeleton.ant-skeleton-active .ant-skeleton-button,
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li,
.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
.ant-skeleton.ant-skeleton-active .ant-skeleton-image,
.ant-skeleton.ant-skeleton-active .ant-skeleton-input {
background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f2f2f2), color-stop(37%, #e6e6e6), color-stop(63%, #f2f2f2));
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
background-size: 400% 100%;
animation: ant-skeleton-loading 1.4s ease infinite;
}
@keyframes ant-skeleton-loading {
0% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
@keyframes spinner-anime {
100% {
transform: rotate(360deg);
}
}
.toast-loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
z-index: 9999999999;
}
.toast-loading.active {
display: none;
}
.toast-loading.none {
display: none;
}
.toast-loading .loading-cont {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 15px 15px;
border-radius: 7px;
background-clip: padding-box;
color: #fff;
background-color: rgba(58, 58, 58, 0.9);
font-size: 15px;
line-height: 20px;
}
.toast-loading .loading-cont .svg {
margin: 0;
width: 32px;
height: 32px;
display: inline-block;
width: 20px;
height: 20px;
background-image: url("../image/loading.svg");
background-position: 50%;
background-size: 100%;
background-repeat: no-repeat;
animation: spinner-anime 1s linear infinite;
}
.toast-loading .loading-cont .svg-text {
display: inline-block;
position: relative;
top: 4px;
}
.skeleton-loading {
display: block;
padding: 0.26666667rem 0.48rem 0;
height: 100%;
overflow: hidden;
}
.skeleton-loading.active {
position: fixed;
left: 0;
top: 0;
width: 100%;
opacity: 0;
visibility: hidden;
z-index: -1;
}
.skeleton-loading.none {
display: none;
}
.error-block {
display: none;
box-sizing: border-box;
text-align: center;
padding-top: 3.76rem;
}
.error-block.active {
display: block;
}
.error-block .error-block-image {
text-align: center;
}
.error-block .error-block-image img {
width: 4.26666667rem;
height: 2.98666667rem;
}
.error-block .error-block-retry-btn,
.error-block .error-block-reload-btn {
width: 2.13333333rem;
height: 0.74666667rem;
border-radius: 0.08rem;
border: 0.02666667rem solid #EDEDED;
margin: 0 auto;
margin-top: 0.42666667rem;
font-size: 0.32rem;
font-weight: bold;
line-height: 0.74666667rem;
text-align: center;
color: #666666;
}
.error-block .error-block-reload-btn {
width: 3.73333333rem;
}
.error-block .error-block-description-title {
text-align: center;
margin: 0 auto;
font-size: 14px;
color: rgba(51, 51, 51, 0.5);
}
.ellipsis1 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
word-wrap: break-word;
}
#app.fixed {
position: fixed;
left: 0;
top: 0;
z-index: -1;
visibility: hidden;
opacity: 0;
width: 100%;
}
.gx-mobile.fixed {
position: fixed;
left: 0;
top: 0;
z-index: -1;
visibility: hidden;
opacity: 0;
width: 100%;
height: 17.57333333rem;
}
.refresh-content {
height: 100%;
}
.refresh-content .van-pull-refresh {
height: 100%;
}
html {
transition: color 300ms, background-color 300ms;
}
body .van-image__error,
body .van-image__loading {
display: block;
}
body .prism-fullscreen {
z-index: 999999 !important;
}
body .prism-player .prism-animation,
body .prism-player .prism-detect-info,
body .prism-player .prism-button,
body .prism-player .prism-setting-quality,
body .prism-player .prism-setting-audio,
body .prism-player .prism-setting-cc,
body .prism-player .prism-cc-btn,
body .prism-player .prism-volume,
body .prism-player .prism-tooltip,
body .prism-player .prism-setting-btn,
body .prism-player .prism-button-retry,
body .prism-player .dplayer-thumb,
body .prism-player .prism-progress-played,
body .prism-player .prism-progress-cursor,
body .prism-player .prism-progress-hover,
body .prism-player .prism-big-play-btn,
body .prism-player .prism-controlbar,
body .prism-player .prism-info-display,
body .prism-player .prism-text-overlay,
body .prism-player .prism-error-operation,
body .prism-player .prism-ErrorMessage,
body .prism-player .prism-cover,
body .prism-player .prism-loading {
display: none !important;
}
#__vconsole {
z-index: 10000000;
}
#__vconsole .vc-switch {
z-index: 10000000;
}
#__vconsole .vc-panel {
min-height: unset !important;
height: 500px !important;
}
#app {
overflow-y: hidden;
overflow-x: hidden;
}
#app .van-loading {
text-align: center;
}
html[dark-mode] body {
background-color: #161827;
}
html[dark-mode] body .gx-mobile .vote {
background-color: #1D1F2F;
}
html[dark-mode] body .gx-mobile .suggested .suggested-title {
color: #d9d9d9ff;
}
html[dark-mode] body .gx-mobile .suggested .suggested-item_title {
color: #d9d9d9ff !important;
}
html[dark-mode] body .gx-mobile .suggested .subtitle {
color: #d9d9d9ff !important;
}
html[dark-mode] body .gx-mobile .suggested .left span {
color: #ffffff5c !important;
}
html[dark-mode] body .gx-mobile .title {
color: #d9d9d9ff;
}
html[dark-mode] body .gx-mobile .ptxt {
color: #ffffffab;
}
html[dark-mode] body .gx-mobile .btsIem {
background-color: #161828;
}
html[dark-mode] body .gx-mobile .stx {
color: #ffffffab !important;
}
html[dark-mode] body .gx-mobile .jd .s1 {
background: linear-gradient(270deg, #e5111eff 0%, #ffb5b9ff 100%);
}
html[dark-mode] body .gx-mobile .jd .s2 {
background-color: #393A47 !important;
}
html[dark-mode] body .gx-mobile .open {
background: linear-gradient(179.9deg, #1d1f2e00 0%, #1d1f2eff 48%, #1d1f2eff 99%);
}
html[dark-mode] body .gx-mobile .open img {
width: 0.42667rem;
height: 0.42667rem;
}
html[dark-mode] body .gx-mobile .time {
color: rgba(255, 255, 255, 0.4);
}
html[dark-mode] body .gx-mobile #newsContent {
background-color: #12131e !important;
color: #ccc;
}
html[dark-mode] body .gx-mobile #newsContent h1,
html[dark-mode] body .gx-mobile #newsContent h2,
html[dark-mode] body .gx-mobile #newsContent div,
html[dark-mode] body .gx-mobile #newsContent h3,
html[dark-mode] body .gx-mobile #newsContent p,
html[dark-mode] body .gx-mobile #newsContent h4,
html[dark-mode] body .gx-mobile #newsContent h5,
html[dark-mode] body .gx-mobile #newsContent h6,
html[dark-mode] body .gx-mobile #newsContent ul,
html[dark-mode] body .gx-mobile #newsContent li,
html[dark-mode] body .gx-mobile #newsContent ol {
background-color: #12131e !important;
color: #ccc !important;
}
html[dark-mode] body .gx-mobile #newsContent .preview-video div,
html[dark-mode] body .gx-mobile #newsContent .preview-video p {
background-color: rgba(255, 255, 255, 0) !important;
}
html[dark-mode] body .footer {
background-color: #12131e;
border-top: #252630;
}
.anticon-spin {
animation: loadingCircle 1s infinite linear;
}
.prism-player {
position: relative;
}
.prism-player video {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform-origin: center;
-moz-transform-origin: center;
-webkit-transform-origin: center;
-o-transform-origin: center;
}
.prism-player .loading-center,
.prism-player .prism-ErrorMessage,
.prism-player .prism-thumbnail,
.prism-player .prism-cc-selector,
.prism-player .prism-speed-selector,
.prism-player .prism-quality-selector,
.prism-player .prism-audio-selector,
.prism-player .prism-setting-list,
.prism-player .prism-volume-control,
.prism-player .prism-auto-stream-selector,
.prism-player .prism-marker-text {
display: none !important;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/*# sourceMappingURL=global.css.map */
\ No newline at end of file
{"version":3,"sources":["global.less"],"names":[],"mappings":"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","file":"global.css"}
\ No newline at end of file
/****reset****/
body, div, table, tr, td, th, h1, h2, h3, h4, h5, h6, form, input, button, label, select, textarea, p, u, i, em, ul, ol, li, dl, dd, dt, img, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
border: 0;
outline: 0;
}
li {
list-style: none;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
a, input, select, textarea, area, button {
outline: none;
font-family: inherit;
font-size: inherit;
border: none;
background: none;
color: inherit;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
textarea {
overflow: auto;
resize: none;
}
input[type="button"], input[type="submit"], input[type="reset"] {
cursor: pointer;
-webkit-appearance: none;
}
html, body {
overflow-x: hidden;
width: 100%;
height: 100%;
background: #ffffff;
}
* {
-webkit-overflow-scrolling: touch;
}
html {
-webkit-tap-highlight-color: transparent;
}
body {
text-align: left;
#app {
height: 100%;
&::-webkit-scrollbar {
display: none;
}
&::-webkit-scrollbar-thumb {
display: none;
}
&::-webkit-scrollbar-track {
display: none;
}
}
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix {
zoom: 1;
&::before,
&::after {
display: table;
content: " ";
}
&::after {
clear: both;
height: 0;
font-size: 0;
visibility: hidden;
}
}
.ant-skeleton {
display: table;
width: 100%;
}
.ant-skeleton + .ant-skeleton {
margin-top: 0.64rem;
}
.ant-skeleton.active {
display: none;
}
.ant-skeleton-content {
display: table-cell;
width: 100%;
margin-bottom: 0.64rem;
vertical-align: top;
}
.ant-skeleton-content .ant-skeleton-title {
width: 100%;
height: 0.53333rem;
margin-top: 0.26667rem;
background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {
margin-top: 0.64rem;
}
.ant-skeleton-content .ant-skeleton-paragraph {
padding: 0;
}
.ant-skeleton-content .ant-skeleton-paragraph > li {
width: 23.3%;
height: 0.32rem;
list-style: none;
background: #f2f2f2;
}
.ant-skeleton-content .ant-skeleton-paragraph > li + li {
margin-top: 0.26667rem;
}
.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {
width: 61%;
}
.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar, .ant-skeleton.ant-skeleton-active .ant-skeleton-button, .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li, .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, .ant-skeleton.ant-skeleton-active .ant-skeleton-image, .ant-skeleton.ant-skeleton-active .ant-skeleton-input {
background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f2f2f2), color-stop(37%, #e6e6e6), color-stop(63%, #f2f2f2));
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
background-size: 400% 100%;
animation: ant-skeleton-loading 1.4s ease infinite;
}
@keyframes ant-skeleton-loading {
0% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
@keyframes spinner-anime {
100% {
transform: rotate(360deg);
}
}
.toast-loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
z-index: 9999999999;
&.active {
display: none;
}
&.none {
display: none;
}
.loading-cont {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 15px 15px;
border-radius: 7px;
background-clip: padding-box;
color: #fff;
background-color: rgba(58, 58, 58, 0.9);
font-size: 15px;
line-height: 20px;
.svg {
margin: 0;
width: 32px;
height: 32px;
display: inline-block;
width: 20px;
height: 20px;
background-image: url("../image/loading.svg");
background-position: 50%;
background-size: 100%;
background-repeat: no-repeat;
animation: spinner-anime 1s linear infinite;
}
.svg-text {
display: inline-block;
position: relative;
top: 4px;
}
}
}
.skeleton-loading {
display: block;
padding: (10 / 37.5rem) (18 / 37.5rem) 0;
height: 100%;
overflow: hidden;
&.active {
position: fixed;
left: 0;
top: 0;
width: 100%;
opacity: 0;
visibility: hidden;
z-index: -1;
}
&.none {
display: none;
}
}
.error-block {
display: none;
box-sizing: border-box;
text-align: center;
padding-top: (141 / 37.5rem);
&.active {
display: block;
}
.error-block-image {
text-align: center;
img {
width: (160 / 37.5rem);
height: (112 / 37.5rem);
}
}
.error-block-retry-btn, .error-block-reload-btn {
width: (80 / 37.5rem);
height: (28 / 37.5rem);
border-radius: (3 / 37.5rem);
border: (1 / 37.5rem) solid #EDEDED;
margin: 0 auto;
margin-top: (16 / 37.5rem);
font-size: (12 / 37.5rem);
font-weight: bold;
line-height: (28 / 37.5rem);
text-align: center;
color: #666666;
}
.error-block-reload-btn {
width: (140 / 37.5rem);
}
.error-block-description {
}
.error-block-description-title {
text-align: center;
margin: 0 auto;
font-size: 14px;
color: rgba(51, 51, 51, 0.5);
}
.error-block-description-subtitle {
}
}
.ellipsis1 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
word-wrap: break-word;
}
#app {
&.fixed {
position: fixed;
left: 0;
top: 0;
z-index: -1;
visibility: hidden;
opacity: 0;
width: 100%;
}
}
.gx-mobile {
&.fixed {
position: fixed;
left: 0;
top: 0;
z-index: -1;
visibility: hidden;
opacity: 0;
width: 100%;
height: (659 / 37.5rem);
}
&.active {
//animation-name: fadeIn;
//animation-duration: .2s;
}
}
.refresh-content {
height: 100%;
.van-pull-refresh {
height: 100%;
}
}
html {
transition: color 300ms, background-color 300ms;
}
body {
.van-image__error, .van-image__loading {
display: block;
}
.prism-fullscreen {
z-index: 999999 !important;
}
.prism-player {
.prism-animation, .prism-detect-info, .prism-button, .prism-setting-quality, .prism-setting-audio, .prism-setting-cc, .prism-cc-btn, .prism-volume, .prism-tooltip, .prism-setting-btn, .prism-button-retry, .dplayer-thumb, .prism-progress-played, .prism-progress-cursor, .prism-progress-hover, .prism-big-play-btn, .prism-controlbar, .prism-info-display, .prism-text-overlay, .prism-error-operation, .prism-ErrorMessage, .prism-cover, .prism-loading {
display: none !important;
}
}
}
#__vconsole {
.vc-switch {
z-index: 10000000;
}
.vc-panel {
min-height: unset !important;
height: 500px !important;
}
z-index: 10000000;
}
#app {
overflow-y: hidden;
overflow-x: hidden;
.van-loading {
text-align: center;
}
}
html[dark-mode] {
body {
// background-color: #12131e;
background-color: #161827;
.gx-mobile .vote {
background-color: #1D1F2F;
}
.gx-mobile .suggested {
// background-color: #1D1F2F;
.suggested-title {
color: #d9d9d9ff;
}
.suggested-item_title {
color: #d9d9d9ff !important;
}
.subtitle {
color: #d9d9d9ff !important;
}
.left {
span {
color: #ffffff5c !important;
}
}
}
.gx-mobile .title {
color: #d9d9d9ff;
}
.gx-mobile .ptxt {
color: #ffffffab;
}
.gx-mobile .btsIem {
background-color: #161828;
}
.gx-mobile .stx {
color: #ffffffab !important;
}
.gx-mobile .jd {
.s1 {
background: linear-gradient(270deg, #e5111eff 0%, #ffb5b9ff 100%);
}
.s2 {
background-color: #393A47 !important;
}
}
.gx-mobile .open {
background: linear-gradient(179.9deg, #1d1f2e00 0%, #1d1f2eff 48%, #1d1f2eff 99%);
img {
width: 0.42667rem;
height: 0.42667rem;
}
}
.gx-mobile .time {
// color: #7a7a7a;
color: rgba(255, 255, 255, 0.4);
}
.gx-mobile #newsContent {
background-color: #12131e !important;
color: #ccc;
h1, h2, div, h3, p, h4, h5, h6, ul, li, ol {
background-color: #12131e !important;
color: #ccc !important;
}
.preview-video {
div, p {
background-color: rgba(255, 255, 255, 0) !important;
}
}
}
.footer {
background-color: #12131e;
border-top: #252630;
}
}
}
.anticon-spin {
animation: loadingCircle 1s infinite linear;
}
.prism-player {
position: relative;
video {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
-ms-transform-origin: center;
-moz-transform-origin: center;
-webkit-transform-origin: center;
-o-transform-origin: center;
}
.loading-center, .prism-ErrorMessage, .prism-thumbnail, .prism-cc-selector, .prism-speed-selector, .prism-quality-selector, .prism-audio-selector, .prism-setting-list, .prism-volume-control, .prism-auto-stream-selector, .prism-marker-text {
display: none !important;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes loadingCircle {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/*# sourceMappingURL=./index.css.map */
#hidden {
position: fixed;
left: 0;
top: 0;
z-index: -1;
visibility: hidden;
opacity: 0;
}
#hiddenArticle {
position: fixed;
left: 0;
top: 0;
z-index: -1;
width: 100%;
visibility: hidden;
opacity: 0;
}
.app-skeleton-loading {
padding: 0.26666667rem 0.48rem;
}
.app-skeleton-loading.none {
display: none;
}
.gx-mobile {
padding: 0.26666667rem 0.48rem 0;
}
.gx-mobile.rmrb-article #newsContent p,
.gx-mobile.rmrb-article #newsContent li,
.gx-mobile.rmrb-article #newsContent h1,
.gx-mobile.rmrb-article #newsContent h2,
.gx-mobile.rmrb-article #newsContent h3,
.gx-mobile.rmrb-article #newsContent h4,
.gx-mobile.rmrb-article #newsContent h5,
.gx-mobile.rmrb-article #newsContent h6,
.gx-mobile.rmrb-article #newsContent a,
.gx-mobile.rmrb-article #newsContent section,
.gx-mobile.rmrb-article #newsContent div,
.gx-mobile.rmrb-article #newsContent span,
.gx-mobile.rmrb-article #newsContent ol,
.gx-mobile.rmrb-article #newsContent mark,
.gx-mobile.rmrb-article #newsContent ul {
text-indent: 0 !important;
}
.gx-mobile .short-title {
color: #666666ff;
font-size: 0.45333333rem;
line-height: 0.69333333rem;
margin-bottom: 0.37333333rem;
font-weight: 400;
word-break: break-all;
white-space: pre-wrap;
}
.gx-mobile .short-title .global-line {
position: relative;
top: -0.12rem;
width: 0.4rem;
background: #666666ff;
}
.gx-mobile .title {
font-size: 0.6941756rem;
line-height: 1.04rem;
font-weight: bold;
color: #222;
margin-bottom: 0.21333333rem;
word-break: break-all;
white-space: pre-wrap;
}
.gx-mobile .title .global-line {
position: relative;
top: -0.22666667rem;
width: 0.66666667rem;
height: 0.05333333rem;
background: #222;
}
.gx-mobile .global-line {
display: inline-block;
height: 0.03333333rem;
}
.gx-mobile .down-title-box {
display: flex;
align-items: center;
margin-top: 0.10666667rem;
margin-bottom: 0.21333333rem;
}
.gx-mobile .down-title-box .down-title {
display: inline-block;
color: #999999ff;
font-size: 0.45333333rem;
font-weight: 400;
line-height: 0.69333333rem;
word-break: break-all;
white-space: pre-wrap;
}
.gx-mobile .down-title-box .down-title .global-line {
position: relative;
top: -0.13333333rem;
width: 0.42666667rem;
background: #999999ff;
}
.gx-mobile .time.pageView {
font-size: 0.37333333rem;
line-height: 0.53333333rem;
letter-spacing: 0;
color: #b0b0b0ff;
}
.gx-mobile .time.pageView::before,
.gx-mobile .time.pageView::after {
display: table;
content: '';
}
.gx-mobile .time.pageView::after {
height: 0;
clear: both;
font-size: 0;
visibility: hidden;
}
.gx-mobile .time.pageView.hidden-extra {
display: none !important;
margin-top: 0 !important;
}
.gx-mobile .time.pageView .article-source {
float: left;
letter-spacing: 0;
display: inline-flex;
}
.gx-mobile .time.pageView .browseCntStr {
float: left;
display: inline-block;
height: 0.53333333rem;
}
.gx-mobile .time.pageView .author-item {
float: left;
display: inline-flex;
letter-spacing: 0;
margin-right: 0.21333333rem;
}
.gx-mobile .time.pageView > .article-source-icon {
float: left;
display: flex;
width: 0.08rem;
height: 0.37333333rem;
margin-top: 0.08533333rem;
margin-right: 0.10666667rem;
background-image: url('../image/sourceIocnNew.svg');
background-size: 100%;
background-repeat: no-repeat;
}
.gx-mobile .new-intro-box {
position: relative;
background: #F5F5F5;
padding: 0.32rem;
color: #666666ff;
font-size: 0.37333333rem;
line-height: 0.53333333rem;
margin-top: 0.56rem;
border-radius: 0.10666667rem;
word-break: break-all;
white-space: pre-wrap;
}
.gx-mobile .new-intro-box .global-line {
position: relative;
top: -0.12rem;
width: 0.37333333rem;
background: #666666ff;
}
.gx-mobile .new-intro-box .yh-icon {
width: 0.34667rem;
height: 0.29333rem;
position: absolute;
left: 0.32rem;
top: -0.13333rem;
background-image: url("../image/yh-icon.svg");
background-size: 100% 100%;
}
.gx-mobile .head-link-block {
margin-top: 0.42666667rem;
padding: 0.32rem;
border-radius: 0.10666667rem;
background: #FFFFFF;
border: 0.02666667rem solid rgba(0, 0, 0, 0.05);
box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);
font-size: 0.37333333rem;
line-height: 0.53333333rem;
color: #333333;
word-break: break-all;
}
.gx-mobile .head-link-block img {
position: relative;
top: 0.04rem;
width: 0.37333333rem;
height: 0.37333333rem;
margin-right: 0.05333333rem;
}
.gx-mobile .head-link-block .head-link-block-str {
margin-left: 0.08rem;
}
.gx-mobile .head-link-block .head-link-block-str .global-line {
position: relative;
top: -0.12rem;
width: 0.37333333rem;
background: #333333;
}
.gx-mobile .rmcard {
position: relative;
height: 0.98666667rem;
margin-top: 0.42666667rem;
margin-bottom: 0.64rem;
}
.gx-mobile .rmcard .rmcard_v {
position: absolute;
left: 0.58666667rem;
top: 0.58666667rem;
width: 14px;
height: 14px;
border-radius: 50%;
background: #F29900;
border: 0.02666667rem solid #FFFFFF;
}
.gx-mobile .rmcard .rmcard-image {
display: block;
float: left;
text-align: center;
margin-right: 0.21333333rem;
width: 0.96rem;
height: 0.96rem;
border-radius: 50%;
margin-top: 0.02666667rem;
border: 0.5px solid rgba(0, 0, 0, 0.1);
}
.gx-mobile .rmcard .rmcard-image.default {
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
.gx-mobile .rmcard .rmcard-image.default img {
position: relative;
left: -0.05333333rem;
width: 49.3%;
}
.gx-mobile .rmcard .cdescrip {
float: left;
width: calc(100% - 0.96rem - 1.44rem - 0.213rem - 0.213rem);
height: 0.98666667rem;
}
.gx-mobile .rmcard .cdescrip .cdescrip_text {
width: 100%;
color: #b0b0b0ff;
font-size: 0.32rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.gx-mobile .rmcard .cdescrip .cdescrip_text:first-child {
color: #222222ff;
font-weight: bold;
font-size: 0.37333333rem;
line-height: 0.45333333rem;
height: 0.45333333rem;
margin-top: 0.02666667rem;
margin-bottom: 0.08rem;
}
.gx-mobile .rmcard .cdescrip .cdescrip_text:first-child.cdescrip_text_top {
margin-top: 0.26666667rem;
margin-bottom: 0rem;
}
.gx-mobile .rmcard .clook-btn {
float: right;
}
.gx-mobile .rmcard .clook {
margin-top: 0.17333333rem;
width: 1.44rem;
height: 0.64rem;
border-radius: 0.08rem;
background-color: #ED2800;
text-align: center;
line-height: 0.64rem;
color: #ffffffff;
font-size: 0.32rem;
font-weight: bold;
}
.gx-mobile .rmcard .clook img {
width: 0.32rem;
height: 0.32rem;
top: -0.02666667rem;
position: relative;
vertical-align: middle;
}
.gx-mobile .rmcard .clook img.add-clook-icon {
top: -0.02666667rem;
}
.gx-mobile .rmcard .clook .add-clook-text {
top: 0.01333333rem;
position: relative;
}
.gx-mobile .rmcard .isclook {
margin-top: 0.13333333rem;
width: 1.44rem;
height: 0.64rem;
border-radius: 0.08rem;
font-size: 0.32rem;
line-height: 0.64rem;
background-color: #F5F5F5;
text-align: center;
color: #CCCCCC;
font-weight: bold;
}
.gx-mobile .rmcard .isclook.loading {
background-color: #ED2800;
color: #ffffffff;
}
.gx-mobile .rmcard .isclook img {
width: 0.32rem;
height: 0.32rem;
top: -0.02666667rem;
position: relative;
vertical-align: middle;
}
.gx-mobile .cover {
width: 100%;
height: 5.25333rem;
margin-top: 0.50667rem;
}
.gx-mobile .cover .van-image__error {
display: flex;
}
.gx-mobile .sub-title {
display: flex;
align-items: center;
margin-top: 0.26667rem;
font-size: 0.26667rem;
font-weight: normal;
line-height: 0.4rem;
letter-spacing: 0;
color: #999999;
}
.gx-mobile .sub-title-line {
margin-right: 0.16rem;
width: 0.05333rem;
height: 0.64rem;
background: #b71d26;
}
.gx-mobile .content-block {
margin-top: 0.42666667rem;
}
.gx-mobile #newsContent {
line-height: 0.816rem;
font-size: 0.48rem;
color: #000000;
text-align: justify;
}
.gx-mobile #newsContent table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
.gx-mobile #newsContent table:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent table + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent li {
list-style: unset;
margin-left: 0.42666667rem;
}
.gx-mobile #newsContent li:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent li + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent ul:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent ul + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent .global-line {
position: relative;
top: -0.13333333rem;
width: 0.48rem;
height: 0.032rem;
background: #000000;
}
.gx-mobile #newsContent mark {
background: none !important;
}
.gx-mobile #newsContent a {
color: #50749A !important;
word-break: break-all;
}
.gx-mobile #newsContent a span {
color: #50749A !important;
word-break: break-all;
}
.gx-mobile #newsContent a:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent a + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent br,
.gx-mobile #newsContent span.bjh-br {
display: block;
}
.gx-mobile #newsContent P {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
box-sizing: border-box;
word-break: break-all;
}
.gx-mobile #newsContent P:empty {
display: none !important;
}
.gx-mobile #newsContent P:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent P + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > div > P:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > div > P + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h1 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h1:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h1 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h2 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h2:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h2 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h3 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h3:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h3 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h4 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h4:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h4 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h5 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h5:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h5 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > h6 {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > h6:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > h6 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent section {
max-width: 100%;
padding: 0 !important;
margin-bottom: 0.42666667rem !important;
}
.gx-mobile #newsContent section:empty {
display: none !important;
}
.gx-mobile #newsContent section:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent section + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent section > section:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent section > section + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent section + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > div.replace-br-tag {
margin-bottom: 0.42666667rem;
}
.gx-mobile #newsContent > div.replace-br-tag + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent > div:last-child {
margin-bottom: 0 !important;
}
.gx-mobile #newsContent > div + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent section[data-title='分割线-5'] {
margin-top: 1.18666667rem !important;
margin-bottom: 1.18666667rem !important;
}
.gx-mobile #newsContent section[data-title='分割线-5'] img {
display: inline;
}
.gx-mobile #newsContent .img-no-margin .preview-image-block.success {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.gx-mobile #newsContent section[data-title='基础饼图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='基础折线图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='基础柱状图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='带背景色的柱状图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='基础面积图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='指数回归'] {
display: none;
}
.gx-mobile #newsContent section[data-title='基础饼图'] {
display: none;
}
.gx-mobile #newsContent section[data-title='左图右文'] {
width: 100% !important;
}
.gx-mobile #newsContent section[data-title='左图右文'] > div {
width: 100% !important;
}
.gx-mobile #newsContent section[data-title='左文右图'] {
width: 100% !important;
}
.gx-mobile #newsContent section[data-title='左文右图'] > div {
width: 100% !important;
}
.gx-mobile #newsContent section[data-title='图片点亮'] {
overflow: hidden;
border-radius: 0.08rem;
}
.gx-mobile #newsContent section[data-title='图片点亮'] > div {
max-width: 100% !important;
}
.gx-mobile #newsContent section[data-title='分割线-3'] {
margin-top: 0.77333333rem !important;
margin-bottom: 0.77333333rem !important;
}
.gx-mobile #newsContent section[data-title='分割线-4'] {
margin-top: 0.73333333rem !important;
margin-bottom: 0.73333333rem !important;
}
.gx-mobile #newsContent section[data-title='作者头像框'] img {
margin: unset;
}
.gx-mobile #newsContent .enrmrb-img {
display: block;
margin-left: -0.4109589rem;
margin-right: -0.4109589rem;
}
.gx-mobile #newsContent .enrmrb-img-fit img {
object-fit: contain;
}
.gx-mobile #newsContent .enrmrb-img-main {
display: block;
margin: 0 auto;
max-width: 100%;
}
.gx-mobile #newsContent .enrmrb-img-main.enrmrb-img-station img {
width: 100%;
height: 100%;
object-fit: cover;
}
.gx-mobile #newsContent img {
max-width: 100% !important;
display: block;
margin: 0 auto;
box-sizing: border-box;
}
.gx-mobile #newsContent .linkImageDiv {
display: none !important;
}
.gx-mobile #newsContent .rmrb-caption-img,
.gx-mobile #newsContent .bjh-image-caption,
.gx-mobile #newsContent .rmrb-caption-img2 {
position: relative;
margin-top: -0.16rem !important;
line-height: 0.42666667rem !important;
font-size: 0.33333333rem !important;
font-weight: normal !important;
color: #B0B0B0 !important;
box-sizing: border-box !important;
margin-bottom: 0.42666667rem !important;
text-align: center;
}
.gx-mobile #newsContent .rmrb-caption-img span,
.gx-mobile #newsContent .bjh-image-caption span,
.gx-mobile #newsContent .rmrb-caption-img2 span,
.gx-mobile #newsContent .rmrb-caption-img p,
.gx-mobile #newsContent .bjh-image-caption p,
.gx-mobile #newsContent .rmrb-caption-img2 p,
.gx-mobile #newsContent .rmrb-caption-img div,
.gx-mobile #newsContent .bjh-image-caption div,
.gx-mobile #newsContent .rmrb-caption-img2 div,
.gx-mobile #newsContent .rmrb-caption-img i,
.gx-mobile #newsContent .bjh-image-caption i,
.gx-mobile #newsContent .rmrb-caption-img2 i,
.gx-mobile #newsContent .rmrb-caption-img h1,
.gx-mobile #newsContent .bjh-image-caption h1,
.gx-mobile #newsContent .rmrb-caption-img2 h1,
.gx-mobile #newsContent .rmrb-caption-img h2,
.gx-mobile #newsContent .bjh-image-caption h2,
.gx-mobile #newsContent .rmrb-caption-img2 h2,
.gx-mobile #newsContent .rmrb-caption-img h3,
.gx-mobile #newsContent .bjh-image-caption h3,
.gx-mobile #newsContent .rmrb-caption-img2 h3,
.gx-mobile #newsContent .rmrb-caption-img h4,
.gx-mobile #newsContent .bjh-image-caption h4,
.gx-mobile #newsContent .rmrb-caption-img2 h4,
.gx-mobile #newsContent .rmrb-caption-img h5,
.gx-mobile #newsContent .bjh-image-caption h5,
.gx-mobile #newsContent .rmrb-caption-img2 h5,
.gx-mobile #newsContent .rmrb-caption-img h6,
.gx-mobile #newsContent .bjh-image-caption h6,
.gx-mobile #newsContent .rmrb-caption-img2 h6,
.gx-mobile #newsContent .rmrb-caption-img section,
.gx-mobile #newsContent .bjh-image-caption section,
.gx-mobile #newsContent .rmrb-caption-img2 section {
line-height: 0.42666667rem !important;
font-size: 0.33333333rem !important;
font-weight: normal !important;
color: #B0B0B0 !important;
}
.gx-mobile #newsContent .rmrb-caption-img:empty,
.gx-mobile #newsContent .bjh-image-caption:empty,
.gx-mobile #newsContent .rmrb-caption-img2:empty {
display: none;
}
.gx-mobile #newsContent .rmrb-caption-img + .preview-image-block,
.gx-mobile #newsContent .bjh-image-caption + .preview-image-block,
.gx-mobile #newsContent .rmrb-caption-img2 + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent ._editor42 img {
margin: unset !important;
margin-right: 12px !important;
}
.gx-mobile #newsContent video {
max-width: 100%;
object-fit: contain;
}
.gx-mobile #newsContent .preview-video {
width: 100%;
margin-bottom: 0.42666667rem;
border-radius: 0.10666667rem;
overflow: hidden;
position: relative;
}
.gx-mobile #newsContent .preview-video + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent .preview-video .video-player {
border-radius: 0.10666667rem;
overflow: hidden;
}
.gx-mobile #newsContent .preview-video .video-player.prism-player {
background-color: transparent !important;
}
.gx-mobile #newsContent .preview-video .video-player.prism-player video {
background-color: transparent !important;
z-index: 81;
}
.gx-mobile #newsContent .preview-video .player-state-bg {
position: absolute;
left: 0.00533333rem;
right: 0.00533333rem;
bottom: 0.00533333rem;
top: 0.00533333rem;
z-index: 80;
}
.gx-mobile #newsContent .preview-video .player-error {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 111;
background: rgba(51, 51, 51, 0.8);
backdrop-filter: blur(10px);
}
.gx-mobile #newsContent .preview-video .player-error.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-network {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 110;
background: rgba(0, 0, 0, 0.5);
}
.gx-mobile #newsContent .preview-video .player-network.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-network .player-network-block {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.gx-mobile #newsContent .preview-video .player-network .player-network-block .network-title {
font-size: 0.37333rem;
line-height: 0.48rem;
text-align: right;
letter-spacing: 0;
color: #FFFFFF;
}
.gx-mobile #newsContent .preview-video .player-network .player-network-block .network-sub-title {
width: 5.47rem;
margin: 0.21333rem 0 0.42667rem 0;
font-size: 0.32rem;
line-height: 0.48rem;
text-align: center;
letter-spacing: 0;
color: #FFFFFF;
}
.gx-mobile #newsContent .preview-video .player-network .player-network-block .btn {
display: flex;
justify-content: center;
margin-top: 0.42666667rem;
width: 2.34666667rem;
line-height: 0.74666667rem;
border-radius: 0.10666667rem;
font-size: 0.32rem;
color: #fff;
background: rgba(255, 255, 255, 0.05);
border: 0.5px solid rgba(255, 255, 255, 0.3);
}
.gx-mobile #newsContent .preview-video .player-mini-progress {
position: absolute;
width: 100%;
height: 0.05333rem;
left: 0;
bottom: 0;
z-index: 98;
background: rgba(255, 255, 255, 0.3);
}
.gx-mobile #newsContent .preview-video .player-mini-progress .player-mini-loaded {
position: absolute;
left: 0;
top: 0;
z-index: 10;
width: 0px;
height: 0.05333rem;
background: #F22B41;
}
.gx-mobile #newsContent .preview-video .player-mini-progress .player-mini-buffer {
position: absolute;
height: 0.05333rem;
left: 0;
top: 0;
z-index: 9;
background: rgba(255, 255, 255, 0.3);
border-radius: 1px 0px 0px 1px;
}
.gx-mobile #newsContent .preview-video .player-mini-progress.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-replay {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 109;
font-size: 0.37333rem;
color: #fff;
background: rgba(51, 51, 51, 0.8);
backdrop-filter: blur(10px);
}
.gx-mobile #newsContent .preview-video .player-replay span {
padding: 0.13333rem 0.53333rem;
border: 0.02667rem solid #fff;
}
.gx-mobile #newsContent .preview-video .player-replay.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-loading {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 107;
color: #F22B41;
}
.gx-mobile #newsContent .preview-video .player-loading svg {
width: 1.5rem !important;
height: 1.5rem !important;
}
.gx-mobile #newsContent .preview-video .player-loading.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-cover {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 108;
background: #EDEDED;
height: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
border-radius: 0.10666667rem;
}
.gx-mobile #newsContent .preview-video .player-cover > img {
display: none;
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 9;
}
.gx-mobile #newsContent .preview-video .player-cover .player-state-icon {
position: absolute;
left: 0.32rem;
bottom: 0.32rem;
width: 0.85333333rem;
height: 0.85333333rem;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.gx-mobile #newsContent .preview-video .player-cover .player-state-icon img {
background: none;
width: 0.42666667rem;
height: 0.42666667rem;
max-width: unset !important;
margin: 0 !important;
position: relative;
left: 0.02666667rem;
}
.gx-mobile #newsContent .preview-video .player-cover.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-bottom {
display: flex;
align-items: center;
position: absolute;
width: 100%;
left: 0;
padding: 0.21333rem 0.32rem;
bottom: 0;
z-index: 99;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.gx-mobile #newsContent .preview-video .player-bottom.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-state,
.gx-mobile #newsContent .preview-video .player-bottom .player-full-screen {
width: 0.64rem;
height: 0.64rem;
background: none;
margin: 0;
}
.gx-mobile #newsContent .preview-video .player-bottom .center-box {
display: flex;
align-items: center;
position: relative;
top: 0.02667rem;
flex: 1;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress-block {
display: flex;
align-items: center;
justify-content: center;
height: 0.8rem;
flex: 1;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress {
position: relative;
height: 0.05333rem;
background: rgba(255, 255, 255, 0.3);
width: 100%;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded {
position: absolute;
height: 0.05333rem;
left: 0;
top: 0;
z-index: 10;
background: #F22B41;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded .player-loaded-drag {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: -0.14667rem;
top: -0.08rem;
width: 0.29333rem;
height: 0.21333rem;
opacity: 1;
z-index: 11;
background: #FFFFFF;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded .player-loaded-drag i {
display: block;
width: 0.08rem;
height: 0.05333rem;
background: #F22B41;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-buffer {
position: absolute;
height: 0.05333rem;
left: 0;
top: 0;
z-index: 9;
background: rgba(255, 255, 255, 0.3);
border-radius: 1px 0px 0px 1px;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-current,
.gx-mobile #newsContent .preview-video .player-bottom .player-duration {
font-size: 0.26667rem;
line-height: 0.34667rem;
letter-spacing: 0;
color: #FFFFFF;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-current {
margin: 0 0.30667rem 0 0.21333rem;
}
.gx-mobile #newsContent .preview-video .player-bottom .player-duration {
margin: 0 0.21333rem 0 0.30667rem;
}
.gx-mobile #newsContent .preview-video .player-layer-state {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 109;
}
.gx-mobile #newsContent .preview-video .player-layer-state.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-layer-state .player-state-icon {
position: absolute;
left: 0.32rem;
bottom: 0.32rem;
width: 0.85333333rem;
height: 0.85333333rem;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.gx-mobile #newsContent .preview-video .player-layer-state .player-state-icon img {
background: none;
width: 0.42666667rem;
height: 0.42666667rem;
max-width: unset !important;
margin: 0 !important;
position: relative;
left: 0.02666667rem;
}
.gx-mobile #newsContent .preview-video .player-mini-layer {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 98;
}
.gx-mobile #newsContent .preview-video .player-mini-layer.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-mini-layer img {
background-color: unset;
width: 0.85333rem;
height: 0.85333rem;
}
.gx-mobile #newsContent .preview-video .player-mini-close {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: 0.16rem;
top: 0.16rem;
z-index: 111;
}
.gx-mobile #newsContent .preview-video .player-mini-close.none {
display: none;
}
.gx-mobile #newsContent .preview-video .player-mini-close img {
background-color: unset;
width: 0.64rem;
height: 0.64rem;
}
.gx-mobile #newsContent .audio-warpper {
display: block;
margin: 0.4rem 0;
height: 1.17333333rem;
}
.gx-mobile #newsContent audio {
display: none;
max-width: 100% !important;
}
.gx-mobile #newsContent .video-warpper {
width: calc(100% + 30px);
position: relative;
margin-left: -15px;
display: block;
margin-bottom: 10px;
}
.gx-mobile #newsContent .video-warpper video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
object-fit: contain;
}
.gx-mobile #newsContent .video-warpper::after {
display: block;
content: " ";
width: 100%;
height: 0;
padding-bottom: 56.25%;
}
.gx-mobile #newsContent .preview-image-block {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
margin: 0.42666667rem auto !important;
border-radius: 0.08rem;
overflow: hidden;
}
.gx-mobile #newsContent .preview-image-block + .preview-image-block {
margin-top: 0 !important;
}
.gx-mobile #newsContent .preview-image-block a {
position: relative;
display: block;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.gx-mobile #newsContent .preview-image-block a > img.image-player {
display: none;
}
.gx-mobile #newsContent .preview-image-block.loading {
background: #EDEDED;
}
.gx-mobile #newsContent .preview-image-block.loading img.preview-image-error,
.gx-mobile #newsContent .preview-image-block.loading .img.image-player {
display: none !important;
}
.gx-mobile #newsContent .preview-image-block.loading img.preview-image-placehold {
display: block !important;
}
.gx-mobile #newsContent .preview-image-block.error {
background: #EDEDED;
}
.gx-mobile #newsContent .preview-image-block.error img.preview-image-placehold,
.gx-mobile #newsContent .preview-image-block.error .img.image-player {
display: none !important;
}
.gx-mobile #newsContent .preview-image-block.error img.preview-image-error {
display: block !important;
}
.gx-mobile #newsContent .preview-image-block.success img.preview-image-placehold,
.gx-mobile #newsContent .preview-image-block.success .img.preview-image-error {
display: none !important;
}
.gx-mobile #newsContent .preview-image-block.success img.image-player {
display: block !important;
}
.gx-mobile #newsContent .preview-image-block.minHeight {
min-height: 5.06666667rem;
}
.gx-mobile #newsContent .preview-image-block.no-network img.image-player,
.gx-mobile #newsContent .preview-image-block.no-network img.preview-image-placehold,
.gx-mobile #newsContent .preview-image-block.no-network img.preview-image-error {
display: none !important;
}
.gx-mobile #newsContent .preview-image-block.no-network .no-network-text {
display: block;
font-size: 0.37333333rem;
color: #999999;
}
.gx-mobile #newsContent .preview-image-block .no-network-text {
display: none;
}
.gx-mobile #newsContent .preview-image-block > img {
width: auto;
margin: unset;
}
.gx-mobile #newsContent .preview-image-block > img.image-player {
display: none;
}
.gx-mobile #newsContent .preview-image-block .preview-image-placehold {
display: none;
object-fit: cover;
width: 3.52rem;
}
.gx-mobile #newsContent .preview-image-block .preview-image-error {
display: none;
object-fit: cover;
width: 1.70667rem;
}
.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon {
position: absolute;
display: block;
top: 0.21333333rem;
right: 0.21333333rem;
height: 0.48rem;
border-radius: 0.05333333rem;
background: rgba(0, 0, 0, 0.3);
}
.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon img {
float: left;
margin: unset;
width: 0.37333333rem;
height: 0.37333333rem;
margin-left: 0.08rem;
margin-top: 0.05333333rem;
max-width: unset !important;
display: inline-block !important;
}
.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon span {
float: right;
font-size: 0.29333333rem;
line-height: 0.42666667rem;
margin-left: 0.05333333rem;
margin-right: 0.08rem;
margin-top: 0.02666667rem;
color: #FFFFFF;
}
.gx-mobile #newsContent .preview-image-block .preview-image-link-icon {
display: none;
}
.gx-mobile #newsContent img,
.gx-mobile #newsContent video,
.gx-mobile #newsContent audio {
max-width: 100% !important;
}
.gx-mobile .adress {
margin-top: 0.53333rem;
font-size: 0.32rem;
font-weight: normal;
line-height: 0.42667rem;
letter-spacing: 0;
color: #999999;
}
.gx-mobile .tags {
display: flex;
flex-wrap: wrap;
}
.gx-mobile .tags .tag-item {
display: flex;
align-items: center;
margin-top: 0.32rem;
margin-right: 0.32rem;
padding: 0.05333rem 0.16rem;
font-size: 0.32rem;
font-weight: normal;
line-height: 0.48rem;
letter-spacing: 0;
color: #cb3c34;
background: #f6e0df;
}
.gx-mobile .tags .tag-item:last-child {
margin-right: 0;
}
.gx-mobile .tags .tag-item span {
margin-right: 0.10667rem;
}
.gx-mobile .tags .tag-item img {
width: 0.26667rem;
height: 0.26667rem;
}
.gx-mobile .line-one {
height: 0.02667rem;
background: #b71d26;
margin-top: 0.4rem;
margin-bottom: 0.74667rem;
}
.gx-mobile .line {
height: 0.02667rem;
background: #b71d26;
margin-top: 0.74667rem;
margin-bottom: 0.4rem;
}
.gx-mobile .suggested .suggested-content .suggested-item {
padding-top: 0.32rem;
padding-bottom: 0.34667rem;
border-bottom: 0.02667rem solid #979797ff;
}
.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_title {
font-size: 0.42667rem;
line-height: 0.69333rem;
letter-spacing: 0;
color: #000000;
}
.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details {
margin-top: 0.42667rem;
display: flex;
}
.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_img {
width: 3.52rem;
flex: 0 0 3.52rem;
height: 2.66667rem;
margin-right: 0.42667rem;
}
.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_subtitle {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_subtitle .subtitle {
font-size: 0.37333rem;
font-weight: normal;
line-height: 0.45333333rem;
letter-spacing: 0;
color: #555555;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
word-wrap: break-word;
width: 9.15547rem;
}
.gx-mobile .suggested .suggested-content .suggested-item .times {
display: flex;
align-items: center;
justify-content: space-between;
}
.gx-mobile .suggested .suggested-content .suggested-item .times .left {
display: flex;
align-items: center;
font-size: 0.26667rem;
font-weight: normal;
line-height: 0.34667rem;
letter-spacing: 0;
color: #a3a3a3;
}
.gx-mobile .suggested .suggested-content .suggested-item .times .left span {
margin-right: 0.16rem;
}
.gx-mobile .suggested .suggested-content .suggested-item .times .left span:last-child {
margin-right: 0;
}
.gx-mobile .suggested .suggested-content .suggested-item .times .right img {
width: 0.37333rem;
height: 0.37333rem;
}
.gx-mobile .suggested .suggested-content .suggested-item .times-line {
width: 0.02667rem;
height: 0.13333rem;
opacity: 1;
background: #a3a3a3;
}
.gx-mobile .suggested .suggested-content .suggested-item .times.no-cover {
margin-top: 0.32rem;
}
.gx-mobile .suggested .suggested-title {
font-size: 0.58667rem;
line-height: 0.69333rem;
letter-spacing: 0;
color: #000000;
}
.editor-charge {
color: #b0b0b0ff;
font-size: 12px;
font-weight: 400;
margin-top: 0.42667rem;
}
#voteHiddenBlock {
position: fixed;
left: 0;
top: 0;
z-index: -1;
opacity: 0;
visibility: hidden;
width: 100%;
padding: 0.48rem;
}
#voteHiddenBlock .voteHiddenContent {
margin-top: 0.53333333rem;
padding: 0.42666667rem 0.37333333rem;
background: #F9F9F9;
border-radius: 0.10666667rem;
}
#voteHiddenBlock .voteHiddenContent .voteHiddenTitle {
width: 100%;
}
.vote {
position: relative;
margin-top: 0.53333333rem;
padding: 0.42666667rem 0.37333333rem;
background: #F9F9F9;
border-radius: 0.10666667rem;
}
.vote .vote-title {
width: 100%;
margin-top: 0;
font-size: 0.42667rem;
line-height: 0.58666667rem;
font-weight: bold;
color: #000;
margin-bottom: 0.32rem !important;
}
.vote .vote-title .t-icon {
width: 1.36rem;
height: 0.48rem;
margin-right: 0.13333rem;
display: flex;
align-items: center;
float: left;
z-index: 99999;
}
.vote .vote-title .t-icon .icon-img {
width: 0.48rem;
height: 0.48rem;
background-image: url("../image/vote/icon_live.png");
background-size: 100% 100%;
}
.vote .vote-title .t-icon span {
width: 0.88rem;
height: 0.48rem;
line-height: 0.48rem;
font-size: 0.32rem;
display: inline-block;
background-color: #666;
text-align: center;
font-weight: normal;
color: #ffffff;
}
.vote .ptxt {
margin: 0.21333rem 0 0.32rem 0;
font-size: 0.32rem;
line-height: 0.42667rem;
font-weight: normal;
color: #555555;
}
.vote .btns1 {
position: relative;
display: flex;
justify-content: space-between;
}
.vote .btns1 .s {
width: 4.21653rem;
font-size: 0.37333rem;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
padding: 0.21333rem 0.32rem;
line-height: 0.42666667rem;
}
.vote .btns1 .s.none {
opacity: 0;
visibility: hidden;
}
.vote .btns1 .s.active {
position: absolute;
}
.vote .btns1 .s1 {
background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);
border-top-left-radius: 0.08rem;
border-bottom-left-radius: 0.08rem;
}
.vote .btns1 .s1.active {
top: 0;
left: 0;
height: 100%;
}
.vote .btns1 .s2 {
background: linear-gradient(270deg, #63D4FF 0%, #50BDE7 100%);
border-top-right-radius: 0.08rem;
border-bottom-right-radius: 0.08rem;
}
.vote .btns1 .s2.active {
top: 0;
right: 0;
height: 100%;
}
.vote .aft.anmite-vote .jdat .s1 {
animation: voteProgressIn;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.vote .aft.anmite-vote .jdat .s2 {
animation: voteProgressInTwo;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.vote .aft .jdat {
height: 0.29333rem;
display: flex;
}
.vote .aft .jdat .pkjd-box {
position: relative;
display: flex;
width: 100%;
height: 0.29333rem;
}
.vote .aft .jdat .s {
display: inline-block;
height: 0.29333rem;
}
.vote .aft .jdat .s1 {
position: absolute;
left: 0;
top: 0;
width: 50%;
flex-shrink: 0;
height: 0.29333rem;
background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);
border-top-left-radius: 0.02666667rem;
border-bottom-left-radius: 0.02666667rem;
transition: all;
}
.vote .aft .jdat .s2 {
position: absolute;
right: 0;
top: 0;
height: 0.29333rem;
background: linear-gradient(270deg, #63D4FF 0%, #50BDE7 100%);
border-top-right-radius: 0.02666667rem;
border-bottom-right-radius: 0.02666667rem;
transition: all;
}
.vote .aft .bf {
display: flex;
justify-content: space-between;
margin-top: 0.21333333rem;
}
.vote .aft .bf.sigle {
gap: 0.50666667rem;
}
.vote .aft .bf.sigle .lt,
.vote .aft .bf.sigle .rt {
width: 50%;
}
.vote .aft .bf.sigle .lt .lt-s2,
.vote .aft .bf.sigle .rt .lt-s2 {
word-break: break-all;
}
.vote .aft .bf.sigle .rt {
display: flex;
justify-content: flex-end;
}
.vote .aft .bf .lt {
width: 45%;
display: flex;
font-size: 0.37333rem;
line-height: 0.48rem;
}
.vote .aft .bf .lt .lt-s1 {
color: #496fff;
font-weight: bold;
}
.vote .aft .bf .lt .mr {
margin-right: 0.05333333rem;
font-weight: bold;
}
.vote .aft .bf .lt .lt-s2 {
color: #555555;
}
.vote .aft .bf .lt .vote-image-icon {
width: 0.32rem;
height: 0.32rem;
margin-top: 0.08rem;
}
.vote .aft .bf .lt .rtbf {
color: #50bde7;
margin-left: 0.05333333rem;
}
.vote .aft .bf .rt {
width: 45%;
display: flex;
font-size: 0.37333rem;
font-weight: normal;
line-height: 0.48rem;
}
.vote .aft .bf .rt .lt-s1 {
color: #496fff;
font-weight: bold;
}
.vote .aft .bf .rt .mr {
margin-left: 0.05333rem;
margin-right: 0.05333rem;
}
.vote .aft .bf .rt .lt-s2 {
color: #555555;
}
.vote .aft .bf .rt .vote-image-icon {
width: 0.32rem;
height: 0.32rem;
margin-top: 0.08rem;
}
.vote .aft .bf .rt .rtbf {
color: #50bde7;
margin-left: 0.05333rem;
margin-right: 0.05333rem;
}
.vote .bts2 {
overflow: hidden;
}
.vote .bts2 .btsIem {
padding: 0.2rem;
line-height: 0.53333333rem;
border-radius: 0.08rem;
background: #FFFFFF;
border: 0.01333333rem solid #EDEDED;
color: #222;
text-align: center;
margin-bottom: 0.21333333rem;
font-size: 0.37333333rem;
}
.vote .bts2 .btsIem:last-child {
margin-bottom: 0;
}
.vote .bts2.mht {
height: auto;
max-height: unset;
}
.vote .bts3 {
overflow: hidden;
}
.vote .bts3 .zsbox {
margin-bottom: 0.42667rem;
}
.vote .bts3 .zsbox .bf {
display: flex;
justify-content: space-between;
gap: 0.26666667rem;
margin-bottom: 0.21333333rem;
position: relative;
line-height: 0.48rem;
}
.vote .bts3 .zsbox .bf .sumBox {
display: flex;
justify-content: space-between;
gap: 0.10666667rem;
}
.vote .bts3 .zsbox .bf .sumBox img {
margin-top: 0.10666667rem;
margin-left: 0.10666667rem;
width: 0.32rem;
height: 0.32rem;
}
.vote .bts3 .zsbox .bf .sumBox .stx {
font-size: 0.4rem;
line-height: 0.48rem;
color: #555555;
}
.vote .bts3 .zsbox .bf .sbf {
font-size: 0.42666667rem;
font-weight: bold;
line-height: 0.53333333rem;
color: #666666;
}
.vote .bts3 .zsbox .bf .sbf.active {
color: #496FFF;
}
.vote .bts3 .zsbox .jd {
display: flex;
align-items: center;
background: #EFEFEF;
}
.vote .bts3 .zsbox .jd .s {
display: inline-block;
height: 0.29333333rem !important;
}
.vote .bts3 .zsbox .jd .s1 {
position: relative;
width: 20%;
}
.vote .bts3 .zsbox .jd .s1.anmite-vote::before {
animation-name: voteProgressFull;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.vote .bts3 .zsbox .jd .s1.active::before {
background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);
}
.vote .bts3 .zsbox .jd .s1::before {
content: '';
position: absolute;
height: 0.29333333rem !important;
width: 0%;
background: linear-gradient(270deg, #999999 1%, #999999 98%);
}
.vote .bts3 .zsbox:last-child {
margin-bottom: 0;
}
.vote .bts3.mht2 {
height: auto;
max-height: unset;
}
.vote-line {
margin-top: 0.42666667rem;
width: 100%;
height: 0.01333333rem;
background: #EDEDED;
margin-bottom: 0.8rem;
}
.timeline-line {
margin-top: 0.53333333rem;
width: 100%;
height: 0.01333333rem;
background: #EDEDED;
}
.timeline {
margin-bottom: 0.90666667rem;
}
.timeline .timeline_title {
margin-top: 0.42666667rem;
margin-bottom: 0.16rem;
font-size: 0.48rem;
line-height: 0.66666667rem;
font-weight: bold;
color: #222222;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
word-break: break-all;
}
.timeline .timeLine_list {
padding-left: 0.45333333rem;
}
.timeline .timeLine_list .timeLine_list_item {
position: relative;
padding-bottom: 0.48rem;
}
.timeline .timeLine_list .timeLine_list_item:first-child {
padding-top: 0.21333333rem;
}
.timeline .timeLine_list .timeLine_list_item:first-child .timeLine_list_item_line {
top: 0.4rem;
height: calc(100% - 0.4rem);
}
.timeline .timeLine_list .timeLine_list_item:last-child {
padding-bottom: 0.26666667rem;
}
.timeline .timeLine_list .timeLine_list_item:last-child .timeLine_list_item_line {
height: 0.13333333rem;
}
.timeline .timeLine_list_item_line {
position: absolute;
left: -0.34666667rem;
top: 0;
height: 100%;
width: 0.02666667rem;
z-index: 1;
background: #ededed;
}
.timeline .timeLine_list_item_title {
position: relative;
margin-bottom: 0.21333333rem;
font-size: 0.37333333rem;
font-weight: bold;
line-height: 0.42666667rem;
color: #222222;
}
.timeline .timeLine_list_item_title .timeLine_list_item_title_icon {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -0.45333333rem;
z-index: 10;
}
.timeline .timeLine_list_item_content {
font-size: 0.48rem;
line-height: 0.66666667rem;
color: #222222;
}
.timeline .timeline_more {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 1.06666667rem;
border-radius: 0.08rem;
background: #F5F5F5;
font-size: 0.37333333rem;
line-height: 1.06666667rem;
color: #000000;
}
.timeline .timeline_more img {
width: 0.42666667rem;
height: 0.42666667rem;
top: -0.008rem;
position: relative;
}
.email-sub {
width: 9.14667rem;
background: #b71d2608;
padding: 0.42667rem;
}
.email-sub .sub-title p {
color: #b71d26ff;
font-size: 0.58667rem;
font-weight: 0;
margin-right: 3.46667rem;
}
.email-sub .sub-title img {
width: 0.48rem;
height: 0.48rem;
}
.email-sub .sub-inpt {
display: flex;
align-items: center;
margin: 0.26667rem 0;
}
.email-sub .sub-inpt img {
width: 1.1rem;
height: 1.17333rem;
}
.email-sub .sub-inpt .inpt-txt {
display: flex;
justify-content: space-between;
align-items: center;
width: 6.88rem;
margin-left: 0.31333rem;
}
.email-sub .sub-inpt .inpt-txt input {
width: 4.56rem;
height: 0.96rem;
border-radius: 0.02613rem;
border: 0.02613rem solid #eeeeeeff;
background: #ffffffff;
padding: 0.26667rem 0 0.26667rem 0.32rem;
color: #9e9e9eff;
font-size: 0.32rem;
box-sizing: border-box;
}
.email-sub .sub-inpt .inpt-txt span {
width: 2.32rem;
height: 0.96rem;
line-height: 0.96rem;
text-align: center;
display: inline-block;
color: #ffffffff;
font-size: 0.37333rem;
background-color: #b71d26;
}
.email-sub .sub-agree {
color: #000000ab;
text-align: left;
font-size: 0.32rem;
}
.email-sub .sub-agree span {
display: inline-block;
height: 0.42667rem;
border-bottom: 0.02667rem solid #b71d26ff;
color: #b71d26ff;
text-align: left;
font-size: 0.32rem;
}
.hidden {
display: none;
}
#newsContent .swiper-block {
width: 9.14667rem;
height: 6.85333rem;
position: relative;
overflow: hidden;
margin-bottom: 0.42666667rem;
border-radius: 0.08rem;
}
#newsContent .swiper-block + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .swiper-block img {
object-fit: cover;
height: 100%;
}
#newsContent .swiper-block .swiper-pagination {
left: unset;
right: 0.16rem;
width: unset;
display: flex;
align-items: center;
}
#newsContent .swiper-block .swiper-pagination-bullet {
width: 0.26666667rem;
height: 0.08rem;
margin: 0;
background: transparent;
}
#newsContent .swiper-block .swiper-pagination-bullet::after {
display: block;
content: "";
background: url("../image/swiper_not_active.svg");
width: 0.26666667rem;
height: 0.08rem;
background-repeat: no-repeat;
background-size: 100%;
}
#newsContent .swiper-block .swiper-pagination-bullet + .swiper-pagination-bullet {
margin-left: 0.05333333rem;
}
#newsContent .swiper-block .swiper-pagination-bullet-active {
background: transparent;
width: 0.37333333rem;
height: 0.08rem;
}
#newsContent .swiper-block .swiper-pagination-bullet-active::after {
display: block;
content: "";
background: url("../image/swiper_active.svg");
width: 0.37333333rem;
height: 0.08rem;
background-repeat: no-repeat;
background-size: 100%;
}
#newsContent .preview-audio-player {
display: flex;
align-items: center;
border: 0.02666667rem solid rgba(0, 0, 0, 0.05);
box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);
border-radius: 0.10666667rem;
padding: 0.32rem 0.42666667rem;
background: #fff;
margin-bottom: 0.42666667rem;
}
#newsContent .preview-audio-player + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .preview-audio-player.cover .left {
width: 2.13333333rem;
height: 2.13333333rem;
}
#newsContent .preview-audio-player .left {
width: 1.17333333rem;
height: 1.17333333rem;
flex-shrink: 0;
}
#newsContent .preview-audio-player .left .audio-pause-icon,
#newsContent .preview-audio-player .left .audio-play-icon {
display: none;
}
#newsContent .preview-audio-player .left .audio-pause-icon.active,
#newsContent .preview-audio-player .left .audio-play-icon.active {
display: block;
}
#newsContent .preview-audio-player .right {
flex: 1;
margin-left: 0.42666667rem;
}
#newsContent .preview-audio-player .right .audio-title {
font-size: 0.4rem;
font-weight: bold;
height: 0.45333333rem;
line-height: 0.45333333rem;
color: #222222;
margin-bottom: 0.29333333rem;
position: relative;
display: flex;
flex: 1;
align-items: center;
overflow: hidden;
}
#newsContent .preview-audio-player .right .audio-title .audio-notice-title {
position: absolute;
white-space: nowrap;
transition-timing-function: linear;
}
#newsContent .preview-audio-player .right .audio-progress-block {
height: 0.05333333rem;
background: #f5f5f5;
position: relative;
}
#newsContent .preview-audio-player .right .audio-progress-block .audio-progressed {
position: absolute;
left: 0;
height: 0.05333333rem;
top: 0;
background: #ED2800;
}
#newsContent .preview-audio-player .right .audio-time {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 10px;
font-size: 0.26666667rem;
line-height: 0.32rem;
color: #B0B0B0;
margin-top: 0.10666667rem;
}
#newsContent .preview-audio-player-cover {
display: flex;
height: 2.13333333rem;
width: 100%;
border-radius: 0.10666667rem;
border: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);
padding: 0.21333333rem;
margin-bottom: 0.42666667rem;
}
#newsContent .preview-audio-player-cover + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .preview-audio-player-cover .left {
width: 1.70666667rem;
height: 1.70666667rem;
flex-shrink: 0;
}
#newsContent .preview-audio-player-cover .right {
flex: auto;
margin-left: 0.21333333rem;
background: #fff;
}
#newsContent .preview-audio-player-cover .right .audio-title {
font-size: 0.32rem;
font-weight: 500;
height: 0.42666667rem;
line-height: 0.42666667rem;
color: #000000;
position: relative;
display: flex;
align-items: center;
overflow: hidden;
}
#newsContent .preview-audio-player-cover .right .audio-title .audio-notice-title {
position: absolute;
white-space: nowrap;
transition-timing-function: linear;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-time {
font-size: 0.26666667rem;
font-weight: normal;
line-height: 0.34666667rem;
color: #999999;
margin-top: 0.10666667rem;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn {
display: flex;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 0.13333333rem;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img {
margin: unset !important;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img:first-child {
height: 0.32rem;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-play-icon,
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-pause-icon {
width: 0.64rem;
height: 0.64rem;
display: none;
flex-shrink: 0;
}
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-play-icon.active,
#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-pause-icon.active {
display: block;
}
#newsContent .preview-link-card-mobile {
display: block;
padding: 0.24rem;
border-radius: 0.10666667rem;
cursor: pointer;
color: unset !important;
text-decoration: unset !important;
background: #F5F5F5;
border: 0.02666667rem solid rgba(0, 0, 0, 0.05);
margin-bottom: 0.42666667rem;
}
#newsContent .preview-link-card-mobile + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .preview-link-card-mobile.card-image {
display: flex;
align-items: center;
}
#newsContent .preview-link-card-mobile.card-image .left {
flex: 0 0 1.17333rem;
width: 1.17333rem;
height: 1.17333rem;
}
#newsContent .preview-link-card-mobile.card-image .left img {
width: 100%;
height: 100%;
object-fit: cover;
}
#newsContent .preview-link-card-mobile.card-image .right {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-left: 0.26667rem;
height: 1.17333rem;
}
#newsContent .preview-link-card-mobile .preview-link-title {
font-size: 0.37333333rem;
height: 0.53333333rem;
line-height: 0.53333333rem;
color: #50749A;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
word-break: break-all;
}
#newsContent .preview-link-card-mobile .preview-link {
display: none;
align-items: center;
line-height: 0.37333rem;
}
#newsContent .preview-link-card-mobile.card-image .preview-link-title {
-webkit-line-clamp: 2;
line-clamp: 2;
height: 1.06666667rem;
}
#newsContent .preview-link-card-mobile.card-image .preview-link {
display: none;
margin-bottom: 0.13333rem;
}
#newsContent .preview-link-card-mobile .preview-link-title img {
position: relative;
top: 0.08rem;
width: 0.42666667rem;
height: 0.42666667rem;
display: unset;
background: unset;
margin: 0;
margin-right: 0.16rem;
}
#newsContent .preview-link-card-mobile .preview-link span {
font-size: 0.26667rem;
color: #50749A;
margin-left: 0.05333rem;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
word-break: break-all;
}
.share {
margin-top: 0.64rem;
height: 0.96rem;
}
.share .share-wrapper + .share-wrapper {
margin-left: -0.10666667rem;
}
.share .share-wrapper img {
float: left;
height: 0.96rem;
}
.share .share-wrapper .image-first {
width: 0.26666667rem;
}
.share .share-wrapper .image-center {
width: calc(100% - 0.74666667rem);
}
.share .share-wrapper .image-end {
width: 0.48rem;
}
.share .share-content {
display: flex;
align-items: center;
position: absolute;
z-index: 10;
left: calc(45% + 0.18rem);
top: 50%;
transform: translate(-50%, -50%);
min-width: 1.6rem;
}
.share .share-content img {
width: 0.53333333rem;
height: 0.53333333rem;
}
.share .share-content span {
position: relative;
margin-left: 0.08rem;
font-size: 0.32rem;
top: 0.01333333rem;
color: #666666;
}
.sharePoster {
height: 0.96rem;
position: relative;
}
.sharePoster.share-wrapper .news {
width: 0.74666667rem;
height: 0.32rem;
position: absolute;
right: -0.21333333rem;
top: -0.13333333rem;
z-index: 11;
float: none;
}
.share-wechat {
height: 0.96rem;
}
.share-wechat.center .share-content {
left: calc(45% + 0.25rem);
}
.share-wechat.center.share-wrapper .image-first {
width: 0.42666667rem;
}
.share-wechat.center.share-wrapper .image-center {
width: calc(100% - 0.85333333rem);
}
.share-wechat.center.share-wrapper .image-end {
width: 0.42666667rem;
}
.share-wechat .share-content {
left: calc(45% + 0.2rem);
}
.share-wechat-circle {
height: 0.96rem;
}
.share-wechat-circle .share-content {
left: calc(45% + 0.2rem);
min-width: 1.8rem;
}
.share-wechat-circle.share-wrapper .image-first {
width: 0.42666667rem;
}
.share-wechat-circle.share-wrapper .image-center {
width: calc(100% - 0.85333333rem);
}
.share-wechat-circle.share-wrapper .image-end {
width: 0.42666667rem;
}
.share-weibo {
height: 0.96rem;
}
.share-weibo .share-content {
left: calc(45% + 0.4rem);
}
.share-weibo.share-wrapper .image-first {
width: 0.48rem;
}
.share-weibo.share-wrapper .image-center {
width: calc(100% - 0.74666667rem);
}
.share-weibo.share-wrapper .image-end {
width: 0.26666667rem;
}
.share-box {
float: left;
box-sizing: border-box;
width: 33.3%;
position: relative;
}
.share-box-center {
float: left;
box-sizing: border-box;
width: 33.3%;
position: relative;
}
.share-box-center:before {
content: '';
position: absolute;
left: 0.42666667rem;
top: 0;
width: calc(100% - 0.85333333rem);
height: 0.90666667rem;
border: 1px solid #EDEDED;
border-left: 0;
border-right: 0;
}
.share-box-last {
float: left;
box-sizing: border-box;
width: 33.3%;
position: relative;
}
.share-box-last:before {
content: '';
position: absolute;
right: 0;
top: 0;
width: calc(100% - 0.42666667rem);
height: 0.90666667rem;
border: 1px solid #EDEDED;
border-left: 0;
border-top-right-radius: 0.08rem;
border-bottom-right-radius: 0.08rem;
}
.sharePointRight {
position: absolute;
right: 0;
top: 0px;
width: 0.42666667rem;
height: 0.96rem;
z-index: 1;
}
.sharePointRight.coincide {
right: 0.01333333rem;
}
.sharePointLeft {
position: absolute;
left: 0;
top: 0;
width: 0.42666667rem;
height: 0.96rem;
z-index: 1;
}
#newsContent .en-scroll-text {
position: relative;
display: flex;
align-items: center;
gap: 0.21333333rem;
padding: 0.21333333rem;
height: 1.06666667rem;
padding-left: 0;
overflow: hidden;
border-radius: 0.10666667rem;
background: #FFFFFF;
border: 0.02666667rem solid rgba(0, 0, 0, 0.05);
box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);
margin-bottom: 0.42666667rem;
}
#newsContent .en-scroll-text + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-scroll-text::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 0.21333333rem;
height: 100%;
background: #FFFFFF;
}
#newsContent .scroll-text-left {
position: absolute;
top: 0;
left: 0;
padding-left: 0.21333333rem;
padding-right: 0.21333333rem;
width: 1.06666667rem !important;
height: 100%;
margin: 0;
z-index: 9;
background: #FFFFFF;
}
#newsContent .en-scroll-text img {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0.21333333rem;
width: 0.64rem !important;
height: 0.64rem !important;
margin: 0;
z-index: 10;
}
#newsContent .en-scroll-text .swiper-txet {
white-space: nowrap;
color: #333333ff;
text-align: left;
padding-left: 1.06666667rem;
font-size: 0.32rem;
height: 0.42666667rem;
line-height: 0.42666667rem;
}
#newsContent .en-echart {
margin-bottom: 0.42666667rem;
}
#newsContent .en-echart + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-echart .en-echart-title {
font-size: 0.37333333rem;
line-height: 0.48rem;
margin-bottom: 0.32rem;
font-weight: bold;
color: #333333;
word-break: break-all;
}
#newsContent .en-echart .en-echart-yname {
display: inline-flex;
font-size: 0.32rem;
line-height: 0.42666667rem;
color: #6e7079;
word-break: break-all;
margin-top: 0.16rem;
}
#newsContent .en-table {
display: flex;
justify-content: center;
flex-direction: column;
margin-bottom: 0.42666667rem;
}
#newsContent .en-table + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-table .en-table-title {
font-size: 0.37333333rem;
line-height: 0.48rem;
margin-bottom: 0.32rem;
font-weight: bold;
color: #333333;
word-break: break-all;
}
#newsContent .en-text-1 {
padding: 0.42666667rem 0.32rem 0.42666667rem 0.29333333rem;
border-left: 0.05866667rem solid #ED2800;
background: #faf3f4;
margin-bottom: 0.42666667rem;
}
#newsContent .en-text-1 + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-text-1-title {
position: relative;
font-size: 0.4rem;
line-height: 0.53333333rem;
color: #000000;
word-break: break-all;
}
#newsContent .en-text-1-title img {
position: absolute;
left: 0;
top: -0.10666667rem;
width: 0.64rem;
height: 0.37333333rem;
}
#newsContent .en-text-2 {
padding: 0.08rem;
border: 0.08rem solid #ED2800;
margin-bottom: 0.42666667rem;
}
#newsContent .en-text-2 + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-text-2-title {
padding: 0.32rem;
border: 0.02666667rem solid #ED2800;
font-size: 0.4rem;
line-height: 0.53333333rem;
color: #000000;
}
#newsContent .en-text-3 {
position: relative;
border: 0.02666667rem solid #ED2800;
padding: 0.42666667rem 0.32rem 0.32rem 0.32rem;
margin-bottom: 0.42666667rem;
}
#newsContent .en-text-3 + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-text-3 .en-text-3-title {
display: flex;
align-items: center;
gap: 0.16rem;
position: absolute;
left: 0.53333333rem;
top: -0.24rem;
height: 0.48rem;
background: #fff;
padding-right: 0.16rem;
font-size: 0.37333333rem;
line-height: 0.48rem;
color: #ED2800;
}
#newsContent .en-text-3 .en-text-3-title .en-text-3-point {
width: 0.13333333rem;
height: 0.13333333rem;
background: #ED2800;
}
#newsContent .en-text-3 .en-text-3-content {
font-size: 0.4rem;
line-height: 0.53333333rem;
color: #000000;
}
#newsContent .en-text-4 {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0.42666667rem;
}
#newsContent .en-text-4 + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-text-4 .en-text-4-block {
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
padding: 0.29333333rem 0.64rem;
background-repeat: no-repeat;
background-size: 100%;
font-size: 0.48rem;
line-height: 0.58666667rem;
}
#newsContent .en-text-4 .en-text-4-end {
position: absolute;
bottom: 0;
right: 0;
border: 0.05333333rem solid #fff;
border-right: 0;
border-bottom: 0;
background: #ED2800;
width: 0.21333333rem;
height: 0.21333333rem;
}
#newsContent .en-text-5 {
display: flex;
justify-content: center;
margin-bottom: 0.42666667rem;
}
#newsContent .en-text-5 + .preview-image-block {
margin-top: 0 !important;
}
#newsContent .en-text-5-block {
display: flex;
align-items: center;
height: 1.17333333rem;
}
#newsContent .en-text-5-num {
display: flex;
align-items: center;
justify-content: center;
width: 1.17333333rem;
height: 1.17333333rem;
background: #ED2800;
color: #fff;
font-weight: bold;
font-size: 0.48rem;
line-height: 0.58666667rem;
color: #FFFFFF;
}
#newsContent .en-text-5-title {
display: flex;
align-items: center;
justify-content: center;
padding: 0 0.64rem 0 0.42666667rem;
height: 1.17333333rem;
background: #f4e8e9;
font-weight: bold;
font-size: 0.48rem;
line-height: 0.58666667rem;
color: #ED2800;
}
.statement {
margin-top: 0.53333333rem;
font-size: 0.32rem;
line-height: 0.37333333rem;
color: #CCCCCC;
}
.active-wrapper {
margin-top: 0.53333333rem;
margin-bottom: 0.77333333rem;
height: 1.28rem;
padding-left: 0.10666667rem;
padding-right: 0.10666667rem;
border-radius: 0.08rem;
background: #F5F5F5;
border: 0.5px solid rgba(0, 0, 0, 0.05);
}
.active-wrapper .active-image {
float: left;
margin-top: 0.09333333rem;
width: 0.8rem;
height: 1.06666667rem;
}
.active-wrapper .active-title {
float: left;
margin-top: 0.38666667rem;
margin-left: 0.21333333rem;
width: 6.93333333rem;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
word-break: break-all;
font-size: 0.34666667rem;
line-height: 0.53333333rem;
font-weight: bold;
color: #222222;
}
.active-wrapper .active-title .active-line {
position: relative;
display: inline-block;
top: 0.05333333rem;
height: 0.34666667rem;
width: 0.04rem;
margin: 0 0.10666667rem;
background: #222;
}
.active-wrapper .active-right-icon {
float: right;
width: 0.42666667rem;
height: 0.42666667rem;
margin-right: 0.22666667rem;
margin-top: 0.44rem;
}
.article-source {
position: relative;
margin-right: 0.21333333rem;
}
@keyframes voteProgressFull {
100% {
width: 100%;
}
}
.reload-page {
margin-bottom: 15px;
outline: none;
position: relative;
display: inline-block;
font-weight: 400;
white-space: nowrap;
text-align: center;
background-image: none;
background-color: transparent;
border: 1px solid transparent;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
user-select: none;
touch-action: manipulation;
line-height: 1.57142857;
color: rgba(0, 0, 0, 0.88);
font-size: 14px;
height: 32px;
padding: 4px 15px;
border-radius: 6px;
box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
color: #fff;
background-color: #4096ff;
}
/*# sourceMappingURL=index.css.map */
\ No newline at end of file
{"version":3,"sources":["index.less"],"names":[],"mappings":"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","file":"index.css"}
\ No newline at end of file