zhenghy

Merge remote-tracking branch 'origin/main'

Showing 21 changed files with 111 additions and 3715 deletions

Too many changes to show.

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

@@ -30,6 +30,7 @@ export struct CustomToast { @@ -30,6 +30,7 @@ export struct CustomToast {
30 .fontSize("27lpx") 30 .fontSize("27lpx")
31 .lineHeight("38lpx") 31 .lineHeight("38lpx")
32 }.borderRadius(`${this.bgBorderRadius}lpx`) 32 }.borderRadius(`${this.bgBorderRadius}lpx`)
  33 + .constraintSize({maxWidth:"86%"})
33 .padding({top:"23lpx",bottom:'23lpx',left:"35lpx",right:"35lpx"}) 34 .padding({top:"23lpx",bottom:'23lpx',left:"35lpx",right:"35lpx"})
34 .backgroundColor($r("app.color.black")) 35 .backgroundColor($r("app.color.black"))
35 .opacity(0.7) 36 .opacity(0.7)
@@ -297,6 +297,10 @@ export class HttpUrlUtils { @@ -297,6 +297,10 @@ export class HttpUrlUtils {
297 */ 297 */
298 static readonly ATTENTION_BATCH_DATA_PATH: string = "/api/rmrb-interact/interact/zh/c/attention/batch"; 298 static readonly ATTENTION_BATCH_DATA_PATH: string = "/api/rmrb-interact/interact/zh/c/attention/batch";
299 299
  300 + /**
  301 + * 查询是否设置过密码checkSetPassword
  302 + */
  303 + static readonly CHECK_SET_PASSWORD_PATH: string = "/api/rmrb-user-center/user/zh/c/ifSetPassword";
300 304
301 static getHost(): string { 305 static getHost(): string {
302 return HostManager.getHost(); 306 return HostManager.getHost();
@@ -689,4 +693,10 @@ export class HttpUrlUtils { @@ -689,4 +693,10 @@ export class HttpUrlUtils {
689 return url; 693 return url;
690 } 694 }
691 695
  696 + //查询是否设置过密码
  697 + static checkSetPassword() {
  698 + let url = HttpUrlUtils.getHost() + HttpUrlUtils.CHECK_SET_PASSWORD_PATH;
  699 + return url;
  700 + }
  701 +
692 } 702 }
@@ -68,6 +68,7 @@ export class WDRouterPage { @@ -68,6 +68,7 @@ export class WDRouterPage {
68 static loginPage = new WDRouterPage("wdLogin", "ets/pages/login/LoginPage"); 68 static loginPage = new WDRouterPage("wdLogin", "ets/pages/login/LoginPage");
69 static oneKeyLoginPage = new WDRouterPage("wdLogin", "ets/pages/login/OneKeyLoginPage"); 69 static oneKeyLoginPage = new WDRouterPage("wdLogin", "ets/pages/login/OneKeyLoginPage");
70 static forgetPasswordPage = new WDRouterPage("wdLogin", "ets/pages/login/ForgetPasswordPage"); 70 static forgetPasswordPage = new WDRouterPage("wdLogin", "ets/pages/login/ForgetPasswordPage");
  71 + static modifyPasswordPage = new WDRouterPage("wdLogin", "ets/pages/login/ModifyPasswordPage");
71 //我的 预约 72 //我的 预约
72 static appointmentListPage = new WDRouterPage("wdComponent", "ets/components/page/AppointmentListPage"); 73 static appointmentListPage = new WDRouterPage("wdComponent", "ets/components/page/AppointmentListPage");
73 //我的 关注 74 //我的 关注
@@ -170,13 +170,20 @@ export default struct MinePageUserSimpleInfoUI { @@ -170,13 +170,20 @@ export default struct MinePageUserSimpleInfoUI {
170 if(value!=null){ 170 if(value!=null){
171 if(StringUtils.isEmpty(this.levelHead)){ 171 if(StringUtils.isEmpty(this.levelHead)){
172 if(this.userType === "1"){ 172 if(this.userType === "1"){
  173 + if(value.levelHead != undefined){
173 this.levelHead = value.levelHead 174 this.levelHead = value.levelHead
174 } 175 }
175 } 176 }
  177 + }
  178 + if(value.levelId != undefined){
176 this.levelId = value.levelId 179 this.levelId = value.levelId
177 UserDataLocal.setUserLevel(this.levelId) 180 UserDataLocal.setUserLevel(this.levelId)
  181 + }
  182 +
  183 + if(StringUtils.isNotEmpty(this.levelHead)){
178 UserDataLocal.setUserLevelHeaderUrl(this.levelHead + "") 184 UserDataLocal.setUserLevelHeaderUrl(this.levelHead + "")
179 } 185 }
  186 + }
180 }).catch((err:Error)=>{ 187 }).catch((err:Error)=>{
181 console.log(TAG,JSON.stringify(err)) 188 console.log(TAG,JSON.stringify(err))
182 }) 189 })
@@ -28,7 +28,7 @@ export struct PageComponent { @@ -28,7 +28,7 @@ export struct PageComponent {
28 // 自动刷新通知 28 // 自动刷新通知
29 @Prop @Watch('onAutoRefresh') autoRefresh: number = 0 29 @Prop @Watch('onAutoRefresh') autoRefresh: number = 0
30 private listScroller: Scroller = new Scroller(); 30 private listScroller: Scroller = new Scroller();
31 - 31 + needload: boolean = true;
32 build() { 32 build() {
33 Column() { 33 Column() {
34 if (this.pageModel.viewType == ViewType.LOADING) { 34 if (this.pageModel.viewType == ViewType.LOADING) {
@@ -220,14 +220,18 @@ export struct PageComponent { @@ -220,14 +220,18 @@ export struct PageComponent {
220 // 选中tab,才请求数据。拦截大量接口请求 220 // 选中tab,才请求数据。拦截大量接口请求
221 if (this.navIndex === this.currentTopNavSelectedIndex) { 221 if (this.navIndex === this.currentTopNavSelectedIndex) {
222 this.getData(); 222 this.getData();
  223 + this.needload = false;
223 } 224 }
224 } 225 }
225 226
226 onChange() { 227 onChange() {
227 Logger.info(TAG, `onChangezz id: ${this.pageId} , ${this.channelId} , ${this.navIndex} , navIndex: ${this.currentTopNavSelectedIndex}`); 228 Logger.info(TAG, `onChangezz id: ${this.pageId} , ${this.channelId} , ${this.navIndex} , navIndex: ${this.currentTopNavSelectedIndex}`);
228 if (this.navIndex === this.currentTopNavSelectedIndex) { 229 if (this.navIndex === this.currentTopNavSelectedIndex) {
  230 + if(this.needload){
229 this.getData(); 231 this.getData();
230 } 232 }
  233 + this.needload = false;
  234 + }
231 } 235 }
232 236
233 onAutoRefresh() { 237 onAutoRefresh() {
@@ -3,6 +3,7 @@ import { MineSettingComponent } from '../setting/MineSettingComponent'; @@ -3,6 +3,7 @@ import { MineSettingComponent } from '../setting/MineSettingComponent';
3 import { AccountAndSecurityLayout } from '../setting/AccountAndSecurityLayout'; 3 import { AccountAndSecurityLayout } from '../setting/AccountAndSecurityLayout';
4 import router from '@ohos.router'; 4 import router from '@ohos.router';
5 import { Action, Params } from 'wdBean'; 5 import { Action, Params } from 'wdBean';
  6 +import { DateTimeUtils } from 'wdKit/Index';
6 7
7 @Entry 8 @Entry
8 @Component 9 @Component
@@ -10,11 +11,12 @@ struct SettingPage { @@ -10,11 +11,12 @@ struct SettingPage {
10 @State message: string = 'Hello World 02' 11 @State message: string = 'Hello World 02'
11 @State pageType: string = 'mainSetting'; 12 @State pageType: string = 'mainSetting';
12 @State params:Params = router.getParams() as Params; 13 @State params:Params = router.getParams() as Params;
  14 + @State enterActivityTime:number = 0;
13 15
14 onPageShow() { 16 onPageShow() {
15 17
16 this.pageType = this.params.pageID; 18 this.pageType = this.params.pageID;
17 - 19 + this.enterActivityTime = DateTimeUtils.getTimeStamp()
18 } 20 }
19 21
20 build() { 22 build() {
@@ -22,7 +24,7 @@ struct SettingPage { @@ -22,7 +24,7 @@ struct SettingPage {
22 if (this.pageType == 'mainSetting') { 24 if (this.pageType == 'mainSetting') {
23 MineSettingComponent() 25 MineSettingComponent()
24 } else { 26 } else {
25 - AccountAndSecurityLayout() 27 + AccountAndSecurityLayout({enterActivityTime:this.enterActivityTime})
26 } 28 }
27 }.setFullWidth() 29 }.setFullWidth()
28 } 30 }
@@ -29,6 +29,10 @@ export struct AccountAndSecurityLayout { @@ -29,6 +29,10 @@ export struct AccountAndSecurityLayout {
29 @State cacheSice: number = 0 29 @State cacheSice: number = 0
30 @State protocolState: boolean = false //协议勾选状态 30 @State protocolState: boolean = false //协议勾选状态
31 @State isAccountPage: boolean = true 31 @State isAccountPage: boolean = true
  32 + @State ifSetPassword: boolean = false //是否设置过密码
  33 +
  34 + @Watch("checkSetPassword") @Prop enterActivityTime:number = 0;
  35 +
32 logoutViewModel = new LogoutViewModel() 36 logoutViewModel = new LogoutViewModel()
33 dialogController: CustomDialogController = new CustomDialogController({ 37 dialogController: CustomDialogController = new CustomDialogController({
34 builder: CustomLogoutDialog({ 38 builder: CustomLogoutDialog({
@@ -61,6 +65,23 @@ export struct AccountAndSecurityLayout { @@ -61,6 +65,23 @@ export struct AccountAndSecurityLayout {
61 // 获取设置页面数据 65 // 获取设置页面数据
62 this.getAccountAndSecurityData() 66 this.getAccountAndSecurityData()
63 this.addEmitEvent() 67 this.addEmitEvent()
  68 + this.checkSetPassword()
  69 + }
  70 +
  71 + checkSetPassword(){
  72 + MineSettingDatasModel.checkSetPassword().then((value) => {
  73 + if (value != null) {
  74 + if(value.hasSet == "1"){
  75 + this.ifSetPassword = true
  76 + if(this.listData.length>0){
  77 + this.listData[1] = new MineMainSettingFunctionItem(null, '修改密码', null, 0, false,"")
  78 + }
  79 + }else{
  80 + this.ifSetPassword = false
  81 + }
  82 + }
  83 + }).catch((err: Error) => {
  84 + })
64 } 85 }
65 86
66 async getAccountAndSecurityData() { 87 async getAccountAndSecurityData() {
@@ -162,9 +183,14 @@ export struct AccountAndSecurityLayout { @@ -162,9 +183,14 @@ export struct AccountAndSecurityLayout {
162 let pageType = {'pageType': 2} as Record<string, number>; 183 let pageType = {'pageType': 2} as Record<string, number>;
163 WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType) 184 WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
164 }else if (index == 1) { 185 }else if (index == 1) {
165 - 186 + if (this.ifSetPassword) {
  187 + //修改密码
  188 + WDRouterRule.jumpWithPage(WDRouterPage.modifyPasswordPage)
  189 + }else{
  190 + //设置密码
166 let pageType = {'pageType': 1} as Record<string, number>; 191 let pageType = {'pageType': 1} as Record<string, number>;
167 WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType) 192 WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
  193 + }
168 }else if (index == 3) { 194 }else if (index == 3) {
169 this.isAccountPage=false 195 this.isAccountPage=false
170 // WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType) 196 // WDRouterRule.jumpWithPage(WDRouterPage.forgetPasswordPage, pageType)
@@ -26,7 +26,12 @@ export struct newsSkeleton { @@ -26,7 +26,12 @@ export struct newsSkeleton {
26 } 26 }
27 .border({ width: 1 }) 27 .border({ width: 1 })
28 .borderColor('#FFF5F5F5') 28 .borderColor('#FFF5F5F5')
29 - .padding({ right: 2, left: 2, top: 0, bottom: 2 }) 29 + .padding({
  30 + right: 2,
  31 + left: 2,
  32 + top: 0,
  33 + bottom: 2
  34 + })
30 .justifyContent(FlexAlign.SpaceEvenly) 35 .justifyContent(FlexAlign.SpaceEvenly)
31 .alignItems(HorizontalAlign.Start) 36 .alignItems(HorizontalAlign.Start)
32 } 37 }
@@ -77,12 +82,21 @@ export struct newsSkeleton { @@ -77,12 +82,21 @@ export struct newsSkeleton {
77 textArea('95%', 100) 82 textArea('95%', 100)
78 } 83 }
79 }.width('45%') 84 }.width('45%')
80 - }.justifyContent(FlexAlign.SpaceBetween) 85 + }
  86 + .justifyContent(FlexAlign.SpaceBetween)
  87 + .backgroundColor(Color.White)
  88 + .padding({
  89 + top: 5,
  90 + bottom: 5,
  91 + right: 5,
  92 + left: 5
  93 + })
81 } 94 }
82 .width('100%') 95 .width('100%')
83 96
84 } 97 }
85 .height('100%') 98 .height('100%')
  99 +
86 } 100 }
87 } 101 }
88 102
@@ -207,7 +207,7 @@ export struct EmptyComponent { @@ -207,7 +207,7 @@ export struct EmptyComponent {
207 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVisitAccount) { 207 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVisitAccount) {
208 contentString = '该号主暂时无法访问' // 前方拥堵,请耐心等待 208 contentString = '该号主暂时无法访问' // 前方拥堵,请耐心等待
209 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) { 209 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) {
210 - contentString = '获取内容失败请重试' // 前方拥堵,请耐心等待 210 + contentString = '获取内容失败请重试' // 前方拥堵,请耐心等待
211 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1) { 211 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1) {
212 contentString = '暂无内容' 212 contentString = '暂无内容'
213 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) { 213 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) {
@@ -222,11 +222,13 @@ export struct EmptyComponent { @@ -222,11 +222,13 @@ export struct EmptyComponent {
222 buildNoDataTipImage(): Resource | string { 222 buildNoDataTipImage(): Resource | string {
223 Logger.info(TAG, "buildNoDataTip"); 223 Logger.info(TAG, "buildNoDataTip");
224 let imageString: Resource | string = $r('app.media.icon_no_content') 224 let imageString: Resource | string = $r('app.media.icon_no_content')
225 - if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoCollection || this.emptyType === WDViewDefaultType.WDViewDefaultType_NoHistory) { 225 + if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoCollection ||
  226 + this.emptyType === WDViewDefaultType.WDViewDefaultType_NoHistory) {
226 imageString = $r('app.media.icon_no_collection') 227 imageString = $r('app.media.icon_no_collection')
227 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoMessage) { 228 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoMessage) {
228 imageString = $r('app.media.icon_no_message') 229 imageString = $r('app.media.icon_no_message')
229 - } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoComment || this.emptyType === WDViewDefaultType.WDViewDefaultType_NoComment1) { 230 + } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoComment ||
  231 + this.emptyType === WDViewDefaultType.WDViewDefaultType_NoComment1) {
230 imageString = $r('app.media.icon_no_comment') 232 imageString = $r('app.media.icon_no_comment')
231 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoSearchResult) { 233 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoSearchResult) {
232 imageString = $r('app.media.icon_no_result') 234 imageString = $r('app.media.icon_no_result')
@@ -244,7 +246,8 @@ export struct EmptyComponent { @@ -244,7 +246,8 @@ export struct EmptyComponent {
244 imageString = $r('app.media.icon_no_master1') 246 imageString = $r('app.media.icon_no_master1')
245 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) { 247 } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) {
246 imageString = $r('app.media.icon_no_content') 248 imageString = $r('app.media.icon_no_content')
247 - } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1 || this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) { 249 + } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1 ||
  250 + this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) {
248 imageString = $r('app.media.icon_no_appointmentMade1') 251 imageString = $r('app.media.icon_no_appointmentMade1')
249 } 252 }
250 return imageString 253 return imageString
1 1
2 import HashMap from '@ohos.util.HashMap'; 2 import HashMap from '@ohos.util.HashMap';
3 -import { ResponseDTO, WDHttp } from 'wdNetwork'; 3 +import { HttpUrlUtils, ResponseDTO, WDHttp } from 'wdNetwork';
4 import { Logger, SPHelper } from 'wdKit'; 4 import { Logger, SPHelper } from 'wdKit';
5 import { MineMainSettingFunctionItem } from '../viewmodel/MineMainSettingFunctionItem'; 5 import { MineMainSettingFunctionItem } from '../viewmodel/MineMainSettingFunctionItem';
6 import { SpConstants } from 'wdConstant/Index'; 6 import { SpConstants } from 'wdConstant/Index';
  7 +import { CheckSetPasswordItem } from '../viewmodel/CheckSetPasswordItem';
7 8
8 9
9 const TAG = "MineSettingDatasModel" 10 const TAG = "MineSettingDatasModel"
@@ -108,6 +109,33 @@ class MineSettingDatasModel{ @@ -108,6 +109,33 @@ class MineSettingDatasModel{
108 // }) 109 // })
109 // } 110 // }
110 111
  112 +
  113 + /**
  114 + * 判断是否设置过密码
  115 + */
  116 + checkSetPassword(): Promise<CheckSetPasswordItem> {
  117 + return new Promise<CheckSetPasswordItem>((success, error) => {
  118 + Logger.info(TAG, `checkSetPassword start`);
  119 + this.fetchCheckSetPassword().then((navResDTO: ResponseDTO<CheckSetPasswordItem>) => {
  120 + if (!navResDTO || navResDTO.code != 0) {
  121 + error(null)
  122 + return
  123 + }
  124 + Logger.info(TAG, "checkSetPassword then,checkSetPasswordResDTO.timeStamp:" + navResDTO.timestamp);
  125 + let navigationBean = navResDTO.data as CheckSetPasswordItem
  126 + success(navigationBean);
  127 + }).catch((err: Error) => {
  128 + Logger.error(TAG, `checkSetPassword catch, error.name : ${err.name}, error.message:${err.message}`);
  129 + error(null)
  130 + })
  131 + })
  132 + }
  133 +
  134 + fetchCheckSetPassword() {
  135 + let url = HttpUrlUtils.checkSetPassword()
  136 + return WDHttp.get<ResponseDTO<CheckSetPasswordItem>>(url)
  137 + };
  138 +
111 } 139 }
112 140
113 const mineSettingDatasModel = MineSettingDatasModel.getInstance() 141 const mineSettingDatasModel = MineSettingDatasModel.getInstance()
  1 +
  2 +export class CheckSetPasswordItem{
  3 + hasSet: string = "0" //是否设置过密码,0未设置,1已设置
  4 +}
1 -/****reset****/  
2 -body,  
3 -div,  
4 -table,  
5 -tr,  
6 -td,  
7 -th,  
8 -h1,  
9 -h2,  
10 -h3,  
11 -h4,  
12 -h5,  
13 -h6,  
14 -form,  
15 -input,  
16 -button,  
17 -label,  
18 -select,  
19 -textarea,  
20 -p,  
21 -u,  
22 -i,  
23 -em,  
24 -ul,  
25 -ol,  
26 -li,  
27 -dl,  
28 -dd,  
29 -dt,  
30 -img,  
31 -article,  
32 -aside,  
33 -details,  
34 -figcaption,  
35 -figure,  
36 -footer,  
37 -header,  
38 -menu,  
39 -nav,  
40 -section {  
41 - box-sizing: border-box;  
42 - margin: 0;  
43 - padding: 0;  
44 - font-size: 100%;  
45 - vertical-align: baseline;  
46 - border: 0;  
47 - outline: 0;  
48 -}  
49 -li {  
50 - list-style: none;  
51 -}  
52 -h1,  
53 -h2,  
54 -h3,  
55 -h4,  
56 -h5,  
57 -h6 {  
58 - font-size: 100%;  
59 -}  
60 -table {  
61 - border-collapse: collapse;  
62 - border-spacing: 0;  
63 - width: 100%;  
64 -}  
65 -a,  
66 -input,  
67 -select,  
68 -textarea,  
69 -area,  
70 -button {  
71 - outline: none;  
72 - font-family: inherit;  
73 - font-size: inherit;  
74 - border: none;  
75 - background: none;  
76 - color: inherit;  
77 -}  
78 -a {  
79 - text-decoration: none;  
80 -}  
81 -a:hover {  
82 - text-decoration: none;  
83 -}  
84 -textarea {  
85 - overflow: auto;  
86 - resize: none;  
87 -}  
88 -input[type="button"],  
89 -input[type="submit"],  
90 -input[type="reset"] {  
91 - cursor: pointer;  
92 - -webkit-appearance: none;  
93 -}  
94 -html,  
95 -body {  
96 - overflow-x: hidden;  
97 - width: 100%;  
98 - height: 100%;  
99 - background: #ffffff;  
100 -}  
101 -* {  
102 - -webkit-overflow-scrolling: touch;  
103 -}  
104 -html {  
105 - -webkit-tap-highlight-color: transparent;  
106 -}  
107 -body {  
108 - text-align: left;  
109 -}  
110 -body #app {  
111 - height: 100%;  
112 -}  
113 -body #app::-webkit-scrollbar {  
114 - display: none;  
115 -}  
116 -body #app::-webkit-scrollbar-thumb {  
117 - display: none;  
118 -}  
119 -body #app::-webkit-scrollbar-track {  
120 - display: none;  
121 -}  
122 -.fl {  
123 - float: left;  
124 -}  
125 -.fr {  
126 - float: right;  
127 -}  
128 -.clearfix {  
129 - zoom: 1;  
130 -}  
131 -.clearfix::before,  
132 -.clearfix::after {  
133 - display: table;  
134 - content: " ";  
135 -}  
136 -.clearfix::after {  
137 - clear: both;  
138 - height: 0;  
139 - font-size: 0;  
140 - visibility: hidden;  
141 -}  
142 -.ant-skeleton {  
143 - display: table;  
144 - width: 100%;  
145 -}  
146 -.ant-skeleton + .ant-skeleton {  
147 - margin-top: 0.64rem;  
148 -}  
149 -.ant-skeleton.active {  
150 - display: none;  
151 -}  
152 -.ant-skeleton-content {  
153 - display: table-cell;  
154 - width: 100%;  
155 - margin-bottom: 0.64rem;  
156 - vertical-align: top;  
157 -}  
158 -.ant-skeleton-content .ant-skeleton-title {  
159 - width: 100%;  
160 - height: 0.53333rem;  
161 - margin-top: 0.26667rem;  
162 - background: #f2f2f2;  
163 -}  
164 -.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {  
165 - margin-top: 0.64rem;  
166 -}  
167 -.ant-skeleton-content .ant-skeleton-paragraph {  
168 - padding: 0;  
169 -}  
170 -.ant-skeleton-content .ant-skeleton-paragraph > li {  
171 - width: 23.3%;  
172 - height: 0.32rem;  
173 - list-style: none;  
174 - background: #f2f2f2;  
175 -}  
176 -.ant-skeleton-content .ant-skeleton-paragraph > li + li {  
177 - margin-top: 0.26667rem;  
178 -}  
179 -.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {  
180 - width: 61%;  
181 -}  
182 -.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar,  
183 -.ant-skeleton.ant-skeleton-active .ant-skeleton-button,  
184 -.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li,  
185 -.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,  
186 -.ant-skeleton.ant-skeleton-active .ant-skeleton-image,  
187 -.ant-skeleton.ant-skeleton-active .ant-skeleton-input {  
188 - background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f2f2f2), color-stop(37%, #e6e6e6), color-stop(63%, #f2f2f2));  
189 - background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);  
190 - background-size: 400% 100%;  
191 - animation: ant-skeleton-loading 1.4s ease infinite;  
192 -}  
193 -@keyframes ant-skeleton-loading {  
194 - 0% {  
195 - background-position: 100% 50%;  
196 - }  
197 - 100% {  
198 - background-position: 0 50%;  
199 - }  
200 -}  
201 -@keyframes spinner-anime {  
202 - 100% {  
203 - transform: rotate(360deg);  
204 - }  
205 -}  
206 -.toast-loading {  
207 - position: fixed;  
208 - top: 0;  
209 - left: 0;  
210 - width: 100%;  
211 - height: 100%;  
212 - display: flex;  
213 - justify-content: center;  
214 - align-items: center;  
215 - text-align: center;  
216 - z-index: 9999999999;  
217 -}  
218 -.toast-loading.active {  
219 - display: none;  
220 -}  
221 -.toast-loading.none {  
222 - display: none;  
223 -}  
224 -.toast-loading .loading-cont {  
225 - display: flex;  
226 - flex-direction: column;  
227 - justify-content: center;  
228 - align-items: center;  
229 - padding: 15px 15px;  
230 - border-radius: 7px;  
231 - background-clip: padding-box;  
232 - color: #fff;  
233 - background-color: rgba(58, 58, 58, 0.9);  
234 - font-size: 15px;  
235 - line-height: 20px;  
236 -}  
237 -.toast-loading .loading-cont .svg {  
238 - margin: 0;  
239 - width: 32px;  
240 - height: 32px;  
241 - display: inline-block;  
242 - width: 20px;  
243 - height: 20px;  
244 - background-image: url("../image/loading.svg");  
245 - background-position: 50%;  
246 - background-size: 100%;  
247 - background-repeat: no-repeat;  
248 - animation: spinner-anime 1s linear infinite;  
249 -}  
250 -.toast-loading .loading-cont .svg-text {  
251 - display: inline-block;  
252 - position: relative;  
253 - top: 4px;  
254 -}  
255 -.skeleton-loading {  
256 - display: block;  
257 - padding: 0.26666667rem 0.48rem 0;  
258 - height: 100%;  
259 - overflow: hidden;  
260 -}  
261 -.skeleton-loading.active {  
262 - position: fixed;  
263 - left: 0;  
264 - top: 0;  
265 - width: 100%;  
266 - opacity: 0;  
267 - visibility: hidden;  
268 - z-index: -1;  
269 -}  
270 -.skeleton-loading.none {  
271 - display: none;  
272 -}  
273 -.error-block {  
274 - display: none;  
275 - box-sizing: border-box;  
276 - text-align: center;  
277 - padding-top: 3.76rem;  
278 -}  
279 -.error-block.active {  
280 - display: block;  
281 -}  
282 -.error-block .error-block-image {  
283 - text-align: center;  
284 -}  
285 -.error-block .error-block-image img {  
286 - width: 4.26666667rem;  
287 - height: 2.98666667rem;  
288 -}  
289 -.error-block .error-block-retry-btn,  
290 -.error-block .error-block-reload-btn {  
291 - width: 2.13333333rem;  
292 - height: 0.74666667rem;  
293 - border-radius: 0.08rem;  
294 - border: 0.02666667rem solid #EDEDED;  
295 - margin: 0 auto;  
296 - margin-top: 0.42666667rem;  
297 - font-size: 0.32rem;  
298 - font-weight: bold;  
299 - line-height: 0.74666667rem;  
300 - text-align: center;  
301 - color: #666666;  
302 -}  
303 -.error-block .error-block-reload-btn {  
304 - width: 3.73333333rem;  
305 -}  
306 -.error-block .error-block-description-title {  
307 - text-align: center;  
308 - margin: 0 auto;  
309 - font-size: 14px;  
310 - color: rgba(51, 51, 51, 0.5);  
311 -}  
312 -.ellipsis1 {  
313 - overflow: hidden;  
314 - text-overflow: ellipsis;  
315 - display: -webkit-box;  
316 - -webkit-line-clamp: 1;  
317 - line-clamp: 1;  
318 - -webkit-box-orient: vertical;  
319 - word-wrap: break-word;  
320 -}  
321 -#app.fixed {  
322 - position: fixed;  
323 - left: 0;  
324 - top: 0;  
325 - z-index: -1;  
326 - visibility: hidden;  
327 - opacity: 0;  
328 - width: 100%;  
329 -}  
330 -.gx-mobile.fixed {  
331 - position: fixed;  
332 - left: 0;  
333 - top: 0;  
334 - z-index: -1;  
335 - visibility: hidden;  
336 - opacity: 0;  
337 - width: 100%;  
338 - height: 17.57333333rem;  
339 -}  
340 -.refresh-content {  
341 - height: 100%;  
342 -}  
343 -.refresh-content .van-pull-refresh {  
344 - height: 100%;  
345 -}  
346 -html {  
347 - transition: color 300ms, background-color 300ms;  
348 -}  
349 -body .van-image__error,  
350 -body .van-image__loading {  
351 - display: block;  
352 -}  
353 -body .prism-fullscreen {  
354 - z-index: 999999 !important;  
355 -}  
356 -body .prism-player .prism-animation,  
357 -body .prism-player .prism-detect-info,  
358 -body .prism-player .prism-button,  
359 -body .prism-player .prism-setting-quality,  
360 -body .prism-player .prism-setting-audio,  
361 -body .prism-player .prism-setting-cc,  
362 -body .prism-player .prism-cc-btn,  
363 -body .prism-player .prism-volume,  
364 -body .prism-player .prism-tooltip,  
365 -body .prism-player .prism-setting-btn,  
366 -body .prism-player .prism-button-retry,  
367 -body .prism-player .dplayer-thumb,  
368 -body .prism-player .prism-progress-played,  
369 -body .prism-player .prism-progress-cursor,  
370 -body .prism-player .prism-progress-hover,  
371 -body .prism-player .prism-big-play-btn,  
372 -body .prism-player .prism-controlbar,  
373 -body .prism-player .prism-info-display,  
374 -body .prism-player .prism-text-overlay,  
375 -body .prism-player .prism-error-operation,  
376 -body .prism-player .prism-ErrorMessage,  
377 -body .prism-player .prism-cover,  
378 -body .prism-player .prism-loading {  
379 - display: none !important;  
380 -}  
381 -#__vconsole {  
382 - z-index: 10000000;  
383 -}  
384 -#__vconsole .vc-switch {  
385 - z-index: 10000000;  
386 -}  
387 -#__vconsole .vc-panel {  
388 - min-height: unset !important;  
389 - height: 500px !important;  
390 -}  
391 -#app {  
392 - overflow-y: hidden;  
393 - overflow-x: hidden;  
394 -}  
395 -#app .van-loading {  
396 - text-align: center;  
397 -}  
398 -html[dark-mode] body {  
399 - background-color: #161827;  
400 -}  
401 -html[dark-mode] body .gx-mobile .vote {  
402 - background-color: #1D1F2F;  
403 -}  
404 -html[dark-mode] body .gx-mobile .suggested .suggested-title {  
405 - color: #d9d9d9ff;  
406 -}  
407 -html[dark-mode] body .gx-mobile .suggested .suggested-item_title {  
408 - color: #d9d9d9ff !important;  
409 -}  
410 -html[dark-mode] body .gx-mobile .suggested .subtitle {  
411 - color: #d9d9d9ff !important;  
412 -}  
413 -html[dark-mode] body .gx-mobile .suggested .left span {  
414 - color: #ffffff5c !important;  
415 -}  
416 -html[dark-mode] body .gx-mobile .title {  
417 - color: #d9d9d9ff;  
418 -}  
419 -html[dark-mode] body .gx-mobile .ptxt {  
420 - color: #ffffffab;  
421 -}  
422 -html[dark-mode] body .gx-mobile .btsIem {  
423 - background-color: #161828;  
424 -}  
425 -html[dark-mode] body .gx-mobile .stx {  
426 - color: #ffffffab !important;  
427 -}  
428 -html[dark-mode] body .gx-mobile .jd .s1 {  
429 - background: linear-gradient(270deg, #e5111eff 0%, #ffb5b9ff 100%);  
430 -}  
431 -html[dark-mode] body .gx-mobile .jd .s2 {  
432 - background-color: #393A47 !important;  
433 -}  
434 -html[dark-mode] body .gx-mobile .open {  
435 - background: linear-gradient(179.9deg, #1d1f2e00 0%, #1d1f2eff 48%, #1d1f2eff 99%);  
436 -}  
437 -html[dark-mode] body .gx-mobile .open img {  
438 - width: 0.42667rem;  
439 - height: 0.42667rem;  
440 -}  
441 -html[dark-mode] body .gx-mobile .time {  
442 - color: rgba(255, 255, 255, 0.4);  
443 -}  
444 -html[dark-mode] body .gx-mobile #newsContent {  
445 - background-color: #12131e !important;  
446 - color: #ccc;  
447 -}  
448 -html[dark-mode] body .gx-mobile #newsContent h1,  
449 -html[dark-mode] body .gx-mobile #newsContent h2,  
450 -html[dark-mode] body .gx-mobile #newsContent div,  
451 -html[dark-mode] body .gx-mobile #newsContent h3,  
452 -html[dark-mode] body .gx-mobile #newsContent p,  
453 -html[dark-mode] body .gx-mobile #newsContent h4,  
454 -html[dark-mode] body .gx-mobile #newsContent h5,  
455 -html[dark-mode] body .gx-mobile #newsContent h6,  
456 -html[dark-mode] body .gx-mobile #newsContent ul,  
457 -html[dark-mode] body .gx-mobile #newsContent li,  
458 -html[dark-mode] body .gx-mobile #newsContent ol {  
459 - background-color: #12131e !important;  
460 - color: #ccc !important;  
461 -}  
462 -html[dark-mode] body .gx-mobile #newsContent .preview-video div,  
463 -html[dark-mode] body .gx-mobile #newsContent .preview-video p {  
464 - background-color: rgba(255, 255, 255, 0) !important;  
465 -}  
466 -html[dark-mode] body .footer {  
467 - background-color: #12131e;  
468 - border-top: #252630;  
469 -}  
470 -.anticon-spin {  
471 - animation: loadingCircle 1s infinite linear;  
472 -}  
473 -.prism-player {  
474 - position: relative;  
475 -}  
476 -.prism-player video {  
477 - position: absolute;  
478 - left: 50%;  
479 - top: 50%;  
480 - transform: translate(-50%, -50%);  
481 - -ms-transform: translate(-50%, -50%);  
482 - -moz-transform: translate(-50%, -50%);  
483 - -webkit-transform: translate(-50%, -50%);  
484 - -o-transform: translate(-50%, -50%);  
485 - -ms-transform-origin: center;  
486 - -moz-transform-origin: center;  
487 - -webkit-transform-origin: center;  
488 - -o-transform-origin: center;  
489 -}  
490 -.prism-player .loading-center,  
491 -.prism-player .prism-ErrorMessage,  
492 -.prism-player .prism-thumbnail,  
493 -.prism-player .prism-cc-selector,  
494 -.prism-player .prism-speed-selector,  
495 -.prism-player .prism-quality-selector,  
496 -.prism-player .prism-audio-selector,  
497 -.prism-player .prism-setting-list,  
498 -.prism-player .prism-volume-control,  
499 -.prism-player .prism-auto-stream-selector,  
500 -.prism-player .prism-marker-text {  
501 - display: none !important;  
502 -}  
503 -@keyframes fadeIn {  
504 - 0% {  
505 - opacity: 0;  
506 - }  
507 - 100% {  
508 - opacity: 1;  
509 - }  
510 -}  
511 -@keyframes loadingCircle {  
512 - 100% {  
513 - -webkit-transform: rotate(360deg);  
514 - transform: rotate(360deg);  
515 - }  
516 -}  
517 -@-webkit-keyframes loadingCircle {  
518 - 100% {  
519 - -webkit-transform: rotate(360deg);  
520 - transform: rotate(360deg);  
521 - }  
522 -}  
523 -@keyframes loadingCircle {  
524 - 100% {  
525 - -webkit-transform: rotate(360deg);  
526 - transform: rotate(360deg);  
527 - }  
528 -}  
529 -/*# sourceMappingURL=global.css.map */  
1 -{"version":3,"sources":["global.less"],"names":[],"mappings":"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","file":"global.css"}  
1 -/****reset****/  
2 -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 {  
3 - box-sizing: border-box;  
4 - margin: 0;  
5 - padding: 0;  
6 - font-size: 100%;  
7 - vertical-align: baseline;  
8 - border: 0;  
9 - outline: 0;  
10 -}  
11 -  
12 -li {  
13 - list-style: none;  
14 -}  
15 -  
16 -h1, h2, h3, h4, h5, h6 {  
17 - font-size: 100%;  
18 -}  
19 -  
20 -table {  
21 - border-collapse: collapse;  
22 - border-spacing: 0;  
23 - width: 100%;  
24 -}  
25 -  
26 -a, input, select, textarea, area, button {  
27 - outline: none;  
28 - font-family: inherit;  
29 - font-size: inherit;  
30 - border: none;  
31 - background: none;  
32 - color: inherit;  
33 -}  
34 -  
35 -a {  
36 - text-decoration: none;  
37 -}  
38 -  
39 -a:hover {  
40 - text-decoration: none;  
41 -}  
42 -  
43 -textarea {  
44 - overflow: auto;  
45 - resize: none;  
46 -}  
47 -  
48 -input[type="button"], input[type="submit"], input[type="reset"] {  
49 - cursor: pointer;  
50 - -webkit-appearance: none;  
51 -}  
52 -  
53 -html, body {  
54 - overflow-x: hidden;  
55 - width: 100%;  
56 - height: 100%;  
57 - background: #ffffff;  
58 -}  
59 -  
60 -* {  
61 - -webkit-overflow-scrolling: touch;  
62 -}  
63 -  
64 -html {  
65 - -webkit-tap-highlight-color: transparent;  
66 -}  
67 -  
68 -body {  
69 - text-align: left;  
70 -  
71 - #app {  
72 - height: 100%;  
73 -  
74 - &::-webkit-scrollbar {  
75 - display: none;  
76 - }  
77 -  
78 - &::-webkit-scrollbar-thumb {  
79 - display: none;  
80 - }  
81 -  
82 - &::-webkit-scrollbar-track {  
83 - display: none;  
84 - }  
85 - }  
86 -}  
87 -  
88 -.fl {  
89 - float: left;  
90 -}  
91 -  
92 -.fr {  
93 - float: right;  
94 -}  
95 -  
96 -.clearfix {  
97 - zoom: 1;  
98 -  
99 - &::before,  
100 - &::after {  
101 - display: table;  
102 - content: " ";  
103 - }  
104 -  
105 - &::after {  
106 - clear: both;  
107 - height: 0;  
108 - font-size: 0;  
109 - visibility: hidden;  
110 - }  
111 -}  
112 -  
113 -.ant-skeleton {  
114 - display: table;  
115 - width: 100%;  
116 -}  
117 -  
118 -.ant-skeleton + .ant-skeleton {  
119 - margin-top: 0.64rem;  
120 -}  
121 -  
122 -.ant-skeleton.active {  
123 - display: none;  
124 -}  
125 -  
126 -.ant-skeleton-content {  
127 - display: table-cell;  
128 - width: 100%;  
129 - margin-bottom: 0.64rem;  
130 - vertical-align: top;  
131 -}  
132 -  
133 -.ant-skeleton-content .ant-skeleton-title {  
134 - width: 100%;  
135 - height: 0.53333rem;  
136 - margin-top: 0.26667rem;  
137 - background: #f2f2f2;  
138 -}  
139 -  
140 -.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph {  
141 - margin-top: 0.64rem;  
142 -}  
143 -  
144 -.ant-skeleton-content .ant-skeleton-paragraph {  
145 - padding: 0;  
146 -}  
147 -  
148 -.ant-skeleton-content .ant-skeleton-paragraph > li {  
149 - width: 23.3%;  
150 - height: 0.32rem;  
151 - list-style: none;  
152 - background: #f2f2f2;  
153 -}  
154 -  
155 -.ant-skeleton-content .ant-skeleton-paragraph > li + li {  
156 - margin-top: 0.26667rem;  
157 -}  
158 -  
159 -.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) {  
160 - width: 61%;  
161 -}  
162 -  
163 -.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 {  
164 - background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f2f2f2), color-stop(37%, #e6e6e6), color-stop(63%, #f2f2f2));  
165 - background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);  
166 - background-size: 400% 100%;  
167 - animation: ant-skeleton-loading 1.4s ease infinite;  
168 -}  
169 -  
170 -@keyframes ant-skeleton-loading {  
171 - 0% {  
172 - background-position: 100% 50%;  
173 - }  
174 - 100% {  
175 - background-position: 0 50%;  
176 - }  
177 -}  
178 -  
179 -@keyframes spinner-anime {  
180 - 100% {  
181 - transform: rotate(360deg);  
182 - }  
183 -}  
184 -  
185 -.toast-loading {  
186 - position: fixed;  
187 - top: 0;  
188 - left: 0;  
189 - width: 100%;  
190 - height: 100%;  
191 - display: flex;  
192 - justify-content: center;  
193 - align-items: center;  
194 - text-align: center;  
195 - z-index: 9999999999;  
196 -  
197 - &.active {  
198 - display: none;  
199 - }  
200 -  
201 - &.none {  
202 - display: none;  
203 - }  
204 -  
205 - .loading-cont {  
206 - display: flex;  
207 - flex-direction: column;  
208 - justify-content: center;  
209 - align-items: center;  
210 - padding: 15px 15px;  
211 - border-radius: 7px;  
212 - background-clip: padding-box;  
213 - color: #fff;  
214 - background-color: rgba(58, 58, 58, 0.9);  
215 - font-size: 15px;  
216 - line-height: 20px;  
217 -  
218 - .svg {  
219 - margin: 0;  
220 - width: 32px;  
221 - height: 32px;  
222 - display: inline-block;  
223 - width: 20px;  
224 - height: 20px;  
225 - background-image: url("../image/loading.svg");  
226 - background-position: 50%;  
227 - background-size: 100%;  
228 - background-repeat: no-repeat;  
229 - animation: spinner-anime 1s linear infinite;  
230 - }  
231 -  
232 - .svg-text {  
233 - display: inline-block;  
234 - position: relative;  
235 - top: 4px;  
236 - }  
237 - }  
238 -}  
239 -  
240 -.skeleton-loading {  
241 - display: block;  
242 - padding: (10 / 37.5rem) (18 / 37.5rem) 0;  
243 - height: 100%;  
244 - overflow: hidden;  
245 -  
246 - &.active {  
247 - position: fixed;  
248 - left: 0;  
249 - top: 0;  
250 - width: 100%;  
251 - opacity: 0;  
252 - visibility: hidden;  
253 - z-index: -1;  
254 - }  
255 -  
256 - &.none {  
257 - display: none;  
258 - }  
259 -}  
260 -  
261 -.error-block {  
262 - display: none;  
263 - box-sizing: border-box;  
264 - text-align: center;  
265 - padding-top: (141 / 37.5rem);  
266 -  
267 - &.active {  
268 - display: block;  
269 - }  
270 -  
271 - .error-block-image {  
272 - text-align: center;  
273 -  
274 - img {  
275 - width: (160 / 37.5rem);  
276 - height: (112 / 37.5rem);  
277 - }  
278 - }  
279 -  
280 - .error-block-retry-btn, .error-block-reload-btn {  
281 - width: (80 / 37.5rem);  
282 - height: (28 / 37.5rem);  
283 - border-radius: (3 / 37.5rem);  
284 - border: (1 / 37.5rem) solid #EDEDED;  
285 - margin: 0 auto;  
286 - margin-top: (16 / 37.5rem);  
287 -  
288 - font-size: (12 / 37.5rem);  
289 - font-weight: bold;  
290 - line-height: (28 / 37.5rem);  
291 - text-align: center;  
292 - color: #666666;  
293 - }  
294 -  
295 - .error-block-reload-btn {  
296 - width: (140 / 37.5rem);  
297 - }  
298 -  
299 - .error-block-description {  
300 - }  
301 -  
302 - .error-block-description-title {  
303 - text-align: center;  
304 - margin: 0 auto;  
305 - font-size: 14px;  
306 - color: rgba(51, 51, 51, 0.5);  
307 - }  
308 -  
309 - .error-block-description-subtitle {  
310 - }  
311 -}  
312 -  
313 -.ellipsis1 {  
314 - overflow: hidden;  
315 - text-overflow: ellipsis;  
316 - display: -webkit-box;  
317 - -webkit-line-clamp: 1;  
318 - line-clamp: 1;  
319 - -webkit-box-orient: vertical;  
320 - word-wrap: break-word;  
321 -}  
322 -  
323 -#app {  
324 - &.fixed {  
325 - position: fixed;  
326 - left: 0;  
327 - top: 0;  
328 - z-index: -1;  
329 - visibility: hidden;  
330 - opacity: 0;  
331 - width: 100%;  
332 - }  
333 -}  
334 -  
335 -.gx-mobile {  
336 - &.fixed {  
337 - position: fixed;  
338 - left: 0;  
339 - top: 0;  
340 - z-index: -1;  
341 - visibility: hidden;  
342 - opacity: 0;  
343 - width: 100%;  
344 - height: (659 / 37.5rem);  
345 - }  
346 -  
347 - &.active {  
348 - //animation-name: fadeIn;  
349 - //animation-duration: .2s;  
350 - }  
351 -}  
352 -  
353 -.refresh-content {  
354 - height: 100%;  
355 -  
356 - .van-pull-refresh {  
357 - height: 100%;  
358 - }  
359 -}  
360 -  
361 -html {  
362 - transition: color 300ms, background-color 300ms;  
363 -}  
364 -  
365 -body {  
366 -  
367 - .van-image__error, .van-image__loading {  
368 - display: block;  
369 - }  
370 -  
371 - .prism-fullscreen {  
372 - z-index: 999999 !important;  
373 - }  
374 -  
375 - .prism-player {  
376 -  
377 - .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 {  
378 - display: none !important;  
379 - }  
380 - }  
381 -}  
382 -  
383 -#__vconsole {  
384 - .vc-switch {  
385 - z-index: 10000000;  
386 - }  
387 -  
388 - .vc-panel {  
389 - min-height: unset !important;  
390 - height: 500px !important;  
391 - }  
392 -  
393 - z-index: 10000000;  
394 -}  
395 -  
396 -#app {  
397 - overflow-y: hidden;  
398 - overflow-x: hidden;  
399 -  
400 - .van-loading {  
401 - text-align: center;  
402 - }  
403 -}  
404 -  
405 -html[dark-mode] {  
406 - body {  
407 - // background-color: #12131e;  
408 - background-color: #161827;  
409 -  
410 - .gx-mobile .vote {  
411 - background-color: #1D1F2F;  
412 - }  
413 -  
414 - .gx-mobile .suggested {  
415 - // background-color: #1D1F2F;  
416 - .suggested-title {  
417 - color: #d9d9d9ff;  
418 - }  
419 -  
420 - .suggested-item_title {  
421 - color: #d9d9d9ff !important;  
422 - }  
423 -  
424 - .subtitle {  
425 - color: #d9d9d9ff !important;  
426 - }  
427 -  
428 - .left {  
429 - span {  
430 - color: #ffffff5c !important;  
431 - }  
432 - }  
433 - }  
434 -  
435 - .gx-mobile .title {  
436 - color: #d9d9d9ff;  
437 - }  
438 -  
439 - .gx-mobile .ptxt {  
440 - color: #ffffffab;  
441 - }  
442 -  
443 - .gx-mobile .btsIem {  
444 - background-color: #161828;  
445 - }  
446 -  
447 - .gx-mobile .stx {  
448 - color: #ffffffab !important;  
449 - }  
450 -  
451 - .gx-mobile .jd {  
452 - .s1 {  
453 - background: linear-gradient(270deg, #e5111eff 0%, #ffb5b9ff 100%);  
454 - }  
455 -  
456 - .s2 {  
457 - background-color: #393A47 !important;  
458 - }  
459 - }  
460 -  
461 - .gx-mobile .open {  
462 - background: linear-gradient(179.9deg, #1d1f2e00 0%, #1d1f2eff 48%, #1d1f2eff 99%);  
463 -  
464 - img {  
465 - width: 0.42667rem;  
466 - height: 0.42667rem;  
467 - }  
468 - }  
469 -  
470 - .gx-mobile .time {  
471 - // color: #7a7a7a;  
472 - color: rgba(255, 255, 255, 0.4);  
473 - }  
474 -  
475 - .gx-mobile #newsContent {  
476 - background-color: #12131e !important;  
477 - color: #ccc;  
478 -  
479 - h1, h2, div, h3, p, h4, h5, h6, ul, li, ol {  
480 - background-color: #12131e !important;  
481 - color: #ccc !important;  
482 - }  
483 -  
484 - .preview-video {  
485 - div, p {  
486 - background-color: rgba(255, 255, 255, 0) !important;  
487 - }  
488 - }  
489 -  
490 - }  
491 -  
492 - .footer {  
493 - background-color: #12131e;  
494 - border-top: #252630;  
495 - }  
496 - }  
497 -}  
498 -  
499 -.anticon-spin {  
500 - animation: loadingCircle 1s infinite linear;  
501 -}  
502 -  
503 -.prism-player {  
504 - position: relative;  
505 -  
506 - video {  
507 - position: absolute;  
508 - left: 50%;  
509 - top: 50%;  
510 - transform: translate(-50%,-50%);  
511 - -ms-transform: translate(-50%,-50%);  
512 - -moz-transform: translate(-50%,-50%);  
513 - -webkit-transform: translate(-50%,-50%);  
514 - -o-transform: translate(-50%,-50%);  
515 - -ms-transform-origin: center;  
516 - -moz-transform-origin: center;  
517 - -webkit-transform-origin: center;  
518 - -o-transform-origin: center;  
519 - }  
520 -  
521 - .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 {  
522 - display: none !important;  
523 - }  
524 -}  
525 -  
526 -@keyframes fadeIn {  
527 - 0% {  
528 - opacity: 0;  
529 - }  
530 -  
531 - 100% {  
532 - opacity: 1;  
533 - }  
534 -}  
535 -  
536 -@keyframes loadingCircle {  
537 - 100% {  
538 - -webkit-transform: rotate(360deg);  
539 - transform: rotate(360deg);  
540 - }  
541 -}  
542 -  
543 -@-webkit-keyframes loadingCircle {  
544 - 100% {  
545 - -webkit-transform: rotate(360deg);  
546 - transform: rotate(360deg);  
547 - }  
548 -}  
549 -  
550 -@keyframes loadingCircle {  
551 - 100% {  
552 - -webkit-transform: rotate(360deg);  
553 - transform: rotate(360deg);  
554 - }  
555 -}  
1 -/*# sourceMappingURL=./index.css.map */  
2 -#hidden {  
3 - position: fixed;  
4 - left: 0;  
5 - top: 0;  
6 - z-index: -1;  
7 - visibility: hidden;  
8 - opacity: 0;  
9 -}  
10 -#hiddenArticle {  
11 - position: fixed;  
12 - left: 0;  
13 - top: 0;  
14 - z-index: -1;  
15 - width: 100%;  
16 - visibility: hidden;  
17 - opacity: 0;  
18 -}  
19 -.app-skeleton-loading {  
20 - padding: 0.26666667rem 0.48rem;  
21 -}  
22 -.app-skeleton-loading.none {  
23 - display: none;  
24 -}  
25 -.gx-mobile {  
26 - padding: 0.26666667rem 0.48rem 0;  
27 -}  
28 -.gx-mobile.rmrb-article #newsContent p,  
29 -.gx-mobile.rmrb-article #newsContent li,  
30 -.gx-mobile.rmrb-article #newsContent h1,  
31 -.gx-mobile.rmrb-article #newsContent h2,  
32 -.gx-mobile.rmrb-article #newsContent h3,  
33 -.gx-mobile.rmrb-article #newsContent h4,  
34 -.gx-mobile.rmrb-article #newsContent h5,  
35 -.gx-mobile.rmrb-article #newsContent h6,  
36 -.gx-mobile.rmrb-article #newsContent a,  
37 -.gx-mobile.rmrb-article #newsContent section,  
38 -.gx-mobile.rmrb-article #newsContent div,  
39 -.gx-mobile.rmrb-article #newsContent span,  
40 -.gx-mobile.rmrb-article #newsContent ol,  
41 -.gx-mobile.rmrb-article #newsContent mark,  
42 -.gx-mobile.rmrb-article #newsContent ul {  
43 - text-indent: 0 !important;  
44 -}  
45 -.gx-mobile .short-title {  
46 - color: #666666ff;  
47 - font-size: 0.45333333rem;  
48 - line-height: 0.69333333rem;  
49 - margin-bottom: 0.37333333rem;  
50 - font-weight: 400;  
51 - word-break: break-all;  
52 - white-space: pre-wrap;  
53 -}  
54 -.gx-mobile .short-title .global-line {  
55 - position: relative;  
56 - top: -0.12rem;  
57 - width: 0.4rem;  
58 - background: #666666ff;  
59 -}  
60 -.gx-mobile .title {  
61 - font-size: 0.6941756rem;  
62 - line-height: 1.04rem;  
63 - font-weight: bold;  
64 - color: #222;  
65 - margin-bottom: 0.21333333rem;  
66 - word-break: break-all;  
67 - white-space: pre-wrap;  
68 -}  
69 -.gx-mobile .title .global-line {  
70 - position: relative;  
71 - top: -0.22666667rem;  
72 - width: 0.66666667rem;  
73 - height: 0.05333333rem;  
74 - background: #222;  
75 -}  
76 -.gx-mobile .global-line {  
77 - display: inline-block;  
78 - height: 0.03333333rem;  
79 -}  
80 -.gx-mobile .down-title-box {  
81 - display: flex;  
82 - align-items: center;  
83 - margin-top: 0.10666667rem;  
84 - margin-bottom: 0.21333333rem;  
85 -}  
86 -.gx-mobile .down-title-box .down-title {  
87 - display: inline-block;  
88 - color: #999999ff;  
89 - font-size: 0.45333333rem;  
90 - font-weight: 400;  
91 - line-height: 0.69333333rem;  
92 - word-break: break-all;  
93 - white-space: pre-wrap;  
94 -}  
95 -.gx-mobile .down-title-box .down-title .global-line {  
96 - position: relative;  
97 - top: -0.13333333rem;  
98 - width: 0.42666667rem;  
99 - background: #999999ff;  
100 -}  
101 -.gx-mobile .time.pageView {  
102 - font-size: 0.37333333rem;  
103 - line-height: 0.53333333rem;  
104 - letter-spacing: 0;  
105 - color: #b0b0b0ff;  
106 -}  
107 -.gx-mobile .time.pageView::before,  
108 -.gx-mobile .time.pageView::after {  
109 - display: table;  
110 - content: '';  
111 -}  
112 -.gx-mobile .time.pageView::after {  
113 - height: 0;  
114 - clear: both;  
115 - font-size: 0;  
116 - visibility: hidden;  
117 -}  
118 -.gx-mobile .time.pageView.hidden-extra {  
119 - display: none !important;  
120 - margin-top: 0 !important;  
121 -}  
122 -.gx-mobile .time.pageView .article-source {  
123 - float: left;  
124 - letter-spacing: 0;  
125 - display: inline-flex;  
126 -}  
127 -.gx-mobile .time.pageView .browseCntStr {  
128 - float: left;  
129 - display: inline-block;  
130 - height: 0.53333333rem;  
131 -}  
132 -.gx-mobile .time.pageView .author-item {  
133 - float: left;  
134 - display: inline-flex;  
135 - letter-spacing: 0;  
136 - margin-right: 0.21333333rem;  
137 -}  
138 -.gx-mobile .time.pageView > .article-source-icon {  
139 - float: left;  
140 - display: flex;  
141 - width: 0.08rem;  
142 - height: 0.37333333rem;  
143 - margin-top: 0.08533333rem;  
144 - margin-right: 0.10666667rem;  
145 - background-image: url('../image/sourceIocnNew.svg');  
146 - background-size: 100%;  
147 - background-repeat: no-repeat;  
148 -}  
149 -.gx-mobile .new-intro-box {  
150 - position: relative;  
151 - background: #F5F5F5;  
152 - padding: 0.32rem;  
153 - color: #666666ff;  
154 - font-size: 0.37333333rem;  
155 - line-height: 0.53333333rem;  
156 - margin-top: 0.56rem;  
157 - border-radius: 0.10666667rem;  
158 - word-break: break-all;  
159 - white-space: pre-wrap;  
160 -}  
161 -.gx-mobile .new-intro-box .global-line {  
162 - position: relative;  
163 - top: -0.12rem;  
164 - width: 0.37333333rem;  
165 - background: #666666ff;  
166 -}  
167 -.gx-mobile .new-intro-box .yh-icon {  
168 - width: 0.34667rem;  
169 - height: 0.29333rem;  
170 - position: absolute;  
171 - left: 0.32rem;  
172 - top: -0.13333rem;  
173 - background-image: url("../image/yh-icon.svg");  
174 - background-size: 100% 100%;  
175 -}  
176 -.gx-mobile .head-link-block {  
177 - margin-top: 0.42666667rem;  
178 - padding: 0.32rem;  
179 - border-radius: 0.10666667rem;  
180 - background: #FFFFFF;  
181 - border: 0.02666667rem solid rgba(0, 0, 0, 0.05);  
182 - box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);  
183 - font-size: 0.37333333rem;  
184 - line-height: 0.53333333rem;  
185 - color: #333333;  
186 - word-break: break-all;  
187 -}  
188 -.gx-mobile .head-link-block img {  
189 - position: relative;  
190 - top: 0.04rem;  
191 - width: 0.37333333rem;  
192 - height: 0.37333333rem;  
193 - margin-right: 0.05333333rem;  
194 -}  
195 -.gx-mobile .head-link-block .head-link-block-str {  
196 - margin-left: 0.08rem;  
197 -}  
198 -.gx-mobile .head-link-block .head-link-block-str .global-line {  
199 - position: relative;  
200 - top: -0.12rem;  
201 - width: 0.37333333rem;  
202 - background: #333333;  
203 -}  
204 -.gx-mobile .rmcard {  
205 - position: relative;  
206 - height: 0.98666667rem;  
207 - margin-top: 0.42666667rem;  
208 - margin-bottom: 0.64rem;  
209 -}  
210 -.gx-mobile .rmcard .rmcard_v {  
211 - position: absolute;  
212 - left: 0.58666667rem;  
213 - top: 0.58666667rem;  
214 - width: 14px;  
215 - height: 14px;  
216 - border-radius: 50%;  
217 - background: #F29900;  
218 - border: 0.02666667rem solid #FFFFFF;  
219 -}  
220 -.gx-mobile .rmcard .rmcard-image {  
221 - display: block;  
222 - float: left;  
223 - text-align: center;  
224 - margin-right: 0.21333333rem;  
225 - width: 0.96rem;  
226 - height: 0.96rem;  
227 - border-radius: 50%;  
228 - margin-top: 0.02666667rem;  
229 - border: 0.5px solid rgba(0, 0, 0, 0.1);  
230 -}  
231 -.gx-mobile .rmcard .rmcard-image.default {  
232 - display: flex;  
233 - align-items: center;  
234 - justify-content: center;  
235 - background: #fff;  
236 -}  
237 -.gx-mobile .rmcard .rmcard-image.default img {  
238 - position: relative;  
239 - left: -0.05333333rem;  
240 - width: 49.3%;  
241 -}  
242 -.gx-mobile .rmcard .cdescrip {  
243 - float: left;  
244 - width: calc(100% - 0.96rem - 1.44rem - 0.213rem - 0.213rem);  
245 - height: 0.98666667rem;  
246 -}  
247 -.gx-mobile .rmcard .cdescrip .cdescrip_text {  
248 - width: 100%;  
249 - color: #b0b0b0ff;  
250 - font-size: 0.32rem;  
251 - overflow: hidden;  
252 - text-overflow: ellipsis;  
253 - white-space: nowrap;  
254 -}  
255 -.gx-mobile .rmcard .cdescrip .cdescrip_text:first-child {  
256 - color: #222222ff;  
257 - font-weight: bold;  
258 - font-size: 0.37333333rem;  
259 - line-height: 0.45333333rem;  
260 - height: 0.45333333rem;  
261 - margin-top: 0.02666667rem;  
262 - margin-bottom: 0.08rem;  
263 -}  
264 -.gx-mobile .rmcard .cdescrip .cdescrip_text:first-child.cdescrip_text_top {  
265 - margin-top: 0.26666667rem;  
266 - margin-bottom: 0rem;  
267 -}  
268 -.gx-mobile .rmcard .clook-btn {  
269 - float: right;  
270 -}  
271 -.gx-mobile .rmcard .clook {  
272 - margin-top: 0.17333333rem;  
273 - width: 1.44rem;  
274 - height: 0.64rem;  
275 - border-radius: 0.08rem;  
276 - background-color: #ED2800;  
277 - text-align: center;  
278 - line-height: 0.64rem;  
279 - color: #ffffffff;  
280 - font-size: 0.32rem;  
281 - font-weight: bold;  
282 -}  
283 -.gx-mobile .rmcard .clook img {  
284 - width: 0.32rem;  
285 - height: 0.32rem;  
286 - top: -0.02666667rem;  
287 - position: relative;  
288 - vertical-align: middle;  
289 -}  
290 -.gx-mobile .rmcard .clook img.add-clook-icon {  
291 - top: -0.02666667rem;  
292 -}  
293 -.gx-mobile .rmcard .clook .add-clook-text {  
294 - top: 0.01333333rem;  
295 - position: relative;  
296 -}  
297 -.gx-mobile .rmcard .isclook {  
298 - margin-top: 0.13333333rem;  
299 - width: 1.44rem;  
300 - height: 0.64rem;  
301 - border-radius: 0.08rem;  
302 - font-size: 0.32rem;  
303 - line-height: 0.64rem;  
304 - background-color: #F5F5F5;  
305 - text-align: center;  
306 - color: #CCCCCC;  
307 - font-weight: bold;  
308 -}  
309 -.gx-mobile .rmcard .isclook.loading {  
310 - background-color: #ED2800;  
311 - color: #ffffffff;  
312 -}  
313 -.gx-mobile .rmcard .isclook img {  
314 - width: 0.32rem;  
315 - height: 0.32rem;  
316 - top: -0.02666667rem;  
317 - position: relative;  
318 - vertical-align: middle;  
319 -}  
320 -.gx-mobile .cover {  
321 - width: 100%;  
322 - height: 5.25333rem;  
323 - margin-top: 0.50667rem;  
324 -}  
325 -.gx-mobile .cover .van-image__error {  
326 - display: flex;  
327 -}  
328 -.gx-mobile .sub-title {  
329 - display: flex;  
330 - align-items: center;  
331 - margin-top: 0.26667rem;  
332 - font-size: 0.26667rem;  
333 - font-weight: normal;  
334 - line-height: 0.4rem;  
335 - letter-spacing: 0;  
336 - color: #999999;  
337 -}  
338 -.gx-mobile .sub-title-line {  
339 - margin-right: 0.16rem;  
340 - width: 0.05333rem;  
341 - height: 0.64rem;  
342 - background: #b71d26;  
343 -}  
344 -.gx-mobile .content-block {  
345 - margin-top: 0.42666667rem;  
346 -}  
347 -.gx-mobile #newsContent {  
348 - line-height: 0.816rem;  
349 - font-size: 0.48rem;  
350 - color: #000000;  
351 - text-align: justify;  
352 -}  
353 -.gx-mobile #newsContent table {  
354 - border-collapse: collapse;  
355 - border-spacing: 0;  
356 - width: 100%;  
357 -}  
358 -.gx-mobile #newsContent table:last-child {  
359 - margin-bottom: 0 !important;  
360 -}  
361 -.gx-mobile #newsContent table + .preview-image-block {  
362 - margin-top: 0 !important;  
363 -}  
364 -.gx-mobile #newsContent li {  
365 - list-style: unset;  
366 - margin-left: 0.42666667rem;  
367 -}  
368 -.gx-mobile #newsContent li:last-child {  
369 - margin-bottom: 0 !important;  
370 -}  
371 -.gx-mobile #newsContent li + .preview-image-block {  
372 - margin-top: 0 !important;  
373 -}  
374 -.gx-mobile #newsContent ul:last-child {  
375 - margin-bottom: 0 !important;  
376 -}  
377 -.gx-mobile #newsContent ul + .preview-image-block {  
378 - margin-top: 0 !important;  
379 -}  
380 -.gx-mobile #newsContent .global-line {  
381 - position: relative;  
382 - top: -0.13333333rem;  
383 - width: 0.48rem;  
384 - height: 0.032rem;  
385 - background: #000000;  
386 -}  
387 -.gx-mobile #newsContent mark {  
388 - background: none !important;  
389 -}  
390 -.gx-mobile #newsContent a {  
391 - color: #50749A !important;  
392 - word-break: break-all;  
393 -}  
394 -.gx-mobile #newsContent a span {  
395 - color: #50749A !important;  
396 - word-break: break-all;  
397 -}  
398 -.gx-mobile #newsContent a:last-child {  
399 - margin-bottom: 0 !important;  
400 -}  
401 -.gx-mobile #newsContent a + .preview-image-block {  
402 - margin-top: 0 !important;  
403 -}  
404 -.gx-mobile #newsContent br,  
405 -.gx-mobile #newsContent span.bjh-br {  
406 - display: block;  
407 -}  
408 -.gx-mobile #newsContent P {  
409 - max-width: 100%;  
410 - padding: 0 !important;  
411 - margin-bottom: 0.42666667rem;  
412 - box-sizing: border-box;  
413 - word-break: break-all;  
414 -}  
415 -.gx-mobile #newsContent P:empty {  
416 - display: none !important;  
417 -}  
418 -.gx-mobile #newsContent P:last-child {  
419 - margin-bottom: 0 !important;  
420 -}  
421 -.gx-mobile #newsContent P + .preview-image-block {  
422 - margin-top: 0 !important;  
423 -}  
424 -.gx-mobile #newsContent > div > P:last-child {  
425 - margin-bottom: 0 !important;  
426 -}  
427 -.gx-mobile #newsContent > div > P + .preview-image-block {  
428 - margin-top: 0 !important;  
429 -}  
430 -.gx-mobile #newsContent > h1 {  
431 - max-width: 100%;  
432 - padding: 0 !important;  
433 - margin-bottom: 0.42666667rem;  
434 -}  
435 -.gx-mobile #newsContent > h1:last-child {  
436 - margin-bottom: 0 !important;  
437 -}  
438 -.gx-mobile #newsContent > h1 + .preview-image-block {  
439 - margin-top: 0 !important;  
440 -}  
441 -.gx-mobile #newsContent > h2 {  
442 - max-width: 100%;  
443 - padding: 0 !important;  
444 - margin-bottom: 0.42666667rem;  
445 -}  
446 -.gx-mobile #newsContent > h2:last-child {  
447 - margin-bottom: 0 !important;  
448 -}  
449 -.gx-mobile #newsContent > h2 + .preview-image-block {  
450 - margin-top: 0 !important;  
451 -}  
452 -.gx-mobile #newsContent > h3 {  
453 - max-width: 100%;  
454 - padding: 0 !important;  
455 - margin-bottom: 0.42666667rem;  
456 -}  
457 -.gx-mobile #newsContent > h3:last-child {  
458 - margin-bottom: 0 !important;  
459 -}  
460 -.gx-mobile #newsContent > h3 + .preview-image-block {  
461 - margin-top: 0 !important;  
462 -}  
463 -.gx-mobile #newsContent > h4 {  
464 - max-width: 100%;  
465 - padding: 0 !important;  
466 - margin-bottom: 0.42666667rem;  
467 -}  
468 -.gx-mobile #newsContent > h4:last-child {  
469 - margin-bottom: 0 !important;  
470 -}  
471 -.gx-mobile #newsContent > h4 + .preview-image-block {  
472 - margin-top: 0 !important;  
473 -}  
474 -.gx-mobile #newsContent > h5 {  
475 - max-width: 100%;  
476 - padding: 0 !important;  
477 - margin-bottom: 0.42666667rem;  
478 -}  
479 -.gx-mobile #newsContent > h5:last-child {  
480 - margin-bottom: 0 !important;  
481 -}  
482 -.gx-mobile #newsContent > h5 + .preview-image-block {  
483 - margin-top: 0 !important;  
484 -}  
485 -.gx-mobile #newsContent > h6 {  
486 - max-width: 100%;  
487 - padding: 0 !important;  
488 - margin-bottom: 0.42666667rem;  
489 -}  
490 -.gx-mobile #newsContent > h6:last-child {  
491 - margin-bottom: 0 !important;  
492 -}  
493 -.gx-mobile #newsContent > h6 + .preview-image-block {  
494 - margin-top: 0 !important;  
495 -}  
496 -.gx-mobile #newsContent section {  
497 - max-width: 100%;  
498 - padding: 0 !important;  
499 - margin-bottom: 0.42666667rem !important;  
500 -}  
501 -.gx-mobile #newsContent section:empty {  
502 - display: none !important;  
503 -}  
504 -.gx-mobile #newsContent section:last-child {  
505 - margin-bottom: 0 !important;  
506 -}  
507 -.gx-mobile #newsContent section + .preview-image-block {  
508 - margin-top: 0 !important;  
509 -}  
510 -.gx-mobile #newsContent section > section:last-child {  
511 - margin-bottom: 0 !important;  
512 -}  
513 -.gx-mobile #newsContent section > section + .preview-image-block {  
514 - margin-top: 0 !important;  
515 -}  
516 -.gx-mobile #newsContent section + .preview-image-block {  
517 - margin-top: 0 !important;  
518 -}  
519 -.gx-mobile #newsContent > div.replace-br-tag {  
520 - margin-bottom: 0.42666667rem;  
521 -}  
522 -.gx-mobile #newsContent > div.replace-br-tag + .preview-image-block {  
523 - margin-top: 0 !important;  
524 -}  
525 -.gx-mobile #newsContent > div:last-child {  
526 - margin-bottom: 0 !important;  
527 -}  
528 -.gx-mobile #newsContent > div + .preview-image-block {  
529 - margin-top: 0 !important;  
530 -}  
531 -.gx-mobile #newsContent section[data-title='分割线-5'] {  
532 - margin-top: 1.18666667rem !important;  
533 - margin-bottom: 1.18666667rem !important;  
534 -}  
535 -.gx-mobile #newsContent section[data-title='分割线-5'] img {  
536 - display: inline;  
537 -}  
538 -.gx-mobile #newsContent .img-no-margin .preview-image-block.success {  
539 - margin-top: 0 !important;  
540 - margin-bottom: 0 !important;  
541 -}  
542 -.gx-mobile #newsContent section[data-title='基础饼图'] {  
543 - display: none;  
544 -}  
545 -.gx-mobile #newsContent section[data-title='基础折线图'] {  
546 - display: none;  
547 -}  
548 -.gx-mobile #newsContent section[data-title='基础柱状图'] {  
549 - display: none;  
550 -}  
551 -.gx-mobile #newsContent section[data-title='带背景色的柱状图'] {  
552 - display: none;  
553 -}  
554 -.gx-mobile #newsContent section[data-title='基础面积图'] {  
555 - display: none;  
556 -}  
557 -.gx-mobile #newsContent section[data-title='指数回归'] {  
558 - display: none;  
559 -}  
560 -.gx-mobile #newsContent section[data-title='基础饼图'] {  
561 - display: none;  
562 -}  
563 -.gx-mobile #newsContent section[data-title='左图右文'] {  
564 - width: 100% !important;  
565 -}  
566 -.gx-mobile #newsContent section[data-title='左图右文'] > div {  
567 - width: 100% !important;  
568 -}  
569 -.gx-mobile #newsContent section[data-title='左文右图'] {  
570 - width: 100% !important;  
571 -}  
572 -.gx-mobile #newsContent section[data-title='左文右图'] > div {  
573 - width: 100% !important;  
574 -}  
575 -.gx-mobile #newsContent section[data-title='图片点亮'] {  
576 - overflow: hidden;  
577 - border-radius: 0.08rem;  
578 -}  
579 -.gx-mobile #newsContent section[data-title='图片点亮'] > div {  
580 - max-width: 100% !important;  
581 -}  
582 -.gx-mobile #newsContent section[data-title='分割线-3'] {  
583 - margin-top: 0.77333333rem !important;  
584 - margin-bottom: 0.77333333rem !important;  
585 -}  
586 -.gx-mobile #newsContent section[data-title='分割线-4'] {  
587 - margin-top: 0.73333333rem !important;  
588 - margin-bottom: 0.73333333rem !important;  
589 -}  
590 -.gx-mobile #newsContent section[data-title='作者头像框'] img {  
591 - margin: unset;  
592 -}  
593 -.gx-mobile #newsContent .enrmrb-img {  
594 - display: block;  
595 - margin-left: -0.4109589rem;  
596 - margin-right: -0.4109589rem;  
597 -}  
598 -.gx-mobile #newsContent .enrmrb-img-fit img {  
599 - object-fit: contain;  
600 -}  
601 -.gx-mobile #newsContent .enrmrb-img-main {  
602 - display: block;  
603 - margin: 0 auto;  
604 - max-width: 100%;  
605 -}  
606 -.gx-mobile #newsContent .enrmrb-img-main.enrmrb-img-station img {  
607 - width: 100%;  
608 - height: 100%;  
609 - object-fit: cover;  
610 -}  
611 -.gx-mobile #newsContent img {  
612 - max-width: 100% !important;  
613 - display: block;  
614 - margin: 0 auto;  
615 - box-sizing: border-box;  
616 -}  
617 -.gx-mobile #newsContent .linkImageDiv {  
618 - display: none !important;  
619 -}  
620 -.gx-mobile #newsContent .rmrb-caption-img,  
621 -.gx-mobile #newsContent .bjh-image-caption,  
622 -.gx-mobile #newsContent .rmrb-caption-img2 {  
623 - position: relative;  
624 - margin-top: -0.16rem !important;  
625 - line-height: 0.42666667rem !important;  
626 - font-size: 0.33333333rem !important;  
627 - font-weight: normal !important;  
628 - color: #B0B0B0 !important;  
629 - box-sizing: border-box !important;  
630 - margin-bottom: 0.42666667rem !important;  
631 - text-align: center;  
632 -}  
633 -.gx-mobile #newsContent .rmrb-caption-img span,  
634 -.gx-mobile #newsContent .bjh-image-caption span,  
635 -.gx-mobile #newsContent .rmrb-caption-img2 span,  
636 -.gx-mobile #newsContent .rmrb-caption-img p,  
637 -.gx-mobile #newsContent .bjh-image-caption p,  
638 -.gx-mobile #newsContent .rmrb-caption-img2 p,  
639 -.gx-mobile #newsContent .rmrb-caption-img div,  
640 -.gx-mobile #newsContent .bjh-image-caption div,  
641 -.gx-mobile #newsContent .rmrb-caption-img2 div,  
642 -.gx-mobile #newsContent .rmrb-caption-img i,  
643 -.gx-mobile #newsContent .bjh-image-caption i,  
644 -.gx-mobile #newsContent .rmrb-caption-img2 i,  
645 -.gx-mobile #newsContent .rmrb-caption-img h1,  
646 -.gx-mobile #newsContent .bjh-image-caption h1,  
647 -.gx-mobile #newsContent .rmrb-caption-img2 h1,  
648 -.gx-mobile #newsContent .rmrb-caption-img h2,  
649 -.gx-mobile #newsContent .bjh-image-caption h2,  
650 -.gx-mobile #newsContent .rmrb-caption-img2 h2,  
651 -.gx-mobile #newsContent .rmrb-caption-img h3,  
652 -.gx-mobile #newsContent .bjh-image-caption h3,  
653 -.gx-mobile #newsContent .rmrb-caption-img2 h3,  
654 -.gx-mobile #newsContent .rmrb-caption-img h4,  
655 -.gx-mobile #newsContent .bjh-image-caption h4,  
656 -.gx-mobile #newsContent .rmrb-caption-img2 h4,  
657 -.gx-mobile #newsContent .rmrb-caption-img h5,  
658 -.gx-mobile #newsContent .bjh-image-caption h5,  
659 -.gx-mobile #newsContent .rmrb-caption-img2 h5,  
660 -.gx-mobile #newsContent .rmrb-caption-img h6,  
661 -.gx-mobile #newsContent .bjh-image-caption h6,  
662 -.gx-mobile #newsContent .rmrb-caption-img2 h6,  
663 -.gx-mobile #newsContent .rmrb-caption-img section,  
664 -.gx-mobile #newsContent .bjh-image-caption section,  
665 -.gx-mobile #newsContent .rmrb-caption-img2 section {  
666 - line-height: 0.42666667rem !important;  
667 - font-size: 0.33333333rem !important;  
668 - font-weight: normal !important;  
669 - color: #B0B0B0 !important;  
670 -}  
671 -.gx-mobile #newsContent .rmrb-caption-img:empty,  
672 -.gx-mobile #newsContent .bjh-image-caption:empty,  
673 -.gx-mobile #newsContent .rmrb-caption-img2:empty {  
674 - display: none;  
675 -}  
676 -.gx-mobile #newsContent .rmrb-caption-img + .preview-image-block,  
677 -.gx-mobile #newsContent .bjh-image-caption + .preview-image-block,  
678 -.gx-mobile #newsContent .rmrb-caption-img2 + .preview-image-block {  
679 - margin-top: 0 !important;  
680 -}  
681 -.gx-mobile #newsContent ._editor42 img {  
682 - margin: unset !important;  
683 - margin-right: 12px !important;  
684 -}  
685 -.gx-mobile #newsContent video {  
686 - max-width: 100%;  
687 - object-fit: contain;  
688 -}  
689 -.gx-mobile #newsContent .preview-video {  
690 - width: 100%;  
691 - margin-bottom: 0.42666667rem;  
692 - border-radius: 0.10666667rem;  
693 - overflow: hidden;  
694 - position: relative;  
695 -}  
696 -.gx-mobile #newsContent .preview-video + .preview-image-block {  
697 - margin-top: 0 !important;  
698 -}  
699 -.gx-mobile #newsContent .preview-video .video-player {  
700 - border-radius: 0.10666667rem;  
701 - overflow: hidden;  
702 -}  
703 -.gx-mobile #newsContent .preview-video .video-player.prism-player {  
704 - background-color: transparent !important;  
705 -}  
706 -.gx-mobile #newsContent .preview-video .video-player.prism-player video {  
707 - background-color: transparent !important;  
708 - z-index: 81;  
709 -}  
710 -.gx-mobile #newsContent .preview-video .player-state-bg {  
711 - position: absolute;  
712 - left: 0.00533333rem;  
713 - right: 0.00533333rem;  
714 - bottom: 0.00533333rem;  
715 - top: 0.00533333rem;  
716 - z-index: 80;  
717 -}  
718 -.gx-mobile #newsContent .preview-video .player-error {  
719 - display: flex;  
720 - align-items: center;  
721 - justify-content: center;  
722 - position: absolute;  
723 - left: 0;  
724 - right: 0;  
725 - bottom: 0;  
726 - top: 0;  
727 - z-index: 111;  
728 - background: rgba(51, 51, 51, 0.8);  
729 - backdrop-filter: blur(10px);  
730 -}  
731 -.gx-mobile #newsContent .preview-video .player-error.none {  
732 - display: none;  
733 -}  
734 -.gx-mobile #newsContent .preview-video .player-network {  
735 - display: flex;  
736 - align-items: center;  
737 - justify-content: center;  
738 - position: absolute;  
739 - left: 0;  
740 - right: 0;  
741 - bottom: 0;  
742 - top: 0;  
743 - z-index: 110;  
744 - background: rgba(0, 0, 0, 0.5);  
745 -}  
746 -.gx-mobile #newsContent .preview-video .player-network.none {  
747 - display: none;  
748 -}  
749 -.gx-mobile #newsContent .preview-video .player-network .player-network-block {  
750 - display: flex;  
751 - align-items: center;  
752 - justify-content: center;  
753 - flex-direction: column;  
754 -}  
755 -.gx-mobile #newsContent .preview-video .player-network .player-network-block .network-title {  
756 - font-size: 0.37333rem;  
757 - line-height: 0.48rem;  
758 - text-align: right;  
759 - letter-spacing: 0;  
760 - color: #FFFFFF;  
761 -}  
762 -.gx-mobile #newsContent .preview-video .player-network .player-network-block .network-sub-title {  
763 - width: 5.47rem;  
764 - margin: 0.21333rem 0 0.42667rem 0;  
765 - font-size: 0.32rem;  
766 - line-height: 0.48rem;  
767 - text-align: center;  
768 - letter-spacing: 0;  
769 - color: #FFFFFF;  
770 -}  
771 -.gx-mobile #newsContent .preview-video .player-network .player-network-block .btn {  
772 - display: flex;  
773 - justify-content: center;  
774 - margin-top: 0.42666667rem;  
775 - width: 2.34666667rem;  
776 - line-height: 0.74666667rem;  
777 - border-radius: 0.10666667rem;  
778 - font-size: 0.32rem;  
779 - color: #fff;  
780 - background: rgba(255, 255, 255, 0.05);  
781 - border: 0.5px solid rgba(255, 255, 255, 0.3);  
782 -}  
783 -.gx-mobile #newsContent .preview-video .player-mini-progress {  
784 - position: absolute;  
785 - width: 100%;  
786 - height: 0.05333rem;  
787 - left: 0;  
788 - bottom: 0;  
789 - z-index: 98;  
790 - background: rgba(255, 255, 255, 0.3);  
791 -}  
792 -.gx-mobile #newsContent .preview-video .player-mini-progress .player-mini-loaded {  
793 - position: absolute;  
794 - left: 0;  
795 - top: 0;  
796 - z-index: 10;  
797 - width: 0px;  
798 - height: 0.05333rem;  
799 - background: #F22B41;  
800 -}  
801 -.gx-mobile #newsContent .preview-video .player-mini-progress .player-mini-buffer {  
802 - position: absolute;  
803 - height: 0.05333rem;  
804 - left: 0;  
805 - top: 0;  
806 - z-index: 9;  
807 - background: rgba(255, 255, 255, 0.3);  
808 - border-radius: 1px 0px 0px 1px;  
809 -}  
810 -.gx-mobile #newsContent .preview-video .player-mini-progress.none {  
811 - display: none;  
812 -}  
813 -.gx-mobile #newsContent .preview-video .player-replay {  
814 - display: flex;  
815 - align-items: center;  
816 - justify-content: center;  
817 - position: absolute;  
818 - width: 100%;  
819 - height: 100%;  
820 - left: 0;  
821 - top: 0;  
822 - z-index: 109;  
823 - font-size: 0.37333rem;  
824 - color: #fff;  
825 - background: rgba(51, 51, 51, 0.8);  
826 - backdrop-filter: blur(10px);  
827 -}  
828 -.gx-mobile #newsContent .preview-video .player-replay span {  
829 - padding: 0.13333rem 0.53333rem;  
830 - border: 0.02667rem solid #fff;  
831 -}  
832 -.gx-mobile #newsContent .preview-video .player-replay.none {  
833 - display: none;  
834 -}  
835 -.gx-mobile #newsContent .preview-video .player-loading {  
836 - display: flex;  
837 - align-items: center;  
838 - justify-content: center;  
839 - position: absolute;  
840 - width: 100%;  
841 - left: 0;  
842 - right: 0;  
843 - top: 0;  
844 - bottom: 0;  
845 - z-index: 107;  
846 - color: #F22B41;  
847 -}  
848 -.gx-mobile #newsContent .preview-video .player-loading svg {  
849 - width: 1.5rem !important;  
850 - height: 1.5rem !important;  
851 -}  
852 -.gx-mobile #newsContent .preview-video .player-loading.none {  
853 - display: none;  
854 -}  
855 -.gx-mobile #newsContent .preview-video .player-cover {  
856 - display: flex;  
857 - align-items: center;  
858 - justify-content: center;  
859 - position: absolute;  
860 - width: 100%;  
861 - left: 0;  
862 - right: 0;  
863 - top: 0;  
864 - bottom: 0;  
865 - z-index: 108;  
866 - background: #EDEDED;  
867 - height: 100%;  
868 - background-repeat: no-repeat;  
869 - background-position: center;  
870 - background-size: cover;  
871 - border-radius: 0.10666667rem;  
872 -}  
873 -.gx-mobile #newsContent .preview-video .player-cover > img {  
874 - display: none;  
875 - position: absolute;  
876 - width: 100%;  
877 - height: 100%;  
878 - object-fit: cover;  
879 - z-index: 9;  
880 -}  
881 -.gx-mobile #newsContent .preview-video .player-cover .player-state-icon {  
882 - position: absolute;  
883 - left: 0.32rem;  
884 - bottom: 0.32rem;  
885 - width: 0.85333333rem;  
886 - height: 0.85333333rem;  
887 - background: rgba(0, 0, 0, 0.5);  
888 - border-radius: 50%;  
889 - display: flex;  
890 - align-items: center;  
891 - justify-content: center;  
892 - z-index: 10;  
893 -}  
894 -.gx-mobile #newsContent .preview-video .player-cover .player-state-icon img {  
895 - background: none;  
896 - width: 0.42666667rem;  
897 - height: 0.42666667rem;  
898 - max-width: unset !important;  
899 - margin: 0 !important;  
900 - position: relative;  
901 - left: 0.02666667rem;  
902 -}  
903 -.gx-mobile #newsContent .preview-video .player-cover.none {  
904 - display: none;  
905 -}  
906 -.gx-mobile #newsContent .preview-video .player-bottom {  
907 - display: flex;  
908 - align-items: center;  
909 - position: absolute;  
910 - width: 100%;  
911 - left: 0;  
912 - padding: 0.21333rem 0.32rem;  
913 - bottom: 0;  
914 - z-index: 99;  
915 - background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);  
916 -}  
917 -.gx-mobile #newsContent .preview-video .player-bottom.none {  
918 - display: none;  
919 -}  
920 -.gx-mobile #newsContent .preview-video .player-bottom .player-state,  
921 -.gx-mobile #newsContent .preview-video .player-bottom .player-full-screen {  
922 - width: 0.64rem;  
923 - height: 0.64rem;  
924 - background: none;  
925 - margin: 0;  
926 -}  
927 -.gx-mobile #newsContent .preview-video .player-bottom .center-box {  
928 - display: flex;  
929 - align-items: center;  
930 - position: relative;  
931 - top: 0.02667rem;  
932 - flex: 1;  
933 -}  
934 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress-block {  
935 - display: flex;  
936 - align-items: center;  
937 - justify-content: center;  
938 - height: 0.8rem;  
939 - flex: 1;  
940 -}  
941 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress {  
942 - position: relative;  
943 - height: 0.05333rem;  
944 - background: rgba(255, 255, 255, 0.3);  
945 - width: 100%;  
946 -}  
947 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded {  
948 - position: absolute;  
949 - height: 0.05333rem;  
950 - left: 0;  
951 - top: 0;  
952 - z-index: 10;  
953 - background: #F22B41;  
954 -}  
955 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded .player-loaded-drag {  
956 - display: flex;  
957 - align-items: center;  
958 - justify-content: center;  
959 - position: absolute;  
960 - right: -0.14667rem;  
961 - top: -0.08rem;  
962 - width: 0.29333rem;  
963 - height: 0.21333rem;  
964 - opacity: 1;  
965 - z-index: 11;  
966 - background: #FFFFFF;  
967 -}  
968 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-loaded .player-loaded-drag i {  
969 - display: block;  
970 - width: 0.08rem;  
971 - height: 0.05333rem;  
972 - background: #F22B41;  
973 -}  
974 -.gx-mobile #newsContent .preview-video .player-bottom .player-progress .player-buffer {  
975 - position: absolute;  
976 - height: 0.05333rem;  
977 - left: 0;  
978 - top: 0;  
979 - z-index: 9;  
980 - background: rgba(255, 255, 255, 0.3);  
981 - border-radius: 1px 0px 0px 1px;  
982 -}  
983 -.gx-mobile #newsContent .preview-video .player-bottom .player-current,  
984 -.gx-mobile #newsContent .preview-video .player-bottom .player-duration {  
985 - font-size: 0.26667rem;  
986 - line-height: 0.34667rem;  
987 - letter-spacing: 0;  
988 - color: #FFFFFF;  
989 -}  
990 -.gx-mobile #newsContent .preview-video .player-bottom .player-current {  
991 - margin: 0 0.30667rem 0 0.21333rem;  
992 -}  
993 -.gx-mobile #newsContent .preview-video .player-bottom .player-duration {  
994 - margin: 0 0.21333rem 0 0.30667rem;  
995 -}  
996 -.gx-mobile #newsContent .preview-video .player-layer-state {  
997 - position: absolute;  
998 - width: 100%;  
999 - height: 100%;  
1000 - left: 0;  
1001 - top: 0;  
1002 - z-index: 109;  
1003 -}  
1004 -.gx-mobile #newsContent .preview-video .player-layer-state.none {  
1005 - display: none;  
1006 -}  
1007 -.gx-mobile #newsContent .preview-video .player-layer-state .player-state-icon {  
1008 - position: absolute;  
1009 - left: 0.32rem;  
1010 - bottom: 0.32rem;  
1011 - width: 0.85333333rem;  
1012 - height: 0.85333333rem;  
1013 - background: rgba(0, 0, 0, 0.5);  
1014 - border-radius: 50%;  
1015 - display: flex;  
1016 - align-items: center;  
1017 - justify-content: center;  
1018 - z-index: 10;  
1019 -}  
1020 -.gx-mobile #newsContent .preview-video .player-layer-state .player-state-icon img {  
1021 - background: none;  
1022 - width: 0.42666667rem;  
1023 - height: 0.42666667rem;  
1024 - max-width: unset !important;  
1025 - margin: 0 !important;  
1026 - position: relative;  
1027 - left: 0.02666667rem;  
1028 -}  
1029 -.gx-mobile #newsContent .preview-video .player-mini-layer {  
1030 - display: flex;  
1031 - align-items: center;  
1032 - justify-content: center;  
1033 - position: absolute;  
1034 - width: 100%;  
1035 - height: 100%;  
1036 - left: 0;  
1037 - right: 0;  
1038 - top: 0;  
1039 - bottom: 0;  
1040 - z-index: 98;  
1041 -}  
1042 -.gx-mobile #newsContent .preview-video .player-mini-layer.none {  
1043 - display: none;  
1044 -}  
1045 -.gx-mobile #newsContent .preview-video .player-mini-layer img {  
1046 - background-color: unset;  
1047 - width: 0.85333rem;  
1048 - height: 0.85333rem;  
1049 -}  
1050 -.gx-mobile #newsContent .preview-video .player-mini-close {  
1051 - display: flex;  
1052 - align-items: center;  
1053 - justify-content: center;  
1054 - position: absolute;  
1055 - right: 0.16rem;  
1056 - top: 0.16rem;  
1057 - z-index: 111;  
1058 -}  
1059 -.gx-mobile #newsContent .preview-video .player-mini-close.none {  
1060 - display: none;  
1061 -}  
1062 -.gx-mobile #newsContent .preview-video .player-mini-close img {  
1063 - background-color: unset;  
1064 - width: 0.64rem;  
1065 - height: 0.64rem;  
1066 -}  
1067 -.gx-mobile #newsContent .audio-warpper {  
1068 - display: block;  
1069 - margin: 0.4rem 0;  
1070 - height: 1.17333333rem;  
1071 -}  
1072 -.gx-mobile #newsContent audio {  
1073 - display: none;  
1074 - max-width: 100% !important;  
1075 -}  
1076 -.gx-mobile #newsContent .video-warpper {  
1077 - width: calc(100% + 30px);  
1078 - position: relative;  
1079 - margin-left: -15px;  
1080 - display: block;  
1081 - margin-bottom: 10px;  
1082 -}  
1083 -.gx-mobile #newsContent .video-warpper video {  
1084 - position: absolute;  
1085 - top: 0;  
1086 - left: 0;  
1087 - width: 100%;  
1088 - height: 100%;  
1089 - background: #000;  
1090 - object-fit: contain;  
1091 -}  
1092 -.gx-mobile #newsContent .video-warpper::after {  
1093 - display: block;  
1094 - content: " ";  
1095 - width: 100%;  
1096 - height: 0;  
1097 - padding-bottom: 56.25%;  
1098 -}  
1099 -.gx-mobile #newsContent .preview-image-block {  
1100 - display: flex;  
1101 - align-items: center;  
1102 - justify-content: center;  
1103 - position: relative;  
1104 - width: 100%;  
1105 - margin: 0.42666667rem auto !important;  
1106 - border-radius: 0.08rem;  
1107 - overflow: hidden;  
1108 -}  
1109 -.gx-mobile #newsContent .preview-image-block + .preview-image-block {  
1110 - margin-top: 0 !important;  
1111 -}  
1112 -.gx-mobile #newsContent .preview-image-block a {  
1113 - position: relative;  
1114 - display: block;  
1115 - width: 100%;  
1116 - height: 100%;  
1117 - display: flex;  
1118 - align-items: center;  
1119 - justify-content: center;  
1120 -}  
1121 -.gx-mobile #newsContent .preview-image-block a > img.image-player {  
1122 - display: none;  
1123 -}  
1124 -.gx-mobile #newsContent .preview-image-block.loading {  
1125 - background: #EDEDED;  
1126 -}  
1127 -.gx-mobile #newsContent .preview-image-block.loading img.preview-image-error,  
1128 -.gx-mobile #newsContent .preview-image-block.loading .img.image-player {  
1129 - display: none !important;  
1130 -}  
1131 -.gx-mobile #newsContent .preview-image-block.loading img.preview-image-placehold {  
1132 - display: block !important;  
1133 -}  
1134 -.gx-mobile #newsContent .preview-image-block.error {  
1135 - background: #EDEDED;  
1136 -}  
1137 -.gx-mobile #newsContent .preview-image-block.error img.preview-image-placehold,  
1138 -.gx-mobile #newsContent .preview-image-block.error .img.image-player {  
1139 - display: none !important;  
1140 -}  
1141 -.gx-mobile #newsContent .preview-image-block.error img.preview-image-error {  
1142 - display: block !important;  
1143 -}  
1144 -.gx-mobile #newsContent .preview-image-block.success img.preview-image-placehold,  
1145 -.gx-mobile #newsContent .preview-image-block.success .img.preview-image-error {  
1146 - display: none !important;  
1147 -}  
1148 -.gx-mobile #newsContent .preview-image-block.success img.image-player {  
1149 - display: block !important;  
1150 -}  
1151 -.gx-mobile #newsContent .preview-image-block.minHeight {  
1152 - min-height: 5.06666667rem;  
1153 -}  
1154 -.gx-mobile #newsContent .preview-image-block.no-network img.image-player,  
1155 -.gx-mobile #newsContent .preview-image-block.no-network img.preview-image-placehold,  
1156 -.gx-mobile #newsContent .preview-image-block.no-network img.preview-image-error {  
1157 - display: none !important;  
1158 -}  
1159 -.gx-mobile #newsContent .preview-image-block.no-network .no-network-text {  
1160 - display: block;  
1161 - font-size: 0.37333333rem;  
1162 - color: #999999;  
1163 -}  
1164 -.gx-mobile #newsContent .preview-image-block .no-network-text {  
1165 - display: none;  
1166 -}  
1167 -.gx-mobile #newsContent .preview-image-block > img {  
1168 - width: auto;  
1169 - margin: unset;  
1170 -}  
1171 -.gx-mobile #newsContent .preview-image-block > img.image-player {  
1172 - display: none;  
1173 -}  
1174 -.gx-mobile #newsContent .preview-image-block .preview-image-placehold {  
1175 - display: none;  
1176 - object-fit: cover;  
1177 - width: 3.52rem;  
1178 -}  
1179 -.gx-mobile #newsContent .preview-image-block .preview-image-error {  
1180 - display: none;  
1181 - object-fit: cover;  
1182 - width: 1.70667rem;  
1183 -}  
1184 -.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon {  
1185 - position: absolute;  
1186 - display: block;  
1187 - top: 0.21333333rem;  
1188 - right: 0.21333333rem;  
1189 - height: 0.48rem;  
1190 - border-radius: 0.05333333rem;  
1191 - background: rgba(0, 0, 0, 0.3);  
1192 -}  
1193 -.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon img {  
1194 - float: left;  
1195 - margin: unset;  
1196 - width: 0.37333333rem;  
1197 - height: 0.37333333rem;  
1198 - margin-left: 0.08rem;  
1199 - margin-top: 0.05333333rem;  
1200 - max-width: unset !important;  
1201 - display: inline-block !important;  
1202 -}  
1203 -.gx-mobile #newsContent .preview-image-block.link-image .preview-image-link-icon span {  
1204 - float: right;  
1205 - font-size: 0.29333333rem;  
1206 - line-height: 0.42666667rem;  
1207 - margin-left: 0.05333333rem;  
1208 - margin-right: 0.08rem;  
1209 - margin-top: 0.02666667rem;  
1210 - color: #FFFFFF;  
1211 -}  
1212 -.gx-mobile #newsContent .preview-image-block .preview-image-link-icon {  
1213 - display: none;  
1214 -}  
1215 -.gx-mobile #newsContent img,  
1216 -.gx-mobile #newsContent video,  
1217 -.gx-mobile #newsContent audio {  
1218 - max-width: 100% !important;  
1219 -}  
1220 -.gx-mobile .adress {  
1221 - margin-top: 0.53333rem;  
1222 - font-size: 0.32rem;  
1223 - font-weight: normal;  
1224 - line-height: 0.42667rem;  
1225 - letter-spacing: 0;  
1226 - color: #999999;  
1227 -}  
1228 -.gx-mobile .tags {  
1229 - display: flex;  
1230 - flex-wrap: wrap;  
1231 -}  
1232 -.gx-mobile .tags .tag-item {  
1233 - display: flex;  
1234 - align-items: center;  
1235 - margin-top: 0.32rem;  
1236 - margin-right: 0.32rem;  
1237 - padding: 0.05333rem 0.16rem;  
1238 - font-size: 0.32rem;  
1239 - font-weight: normal;  
1240 - line-height: 0.48rem;  
1241 - letter-spacing: 0;  
1242 - color: #cb3c34;  
1243 - background: #f6e0df;  
1244 -}  
1245 -.gx-mobile .tags .tag-item:last-child {  
1246 - margin-right: 0;  
1247 -}  
1248 -.gx-mobile .tags .tag-item span {  
1249 - margin-right: 0.10667rem;  
1250 -}  
1251 -.gx-mobile .tags .tag-item img {  
1252 - width: 0.26667rem;  
1253 - height: 0.26667rem;  
1254 -}  
1255 -.gx-mobile .line-one {  
1256 - height: 0.02667rem;  
1257 - background: #b71d26;  
1258 - margin-top: 0.4rem;  
1259 - margin-bottom: 0.74667rem;  
1260 -}  
1261 -.gx-mobile .line {  
1262 - height: 0.02667rem;  
1263 - background: #b71d26;  
1264 - margin-top: 0.74667rem;  
1265 - margin-bottom: 0.4rem;  
1266 -}  
1267 -.gx-mobile .suggested .suggested-content .suggested-item {  
1268 - padding-top: 0.32rem;  
1269 - padding-bottom: 0.34667rem;  
1270 - border-bottom: 0.02667rem solid #979797ff;  
1271 -}  
1272 -.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_title {  
1273 - font-size: 0.42667rem;  
1274 - line-height: 0.69333rem;  
1275 - letter-spacing: 0;  
1276 - color: #000000;  
1277 -}  
1278 -.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details {  
1279 - margin-top: 0.42667rem;  
1280 - display: flex;  
1281 -}  
1282 -.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_img {  
1283 - width: 3.52rem;  
1284 - flex: 0 0 3.52rem;  
1285 - height: 2.66667rem;  
1286 - margin-right: 0.42667rem;  
1287 -}  
1288 -.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_subtitle {  
1289 - display: flex;  
1290 - flex-direction: column;  
1291 - justify-content: space-between;  
1292 -}  
1293 -.gx-mobile .suggested .suggested-content .suggested-item .suggested-item_details .suggested-item_subtitle .subtitle {  
1294 - font-size: 0.37333rem;  
1295 - font-weight: normal;  
1296 - line-height: 0.45333333rem;  
1297 - letter-spacing: 0;  
1298 - color: #555555;  
1299 - display: -webkit-box;  
1300 - -webkit-line-clamp: 4;  
1301 - -webkit-box-orient: vertical;  
1302 - overflow: hidden;  
1303 - text-overflow: ellipsis;  
1304 - word-wrap: break-word;  
1305 - width: 9.15547rem;  
1306 -}  
1307 -.gx-mobile .suggested .suggested-content .suggested-item .times {  
1308 - display: flex;  
1309 - align-items: center;  
1310 - justify-content: space-between;  
1311 -}  
1312 -.gx-mobile .suggested .suggested-content .suggested-item .times .left {  
1313 - display: flex;  
1314 - align-items: center;  
1315 - font-size: 0.26667rem;  
1316 - font-weight: normal;  
1317 - line-height: 0.34667rem;  
1318 - letter-spacing: 0;  
1319 - color: #a3a3a3;  
1320 -}  
1321 -.gx-mobile .suggested .suggested-content .suggested-item .times .left span {  
1322 - margin-right: 0.16rem;  
1323 -}  
1324 -.gx-mobile .suggested .suggested-content .suggested-item .times .left span:last-child {  
1325 - margin-right: 0;  
1326 -}  
1327 -.gx-mobile .suggested .suggested-content .suggested-item .times .right img {  
1328 - width: 0.37333rem;  
1329 - height: 0.37333rem;  
1330 -}  
1331 -.gx-mobile .suggested .suggested-content .suggested-item .times-line {  
1332 - width: 0.02667rem;  
1333 - height: 0.13333rem;  
1334 - opacity: 1;  
1335 - background: #a3a3a3;  
1336 -}  
1337 -.gx-mobile .suggested .suggested-content .suggested-item .times.no-cover {  
1338 - margin-top: 0.32rem;  
1339 -}  
1340 -.gx-mobile .suggested .suggested-title {  
1341 - font-size: 0.58667rem;  
1342 - line-height: 0.69333rem;  
1343 - letter-spacing: 0;  
1344 - color: #000000;  
1345 -}  
1346 -.editor-charge {  
1347 - color: #b0b0b0ff;  
1348 - font-size: 12px;  
1349 - font-weight: 400;  
1350 - margin-top: 0.42667rem;  
1351 -}  
1352 -#voteHiddenBlock {  
1353 - position: fixed;  
1354 - left: 0;  
1355 - top: 0;  
1356 - z-index: -1;  
1357 - opacity: 0;  
1358 - visibility: hidden;  
1359 - width: 100%;  
1360 - padding: 0.48rem;  
1361 -}  
1362 -#voteHiddenBlock .voteHiddenContent {  
1363 - margin-top: 0.53333333rem;  
1364 - padding: 0.42666667rem 0.37333333rem;  
1365 - background: #F9F9F9;  
1366 - border-radius: 0.10666667rem;  
1367 -}  
1368 -#voteHiddenBlock .voteHiddenContent .voteHiddenTitle {  
1369 - width: 100%;  
1370 -}  
1371 -.vote {  
1372 - position: relative;  
1373 - margin-top: 0.53333333rem;  
1374 - padding: 0.42666667rem 0.37333333rem;  
1375 - background: #F9F9F9;  
1376 - border-radius: 0.10666667rem;  
1377 -}  
1378 -.vote .vote-title {  
1379 - width: 100%;  
1380 - margin-top: 0;  
1381 - font-size: 0.42667rem;  
1382 - line-height: 0.58666667rem;  
1383 - font-weight: bold;  
1384 - color: #000;  
1385 - margin-bottom: 0.32rem !important;  
1386 -}  
1387 -.vote .vote-title .t-icon {  
1388 - width: 1.36rem;  
1389 - height: 0.48rem;  
1390 - margin-right: 0.13333rem;  
1391 - display: flex;  
1392 - align-items: center;  
1393 - float: left;  
1394 - z-index: 99999;  
1395 -}  
1396 -.vote .vote-title .t-icon .icon-img {  
1397 - width: 0.48rem;  
1398 - height: 0.48rem;  
1399 - background-image: url("../image/vote/icon_live.png");  
1400 - background-size: 100% 100%;  
1401 -}  
1402 -.vote .vote-title .t-icon span {  
1403 - width: 0.88rem;  
1404 - height: 0.48rem;  
1405 - line-height: 0.48rem;  
1406 - font-size: 0.32rem;  
1407 - display: inline-block;  
1408 - background-color: #666;  
1409 - text-align: center;  
1410 - font-weight: normal;  
1411 - color: #ffffff;  
1412 -}  
1413 -.vote .ptxt {  
1414 - margin: 0.21333rem 0 0.32rem 0;  
1415 - font-size: 0.32rem;  
1416 - line-height: 0.42667rem;  
1417 - font-weight: normal;  
1418 - color: #555555;  
1419 -}  
1420 -.vote .btns1 {  
1421 - position: relative;  
1422 - display: flex;  
1423 - justify-content: space-between;  
1424 -}  
1425 -.vote .btns1 .s {  
1426 - width: 4.21653rem;  
1427 - font-size: 0.37333rem;  
1428 - display: flex;  
1429 - align-items: center;  
1430 - justify-content: center;  
1431 - color: #fff;  
1432 - padding: 0.21333rem 0.32rem;  
1433 - line-height: 0.42666667rem;  
1434 -}  
1435 -.vote .btns1 .s.none {  
1436 - opacity: 0;  
1437 - visibility: hidden;  
1438 -}  
1439 -.vote .btns1 .s.active {  
1440 - position: absolute;  
1441 -}  
1442 -.vote .btns1 .s1 {  
1443 - background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);  
1444 - border-top-left-radius: 0.08rem;  
1445 - border-bottom-left-radius: 0.08rem;  
1446 -}  
1447 -.vote .btns1 .s1.active {  
1448 - top: 0;  
1449 - left: 0;  
1450 - height: 100%;  
1451 -}  
1452 -.vote .btns1 .s2 {  
1453 - background: linear-gradient(270deg, #63D4FF 0%, #50BDE7 100%);  
1454 - border-top-right-radius: 0.08rem;  
1455 - border-bottom-right-radius: 0.08rem;  
1456 -}  
1457 -.vote .btns1 .s2.active {  
1458 - top: 0;  
1459 - right: 0;  
1460 - height: 100%;  
1461 -}  
1462 -.vote .aft.anmite-vote .jdat .s1 {  
1463 - animation: voteProgressIn;  
1464 - animation-duration: 1s;  
1465 - animation-fill-mode: forwards;  
1466 -}  
1467 -.vote .aft.anmite-vote .jdat .s2 {  
1468 - animation: voteProgressInTwo;  
1469 - animation-duration: 1s;  
1470 - animation-fill-mode: forwards;  
1471 -}  
1472 -.vote .aft .jdat {  
1473 - height: 0.29333rem;  
1474 - display: flex;  
1475 -}  
1476 -.vote .aft .jdat .pkjd-box {  
1477 - position: relative;  
1478 - display: flex;  
1479 - width: 100%;  
1480 - height: 0.29333rem;  
1481 -}  
1482 -.vote .aft .jdat .s {  
1483 - display: inline-block;  
1484 - height: 0.29333rem;  
1485 -}  
1486 -.vote .aft .jdat .s1 {  
1487 - position: absolute;  
1488 - left: 0;  
1489 - top: 0;  
1490 - width: 50%;  
1491 - flex-shrink: 0;  
1492 - height: 0.29333rem;  
1493 - background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);  
1494 - border-top-left-radius: 0.02666667rem;  
1495 - border-bottom-left-radius: 0.02666667rem;  
1496 - transition: all;  
1497 -}  
1498 -.vote .aft .jdat .s2 {  
1499 - position: absolute;  
1500 - right: 0;  
1501 - top: 0;  
1502 - height: 0.29333rem;  
1503 - background: linear-gradient(270deg, #63D4FF 0%, #50BDE7 100%);  
1504 - border-top-right-radius: 0.02666667rem;  
1505 - border-bottom-right-radius: 0.02666667rem;  
1506 - transition: all;  
1507 -}  
1508 -.vote .aft .bf {  
1509 - display: flex;  
1510 - justify-content: space-between;  
1511 - margin-top: 0.21333333rem;  
1512 -}  
1513 -.vote .aft .bf.sigle {  
1514 - gap: 0.50666667rem;  
1515 -}  
1516 -.vote .aft .bf.sigle .lt,  
1517 -.vote .aft .bf.sigle .rt {  
1518 - width: 50%;  
1519 -}  
1520 -.vote .aft .bf.sigle .lt .lt-s2,  
1521 -.vote .aft .bf.sigle .rt .lt-s2 {  
1522 - word-break: break-all;  
1523 -}  
1524 -.vote .aft .bf.sigle .rt {  
1525 - display: flex;  
1526 - justify-content: flex-end;  
1527 -}  
1528 -.vote .aft .bf .lt {  
1529 - width: 45%;  
1530 - display: flex;  
1531 - font-size: 0.37333rem;  
1532 - line-height: 0.48rem;  
1533 -}  
1534 -.vote .aft .bf .lt .lt-s1 {  
1535 - color: #496fff;  
1536 - font-weight: bold;  
1537 -}  
1538 -.vote .aft .bf .lt .mr {  
1539 - margin-right: 0.05333333rem;  
1540 - font-weight: bold;  
1541 -}  
1542 -.vote .aft .bf .lt .lt-s2 {  
1543 - color: #555555;  
1544 -}  
1545 -.vote .aft .bf .lt .vote-image-icon {  
1546 - width: 0.32rem;  
1547 - height: 0.32rem;  
1548 - margin-top: 0.08rem;  
1549 -}  
1550 -.vote .aft .bf .lt .rtbf {  
1551 - color: #50bde7;  
1552 - margin-left: 0.05333333rem;  
1553 -}  
1554 -.vote .aft .bf .rt {  
1555 - width: 45%;  
1556 - display: flex;  
1557 - font-size: 0.37333rem;  
1558 - font-weight: normal;  
1559 - line-height: 0.48rem;  
1560 -}  
1561 -.vote .aft .bf .rt .lt-s1 {  
1562 - color: #496fff;  
1563 - font-weight: bold;  
1564 -}  
1565 -.vote .aft .bf .rt .mr {  
1566 - margin-left: 0.05333rem;  
1567 - margin-right: 0.05333rem;  
1568 -}  
1569 -.vote .aft .bf .rt .lt-s2 {  
1570 - color: #555555;  
1571 -}  
1572 -.vote .aft .bf .rt .vote-image-icon {  
1573 - width: 0.32rem;  
1574 - height: 0.32rem;  
1575 - margin-top: 0.08rem;  
1576 -}  
1577 -.vote .aft .bf .rt .rtbf {  
1578 - color: #50bde7;  
1579 - margin-left: 0.05333rem;  
1580 - margin-right: 0.05333rem;  
1581 -}  
1582 -.vote .bts2 {  
1583 - overflow: hidden;  
1584 -}  
1585 -.vote .bts2 .btsIem {  
1586 - padding: 0.2rem;  
1587 - line-height: 0.53333333rem;  
1588 - border-radius: 0.08rem;  
1589 - background: #FFFFFF;  
1590 - border: 0.01333333rem solid #EDEDED;  
1591 - color: #222;  
1592 - text-align: center;  
1593 - margin-bottom: 0.21333333rem;  
1594 - font-size: 0.37333333rem;  
1595 -}  
1596 -.vote .bts2 .btsIem:last-child {  
1597 - margin-bottom: 0;  
1598 -}  
1599 -.vote .bts2.mht {  
1600 - height: auto;  
1601 - max-height: unset;  
1602 -}  
1603 -.vote .bts3 {  
1604 - overflow: hidden;  
1605 -}  
1606 -.vote .bts3 .zsbox {  
1607 - margin-bottom: 0.42667rem;  
1608 -}  
1609 -.vote .bts3 .zsbox .bf {  
1610 - display: flex;  
1611 - justify-content: space-between;  
1612 - gap: 0.26666667rem;  
1613 - margin-bottom: 0.21333333rem;  
1614 - position: relative;  
1615 - line-height: 0.48rem;  
1616 -}  
1617 -.vote .bts3 .zsbox .bf .sumBox {  
1618 - display: flex;  
1619 - justify-content: space-between;  
1620 - gap: 0.10666667rem;  
1621 -}  
1622 -.vote .bts3 .zsbox .bf .sumBox img {  
1623 - margin-top: 0.10666667rem;  
1624 - margin-left: 0.10666667rem;  
1625 - width: 0.32rem;  
1626 - height: 0.32rem;  
1627 -}  
1628 -.vote .bts3 .zsbox .bf .sumBox .stx {  
1629 - font-size: 0.4rem;  
1630 - line-height: 0.48rem;  
1631 - color: #555555;  
1632 -}  
1633 -.vote .bts3 .zsbox .bf .sbf {  
1634 - font-size: 0.42666667rem;  
1635 - font-weight: bold;  
1636 - line-height: 0.53333333rem;  
1637 - color: #666666;  
1638 -}  
1639 -.vote .bts3 .zsbox .bf .sbf.active {  
1640 - color: #496FFF;  
1641 -}  
1642 -.vote .bts3 .zsbox .jd {  
1643 - display: flex;  
1644 - align-items: center;  
1645 - background: #EFEFEF;  
1646 -}  
1647 -.vote .bts3 .zsbox .jd .s {  
1648 - display: inline-block;  
1649 - height: 0.29333333rem !important;  
1650 -}  
1651 -.vote .bts3 .zsbox .jd .s1 {  
1652 - position: relative;  
1653 - width: 20%;  
1654 -}  
1655 -.vote .bts3 .zsbox .jd .s1.anmite-vote::before {  
1656 - animation-name: voteProgressFull;  
1657 - animation-duration: 1s;  
1658 - animation-fill-mode: forwards;  
1659 -}  
1660 -.vote .bts3 .zsbox .jd .s1.active::before {  
1661 - background: linear-gradient(270deg, #486FFF 0%, #5A88FF 100%);  
1662 -}  
1663 -.vote .bts3 .zsbox .jd .s1::before {  
1664 - content: '';  
1665 - position: absolute;  
1666 - height: 0.29333333rem !important;  
1667 - width: 0%;  
1668 - background: linear-gradient(270deg, #999999 1%, #999999 98%);  
1669 -}  
1670 -.vote .bts3 .zsbox:last-child {  
1671 - margin-bottom: 0;  
1672 -}  
1673 -.vote .bts3.mht2 {  
1674 - height: auto;  
1675 - max-height: unset;  
1676 -}  
1677 -.vote-line {  
1678 - margin-top: 0.42666667rem;  
1679 - width: 100%;  
1680 - height: 0.01333333rem;  
1681 - background: #EDEDED;  
1682 - margin-bottom: 0.8rem;  
1683 -}  
1684 -.timeline-line {  
1685 - margin-top: 0.53333333rem;  
1686 - width: 100%;  
1687 - height: 0.01333333rem;  
1688 - background: #EDEDED;  
1689 -}  
1690 -.timeline {  
1691 - margin-bottom: 0.90666667rem;  
1692 -}  
1693 -.timeline .timeline_title {  
1694 - margin-top: 0.42666667rem;  
1695 - margin-bottom: 0.16rem;  
1696 - font-size: 0.48rem;  
1697 - line-height: 0.66666667rem;  
1698 - font-weight: bold;  
1699 - color: #222222;  
1700 - overflow: hidden;  
1701 - text-overflow: ellipsis;  
1702 - display: -webkit-box;  
1703 - -webkit-line-clamp: 2;  
1704 - line-clamp: 2;  
1705 - -webkit-box-orient: vertical;  
1706 - word-break: break-all;  
1707 -}  
1708 -.timeline .timeLine_list {  
1709 - padding-left: 0.45333333rem;  
1710 -}  
1711 -.timeline .timeLine_list .timeLine_list_item {  
1712 - position: relative;  
1713 - padding-bottom: 0.48rem;  
1714 -}  
1715 -.timeline .timeLine_list .timeLine_list_item:first-child {  
1716 - padding-top: 0.21333333rem;  
1717 -}  
1718 -.timeline .timeLine_list .timeLine_list_item:first-child .timeLine_list_item_line {  
1719 - top: 0.4rem;  
1720 - height: calc(100% - 0.4rem);  
1721 -}  
1722 -.timeline .timeLine_list .timeLine_list_item:last-child {  
1723 - padding-bottom: 0.26666667rem;  
1724 -}  
1725 -.timeline .timeLine_list .timeLine_list_item:last-child .timeLine_list_item_line {  
1726 - height: 0.13333333rem;  
1727 -}  
1728 -.timeline .timeLine_list_item_line {  
1729 - position: absolute;  
1730 - left: -0.34666667rem;  
1731 - top: 0;  
1732 - height: 100%;  
1733 - width: 0.02666667rem;  
1734 - z-index: 1;  
1735 - background: #ededed;  
1736 -}  
1737 -.timeline .timeLine_list_item_title {  
1738 - position: relative;  
1739 - margin-bottom: 0.21333333rem;  
1740 - font-size: 0.37333333rem;  
1741 - font-weight: bold;  
1742 - line-height: 0.42666667rem;  
1743 - color: #222222;  
1744 -}  
1745 -.timeline .timeLine_list_item_title .timeLine_list_item_title_icon {  
1746 - position: absolute;  
1747 - top: 50%;  
1748 - transform: translateY(-50%);  
1749 - left: -0.45333333rem;  
1750 - z-index: 10;  
1751 -}  
1752 -.timeline .timeLine_list_item_content {  
1753 - font-size: 0.48rem;  
1754 - line-height: 0.66666667rem;  
1755 - color: #222222;  
1756 -}  
1757 -.timeline .timeline_more {  
1758 - display: flex;  
1759 - align-items: center;  
1760 - justify-content: center;  
1761 - width: 100%;  
1762 - height: 1.06666667rem;  
1763 - border-radius: 0.08rem;  
1764 - background: #F5F5F5;  
1765 - font-size: 0.37333333rem;  
1766 - line-height: 1.06666667rem;  
1767 - color: #000000;  
1768 -}  
1769 -.timeline .timeline_more img {  
1770 - width: 0.42666667rem;  
1771 - height: 0.42666667rem;  
1772 - top: -0.008rem;  
1773 - position: relative;  
1774 -}  
1775 -.email-sub {  
1776 - width: 9.14667rem;  
1777 - background: #b71d2608;  
1778 - padding: 0.42667rem;  
1779 -}  
1780 -.email-sub .sub-title p {  
1781 - color: #b71d26ff;  
1782 - font-size: 0.58667rem;  
1783 - font-weight: 0;  
1784 - margin-right: 3.46667rem;  
1785 -}  
1786 -.email-sub .sub-title img {  
1787 - width: 0.48rem;  
1788 - height: 0.48rem;  
1789 -}  
1790 -.email-sub .sub-inpt {  
1791 - display: flex;  
1792 - align-items: center;  
1793 - margin: 0.26667rem 0;  
1794 -}  
1795 -.email-sub .sub-inpt img {  
1796 - width: 1.1rem;  
1797 - height: 1.17333rem;  
1798 -}  
1799 -.email-sub .sub-inpt .inpt-txt {  
1800 - display: flex;  
1801 - justify-content: space-between;  
1802 - align-items: center;  
1803 - width: 6.88rem;  
1804 - margin-left: 0.31333rem;  
1805 -}  
1806 -.email-sub .sub-inpt .inpt-txt input {  
1807 - width: 4.56rem;  
1808 - height: 0.96rem;  
1809 - border-radius: 0.02613rem;  
1810 - border: 0.02613rem solid #eeeeeeff;  
1811 - background: #ffffffff;  
1812 - padding: 0.26667rem 0 0.26667rem 0.32rem;  
1813 - color: #9e9e9eff;  
1814 - font-size: 0.32rem;  
1815 - box-sizing: border-box;  
1816 -}  
1817 -.email-sub .sub-inpt .inpt-txt span {  
1818 - width: 2.32rem;  
1819 - height: 0.96rem;  
1820 - line-height: 0.96rem;  
1821 - text-align: center;  
1822 - display: inline-block;  
1823 - color: #ffffffff;  
1824 - font-size: 0.37333rem;  
1825 - background-color: #b71d26;  
1826 -}  
1827 -.email-sub .sub-agree {  
1828 - color: #000000ab;  
1829 - text-align: left;  
1830 - font-size: 0.32rem;  
1831 -}  
1832 -.email-sub .sub-agree span {  
1833 - display: inline-block;  
1834 - height: 0.42667rem;  
1835 - border-bottom: 0.02667rem solid #b71d26ff;  
1836 - color: #b71d26ff;  
1837 - text-align: left;  
1838 - font-size: 0.32rem;  
1839 -}  
1840 -.hidden {  
1841 - display: none;  
1842 -}  
1843 -#newsContent .swiper-block {  
1844 - width: 9.14667rem;  
1845 - height: 6.85333rem;  
1846 - position: relative;  
1847 - overflow: hidden;  
1848 - margin-bottom: 0.42666667rem;  
1849 - border-radius: 0.08rem;  
1850 -}  
1851 -#newsContent .swiper-block + .preview-image-block {  
1852 - margin-top: 0 !important;  
1853 -}  
1854 -#newsContent .swiper-block img {  
1855 - object-fit: cover;  
1856 - height: 100%;  
1857 -}  
1858 -#newsContent .swiper-block .swiper-pagination {  
1859 - left: unset;  
1860 - right: 0.16rem;  
1861 - width: unset;  
1862 - display: flex;  
1863 - align-items: center;  
1864 -}  
1865 -#newsContent .swiper-block .swiper-pagination-bullet {  
1866 - width: 0.26666667rem;  
1867 - height: 0.08rem;  
1868 - margin: 0;  
1869 - background: transparent;  
1870 -}  
1871 -#newsContent .swiper-block .swiper-pagination-bullet::after {  
1872 - display: block;  
1873 - content: "";  
1874 - background: url("../image/swiper_not_active.svg");  
1875 - width: 0.26666667rem;  
1876 - height: 0.08rem;  
1877 - background-repeat: no-repeat;  
1878 - background-size: 100%;  
1879 -}  
1880 -#newsContent .swiper-block .swiper-pagination-bullet + .swiper-pagination-bullet {  
1881 - margin-left: 0.05333333rem;  
1882 -}  
1883 -#newsContent .swiper-block .swiper-pagination-bullet-active {  
1884 - background: transparent;  
1885 - width: 0.37333333rem;  
1886 - height: 0.08rem;  
1887 -}  
1888 -#newsContent .swiper-block .swiper-pagination-bullet-active::after {  
1889 - display: block;  
1890 - content: "";  
1891 - background: url("../image/swiper_active.svg");  
1892 - width: 0.37333333rem;  
1893 - height: 0.08rem;  
1894 - background-repeat: no-repeat;  
1895 - background-size: 100%;  
1896 -}  
1897 -#newsContent .preview-audio-player {  
1898 - display: flex;  
1899 - align-items: center;  
1900 - border: 0.02666667rem solid rgba(0, 0, 0, 0.05);  
1901 - box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);  
1902 - border-radius: 0.10666667rem;  
1903 - padding: 0.32rem 0.42666667rem;  
1904 - background: #fff;  
1905 - margin-bottom: 0.42666667rem;  
1906 -}  
1907 -#newsContent .preview-audio-player + .preview-image-block {  
1908 - margin-top: 0 !important;  
1909 -}  
1910 -#newsContent .preview-audio-player.cover .left {  
1911 - width: 2.13333333rem;  
1912 - height: 2.13333333rem;  
1913 -}  
1914 -#newsContent .preview-audio-player .left {  
1915 - width: 1.17333333rem;  
1916 - height: 1.17333333rem;  
1917 - flex-shrink: 0;  
1918 -}  
1919 -#newsContent .preview-audio-player .left .audio-pause-icon,  
1920 -#newsContent .preview-audio-player .left .audio-play-icon {  
1921 - display: none;  
1922 -}  
1923 -#newsContent .preview-audio-player .left .audio-pause-icon.active,  
1924 -#newsContent .preview-audio-player .left .audio-play-icon.active {  
1925 - display: block;  
1926 -}  
1927 -#newsContent .preview-audio-player .right {  
1928 - flex: 1;  
1929 - margin-left: 0.42666667rem;  
1930 -}  
1931 -#newsContent .preview-audio-player .right .audio-title {  
1932 - font-size: 0.4rem;  
1933 - font-weight: bold;  
1934 - height: 0.45333333rem;  
1935 - line-height: 0.45333333rem;  
1936 - color: #222222;  
1937 - margin-bottom: 0.29333333rem;  
1938 - position: relative;  
1939 - display: flex;  
1940 - flex: 1;  
1941 - align-items: center;  
1942 - overflow: hidden;  
1943 -}  
1944 -#newsContent .preview-audio-player .right .audio-title .audio-notice-title {  
1945 - position: absolute;  
1946 - white-space: nowrap;  
1947 - transition-timing-function: linear;  
1948 -}  
1949 -#newsContent .preview-audio-player .right .audio-progress-block {  
1950 - height: 0.05333333rem;  
1951 - background: #f5f5f5;  
1952 - position: relative;  
1953 -}  
1954 -#newsContent .preview-audio-player .right .audio-progress-block .audio-progressed {  
1955 - position: absolute;  
1956 - left: 0;  
1957 - height: 0.05333333rem;  
1958 - top: 0;  
1959 - background: #ED2800;  
1960 -}  
1961 -#newsContent .preview-audio-player .right .audio-time {  
1962 - display: flex;  
1963 - align-items: center;  
1964 - justify-content: space-between;  
1965 - font-size: 10px;  
1966 - font-size: 0.26666667rem;  
1967 - line-height: 0.32rem;  
1968 - color: #B0B0B0;  
1969 - margin-top: 0.10666667rem;  
1970 -}  
1971 -#newsContent .preview-audio-player-cover {  
1972 - display: flex;  
1973 - height: 2.13333333rem;  
1974 - width: 100%;  
1975 - border-radius: 0.10666667rem;  
1976 - border: 1px solid rgba(0, 0, 0, 0.05);  
1977 - box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);  
1978 - padding: 0.21333333rem;  
1979 - margin-bottom: 0.42666667rem;  
1980 -}  
1981 -#newsContent .preview-audio-player-cover + .preview-image-block {  
1982 - margin-top: 0 !important;  
1983 -}  
1984 -#newsContent .preview-audio-player-cover .left {  
1985 - width: 1.70666667rem;  
1986 - height: 1.70666667rem;  
1987 - flex-shrink: 0;  
1988 -}  
1989 -#newsContent .preview-audio-player-cover .right {  
1990 - flex: auto;  
1991 - margin-left: 0.21333333rem;  
1992 - background: #fff;  
1993 -}  
1994 -#newsContent .preview-audio-player-cover .right .audio-title {  
1995 - font-size: 0.32rem;  
1996 - font-weight: 500;  
1997 - height: 0.42666667rem;  
1998 - line-height: 0.42666667rem;  
1999 - color: #000000;  
2000 - position: relative;  
2001 - display: flex;  
2002 - align-items: center;  
2003 - overflow: hidden;  
2004 -}  
2005 -#newsContent .preview-audio-player-cover .right .audio-title .audio-notice-title {  
2006 - position: absolute;  
2007 - white-space: nowrap;  
2008 - transition-timing-function: linear;  
2009 -}  
2010 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-time {  
2011 - font-size: 0.26666667rem;  
2012 - font-weight: normal;  
2013 - line-height: 0.34666667rem;  
2014 - color: #999999;  
2015 - margin-top: 0.10666667rem;  
2016 -}  
2017 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn {  
2018 - display: flex;  
2019 -}  
2020 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg {  
2021 - display: flex;  
2022 - align-items: center;  
2023 - justify-content: space-between;  
2024 - width: 100%;  
2025 - margin-top: 0.13333333rem;  
2026 -}  
2027 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img {  
2028 - margin: unset !important;  
2029 -}  
2030 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img:first-child {  
2031 - height: 0.32rem;  
2032 -}  
2033 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-play-icon,  
2034 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-pause-icon {  
2035 - width: 0.64rem;  
2036 - height: 0.64rem;  
2037 - display: none;  
2038 - flex-shrink: 0;  
2039 -}  
2040 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-play-icon.active,  
2041 -#newsContent .preview-audio-player-cover .right .audio-extra .audio-extral-iocn .audio-bg img.audio-pause-icon.active {  
2042 - display: block;  
2043 -}  
2044 -#newsContent .preview-link-card-mobile {  
2045 - display: block;  
2046 - padding: 0.24rem;  
2047 - border-radius: 0.10666667rem;  
2048 - cursor: pointer;  
2049 - color: unset !important;  
2050 - text-decoration: unset !important;  
2051 - background: #F5F5F5;  
2052 - border: 0.02666667rem solid rgba(0, 0, 0, 0.05);  
2053 - margin-bottom: 0.42666667rem;  
2054 -}  
2055 -#newsContent .preview-link-card-mobile + .preview-image-block {  
2056 - margin-top: 0 !important;  
2057 -}  
2058 -#newsContent .preview-link-card-mobile.card-image {  
2059 - display: flex;  
2060 - align-items: center;  
2061 -}  
2062 -#newsContent .preview-link-card-mobile.card-image .left {  
2063 - flex: 0 0 1.17333rem;  
2064 - width: 1.17333rem;  
2065 - height: 1.17333rem;  
2066 -}  
2067 -#newsContent .preview-link-card-mobile.card-image .left img {  
2068 - width: 100%;  
2069 - height: 100%;  
2070 - object-fit: cover;  
2071 -}  
2072 -#newsContent .preview-link-card-mobile.card-image .right {  
2073 - display: flex;  
2074 - flex-direction: column;  
2075 - justify-content: space-between;  
2076 - margin-left: 0.26667rem;  
2077 - height: 1.17333rem;  
2078 -}  
2079 -#newsContent .preview-link-card-mobile .preview-link-title {  
2080 - font-size: 0.37333333rem;  
2081 - height: 0.53333333rem;  
2082 - line-height: 0.53333333rem;  
2083 - color: #50749A;  
2084 - overflow: hidden;  
2085 - text-overflow: ellipsis;  
2086 - display: -webkit-box;  
2087 - -webkit-line-clamp: 1;  
2088 - line-clamp: 1;  
2089 - -webkit-box-orient: vertical;  
2090 - word-break: break-all;  
2091 -}  
2092 -#newsContent .preview-link-card-mobile .preview-link {  
2093 - display: none;  
2094 - align-items: center;  
2095 - line-height: 0.37333rem;  
2096 -}  
2097 -#newsContent .preview-link-card-mobile.card-image .preview-link-title {  
2098 - -webkit-line-clamp: 2;  
2099 - line-clamp: 2;  
2100 - height: 1.06666667rem;  
2101 -}  
2102 -#newsContent .preview-link-card-mobile.card-image .preview-link {  
2103 - display: none;  
2104 - margin-bottom: 0.13333rem;  
2105 -}  
2106 -#newsContent .preview-link-card-mobile .preview-link-title img {  
2107 - position: relative;  
2108 - top: 0.08rem;  
2109 - width: 0.42666667rem;  
2110 - height: 0.42666667rem;  
2111 - display: unset;  
2112 - background: unset;  
2113 - margin: 0;  
2114 - margin-right: 0.16rem;  
2115 -}  
2116 -#newsContent .preview-link-card-mobile .preview-link span {  
2117 - font-size: 0.26667rem;  
2118 - color: #50749A;  
2119 - margin-left: 0.05333rem;  
2120 - overflow: hidden;  
2121 - text-overflow: ellipsis;  
2122 - display: -webkit-box;  
2123 - -webkit-line-clamp: 1;  
2124 - line-clamp: 1;  
2125 - -webkit-box-orient: vertical;  
2126 - word-break: break-all;  
2127 -}  
2128 -.share {  
2129 - margin-top: 0.64rem;  
2130 - height: 0.96rem;  
2131 -}  
2132 -.share .share-wrapper + .share-wrapper {  
2133 - margin-left: -0.10666667rem;  
2134 -}  
2135 -.share .share-wrapper img {  
2136 - float: left;  
2137 - height: 0.96rem;  
2138 -}  
2139 -.share .share-wrapper .image-first {  
2140 - width: 0.26666667rem;  
2141 -}  
2142 -.share .share-wrapper .image-center {  
2143 - width: calc(100% - 0.74666667rem);  
2144 -}  
2145 -.share .share-wrapper .image-end {  
2146 - width: 0.48rem;  
2147 -}  
2148 -.share .share-content {  
2149 - display: flex;  
2150 - align-items: center;  
2151 - position: absolute;  
2152 - z-index: 10;  
2153 - left: calc(45% + 0.18rem);  
2154 - top: 50%;  
2155 - transform: translate(-50%, -50%);  
2156 - min-width: 1.6rem;  
2157 -}  
2158 -.share .share-content img {  
2159 - width: 0.53333333rem;  
2160 - height: 0.53333333rem;  
2161 -}  
2162 -.share .share-content span {  
2163 - position: relative;  
2164 - margin-left: 0.08rem;  
2165 - font-size: 0.32rem;  
2166 - top: 0.01333333rem;  
2167 - color: #666666;  
2168 -}  
2169 -.sharePoster {  
2170 - height: 0.96rem;  
2171 - position: relative;  
2172 -}  
2173 -.sharePoster.share-wrapper .news {  
2174 - width: 0.74666667rem;  
2175 - height: 0.32rem;  
2176 - position: absolute;  
2177 - right: -0.21333333rem;  
2178 - top: -0.13333333rem;  
2179 - z-index: 11;  
2180 - float: none;  
2181 -}  
2182 -.share-wechat {  
2183 - height: 0.96rem;  
2184 -}  
2185 -.share-wechat.center .share-content {  
2186 - left: calc(45% + 0.25rem);  
2187 -}  
2188 -.share-wechat.center.share-wrapper .image-first {  
2189 - width: 0.42666667rem;  
2190 -}  
2191 -.share-wechat.center.share-wrapper .image-center {  
2192 - width: calc(100% - 0.85333333rem);  
2193 -}  
2194 -.share-wechat.center.share-wrapper .image-end {  
2195 - width: 0.42666667rem;  
2196 -}  
2197 -.share-wechat .share-content {  
2198 - left: calc(45% + 0.2rem);  
2199 -}  
2200 -.share-wechat-circle {  
2201 - height: 0.96rem;  
2202 -}  
2203 -.share-wechat-circle .share-content {  
2204 - left: calc(45% + 0.2rem);  
2205 - min-width: 1.8rem;  
2206 -}  
2207 -.share-wechat-circle.share-wrapper .image-first {  
2208 - width: 0.42666667rem;  
2209 -}  
2210 -.share-wechat-circle.share-wrapper .image-center {  
2211 - width: calc(100% - 0.85333333rem);  
2212 -}  
2213 -.share-wechat-circle.share-wrapper .image-end {  
2214 - width: 0.42666667rem;  
2215 -}  
2216 -.share-weibo {  
2217 - height: 0.96rem;  
2218 -}  
2219 -.share-weibo .share-content {  
2220 - left: calc(45% + 0.4rem);  
2221 -}  
2222 -.share-weibo.share-wrapper .image-first {  
2223 - width: 0.48rem;  
2224 -}  
2225 -.share-weibo.share-wrapper .image-center {  
2226 - width: calc(100% - 0.74666667rem);  
2227 -}  
2228 -.share-weibo.share-wrapper .image-end {  
2229 - width: 0.26666667rem;  
2230 -}  
2231 -.share-box {  
2232 - float: left;  
2233 - box-sizing: border-box;  
2234 - width: 33.3%;  
2235 - position: relative;  
2236 -}  
2237 -.share-box-center {  
2238 - float: left;  
2239 - box-sizing: border-box;  
2240 - width: 33.3%;  
2241 - position: relative;  
2242 -}  
2243 -.share-box-center:before {  
2244 - content: '';  
2245 - position: absolute;  
2246 - left: 0.42666667rem;  
2247 - top: 0;  
2248 - width: calc(100% - 0.85333333rem);  
2249 - height: 0.90666667rem;  
2250 - border: 1px solid #EDEDED;  
2251 - border-left: 0;  
2252 - border-right: 0;  
2253 -}  
2254 -.share-box-last {  
2255 - float: left;  
2256 - box-sizing: border-box;  
2257 - width: 33.3%;  
2258 - position: relative;  
2259 -}  
2260 -.share-box-last:before {  
2261 - content: '';  
2262 - position: absolute;  
2263 - right: 0;  
2264 - top: 0;  
2265 - width: calc(100% - 0.42666667rem);  
2266 - height: 0.90666667rem;  
2267 - border: 1px solid #EDEDED;  
2268 - border-left: 0;  
2269 - border-top-right-radius: 0.08rem;  
2270 - border-bottom-right-radius: 0.08rem;  
2271 -}  
2272 -.sharePointRight {  
2273 - position: absolute;  
2274 - right: 0;  
2275 - top: 0px;  
2276 - width: 0.42666667rem;  
2277 - height: 0.96rem;  
2278 - z-index: 1;  
2279 -}  
2280 -.sharePointRight.coincide {  
2281 - right: 0.01333333rem;  
2282 -}  
2283 -.sharePointLeft {  
2284 - position: absolute;  
2285 - left: 0;  
2286 - top: 0;  
2287 - width: 0.42666667rem;  
2288 - height: 0.96rem;  
2289 - z-index: 1;  
2290 -}  
2291 -#newsContent .en-scroll-text {  
2292 - position: relative;  
2293 - display: flex;  
2294 - align-items: center;  
2295 - gap: 0.21333333rem;  
2296 - padding: 0.21333333rem;  
2297 - height: 1.06666667rem;  
2298 - padding-left: 0;  
2299 - overflow: hidden;  
2300 - border-radius: 0.10666667rem;  
2301 - background: #FFFFFF;  
2302 - border: 0.02666667rem solid rgba(0, 0, 0, 0.05);  
2303 - box-shadow: 0px 0.05333333rem 0.21333333rem 0px rgba(0, 0, 0, 0.05);  
2304 - margin-bottom: 0.42666667rem;  
2305 -}  
2306 -#newsContent .en-scroll-text + .preview-image-block {  
2307 - margin-top: 0 !important;  
2308 -}  
2309 -#newsContent .en-scroll-text::after {  
2310 - content: "";  
2311 - position: absolute;  
2312 - top: 0;  
2313 - right: 0;  
2314 - width: 0.21333333rem;  
2315 - height: 100%;  
2316 - background: #FFFFFF;  
2317 -}  
2318 -#newsContent .scroll-text-left {  
2319 - position: absolute;  
2320 - top: 0;  
2321 - left: 0;  
2322 - padding-left: 0.21333333rem;  
2323 - padding-right: 0.21333333rem;  
2324 - width: 1.06666667rem !important;  
2325 - height: 100%;  
2326 - margin: 0;  
2327 - z-index: 9;  
2328 - background: #FFFFFF;  
2329 -}  
2330 -#newsContent .en-scroll-text img {  
2331 - position: absolute;  
2332 - top: 50%;  
2333 - transform: translateY(-50%);  
2334 - left: 0.21333333rem;  
2335 - width: 0.64rem !important;  
2336 - height: 0.64rem !important;  
2337 - margin: 0;  
2338 - z-index: 10;  
2339 -}  
2340 -#newsContent .en-scroll-text .swiper-txet {  
2341 - white-space: nowrap;  
2342 - color: #333333ff;  
2343 - text-align: left;  
2344 - padding-left: 1.06666667rem;  
2345 - font-size: 0.32rem;  
2346 - height: 0.42666667rem;  
2347 - line-height: 0.42666667rem;  
2348 -}  
2349 -#newsContent .en-echart {  
2350 - margin-bottom: 0.42666667rem;  
2351 -}  
2352 -#newsContent .en-echart + .preview-image-block {  
2353 - margin-top: 0 !important;  
2354 -}  
2355 -#newsContent .en-echart .en-echart-title {  
2356 - font-size: 0.37333333rem;  
2357 - line-height: 0.48rem;  
2358 - margin-bottom: 0.32rem;  
2359 - font-weight: bold;  
2360 - color: #333333;  
2361 - word-break: break-all;  
2362 -}  
2363 -#newsContent .en-echart .en-echart-yname {  
2364 - display: inline-flex;  
2365 - font-size: 0.32rem;  
2366 - line-height: 0.42666667rem;  
2367 - color: #6e7079;  
2368 - word-break: break-all;  
2369 - margin-top: 0.16rem;  
2370 -}  
2371 -#newsContent .en-table {  
2372 - display: flex;  
2373 - justify-content: center;  
2374 - flex-direction: column;  
2375 - margin-bottom: 0.42666667rem;  
2376 -}  
2377 -#newsContent .en-table + .preview-image-block {  
2378 - margin-top: 0 !important;  
2379 -}  
2380 -#newsContent .en-table .en-table-title {  
2381 - font-size: 0.37333333rem;  
2382 - line-height: 0.48rem;  
2383 - margin-bottom: 0.32rem;  
2384 - font-weight: bold;  
2385 - color: #333333;  
2386 - word-break: break-all;  
2387 -}  
2388 -#newsContent .en-text-1 {  
2389 - padding: 0.42666667rem 0.32rem 0.42666667rem 0.29333333rem;  
2390 - border-left: 0.05866667rem solid #ED2800;  
2391 - background: #faf3f4;  
2392 - margin-bottom: 0.42666667rem;  
2393 -}  
2394 -#newsContent .en-text-1 + .preview-image-block {  
2395 - margin-top: 0 !important;  
2396 -}  
2397 -#newsContent .en-text-1-title {  
2398 - position: relative;  
2399 - font-size: 0.4rem;  
2400 - line-height: 0.53333333rem;  
2401 - color: #000000;  
2402 - word-break: break-all;  
2403 -}  
2404 -#newsContent .en-text-1-title img {  
2405 - position: absolute;  
2406 - left: 0;  
2407 - top: -0.10666667rem;  
2408 - width: 0.64rem;  
2409 - height: 0.37333333rem;  
2410 -}  
2411 -#newsContent .en-text-2 {  
2412 - padding: 0.08rem;  
2413 - border: 0.08rem solid #ED2800;  
2414 - margin-bottom: 0.42666667rem;  
2415 -}  
2416 -#newsContent .en-text-2 + .preview-image-block {  
2417 - margin-top: 0 !important;  
2418 -}  
2419 -#newsContent .en-text-2-title {  
2420 - padding: 0.32rem;  
2421 - border: 0.02666667rem solid #ED2800;  
2422 - font-size: 0.4rem;  
2423 - line-height: 0.53333333rem;  
2424 - color: #000000;  
2425 -}  
2426 -#newsContent .en-text-3 {  
2427 - position: relative;  
2428 - border: 0.02666667rem solid #ED2800;  
2429 - padding: 0.42666667rem 0.32rem 0.32rem 0.32rem;  
2430 - margin-bottom: 0.42666667rem;  
2431 -}  
2432 -#newsContent .en-text-3 + .preview-image-block {  
2433 - margin-top: 0 !important;  
2434 -}  
2435 -#newsContent .en-text-3 .en-text-3-title {  
2436 - display: flex;  
2437 - align-items: center;  
2438 - gap: 0.16rem;  
2439 - position: absolute;  
2440 - left: 0.53333333rem;  
2441 - top: -0.24rem;  
2442 - height: 0.48rem;  
2443 - background: #fff;  
2444 - padding-right: 0.16rem;  
2445 - font-size: 0.37333333rem;  
2446 - line-height: 0.48rem;  
2447 - color: #ED2800;  
2448 -}  
2449 -#newsContent .en-text-3 .en-text-3-title .en-text-3-point {  
2450 - width: 0.13333333rem;  
2451 - height: 0.13333333rem;  
2452 - background: #ED2800;  
2453 -}  
2454 -#newsContent .en-text-3 .en-text-3-content {  
2455 - font-size: 0.4rem;  
2456 - line-height: 0.53333333rem;  
2457 - color: #000000;  
2458 -}  
2459 -#newsContent .en-text-4 {  
2460 - display: flex;  
2461 - align-items: center;  
2462 - justify-content: center;  
2463 - margin-bottom: 0.42666667rem;  
2464 -}  
2465 -#newsContent .en-text-4 + .preview-image-block {  
2466 - margin-top: 0 !important;  
2467 -}  
2468 -#newsContent .en-text-4 .en-text-4-block {  
2469 - position: relative;  
2470 - display: flex;  
2471 - align-items: center;  
2472 - justify-content: center;  
2473 - color: #fff;  
2474 - padding: 0.29333333rem 0.64rem;  
2475 - background-repeat: no-repeat;  
2476 - background-size: 100%;  
2477 - font-size: 0.48rem;  
2478 - line-height: 0.58666667rem;  
2479 -}  
2480 -#newsContent .en-text-4 .en-text-4-end {  
2481 - position: absolute;  
2482 - bottom: 0;  
2483 - right: 0;  
2484 - border: 0.05333333rem solid #fff;  
2485 - border-right: 0;  
2486 - border-bottom: 0;  
2487 - background: #ED2800;  
2488 - width: 0.21333333rem;  
2489 - height: 0.21333333rem;  
2490 -}  
2491 -#newsContent .en-text-5 {  
2492 - display: flex;  
2493 - justify-content: center;  
2494 - margin-bottom: 0.42666667rem;  
2495 -}  
2496 -#newsContent .en-text-5 + .preview-image-block {  
2497 - margin-top: 0 !important;  
2498 -}  
2499 -#newsContent .en-text-5-block {  
2500 - display: flex;  
2501 - align-items: center;  
2502 - height: 1.17333333rem;  
2503 -}  
2504 -#newsContent .en-text-5-num {  
2505 - display: flex;  
2506 - align-items: center;  
2507 - justify-content: center;  
2508 - width: 1.17333333rem;  
2509 - height: 1.17333333rem;  
2510 - background: #ED2800;  
2511 - color: #fff;  
2512 - font-weight: bold;  
2513 - font-size: 0.48rem;  
2514 - line-height: 0.58666667rem;  
2515 - color: #FFFFFF;  
2516 -}  
2517 -#newsContent .en-text-5-title {  
2518 - display: flex;  
2519 - align-items: center;  
2520 - justify-content: center;  
2521 - padding: 0 0.64rem 0 0.42666667rem;  
2522 - height: 1.17333333rem;  
2523 - background: #f4e8e9;  
2524 - font-weight: bold;  
2525 - font-size: 0.48rem;  
2526 - line-height: 0.58666667rem;  
2527 - color: #ED2800;  
2528 -}  
2529 -.statement {  
2530 - margin-top: 0.53333333rem;  
2531 - font-size: 0.32rem;  
2532 - line-height: 0.37333333rem;  
2533 - color: #CCCCCC;  
2534 -}  
2535 -.active-wrapper {  
2536 - margin-top: 0.53333333rem;  
2537 - margin-bottom: 0.77333333rem;  
2538 - height: 1.28rem;  
2539 - padding-left: 0.10666667rem;  
2540 - padding-right: 0.10666667rem;  
2541 - border-radius: 0.08rem;  
2542 - background: #F5F5F5;  
2543 - border: 0.5px solid rgba(0, 0, 0, 0.05);  
2544 -}  
2545 -.active-wrapper .active-image {  
2546 - float: left;  
2547 - margin-top: 0.09333333rem;  
2548 - width: 0.8rem;  
2549 - height: 1.06666667rem;  
2550 -}  
2551 -.active-wrapper .active-title {  
2552 - float: left;  
2553 - margin-top: 0.38666667rem;  
2554 - margin-left: 0.21333333rem;  
2555 - width: 6.93333333rem;  
2556 - overflow: hidden;  
2557 - text-overflow: ellipsis;  
2558 - display: -webkit-box;  
2559 - -webkit-line-clamp: 1;  
2560 - line-clamp: 1;  
2561 - -webkit-box-orient: vertical;  
2562 - word-break: break-all;  
2563 - font-size: 0.34666667rem;  
2564 - line-height: 0.53333333rem;  
2565 - font-weight: bold;  
2566 - color: #222222;  
2567 -}  
2568 -.active-wrapper .active-title .active-line {  
2569 - position: relative;  
2570 - display: inline-block;  
2571 - top: 0.05333333rem;  
2572 - height: 0.34666667rem;  
2573 - width: 0.04rem;  
2574 - margin: 0 0.10666667rem;  
2575 - background: #222;  
2576 -}  
2577 -.active-wrapper .active-right-icon {  
2578 - float: right;  
2579 - width: 0.42666667rem;  
2580 - height: 0.42666667rem;  
2581 - margin-right: 0.22666667rem;  
2582 - margin-top: 0.44rem;  
2583 -}  
2584 -.article-source {  
2585 - position: relative;  
2586 - margin-right: 0.21333333rem;  
2587 -}  
2588 -@keyframes voteProgressFull {  
2589 - 100% {  
2590 - width: 100%;  
2591 - }  
2592 -}  
2593 -.reload-page {  
2594 - margin-bottom: 15px;  
2595 - outline: none;  
2596 - position: relative;  
2597 - display: inline-block;  
2598 - font-weight: 400;  
2599 - white-space: nowrap;  
2600 - text-align: center;  
2601 - background-image: none;  
2602 - background-color: transparent;  
2603 - border: 1px solid transparent;  
2604 - cursor: pointer;  
2605 - transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);  
2606 - user-select: none;  
2607 - touch-action: manipulation;  
2608 - line-height: 1.57142857;  
2609 - color: rgba(0, 0, 0, 0.88);  
2610 - font-size: 14px;  
2611 - height: 32px;  
2612 - padding: 4px 15px;  
2613 - border-radius: 6px;  
2614 - box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);  
2615 - color: #fff;  
2616 - background-color: #4096ff;  
2617 -}  
2618 -/*# sourceMappingURL=index.css.map */  
1 -{"version":3,"sources":["index.less"],"names":[],"mappings":"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","file":"index.css"}