diff --git a/journalIndex/index.html b/journalIndex/index.html new file mode 100644 index 0000000..ae25634 --- /dev/null +++ b/journalIndex/index.html @@ -0,0 +1,16 @@ + + + + + Traditional Medicine Research + + + + + + + + + + + \ No newline at end of file diff --git a/journalIndex/js/journal.js b/journalIndex/js/journal.js new file mode 100644 index 0000000..a683176 --- /dev/null +++ b/journalIndex/js/journal.js @@ -0,0 +1,1707 @@ +// 期刊基础、外链、分期、话题信息加载 +var Journals_color = localStorage.getItem('Journals_color') +function bf_list() { + + $('.border_title').css({ + 'border-bottom': `1px solid ${Journals_color}`, + }) + $('.border_title_top').css({ + 'border-top': `5px solid ${Journals_color}`, + }) + $('.article_info_box .tradition-box .tradition-text .article_info_Highlights').css({ + 'color': `${Journals_color} !important`, + + }) + $('.article_ .bgv_san .alls_issue').css({ + 'background': 'none' + }) + // 相关期刊,过往分期 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournal', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + initJournalBaseInfo(result) + var arr_stage = result.data.journalStage; + var str = ""; + for (var i = 0; i < result.data.journalStage.length; i++) { + + if (arr_stage[i].stage_no == '0') { + var iss_ = '' + } else { + var iss_ = ' Issue.' + arr_stage[i].stage_no + '' + } + if (arr_stage[i].stage_icon == '') { + str += '
  • ' + + '' + + '

    ' + arr_stage[i].stage_year + 'Vol. ' + arr_stage[i].stage_vol + '' + + iss_ + '' + arr_stage[i].stage_pagename + ' ' + arr_stage[i].stage_page + '

  • ' + } else { + str += '
  • ' + + '' + + '

    ' + arr_stage[i].stage_year + 'Vol. ' + arr_stage[i].stage_vol + '' + + iss_ + '' + arr_stage[i].stage_pagename + ' ' + arr_stage[i].stage_page + '

  • ' + } + } + $('.alls_issue>div>ul').html(str); + $('.alls_issue>a').attr('href', 'stages.html?J_num=' + Jour_num); + + //var arr = result.data.relats; + //var str = ""; + // + //for (var i = 0; i < arr.length; i++) { + // + // str += '
  • ' + + // '
  • ' + // + //} + // + //$('.Rel_ated>ul').html(str); + //if (arr == '') { + // $('.Rel_ated').css('display', 'none') + //} + //if (localStorage.Journals_title == '经典中医研究') { + // $('.Rel_ated>h4').html('相关期刊'); + // $('.more').html('更多'); + //} + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + // 增加访问次数 + $.ajax({ + type: 'post', url: apiUrl + 'super/Publish/addVisitNum', + data: { 'type': Jour_num }, + success: function (result) { + if (result.code == 0) { + + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + // ShowDanger("error!"); + } + }); + + // 上侧话题列表数据 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournalTopic', + data: { + "journal_id": Jour_num + }, + success: function (result) { + Jour_num = localStorage.Journals_num; + if (result.code == 0) { + // 话题列表 + var arr_topic = result.data.topicList; + var wh_topicd = ''; + var wh_number = 0; + var panduan = ''; + var st_left_tit = ""; + var st_left_con = ""; + for (var i = 0; i < arr_topic.length; i++) { + if (arr_topic[i].position == "top") { + wh_number += 1; + wh_topicd = 'top' + var st_top_tit = ""; + var st_top_con = ""; + var forLength = arr_topic[i].title == "Diseases" ? 10 : 5 + if (wh_number == '1') { + + for (var j = 0; j < arr_topic[i].children.length; j++) { + + if (j == forLength) break; + var url_href = ''; + if (arr_topic[i].children[j].is_final == '1') { + url_href = 'topic_list.html?J_num=' + Jour_num + '&t_id=' + } else ( + url_href = 'topic.html?J_num=' + Jour_num + '&t_id=' + ) + st_top_con += '
  • ' + + '' + + '

    ' + arr_topic[i].children[j].title + '

  • ' + } + } else { + for (var j = 0; j < arr_topic[i].children.length; j++) { + if (j == forLength) break; + var url_href = ''; + if (arr_topic[i].children[j].is_final == '1') { + url_href = 'topic_list.html?J_num=' + Jour_num + '&t_id=' + } else ( + url_href = 'topic.html?J_num=' + Jour_num + '&t_id=' + ) + st_top_con += '
  • ' + + '' + + '

    ' + arr_topic[i].children[j].title + '

  • ' + } + } + if (arr_topic[i].title == "Diseases") { + st_top_tit = '

    ' + arr_topic[i].title + '

    ' + + 'More' + + '
    ' + + '

    ' + } else { + st_top_tit = '

    ' + arr_topic[i].title + '

    ' + + // 'More' + + '
    ' + + '

    ' + } + if (wh_number == '1') { + $('.art_top_topic>div>div.topics').html(''); + } else { + + $('.tmr_article>.bng_topic_bei>.art_main_con_topic>div').append(st_top_tit); + + } + + + } else if (arr_topic[i].position == "left" && arr_topic[i].title == "Diseases") { + if (panduan != '1') { + panduan = '1'; + for (var j = 0; j < arr_topic[i].children.length; j++) { + if (j == 5) break; + var url_href = ''; + if (arr_topic[i].children[j].is_final == '1') { + url_href = 'topic_list.html?J_num=' + Jour_num + '&t_id=' + } else ( + url_href = 'topic.html?J_num=' + Jour_num + '&t_id=' + ) + st_left_con += '
  • ' + + '' + + '

    ' + arr_topic[i].children[j].title + '

  • ' + + } + + st_left_tit = '

    ' + arr_topic[i].title + '

    ' + + 'More
    ' + + } + + $('.tmr_article>.bng_topic_bei>.art_main_con_topic>div').append(st_left_tit); + + } + + + } + + + $('.tmr_article>.bng_topic_bei>.art_main_con_topic>div h4').css('color', localStorage.Journals_color); + + $('.tmr_article>.bng_topic_bei>.art_main_con_topic>div').children().eq(1).addClass('top_ics'); + + if (wh_number == '1') { + $('.art_main_con_topic').css('border-bottom', '0'); + $('.wh_topicd').css('display', 'none') + } + if (Jour_num == '1') { + $('.art_top_topic').addClass('art_top_topic_tmr') + } + + if (wh_topicd == '') { + $('.art_main_con_topic').css('display', 'none') + $('.wh_topicd').css('display', 'none') + } + + if (localStorage.Journals_title == '经典中医研究') { + $('.more').html('更多'); + } + + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }); + + // 左侧客座列表数据 + $.ajax({ + type: 'post', url: apiUrl + 'api/Special/getSpecials', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + if (!result.data.is_show || result.data.is_show == "false") { + $('.jour_base_info .jour_base_info_center .mes_all .mes_all_section .mes_all_section_Gue_special').each(function () { + this.style.setProperty('display', 'none', 'important'); + }); + $('.jour_guest h4 a').css('display', 'none'); + + + } + + // 客座列表 + var arr = result.data.specials; + var str = ''; + for (var i = 0; i < arr.length; i++) { + if (arr[i].icon == '') { + var img_i = '' + } else { + var img_i = '' + } + str += '
  • ' + + '' + + '' + + `
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].editor + '. | ' + arr[i].deadline + '
  • ' + } + $('.Special_Issues_box>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&top_id=' + Jour_num); + $('.Special_Issues_box>ul').html(str + '
    '); + if (arr == '') { + $('.Special_Issues_box').css('display', 'none') + } + + + // for (var i = 0; i < arr.length; i++) { + // if (i == 3) break; + // str += '
  • ' + arr[i].title + '
    ' + + // 'Guest Editor: ' + arr[i].editor + '
    ' + + // 'Deadline: ' + arr[i].deadline + '' + + // '
    Submit Article' + + // 'Guest Editor Application
  • ' + // } + // $('.jour_guest ul').html('

    Open Special Issues

    ' + str); + // $('.jour_guest>a').attr('href', 'gue_edit.html?J_num=' + Jour_num); + // $('.jour_guest h4 a').attr('href', 'guest.html?J_num=' + Jour_num); + // if (str == '') { + // $('.gue_is_lis').css('display', 'none'); + // } + + + // $('.jour_guest ul li a.gue_submin').click(function () { + // // 判断是否有身份 + // if ($.cookie("username") != undefined && $.cookie("user_id") != undefined) { + // window.open('contribu_list.html?J_num=' + Jour_num + '&&special_id=' + $(this).attr('alt')); + // } else { + // window.open('contribu_login.html?J_num=' + Jour_num + '&&special_id=' + $(this).attr('alt')); + // } + // }) + // $('.jour_guest ul li a.gue_appli').click(function () { + // window.open('gue_cont_gea.html?J_num=' + Jour_num + '&&Gu_num=' + $(this).attr('alt')); + // }) + + } else { + ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }) + // 中侧推广文章 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournalArticles', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + var atg = result.data.stage; + if (atg.stage_no == '0') { + var time_ = atg.issue_date + ', Volume ' + atg.stage_vol; + } else { + var time_ = atg.issue_date + ', Volume ' + atg.stage_vol + ' Issue ' + atg.stage_no; + } + $('.jour_base_info .jour_base_info_center .mes_all .mes_all_section .mes_all_current_issue_time').html(time_) + if (atg.stage_no == '0') { + var act_year = ' ' + atg.stage_year + ', ' + atg.stage_vol; + } else { + var act_year = ' ' + atg.stage_year + ', ' + atg.stage_vol + ' (' + atg.stage_no + ')'; + } + + var arr = result.data.articleList; + var str = ""; + var sth = ""; + var stj = ""; + + + for (var i = 0; i < arr.length; i++) { + if (arr[i].doi == '') { + var doi_ = '' + } else { + var doi_ = 'https://doi.org/' + arr[i].doi + } + if (arr[i].npp == '') { + var npp_ = '' + } else { + var npp_ = ': ' + arr[i].npp + '.  ' + } + if (arr[i].has_html == 0) { + if (arr[i].file_html == '') { + var html_ = '' + } else { + var html_ = 'HTML ( ' + arr[i].html_num + ' )  ' + } + } else { + var html_ = 'HTML ( ' + arr[i].html_num + ' )  ' + } + if (arr[i].file_pdf == '') { + var pdf_ = '' + } else { + var pdf_ = 'PDF ( ' + arr[i].pdf_num + ' )' + } + if (arr[i].cite_num == 0) { + var cite_ = '' + } else { + var cite_ = ` WOS Citations ( ${arr[i].cite_num}  ) + ` + } + if ((Math.round(Date.parse(new Date()) / 1000) - arr[i].ctime) / 86400 >= 21) { + var tong_geogle = ' ' + + 'Google Scholar' //搜索引用次数 + } else { + var tong_geogle = '' //少于21天隐藏 + } + if ((Math.round(Date.parse(new Date()) / 1000) - arr[i].ctime) / 86400 >= 21) { + var tong_geogle_2_1 = ' ' + + 'Google Scholar' //搜索引用次数 + } else { + var tong_geogle_2_1 = '' //少于21天隐藏 + } + if ((Math.round(Date.parse(new Date()) / 1000) - arr[i].ctime) / 86400 >= 21) { + var tong_geogle_2_2 = ' ' + + 'Google Scholar' //搜索引用次数 + } else { + var tong_geogle_2_2 = '' //少于21天隐藏 + } + + if (arr[i].article_id == '172') { + var mp4_ = '' + } else { + var mp4_ = '' + } + if (arr[i].icon == '') { + var img_i = '' + } else { + var img_i = imgarticleUrl + arr[i].icon + } + + if (arr[i].other_state == 0) { + var otStat = '' + } else if (arr[i].other_state == 1) { + var otStat = 'Editorial Expression of Concern' + } else if (arr[i].other_state == 2) { + var otStat = 'Retracted' + } + + if (arr[i].article_id == '86' || arr[i].article_id == '176' || arr[i].article_id == '455' || arr[i].article_id == '400' || arr[i].article_id == '145' || arr[i].article_id == '116' || arr[i].article_id == '717' || arr[i].article_id == '632' || arr[i].article_id == '24') { + var person_img = '' + var person_img1 = '' + } else { + var person_img = '' + if (img_i && img_i != '') { + var person_img1 = '
    ' + + } else { + var person_img1 = '
    ' + } + + } + + + arr[i].abstract = arr[i].abstract.replace(new RegExp("0, 102, 204", "g"), "0,102,153") + + var c_t_a = '' + + var link_ = 'Abstract ( ' + arr[i].abs_num + ' )   ' + + html_ + pdf_ + mp4_ + c_t_a + cite_ + tong_geogle + + '

    ' + arr[i].cite + '

    ' + arr[i].abstract + '
    '; + var lr_top = '' + if (arr[i].topic && arr[i].topic.length > 0) { + for (var t = 0; t < arr[i].topic.length; t++) { + lr_top += '' + arr[i].topic[t].title + '' + } + } + + + if (arr[i].tradition_tag == '') { + var trad_tion = ''; + } else { + var traditionText = arr[i].tradition; + var maxTradHeight = 220; // 设置最大高度 + + trad_tion = `
    +
    ${arr[i].tradition_tag}: ${traditionText}
    +
    `; + + setTimeout(() => { + let traditionElement = document.querySelector('.tradition-text:last-of-type'); + if (traditionElement.scrollHeight > maxTradHeight) { + let words = traditionText.split(" "); + let truncatedText = ""; + + for (let j = 0; j < words.length; j++) { + truncatedText += words[j] + " "; + traditionElement.innerText = truncatedText + "..."; + if (traditionElement.scrollHeight > maxTradHeight) { + truncatedText = truncatedText.trim().split(" ").slice(0, -1).join(" "); + traditionElement.innerText = truncatedText + " ..."; + break; + } + } + } + }, 100); // 确保 DOM 渲染完成 + } + str += `
  • +
    + ${arr[i].type} +
    ${lr_top}
    +
    + +
    + ${person_img1} + +
    +
    +
  • ` + + } + + + $('.current_list>ul').html(str); + $('.links_ .txt_copy').css('background', localStorage.Journals_color); + $('.url_top a').css('margin-right', '0'); + $(".current_list ul>li .apwrap>div>div>p").each(function () { + var maxwidth = 335;//显示多少字符 + if ($(this).text().length > maxwidth) { + $(this).text($(this).text().substring(0, maxwidth)); + $(this).text($(this).text().substring(0, maxwidth - $(this).text().split(" ").pop().length)); + $(this).html($(this).html() + '...'); + } + }); + $(".current_list ul li.pai_two .apwrap>div>div>p").each(function () { + var maxwidth = 140;//显示多少字符 + if ($(this).text().length > maxwidth) { + $(this).text($(this).text().substring(0, maxwidth)); + $(this).text($(this).text().substring(0, maxwidth - $(this).text().split(" ").pop().length)); + $(this).html($(this).html() + '...'); + } + }); + + // 点击read more效果 + // $('.current_list li .apwrap>div>b').click(function () { + // if($(this).html()=='read more '){ + // $(this).siblings('div').css('display', 'block'); + // $(this).html('read more '); + // }else{ + // $(this).siblings('div').css('display', '-webkit-box'); + // $(this).html('read more ') + // } + // }) + + + // 点击Abstract显示隐藏 + $('.current_list .txt_zhaiyao').click(function () { + $(this).nextAll('div').toggle(); + if ($(this).nextAll('div').css("display") == 'block') { + var num = $(this).next().html(); + $.ajax({ + type: 'post', url: apiUrl + 'yuan/Article/addArticleNum', async: false, + data: { "article_id": $(this).attr('alt'), "type": 'abs' }, + success: function (result) { + if (result.code == 0) { + num = num * 1 + 1 * 1 + } + } + }) + $.ajax({ + type: 'post', url: apiUrl + 'super/Publish/addVisitNum', + data: { 'type': Jour_num, 'is_detail': '1' }, + success: function (result) { + } + }); + $(this).next().html(num); + } + }) + $('.current_list .txt_html').click(function () { + var num = $(this).next().html(); + $.ajax({ + type: 'post', url: apiUrl + 'yuan/Article/addArticleNum', async: false, + data: { "article_id": $(this).attr('alt'), "type": 'html' }, + success: function (result) { + if (result.code == 0) { + num = num * 1 + 1 * 1 + } + } + }) + $.ajax({ + type: 'post', url: apiUrl + 'super/Publish/addVisitNum', + data: { 'type': Jour_num, 'is_detail': '1' }, + success: function (result) { + } + }); + $(this).next().html(num); + }) + $('.current_list .txt_pdf').click(function () { + var num = $(this).next().html(); + $.ajax({ + type: 'post', url: apiUrl + 'yuan/Article/addArticleNum', async: false, + data: { "article_id": $(this).attr('alt'), "type": 'pdf' }, + success: function (result) { + if (result.code == 0) { + num = num * 1 + 1 * 1 + } + } + }) + $.ajax({ + type: 'post', url: apiUrl + 'super/Publish/addVisitNum', + data: { 'type': Jour_num, 'is_detail': '1' }, + success: function (result) { + } + }); + $(this).next().html(num); + }) + $('.current_list .export_cite').css('display', 'none'); + $(document).click(function (e) { + if (!$(e.target).is('.export_cite') && !$(e.target).is('.cite_box')) { + $('.export_cite').hide(); + } + }) + $('.current_list .cite_box').click(function () { + $('.export_cite').css('display', 'none'); + getCiteList($(this).attr('article_id')) + $(this).find('.export_cite').fadeIn(200); + }) + $('.export_cite').click(function (e) { e.stopPropagation() }) + + // 点击弹窗出现 复制和下载 + $('.current_list .txt_content').css('display', 'none'); + $('.current_list .export').css('display', 'none'); + $(document).click(function (e) { + if (!$(e.target).is('.export') && !$(e.target).is('.txt_copy')) { + $('.export').hide(); + } + }) + $('.current_list .txt_copy').click(function () { + $('.export').css('display', 'none'); + $(this).find('.export').fadeIn(200); + }) + $('.current_list .Exc_1').click(function () { + var content_ = $(this).parents('.txt_copy').nextAll('.txt_content').text(); + var clipboard = new Clipboard('#' + $(this).attr('id'), { + text: function () { + return content_; + } + }) + clipboard.on('success', function (e) { + ShowSuccess("Citation information has been copied!"); + }); + }) + $('.current_list .Exc_2').click(function () { + var ecx_id = $(this).parents('.links_').siblings('.txt_biaoti').attr('id') + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getArticleenw', async: false, + data: { "article_id": ecx_id }, + success: function (result) { + var a = document.createElement('a'); + a.href = result.data.url; + a.download = '' + a.click(); + } + }) + }) + $('.current_list .Exc_3').click(function () { + var ecx_id = $(this).parents('.links_').siblings('.txt_biaoti').attr('id') + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getArticleRis', async: false, + data: { "article_id": ecx_id }, + success: function (result) { + var a = document.createElement('a'); + a.href = result.data.url; + a.download = '' + a.click(); + } + }) + }) + $('.current_list .Exc_4').click(function () { + var ecx_id = $(this).parents('.links_').siblings('.txt_biaoti').attr('id') + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getArticlebib', async: false, + data: { "article_id": ecx_id }, + success: function (result) { + var a = document.createElement('a'); + a.href = result.data.url; + a.download = '' + a.click(); + } + }) + }) + + $('.current_list .Exc_5').click(function () { + var ecx_id = $(this).parents('.links_').siblings('.txt_biaoti').attr('id') + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getArticletext', async: false, + data: { "article_id": ecx_id }, + success: function (result) { + var a = document.createElement('a'); + a.href = result.data.url; + a.download = '' + a.click(); + } + }) + }) + + + // 订阅期刊 + $('.top .top_sea .b_Sub').css('color', localStorage.Journals_color) + $('.top .top_sea .search_for select').css('border-color', localStorage.Journals_color) + + $('.top .dingyue input.yue_add').css('background-color', localStorage.Journals_color); + $('.top .dingyue p b').html(localStorage.Journals_title); + $('.top .jour_ts input.tishi_author').css('background-color', localStorage.Journals_color); + // 添加订阅按钮点击弹出 + // $('.top .top_sea .b_Sub').click(function () { + // $("#mask").css("height",$(document).height()); + // $("#mask").css("width",$(document).width()); + // $("#mask").show(); + // $(".dingyue").fadeIn(); + // document.body.addEventListener('touchmove',bodyScroll,false); + // $('body').css({'position':'fixed',"width":"100%"}); + // }) + $(".top .dingyue .mb_close").click(function () { + $("#mask").hide(); + $(".dingyue").fadeOut(); + document.body.removeEventListener('touchmove', bodyScroll, false); + $("body").css({ "position": "initial", "height": "auto" }); + }); + $(".top .dingyue input.yue_close").click(function () { + $("#mask").hide(); + $(".dingyue").fadeOut(); + document.body.removeEventListener('touchmove', bodyScroll, false); + $("body").css({ "position": "initial", "height": "auto" }); + }); + $(".top .jour_ts input.tishi_author").click(function () { + $("#mask").hide(); + $(".jour_ts").fadeOut(); + document.body.removeEventListener('touchmove', bodyScroll, false); + $("body").css({ "position": "initial", "height": "auto" }); + }); + + function bodyScroll(event) { + event.preventDefault(); + } + + // 订阅提交 + $(".yue_add").click(function () { + $(".spa").text(''); + var add_mess = {}; + add_mess.journal_id = localStorage.Journals_num; + add_mess.email = $('#emapl').val(); + + var S_Dan = '0'; + var reg = /^[-.-_A-Za-z0-9]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/ + if ($("#emapl").val() == "") { + $(".spa1").text('Please fill in E-mail'); + S_Dan = '1'; + } else if (!(reg.test($("#emapl").val()))) { + $(".spa1").text('Please fill in properly formatted E-mail'); + S_Dan = '1'; + } + + + if (S_Dan == '1') { + ShowDanger("Incomplete information!"); + } else { + $(".yue_add").addClass("disable"); + $.ajax({ + type: 'post', url: apiUrl + 'subscribe/Journal/addSubscribeJournal', + data: add_mess, + success: function (result) { + if (result.code == 0) { + $(".dingyue").fadeOut(); + $(".dingyue input[type='text']").val(''); + $(".yue_add").removeClass("disable"); + $(".jour_ts").fadeIn(); + } else { + ShowDanger(result.msg); + $(".yue_add").removeClass("disable"); + } + }, + error: function () { + ShowDanger("error!"); + $(".yue_add").removeClass("disable"); + } + }) + } + }) + + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // 中下侧Online First文章 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getOnlineArticle', + data: { + "journal_id": Jour_num, 'pageIndex': '1', 'pageSize': '4' + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articlelist; + var str = ""; + for (var i = 0; i < arr.length; i++) { + if (i == 4) break; + if (arr[i].icon == '') { + var img_i = '' + } else { + var img_i = '' + } + str += '
  • ' + img_i + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
  • ' + + } + $('.online_fr>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&o_id=' + Jour_num); + $('.online_fr>ul').html(str + '
    '); + if (arr == '') { + $('.online_fr').css('display', 'none') + } + + + } else { + // ShowDanger("请求失败!"); + $('.online_fr').css('display', 'none') + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // 下侧分期列表数据 + //$.ajax({ + // type: 'post', url: apiUrl + 'api/Journal/getMainPageStages', + // data: { + // "journal_id": Jour_num + // }, + // success: function (result) { + // if (result.code == 0) { + // + // // 分期信息 + // if (result.data.topic_show_type == 1) { + // var arr_stage = result.data.stages; + // var str = ""; + // for (var i = 0; i < 4; i++) { + // + // if (arr_stage[i].stage_no == '0') { + // var iss_ = '' + // } else { + // var iss_ = ' Issue. ' + arr_stage[i].stage_no + '' + // } + // str += '
  • ' + + // '' + + // '

    ' + arr_stage[i].stage_year + 'Vol. ' + arr_stage[i].stage_vol + '' + // + iss_ + '' + arr_stage[i].stage_pagename +' '+ arr_stage[i].stage_page + '

  • ' + // + // } + // $('.alls_issue>div>ul').html(str); + // $('.alls_issue>a').attr('href', 'stages.html?J_num=' + Jour_num); + // }else{ + // $('.alls_issue').css('display', 'none') + // } + // + // } else { + // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + //}) + + + // 下侧话题列表数据 + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getTopicArticles', + data: { + "topic_id": 32, + "pageIndex": 1, + "pageSize": 10 + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articleList; + var str1 = ""; + var str2_1 = ""; + var str2_2 = ""; + var str3 = ""; + var str1_num = 0; + var str2_num_1 = 0; + var str2_num_2 = 0; + var str3_num = 0; + for (var i = 0; i < arr.length; i++) { + if (arr[i].stage_year == 2020 && str1_num < 1) { + str1_num = str1_num + 1 + str1 += '' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '' + + '' + + '

    ' + arr[i].title + '

    ' + } else if (arr[i].stage_year == 2020 && str2_num_1 < 1) { + str2_num_1 = str2_num_1 + 1 + str2_1 += '
    ' + + '' + arr[i].abbr + '. | ' + arr[i].stage_year + '' + + '

    ' + + arr[i].title + '

    ' + } else if (arr[i].stage_year == 2020 && str2_num_2 < 1) { + str2_num_2 = str2_num_2 + 1 + str2_2 += '
    ' + + '' + arr[i].abbr + '. | ' + arr[i].stage_year + '' + + '

    ' + + arr[i].title + '

    ' + } else if (arr[i].stage_year >= 2020 && str3_num < 3) { + str3_num = str3_num + 1 + str3 += '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '' + + '

    ' + + arr[i].title + '

    ' + } + + } + + $('.hua_tpice .tpice_cancar .tpoce_con1').html(str1); + $('.hua_tpice .tpice_cancar .tpoce_con2').html(str2_1 + str2_2 + '
    '); + $('.hua_tpice .tpice_cancar .tpoce_con3').html(str3); + + } + } + }) + + // $.ajax({ + // type: 'post', url: apiUrl + 'api/Journal/getJournalTopic', + // data: { + // "journal_id": Jour_num + // }, + // success: function (result) { + // if (result.code == 0) { + // // 话题列表 + // var arr_topic = result.data.topicList; + // + // var panduan = '' + // for (var i = 0; i < arr_topic.length; i++) { + // if (arr_topic[i].position == "left") { + // if (panduan == '1') { + // break + // } + // panduan = '1'; + // var st_left = ""; + // $('.hua_tpice>h4').html('Alzheimer Disease'); + // $('.hua_tpice>a').attr('href', 'topic_list.html?J_num=1&t_id=32'); + // $('.hua_tpice .tpice_lies>a').attr('href', 'topic.html?J_num=' + Jour_num + '&t_id=' + arr_topic[i].journal_topic_id); + // for (var j = 0; j < arr_topic[i].children.length; j++) { + // if (arr_topic[i].children[j].title != 'Alzheimer Disease') { + // if (j == 4) break; + // var url_href = ''; + // if (arr_topic[i].children[j].is_final == '1') { + // url_href = 'topic_list.html?J_num=' + Jour_num + '&t_id=' + // } else ( + // url_href = 'topic.html?J_num=' + Jour_num + '&t_id=' + // ) + // st_left += '
  • ' + + // '' + + // '
    ' + arr_topic[i].children[j].title + '
  • ' + // } + // } + // $('.hua_tpice ul.tpice_lies').prepend(st_left); + // + // if (st_left == '') { + // $('.jour_sta_tp_left_more').css('display', 'none'); + // } + // } + // } + // if (panduan == '') { + // $('.jour_hauti_pd').css('display', 'none'); + // } + // } else { + // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + // }) + + + // TMR 中下侧News & conmment文章 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getNewsArticle', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articlelist; + var str = ""; + var sgr = ""; + + var j = 0; + var q = 0; + for (var i = 0; i < arr.length; i++) { + if (arr[i].type == 'News') { + if (j < 2) { + j++; + str += '
  • ' + + '' + + '' + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
  • ' + } + } else if (arr[i].type == 'Comment') { + if (q < 2) { + q++; + sgr += '
  • ' + + '' + + '' + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
  • ' + } + } + } + + $('.ment_news>div>div:nth-child(1)>ul').html(str); + $('.ment_news>div>div:nth-child(1) h4 a.m_new').attr('href', 'article_list.html?J_num=' + Jour_num + '&new_id=1'); + + $('.ment_news>div>div:nth-child(2)>ul').html(sgr + '
    '); + $('.ment_news>div>div:nth-child(2) h4 a.m_con').attr('href', 'article_list.html?J_num=' + Jour_num + '&con_id=1'); + + } else { + // ShowDanger("请求失败!"); + $('.ncon_fr_tmr').css('display', 'none') + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // 中下侧Highlights文章 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getTopArticle', + data: { + "journal_id": Jour_num, + "pageIndex": '1', + "pageSize": '4' + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articles; + var str = ""; + for (var i = 0; i < arr.length; i++) { + if (arr[i].icon == '') { + var img_i = '' + } else { + var img_i = '' + } + str += '
  • ' + + '' + + '' + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
  • ' + } + $('.ncon_hl>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&top_id=' + Jour_num); + $('.ncon_hl>ul').html(str + '
    '); + if (arr == '') { + $('.ncon_hl').css('display', 'none') + } + + } else { + // ShowDanger("请求失败!"); + $('.ncon_hl').css('display', 'none') + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // TMR 中下侧Top cited / Top read / Top download文章切换 + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getTopArt', + data: { + "journal_id": Jour_num, + "type": 'cited', + "pageIndex": '1', + "pageSize": '8' + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articleList; + var str = ""; + for (var i = 0; i < arr.length; i++) { + if (arr[i].icon == '') { + var img_i = 'img/baiss.png' + } else { + var img_i = imgarticleUrl + arr[i].icon + } + + str += '
    ' + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
    ' + + } + + $('.ncon_tcrd_tmr>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&cite_id=1'); + + $('.ncon_tcrd_tmr>ul').html('
    '); + $('#Marquee_x').jcMarquee({ 'marquee': 'x', 'speed': 20 }); + + + $('.ncon_tcrd_tmr h4 span').click(function () { + var tnm_num = $(".ncon_tcrd_tmr h4 span").index(this) + 1; + $('.ncon_tcrd_tmr h4 span').css('font-weight', 'normal') + $(this).css('font-weight', '600') + if (tnm_num == '1') { + var tnm_type = 'cited'; + $('.ncon_tcrd_tmr>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&cite_id=1'); + } + if (tnm_num == '2') { + var tnm_type = 'read'; + $('.ncon_tcrd_tmr>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&read_id=1'); + } + if (tnm_num == '3') { + var tnm_type = 'download'; + $('.ncon_tcrd_tmr>a').attr('href', 'article_list.html?J_num=' + Jour_num + '&down_id=1'); + } + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getTopArt', + data: { + "journal_id": Jour_num, + "type": tnm_type, + "pageIndex": '1', + "pageSize": '8' + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.articleList; + var str = ""; + + for (var i = 0; i < arr.length; i++) { + + if (arr[i].icon == '') { + var img_i = 'img/baiss.png' + } else { + var img_i = imgarticleUrl + arr[i].icon + } + str += '
    ' + + '
    ' + arr[i].title + '
    ' + + '
    ' + arr[i].abbr + '. | ' + arr[i].stage_year + '
    ' + + } + $('.ncon_tcrd_tmr>ul').html('
    '); + $('#Marquee_x').jcMarquee({ 'marquee': 'x', 'speed': 20 }); + + } + } + }) + }) + } else { + // ShowDanger("请求失败!"); + $('.ncon_tcrd_tmr').css('display', 'none') + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // 下侧Call for Paper文章 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournalCfp', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.cfps; + var str = ""; + for (var i = 0; i < arr.length; i++) { + if (i == 2) break; + + str += '
  • ' + arr[i].showtime + '
    ' + + '' + arr[i].title + '
    ' + + '
    ' + arr[i].content + '
    ' + + '
  • ' + + } + $('.ncon_aper>a').attr('href', 'notice_list.html?J_num=' + Jour_num + '&paper_id=' + Jour_num); + $('.ncon_aper>ul').html(str + '
    '); + if (arr == '') { + $('.ncon_aper').css('display', 'none') + } + + $(".ncon_aper ul .cfp_con").each(function () { + var maxwidth = 150;//显示多少字符 + if ($(this).text().length > maxwidth) { + $(this).text($(this).text().substring(0, maxwidth)); + $(this).text($(this).text().substring(0, maxwidth - $(this).text().split(" ").pop().length)); + $(this).html($(this).html() + '...'); + } + }); + + + } else { + // ShowDanger("请求失败!"); + $('.ncon_aper').css('display', 'none') + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + // 下面新增加社区内容 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getAllTopics', + data: {}, + beforeSend: function () { + + }, + + success: function (result) { + if (result.code == 0) { + + var old_arry = result.data.topic; + var new_arry = result.data.topic; + + new_arry = old_arry.map(o => { + return { id: o.base_topic_id, text: o.title } + }) + + for (var i = 0; i < old_arry.length; i++) { + new_arry[i].children = old_arry[i].children.map(o => { + return { id: o.base_topic_id, text: o.title } + }) + } + + $('#com_index').selectivity({ + allowClear: true, + items: new_arry, + placeholder: 'Please select a topic' + }) + + $('.es_serch_btn').click(function () { + $('.es_serch_span').css('display', 'none') + if ($('#com_index').selectivity('val') == null) { + $('.es_serch_span').css('display', 'block') + $('.es_serch_span').text('Please select a topic') + ShowDanger("Request was aborted!"); + } else { + window.open("atr_wisdom.html?&wis_dom=" + $('#com_index').selectivity('val')); + } + }) + + + // 期刊订阅提交 + $(".uity_Sub").click(function () { + $(".spa_su").text(''); + var add_mess = {}; + add_mess.journal_id = localStorage.Journals_num; + add_mess.email = $(".uity_inp").val(); + + var S_Dan = '0'; + var reg = /^[-.-_A-Za-z0-9]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/ + if ($(".uity_inp").val() == "") { + $(".spa_su").text('Please fill in E-mail'); + S_Dan = '1'; + } else if (!(reg.test($(".uity_inp").val()))) { + $(".spa_su").text('Please fill in properly formatted E-mail'); + S_Dan = '1'; + } + + if (S_Dan == '1') { + ShowDanger("Incomplete information!"); + } else { + $(".uity_Sub").addClass("disable"); + $.ajax({ + type: 'post', url: apiUrl + 'subscribe/Journal/addSubscribeJournal', + data: add_mess, + success: function (result) { + if (result.code == 0) { + $(".suity_for input[type='text']").val(''); + $(".uity_Sub").removeClass("disable"); + $(".jour_ts").fadeIn(); + } else { + ShowDanger(result.msg); + $(".uity_Sub").removeClass("disable"); + } + }, + error: function () { + ShowDanger("error!"); + $(".yue_addw").removeClass("disable"); + } + }) + } + }) + + } else { + ShowDanger("请求失败!"); + } + } + }) + + + // 时间轴 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournalLine', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + var arr = result.data.lines; + var str = ""; + var shr = ""; + var dis_ = 946656000000; + + + for (var i = 0; i < arr.length; i++) { + + + var disx_ = arr[i].dist * 86700000 + dis_ = dis_ + disx_ + + str += '
  • ' + arr[i].time + '
  • ' + + + if (i == arr.length - 1) { + shr += '
  • ' + + '' + + '

    ' + + '>> ' + arr[i].title + '

    ' + + '

    ' + arr[i].intro + '


  • ' + } else { + if (arr[i].time == arr[i + 1].time) { + shr += '
  • ' + + '' + + '

    ' + + '>> ' + arr[i].title + '

    ' + + '

    ' + arr[i].intro + '


    ' + + '' + + '

    ' + + '>> ' + arr[i + 1].title + '

    ' + + '

    ' + arr[i + 1].intro + '


    ' + + '
  • ' + i = i + 1; + } else { + shr += '
  • ' + + '' + + '

    ' + + '>> ' + arr[i].title + '

    ' + + '

    ' + arr[i].intro + '


  • ' + } + } + + + } + + $('.cd-horizontal-timeline').css('display', 'none') + + // if(arr==''||arr==undefined){ + // $('.cd-horizontal-timeline').css('display','none') + // $('.wh_timeline').css('display','none') + // }else{ + // $('.events-wrapper ol').html(str); + // $('.events-wrapper ol li:nth-child(1) a').addClass('selected'); + // + // $('.events-content ol').html(shr); + // $('.events-content ol li:nth-child(1)').addClass('selected'); + // + // line_time(); + // } + + + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }) + + + + + + // 底部浮动订阅 + // var flag = true; + // $(window).on('scroll',function(){ + // if(flag) { + // $('.footpanel').css('display','block'); + // } + // flag = false + // }) + $(".footpanel .ftp_close").click(function () { + $(".footpanel").hide(); + }); + $('.footpanel .ftp_paper .fpr_from a').attr('href', 'agree.html'); + + // 订阅提交 + $(".yue_addfp").click(function () { + $(".spafp").text(''); + var add_mess = {}; + add_mess.journal_id = localStorage.Journals_num; + add_mess.email = $('#emapfp').val(); + + var S_Dan = '0'; + var reg = /^[-.-_A-Za-z0-9]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/ + if ($("#emapfp").val() == "") { + $(".spafp").text('Please fill in E-mail'); + S_Dan = '1'; + } else if (!(reg.test($("#emapfp").val()))) { + $(".spafp").text('Please fill in properly formatted E-mail'); + S_Dan = '1'; + } else if ($(".footpanel input:checkbox[name='ment']:checked").val() == undefined) { + $(".spafp").text('Please check the agreement'); + S_Dan = '1' + } + + + if (S_Dan == '1') { + ShowDanger("Incomplete information!"); + } else { + $(".yue_add").addClass("disable"); + $.ajax({ + type: 'post', url: apiUrl + 'subscribe/Journal/addSubscribeJournal', + data: add_mess, + success: function (result) { + if (result.code == 0) { + $(".fpr_from input[type='text']").val(''); + $(".yue_addfp").removeClass("disable"); + $(".jour_ts").fadeIn(); + } else { + ShowDanger(result.msg); + $(".yue_addfp").removeClass("disable"); + } + }, + error: function () { + ShowDanger("error!"); + $(".yue_addfp").removeClass("disable"); + } + }) + } + }) + + + //搜索 + $('.ment_sousuo_kuang .soukuang_btn').click(function () { + window.open("jour_search.html?J_num=" + Jour_num + "&se_ch=" + $(".ment_sousuo_kuang .soukuang_inp").val()); + }) +} + +function getCiteList(a_ID) { + $('.cite_box .export_cite').html('
    '); + var journalCiteStr = '' + $.ajax({ + type: 'post', url: apiUrl + 'api/Article/getArticleCites', + data: { + "article_id": a_ID + }, + success: function (result) { + if (result.code == 0) { + + var arr = result.data.list + for (let i in arr) { + journalCiteStr += ` +

    ${Number(i) + 1}.

    +
    +

    + ${arr[i].article_name} +

    + +

    + ${arr[i].author ? `${arr[i].author},` : ''} ${arr[i].journal_name}${arr[i].vol ? `${arr[i].vol},` : ''} + + +

    + +
    ` + } + journalCiteStr += `
    ` + + $('.cite_box .export_cite').html(journalCiteStr); + + + + + + } + } + }) +} +function processAuthors(authors) { + var authorArray = authors.split(","); // 将作者按逗号分割为数组 + if (authorArray.length > 6) { + return authorArray.slice(0, 3).join(", ") + ", et al"; // 如果超过6个作者,显示前三个并加上 "et al." + } else { + return authorArray.join(", "); // 如果6个或更少作者,直接显示所有 + } +} +function initJournalBaseInfo(result) { + //头部左侧期刊信息(issn+img) + var arr_jour = result.data.journal; + console.log('arr_jour at line 1409:', arr_jour) + var ImpactFactor = '' + var CiteScore = '' + // 出版周期匹配 + switch (arr_jour.cycle) { + case 1: + arr_jour.cycle_ = 'Monthly'; + break; + case 2: + arr_jour.cycle_ = 'Bimonthly'; + break; + case 3: + arr_jour.cycle_ = 'Quarterly'; + break; + default: + arr_jour.cycle_ = 'Unknown'; // 默认情况,可以根据需要调整 + break; + } + switch (Number(Jour_num)) { + //tmr + case 1: + ImpactFactor = '1.3' + CiteScore = '1.8' + break; + case 2: + case 17: + case 18: + arr_jour.cycle_ = 'Continuities'; + break; + + } + + // 外链信息 + var arr_Abc = result.data.journalAbs.filter(e => e.is_show == 1); + var AbstractingStr = ""; + for (var i = 0; i < arr_Abc.length; i++) { + // if (arr_Abc[i].is_show == 1) { + AbstractingStr += `
  • » ${arr_Abc[i].title}
  • ` + // } + } + + + + var apcStr = ``; + if ([1, 25, 11].includes(Number(Jour_num))) { + apcStr = arr_jour.apc + } else { + apcStr = arr_jour.apc + `( 2025 - 2026 )`; + } + var leftStr = ` + + + +

    ISSN: ${arr_jour.issn}

    + ` + $('.jour_base_info .jour_base_info_center .jour_base_info_center_left').html(leftStr); + //头部左侧期刊其他信息 + var otherStr1 = ` +

  • +
    +

    + Editor-in-Chief: + ${arr_jour.editorinchief} +

    + +

    + Editorial Board + + + +

    +

    Impact Factor (Clarivate): ${ImpactFactor}

    +

    CiteScore (Scopus): ${CiteScore}

    +

    Acceptance: ${arr_jour.acceptance}

    +

    Final Decision: ${arr_jour.finaldecision}

    +

    APC: ${apcStr}Free application +

    +

    Frequency: ${arr_jour.cycle_}

    +

    E-Mail: ${arr_jour.email}

    + + +
    +
  • + ` + var otherStr2 = ` +
  • +
    Archiving
    +

    Current Issue

    +

    +

    Online First

    +

    Archiving

    +

    Special Issues

    +

    Highlights

    +

    Topics

    +
  • ` + var otherStr3 = ` +
  • +
    Publish
    +

    About Journal

    + +
    +

    Authorship

    +
    +
    +
      +
      +
      +

      Guide for Authors

      +

      Peer-review process

      +

      Submission System

      +

      Ethics and Malpractice Statement

      +

      Special Issue Proposal Application

      +

      Contact us

      + +
    • + ` + + + + + var otherStr4 = ` +
    • +
      Abstracting & Indexing
      + +
    • + ` + $('.jour_base_info .jour_base_info_center .mes_all .mes_all_section').html(otherStr1 + otherStr2 + otherStr3 + otherStr4); + $('.mes_Abs li:gt(6)').hide(); + $(".wl_click").bind('click', function (e) { + e.stopPropagation(); + // f4fafd + $('.mes_Abs').css({ + 'background': '#fff' + }) + if ($(".wl_click").html() == 'more ') { + $('.mes_Abs li:gt(14)').hide(); + $('.wl_click').html('more '); + } else { + $('.mes_Abs li:gt(14)').show(); + $('.wl_click').html('more '); + $('.mes_Abs').css({ + 'background': '#f4fafd' + }) + } + }); + $(".wl_click").css('color', arr_jour.system_color); + renderMap(160, function () { + console.log('Operation after renderMap'); + $(".AuthorshipInfo").css("width", '0px') + }); + $(".jour_base_info .jour_base_info_center .mes_all .mes_all_section .mes_all_section_other .Authorship .Authorship_text").click(function (e) { + // 阻止事件冒泡,避免触发文档点击事件 + e.stopPropagation(); + // 获取 .AuthorshipInfo 元素 + var $exportMenu = $(".AuthorshipInfo"); + // 如果元素的透明度为 0(即不可见),就将其显示(设置透明度为 1) + if ($exportMenu.css("opacity") == 0) { + $exportMenu.stop().animate({ opacity: 1 }, 200); // 渐变显示 + $exportMenu.css("width", '270px'); // Set z-index to 11 when visible + } else { + $exportMenu.stop().animate({ opacity: 0 }, 200); // 渐变隐藏 + $exportMenu.css("width", '0px'); // Set z-index to 11 when visible + } + }); + // 点击其他地方时隐藏 .AuthorshipInfo + $(document).click(function (e) { + if (!$(e.target).closest(".jour_base_info .jour_base_info_center .mes_all .mes_all_section .mes_all_section_other .Authorship .Authorship_text").length + && !$(e.target).closest(".AuthorshipInfo").length) { + $(".AuthorshipInfo").stop().animate({ opacity: 0 }, 200); // 点击其他地方时渐变隐藏 + $(".AuthorshipInfo").css("width", '0px') + } + + const isExpanded = $('.wl_click').html().includes('arrow-up'); + if (isExpanded) { + $('.mes_Abs li:gt(14)').hide(); + $('.wl_click').html('more '); + $('.mes_Abs').css({ + 'background': '#fff' + }) + } + + + }); + +} \ No newline at end of file diff --git a/journalIndex/js/side.js b/journalIndex/js/side.js new file mode 100644 index 0000000..e31c8af --- /dev/null +++ b/journalIndex/js/side.js @@ -0,0 +1,632 @@ +// 左边引进去 + + +// 底部 +$('.footer').load('./footer.html') + +// 期刊基础、外链、分期、话题信息加载 +function side_list() { + + // 左侧期刊列表数据 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getJournal', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + + if (Jour_num == 1 && $('.FreeapplicationBox')) { + + $('.FreeapplicationBox').css('display', 'inline-block'); + + } else { + $('.FreeapplicationBox').css('display', 'none'); + + } + + // 期刊基础信息 + var arr_jour = result.data.journal; localStorage.setItem("Journals_title", arr_jour.title); + localStorage.setItem("Journals_issn", arr_jour.issn); + localStorage.setItem("Journals_color", arr_jour.system_color); + localStorage.setItem("Journals_usx", arr_jour.usx); + initNotices() + $('h4.rgb_color').css('color', arr_jour.system_color); + $('.home_logo>span').css('color', arr_jour.system_color); + $('.whitebg h4').css('color', arr_jour.system_color); + $('.whitebg h4 a').css('color', arr_jour.system_color); + $('.guest_ .rgb_color').css('color', arr_jour.system_color); + $('.jour_notice>a').css('color', arr_jour.system_color) + $('.footer').css('background', arr_jour.system_color); + $('.article .art_main .new_art h4, .article .art_main .high_light h4, .news_ment h4, .art_main_con_topic h4').css('color', arr_jour.system_color); + // $('.art_top_topic .topics').css('background-color', arr_jour.system_color); + $('.rgb_color_background').css('background-color', arr_jour.system_color); + $('.article .art_side .btn_system').css('background', arr_jour.system_color); + $('.article .art_side .press-button-tmr a').css('background', arr_jour.system_color); + $('.guest_content .gue_system a').css('background', arr_jour.system_color); + $('.guest_content .gue_author a').css('background', arr_jour.system_color); + $('.jour_ht_dy .topic_dingyue .topic_add').css('color', arr_jour.system_color); + $('.jour_ht_dy .topic_ts .mainbox input[type="submit"]').css('background-color', arr_jour.system_color); + $('.top .top_sea .search_for input[type="text"]').css('border-color', arr_jour.system_color) + $('.top .top_sea .search_for input[type="button"]').css('border-color', arr_jour.system_color) + $('.top .top_sea .search_for input[type="button"]').css('background-color', arr_jour.system_color) + $('.top .top_sea>a').css('color', arr_jour.system_color) + $('.jour_awaite > a').css('color', arr_jour.system_color) + $('.hunt_for .hunt_inp').css('border-color', arr_jour.system_color) + $('.hunt_for .hunt_btn').css('background-color', arr_jour.system_color) + $('.mb_aform input.combox-box').css('border-color', arr_jour.system_color) + $('.mb_aform input[type="submit"]').css('background-color', arr_jour.system_color) + $('.mb_aform input[type="submit"]').css('border-color', arr_jour.system_color) + $('.mb_aform input[type="text"]').css('border-color', arr_jour.system_color) + $('.jour_ption input[type="submit"]').css('background-color', arr_jour.system_color) + $('.jour_ption input[type="submit"]').css('border-color', arr_jour.system_color) + $('.ncon_SCom .rgb_color').css('color', arr_jour.system_color) + $('.footer .daohang .dh_by input[type="submit"]').css('background-color', arr_jour.system_color) + $('.footpanel').css('background-color', arr_jour.system_color + 'cc') + $('.footpanel .yue_addfp').css('background-color', arr_jour.system_color) + $('.press-button a').css('background-color', arr_jour.system_color) + $('.All_Issues').css('color', arr_jour.system_color); + + + // 左侧期刊搜索 + $('.hunt_for .hunt_btn').click(function () { + window.open("jour_search.html?J_num=" + Jour_num + "&se_ch=" + $(".hunt_for .hunt_inp").val()); + }) + // $(".contbu_submit select[name='journal']").html(''); + // $(".contbu_submit select[name='journal'] option[value='"+arr_jour.issn+"']").prop("selected", true); + + + $('.top_sea .a_search').attr('href', 'preprint.html?J_num=' + Jour_num); + + + + //$('.top .top_sea').append('Subscribe')//订阅 + $('.b_Sub').css('color', arr_jour.system_color); + $('.b_Sub').attr('href', 'draw_up.html?issn=' + arr_jour.issn); + + $('.dingyue p b').html(arr_jour.title);//订阅 + $('.footpanel .ftp_paper .fpr_text b').html(arr_jour.title);//底栏订阅 + $('.nav_ban h1 a').html(arr_jour.title); + $('.nav_ban>h1>a').attr('href', '/' + arr_jour.usx); + $('.ncon_SCom > div > div:nth-child(4) > p> b').html(arr_jour.title) + // $('.Join_Team').css('display', 'none'); + // $('.Tmr_lian_jie').css('display', 'block'); + + // tmr单独 + $('.nav_ban h2').html(''); + const pathname = window.location.pathname.split("/").pop(); + + // 2. 判断是否为 for_author.html + + $('.sharethis_tmr').css('display', 'none'); + $('.art_top_topic').css('padding-top', '0'); + $('.line_sbil').css('display', 'block'); + $('.share_tmrtb').css('display', 'block'); + $('.jour_ht_dy_tmr').html(' '); + $('.jour_ht_dy_tmr').css('display', 'none'); + $('.jour_correlate').css('margin-top', '-10px'); + $('.jour_correlate>h4').css('padding-top', '10px'); + $('.topic_add').addClass('topic_add_tmr'); + $('.tmr_style_new').addClass('overall_tmr'); + + $('.nav_ban h2').css('display', 'inline-block') + + $('.Gue_special').css('display', 'none') + + if (Jour_num == 1 || Jour_num == 25) { + $('#kezuoBLine').css('display', 'block'); + $('#kezuoB').css('display', 'block'); + + } + $('.Gue_special').css('display', 'block') + console.log($('.Gue_special').length) + + + // if (Jour_num == 1) { + + // $('.Join_Bord2').css('display', 'block') + // } + + + + $('.Join_Bord').attr('href', 'z_f6-1.html?J_num=' + Jour_num); + + + //$('.edit_board_tmr>a').attr('href', 'notice.html?J_num=' + Jour_num + '&footer_id=' + arr_jour.board_url); + + + + + // 相关期刊 + var corr = result.data.relats; + + $('.jour_correlate>a').attr('href', '/' + corr[0].usx); + $('.jour_correlate>a>img').attr('src', imgjourUrl + corr[0].icon) + + // 感谢图片 + $('.jour_awaite').before('
      ' + + '' + + '' + + '
      '); + + + } else { + ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }); + + + // 左侧分期列表数据 + //$.ajax({ + // type: 'post', url: apiUrl + 'api/Journal/getMainPageStages', + // data: { + // "journal_id": Jour_num + // }, + // success: function (result) { + // if (result.code == 0) { + // + // // 分期信息 + // if (result.data.topic_show_type == 0) { + // var arr_stage = result.data.stages; + // var sty = ""; + // for (var i = 0; i < arr_stage.length; i++) { + // if (arr_stage[i].stage_no == '0') { + // var iss_ = '' + // } else { + // var iss_ = ' Issue.' + arr_stage[i].stage_no + // } + // sty += '
    • ' + + // '' + arr_stage[i].stage_year + ' Vol.' + arr_stage[i].stage_vol + iss_ + ' ' + arr_stage[i].stage_pagename + arr_stage[i].stage_page + '
    • ' + // + // } + // $('.jour_stage .jour_sta_wail').html(sty); + // $('.All_Issues').attr('href', 'stages.html?J_num=' + Jour_num); + // }else{ + // $('.jour_stage').css('display', 'none') + // $('.jour_stage_bot').css('display', 'none') + // } + // + // } else { + // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + //}) + + + // 左侧话题列表数据 + //$.ajax({ + // type: 'post', url: apiUrl + 'api/Journal/getJournalTopic', + // data: { + // "journal_id": Jour_num + // }, + // success: function (result) { + // if (result.code == 0) { + // + // // 话题列表 + // var arr_topic = result.data.topicList; + // + // var panduan = '' + // for (var i = 0; i < arr_topic.length; i++) { + // if (arr_topic[i].position == "left") { + // panduan = '1'; + // var st_left = ""; + // $('.jour_sta_tp_left_title').html(arr_topic[i].title); + // $('.jour_sta_tp_left_more').attr('href', 'topic.html?J_num=' + Jour_num + '&t_id=' + arr_topic[i].journal_topic_id); + // for (var j = 0; j < arr_topic[i].children.length; j++) { + // if (j == 3) break; + // var url_href = ''; + // if (arr_topic[i].children[j].is_final == '1') { + // url_href = 'topic_list.html?J_num=' + Jour_num + '&t_id=' + // } else ( + // url_href = 'topic.html?J_num=' + Jour_num + '&t_id=' + // ) + // st_left += '
    • ' + arr_topic[i].children[j].title + '' + + // '
    • ' + // } + // $('.jour_sta_tp_left').html(st_left); + // if (st_left == '') { + // $('.jour_sta_tp_left_more').css('display', 'none'); + // } + // } + // } + // if (panduan == '') { + // $('.jour_hauti_pd').css('display', 'none'); + // $('.jour_hauti_bot').css('display', 'none'); + // } + // } else { + // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + //}) + + + // 左侧话题订阅下拉 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getTopicForSubscribe', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + var arr = result.data.topics; + var data_3 = []; + for (var i = 0; i < arr.length; i++) { + data_3.push({ + id: arr[i].journal_topic_id, + text: arr[i].title + }); + } + $("#combox3").combox({ + id: "id", + name: "text", + data: data_3, + valueChange: function (data) { + // debugger + //返回data,filterData,selectData + } + }) + var cb3 = $("#combox3").data('combox'); + + + // 订阅提交 + $(".jour_ht_dy .topic_add").click(function () { + $(".spa").text(''); + + var add_mess = {}; + add_mess.email = $('#emajl').val(); + add_mess.topic_ids = []; + var ar_mes = cb3.options.selectData + for (var i = 0; i < ar_mes.length; i++) { + add_mess.topic_ids.push(ar_mes[i]['id']); + } + + var S_Dan = '0'; + var reg = /^[-.-_A-Za-z0-9]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/ + + if (Jour_num == '22') { + if (cb3.options.selectData == "") { + $(".spa1").text('请选择话题'); + S_Dan = '1'; + } else if ($("#emajl").val() == "") { + $(".spa1").text('填写邮箱'); + S_Dan = '1'; + } else if (!reg.test($("#emajl").val())) { + $(".spa1").text('填写正确格式的邮箱'); + S_Dan = '1'; + } + } else { + if (cb3.options.selectData == "") { + $(".spa1").text('Please choose topic'); + S_Dan = '1'; + } else if ($("#emajl").val() == "") { + $(".spa1").text('Please fill in E-mail'); + S_Dan = '1'; + } else if (!reg.test($("#emajl").val())) { + $(".spa1").text('Please fill in properly formatted E-mail'); + S_Dan = '1'; + } + } + + + if (S_Dan == '1') { + ShowDanger("Incomplete information!"); + } else { + $(".topic_add").addClass("disable"); + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/addSubscribeTopics', + data: add_mess, + success: function (result) { + if (result.code == 0) { + // $(".topic_dingyue input[type='text']").val(''); + $(".topic_add").removeClass("disable"); + $(".jour_ts").fadeIn(); + $(".jour_ts input.tishi_author").click(function () { + $(".jour_ts").fadeOut(); + }); + // $("#mask").css("height",$(document).height()); + // $("#mask").css("width",$(document).width()); + // $("#mask").show(); + // document.body.addEventListener('touchmove',bodyScroll,false); + // $('body').css({'position':'fixed',"width":"100%"}); + } else { + ShowDanger(result.msg); + $(".topic_add").removeClass("disable"); + } + }, + error: function () { + ShowDanger("error!"); + $(".topic_add").removeClass("disable"); + } + }) + } + }) + + + } else { + ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }); + + + // 左侧话题订阅下拉(新) + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getTopicForSubscribe', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + var arr = result.data.topics; + var data_2 = []; + for (var i = 0; i < arr.length; i++) { + data_2.push({ + id: arr[i].journal_topic_id, + text: arr[i].title + }); + } + $("#combox2").combox({ + id: "id", + name: "text", + data: data_2, + valueChange: function (data) { + // debugger + //返回data,filterData,selectData + } + }) + var cb2 = $("#combox2").data('combox'); + + + // 订阅期刊(提交新的) + $(".yue_addk").click(function () { + $(".spa198").text(''); + + var add_mess = {}; + add_mess.email = $('#emaplk').val(); + add_mess.topic_ids = []; + var ar_mes = cb2.options.selectData + for (var i = 0; i < ar_mes.length; i++) { + add_mess.topic_ids.push(ar_mes[i]['id']); + } + + var S_Dan = '0'; + var reg = /^[-.-_A-Za-z0-9]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/ + + if (cb2.options.selectData == "") { + $(".spa198").text('Please choose topic'); + S_Dan = '1'; + } else if ($("#emaplk").val() == "") { + $(".spa198").text('Please fill in E-mail'); + S_Dan = '1'; + } else if (!(reg.test($("#emaplk").val()))) { + $(".spa198").text('Please fill in properly formatted E-mail'); + S_Dan = '1'; + } + + + if (S_Dan == '1') { + ShowDanger("Incomplete information!"); + } else { + $(".yue_addk").addClass("disable"); + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/addSubscribeTopics', + data: add_mess, + success: function (result) { + if (result.code == 0) { + // $(".jour_ption input[type='text']").val(''); + $(".yue_addk").removeClass("disable"); + $(".jour_ts").fadeIn(); + + $(".jour_ts input.tishi_author").click(function () { + $(".jour_ts").fadeOut(); + }); + + } else { + ShowDanger(result.msg); + $(".yue_addk").removeClass("disable"); + } + }, + error: function () { + ShowDanger("error!"); + $(".yue_addk").removeClass("disable"); + } + }) + } + }) + + } else { + ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }); + + + + + + // 左侧消息列表数据 + + + // 左侧待审稿件列表数据 + // $.ajax({ + // type: 'post', url: apiUrl + 'special/Article/getReviewerArticlesForJournal', + // data: { + // "issn": '2413-3973' + // }, + // success: function (result) { + // if (result.code == 0) { + // + // // 消息列表 + // var arr = result.data.articles; + // var str = ''; + // + // for (var i = 0; i < arr.length; i++) { + // str += '
    • ' + arr[i].title + '' + + // 'Type: ' + + // '' + pan_type(arr[i].type) +'
    • ' + // } + // $('.jour_awaite ul').html(str); + // $('.jour_awaite .more').attr('href', 'https://submission.tmrjournals.com/peerewer'); + // + // if (str == '') { + // $('.jour_awaite').css('display', 'none'); + // } + // + // } else { + // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + // }) + +} +function initNotices(){ + var Journals_color=localStorage.getItem('Journals_color') + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getNotices', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { + + // 消息列表 + var arr = result.data.notices; + var str = ''; + + for (var i = 0; i < arr.length; i++) { + if (i == 2) break; + str += `
    • » ${formatTimeToDate4(arr[i].ctime * 1000)}
      + ${arr[i].title}
    • ` + } + var jourNoticeStr = ` +
      +

      Announcements

      + + + More +
      + ` + if (result.data.notices.length > 0) { + $('.ncon_SCom .Scientist_Community_box').html(jourNoticeStr); + } + + + + // 时间轴 + // $.ajax({ + // type: 'post', url: apiUrl + 'api/Journal/getJournalLine', + // data: { + // "journal_id": Jour_num + // }, + // success: function (result) { + // if (result.code == 0) { + // var arr = result.data.lines; + // var str = ""; + // var dis_ = '20'; + // + // for (var i = 0; i < arr.length; i++) { + // if (i == arr.length - 1) { + // if (i == 0) { + // dis_ = '20' + // } else { + // dis_ = parseInt(dis_) + parseInt(arr[i].dist * 150); + // } + // str += '
    • ' + arr[i].time + '

      ' + + // '' + + // '

      ' + arr[i].title + '

      ' + + // '
    • ' + // } else { + // if (arr[i].time == arr[i + 1].time) { + // if (i == 0) { + // dis_ = '20' + // } else { + // dis_ = parseInt(dis_) + parseInt(arr[i].dist * 150); + // } + // str += '
    • ' + arr[i].time + '

      ' + + // '' + + // '

      ' + arr[i].title + '

      ' + + // '' + + // '' + + // '

      ' + arr[i + 1].title + '

      ' + + // '
    • ' + // i = i + 1; + // } else { + // if (i == 0) { + // dis_ = '20' + // } else { + // dis_ = parseInt(dis_) + parseInt(arr[i].dist * 150); + // } + // str += '
    • ' + arr[i].time + '

      ' + + // '' + + // '

      ' + arr[i].title + '

      ' + + // '
    • ' + // } + // } + // + // } + // + // $('.overall_tmr .tmr_side_book ul').html(str); + // + // $(".book_click").bind('click', function () { + // if ($(".book_click").html() == 'more ') { + // $('.about3 ul').css('height','1370px'); + // $('.book_click').html('more '); + // } else { + // $('.about3 ul').css('height','2090px'); + // $('.book_click').html('more '); + // } + // }); + // + // + // if (window.location.pathname.indexOf("journals") <= 0) { + // $('.tmr_side_map').css('display','none'); + // $('.tmr_side_book').css('display','none'); + // } + // + // + // + // + // } else { + // // ShowDanger("请求失败!"); + // } + // }, + // error: function () { + // ShowDanger("error!"); + // } + // }) + + + } else { + ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); + } + }) +} + + diff --git a/journalIndex/style/commonJournalCSS_v6.css b/journalIndex/style/commonJournalCSS_v6.css new file mode 100644 index 0000000..de0858c --- /dev/null +++ b/journalIndex/style/commonJournalCSS_v6.css @@ -0,0 +1,3450 @@ +@font-face { + font-family: 'Merri_weather'; + /*为引入的字体命名*/ + src: url(/style/Merriweather.ttf); + /*定义要引入字体文件的路径*/ +} + +@font-face { + font-family: 'Helvetica Neue For Number'; + src: url(/style/Charisb.ttf); + unicode-range: U+30-39; +} + +* { + /*box-sizing: border-box;*/ + margin: 0; + padding: 0; + font-weight: 300; + outline: none; +} + +strong { + font-weight: 600; +} + +body { + /*font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif;*/ + /*font-family: "Helvetica Neue For Number", "Merri_weather", Helvetica, serif;*/ + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif; + color: #444; + height: 100%; + font-size: 14px; + line-height: 1.42857143; + background-color: #fff; +} + +a { + color: #444; + text-decoration: none; +} + +a { + transition: all .5s; +} + +b { + font-weight: bold; +} + +li { + list-style: none; +} + +img { + border: 0; +} + +input.disable { + pointer-events: none; +} + +.rgb_color { + color: #024393; + +} + +.rgb_color_background { + /*background-color: #024393;*/ +} + +/******************大背景******************/ +#col-content { + width: 100%; + margin: 0 auto; + /*background-color: #fff;*/ +} + +/******************上方标题******************/ +#top_bar { + background-color: #006699; +} + +.top { + height: 63px; + padding: 0 15px; + font-size: 16px; + background-color: #fff; + border-bottom: 1px solid #ddd; +} + +.top>div { + line-height: 62px; + width: 1102px; + margin: 0 auto; +} + +.top .top_logo { + float: left; + margin-top: 7px; +} + +.top .top_logo .home_logo { + cursor: pointer; +} + +.top .top_logo b { + margin-left: 10px; + +} + +.top .top_sea { + float: right; + position: relative; +} + +.top .top_sea>a { + margin-right: 5px; + cursor: pointer; +} + +.top .top_sea>a>i { + margin-right: 5px; +} + +.top .top_sea>p { + display: inline-block; + height: 30px; + vertical-align: middle; + width: 2px; + background-color: #eee; + margin: 0 15px; +} + + +/******************国家切换按钮******************/ +.top .top_switch { + margin: 20px 4px 0 22px; + border: 1px solid #006699; + border-radius: 5px; + float: right; + line-height: 19px; +} + +.top .top_switch>div { + padding: 1px 9px 0 9px; + float: left; + font-weight: bold; + font-size: 12px; +} + +.top .top_switch>div:nth-child(1) { + background-color: #006699; + color: #fff; +} + +.top .top_switch>div:nth-child(2) { + color: #006699; +} + +.top .top_switch>div:nth-child(2):hover { + cursor: pointer; + text-decoration: underline; +} + + +/*期刊内搜索*/ +.search_for_broad { + display: none; + position: absolute; + left: 0; + top: 50px; + background-color: #fff; + padding: 0 20px; + box-shadow: 0 2px 12px 0 #999; + border-radius: 5px; +} + +.top .top_sea .search_for { + position: relative; + display: inline-block; +} + +.top .top_sea .search_for select { + position: absolute; + width: 85px; + margin-top: 10px; + padding-left: 5px; + border: 1px solid #ccc; + border-radius: 5px; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + height: 26px; + left: 0; + top: 13px; + cursor: pointer; +} + +.top .top_sea .search_for input[type='text'] { + background-color: #fff; + border: 1px solid #ccc; + line-height: 24px; + border-radius: 5px; + padding-left: 10px; + margin: 10px 0 1px 0; + width: 320px; +} + +.top .top_sea .search_for input[type='button'] { + position: absolute; + right: 0; + top: 19px; + color: #fff; + border: 1px solid #ccc; + line-height: 24px; + width: 58px; + cursor: pointer; + border-radius: 5px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.top .top_sea .search_for input[type='button']:hover {} + +/*期刊内订阅*/ +.top .top_sea .b_Sub {} + +.top .top_sea .b_Sub { + color: #848484; + font-weight: 500; + cursor: pointer; +} + +.top .top_sea .b_Sub i { + margin-right: 5px; +} + +.top .mask { + position: fixed; + top: 0px; + filter: alpha(opacity=60); + background-color: #333; + z-index: 10; + left: 0px; + opacity: 0.5; + -moz-opacity: 0.5; + display: none; +} + +.top .dingyue { + font-size: 14px; + width: 460px; + /*height: 600px;*/ + background-color: #fff; + display: none; + position: fixed; + z-index: 20; + top: 50%; + left: 50%; + margin-top: -100px; + margin-left: -230px; + box-shadow: 0 1px 3px rgba(0, 0, 0, .3); +} + +.top .dingyue .mainbox { + padding: 10px; + position: relative; +} + +.top .dingyue .mainbox p { + margin: 35px 0 10px 10px; + line-height: 20px; +} + +.top .dingyue .mainbox .mb_close { + position: absolute; + right: 15px; + top: -12px; + cursor: pointer; +} + +.top .dingyue .mainbox .mb_form { + margin-top: 20px; + padding: 0 20px; + line-height: 22px; +} + +.top .dingyue .mainbox .mb_form h2 { + margin-bottom: 10px; +} + +.top .dingyue .mainbox .mb_form b { + color: #e91c1c; +} + +.top .dingyue .mainbox .mb_form p b { + color: #444; +} + +.top .dingyue .mainbox .mb_form .spa { + margin-left: 75px; + font-size: 12px; + color: #e91c1c; +} + +.top .dingyue .mainbox .mb_form input[type="text"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #ccc; + line-height: 28px; + border-radius: 5px; + padding-left: 10px; + margin: 5px 0 6px 10px; + width: 270px; +} + +.top .dingyue .mainbox .mb_form input.yue_add { + color: #fff; +} + +.top .dingyue .mainbox .mb_form input[type="submit"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #ccc; + line-height: 28px; + border-radius: 5px; + margin: 10px 0 10px 10px; + width: 80px; + cursor: pointer; +} + +/*订阅操作*/ +.jour_ht_dy { + width: 200px; + margin: 0 0 0 15px !important; + padding: 10px; +} + +.jour_ht_dy .topic_dingyue { + padding-bottom: 0; + padding-top: 10px; +} + +.jour_ht_dy .topic_dingyue .topic_add { + padding-left: 3px; + display: block; + font-weight: 600; + cursor: pointer; + margin-top: 20px; +} + +.jour_ht_dy .topic_dingyue .topic_add:hover { + text-decoration: underline; +} + +.jour_ht_dy select { + width: 100%; + margin-top: 10px; + border-color: #ccc; + border-radius: 5px; + height: 25px; + padding-left: 5px; +} + +.jour_ht_dy input { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #ccc; + line-height: 22px; + border-radius: 5px; + padding-left: 10px; + margin: 10px 0 1px 0; + width: 95%; + font-size: 12px; +} + +.jour_ht_dy input[type="submit"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #fff; + line-height: 22px; + border-radius: 5px; + cursor: pointer; + width: 100%; + color: #fff; +} + +.jour_ht_dy .spa { + margin-left: 8px; + font-size: 12px; + color: #e91c1c; + display: block; + margin-bottom: 10px; +} + +.jour_ht_dy .topic_ts { + width: 500px; + background-color: #fff; + display: none; + position: fixed; + z-index: 20; + top: 50%; + left: 50%; + margin-top: -150px; + margin-left: -250px; + box-shadow: 0 1px 3px rgba(0, 0, 0, .3); +} + +.jour_ht_dy .topic_ts .mainbox { + padding: 20px; +} + +.jour_ht_dy .topic_ts .mainbox input[type="submit"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + line-height: 28px; + border-radius: 5px; + width: 80px; + cursor: pointer; + float: right; + color: #fff; + margin-bottom: 20px +} + +.jour_ts { + width: 500px; + background-color: #fff; + display: none; + position: fixed; + z-index: 20; + top: 50%; + left: 50%; + margin-top: -150px; + margin-left: -250px; + box-shadow: 0 1px 3px rgba(0, 0, 0, .3); +} + +.jour_ts .mainbox { + padding: 20px; + line-height: 18px; + font-size: 14px; +} + +.jour_ts .mainbox input[type="submit"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + line-height: 28px; + border-radius: 5px; + width: 80px; + cursor: pointer; + float: right; + color: #fff; + margin-bottom: 20px +} + +/******************导航******************/ +.nav { + height: 60px; + padding: 22px 15px; + background-color: #fff; +} + +.nav ul {} + +.nav ul li { + height: 16px; + float: left; + padding: 0 30px; + font-weight: 600; + border-left: 1px solid #ddd; +} + +.nav ul a:nth-child(1) li { + border-left: none; + padding-left: 10px; +} + +.nav ul li:hover, +.nav ul li:focus { + text-decoration: underline; +} + +/****************图片轮播**************/ +#banner { + position: relative; + width: 1102px; + height: 300px; + overflow: hidden; +} + +#banner_list img { + border: 0px; + width: 1102px; + height: 300px; +} + +#banner_bg { + position: absolute; + bottom: 0; + background-color: #000; + height: 30px; + filter: Alpha(Opacity=30); + opacity: 0.3; + z-index: 1000; + cursor: pointer; + width: 478px; +} + +#banner ul { + position: absolute; + list-style-type: none; + filter: Alpha(Opacity=80); + opacity: 0.8; + z-index: 1002; + margin: 0; + padding: 0; + bottom: 3px; + right: 5px; +} + +#banner ul li { + padding: 0px 8px; + float: left; + display: block; + color: #FFF; + background: #6f4f67; + cursor: pointer; +} + +#banner ul li.on { + background-color: #000; +} + +#banner_list a { + position: absolute; +} + +/***************中间主要部分**************/ +.article { + /* background-color: #f4fafd; */ + padding: 15px; + /*display: flex;*/ +} + +.article_ { + /* background-color: #fff; */ + /*padding: 15px;*/ + /* margin-top: -15px; */ + background: url(/img/home_2.jpg) #f4fbff; + background-blend-mode: multiply; +} + +.article_ .news_ment { + padding-top: 40px; +} + +.article_>div { + /*padding: 15px 15px 15px 15px;*/ +} + +.article_ .online_fr, +.article_ .ncon_fr_tmr, +.article_ .ncon_aper { + /*background: #fff;*/ +} + +.article_ .hua_tpice, +.article_ .ncon_tcrd_tmr, +.article_ .Rel_ated, +.article_ .ncon_SCom { + background: url(/img/home_0.jpg) no-repeat #f4fbff; + background-blend-mode: multiply; + background-size: 100% 100%; +} + +.article_ .ncon_fr_tmr li, +.article_ .ncon_aper li, +.article_ .ncon_fr li { + box-shadow: 5px 5px 5px #bdbdbd; +} + +.article_ h4 { + font-size: 30px !important; + font-family: "Times New Roman", Helvetica, Georgia, serif; + letter-spacing: -1px; +} + +/*分期封面*/ +.article_ .alls_issue { + /*background: url(../img/home_0.jpg) no-repeat #f4fbff;*/ + /*background-blend-mode: multiply;*/ + /*background-size: 100% 100%;*/ + padding-bottom: 10px; + background: #fff; +} + +.article_ .alls_issue>h4 { + width: 1102px; + margin: 0 auto; + padding-bottom: 10px; +} + +.article_ .alls_issue>a { + left: 50%; + margin-left: 505px; + margin-top: 6px; +} + +.article_ .alls_issue>div { + width: 1102px; + margin: 20px auto 0; + overflow-x: auto; + transform: scaleY(-1); +} + +.article_ .alls_issue>div::-webkit-scrollbar { + /*滚动条整体样式*/ + /*width : 1px; !*高宽分别对应横竖滚动条的尺寸*!*/ + height: 10px; + +} + +.article_ .alls_issue>div::-webkit-scrollbar-thumb { + /*滚动条里面小方块*/ + border-radius: 0; + box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); + background: #aec0c9; +} + +.article_ .alls_issue>div::-webkit-scrollbar-track { + /*滚动条里面轨道*/ + box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); + border-radius: 0; + background: #ededed; +} + +.article_ .alls_issue>div>ul { + white-space: nowrap; + transform: scaleY(-1); +} + +.article_ .alls_issue>div>ul li { + width: 253px; + display: inline-block; + white-space: normal; + margin-right: 30px; +} + +.article_ .alls_issue>div>ul li:last-child { + margin-right: 0; +} + +.article_ .alls_issue>div>ul li>a { + display: block; + position: relative; +} + +.article_ .alls_issue>div>ul li>a>img { + /*width: 100%;*/ + height: 333px; + margin-top: 25px; + object-fit: cover; +} + +.article_ .alls_issue>div>ul li>a>p { + display: none; + padding-top: 95px; + text-align: center; + position: absolute; + background-color: #00669980; + color: #fff; + top: 26px; + bottom: 14px; + left: 1px; + right: -1px; + +} + +.article_ .alls_issue>div>ul li>a>p>b { + display: block; + font-size: 24px; + line-height: 38px; +} + +.article_ .alls_issue>div>ul li>a:hover p { + display: block; +} + +/*左侧栏目*/ +.back_fff { + background-color: #fff; +} + +.article .art_side { + background-color: #fff; + float: left; + width: 270px; + margin-right: 15px; + /*border-bottom: 2px solid #dcdcdc;*/ + /*z-index: 10;*/ +} + +.article .art_side .btn_system { + display: block; + /*background: #024393;*/ + color: #fff; + text-align: center; + border-radius: 4px; + padding: 20px 0; + font-size: 15px; + margin-bottom: 15px; + +} + +.article .art_side .btn_system:hover { + text-decoration: underline; +} + +.article .art_side .btn-free { + display: block; + margin: 0 10px 10px 10px; + color: #d3581d; + background: #f3f1f2; + background: -moz-linear-gradient(bottom, #f3f1f2, #fefefe); + background: -webkit-gradient(linear, 0 50%, 100% 50%, from(#f3f1f2), to(#fefefe)); + background: -webkit-linear-gradient(bottom, #f3f1f2, #fefefe); + background: -o-linear-gradient(bottom, #f3f1f2, #fefefe); + filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#f3f1f2, endColorstr=#fefefe); + -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#f3f1f2, endColorstr=#fefefe)"; + border: 1px solid #ccc; + line-height: 35px; + padding-left: 30px; + font-weight: bold; + border-radius: 4px; +} + +.article .art_side .journals { + background-color: #fff; + padding: 10px; + border-bottom: 2px solid #dcdcdc; +} + +.article .art_side .journals>h4 { + font-weight: bold; + font-size: 14px; + line-height: 18px; + text-align: left; + background: #fff; +} + +.article .art_side .journals .search_group { + margin-bottom: 10px; +} + +.article .art_side .journals .search_group>div { + display: inline-block; + width: 200px; +} + +.article .art_side .journals .search_group>img { + display: inline-block; +} + +.article .art_side .journals>ul { + /*border-top: 1px solid #ddd;*/ + margin-top: 5px; + padding-bottom: 5px; +} + +.article .art_side .journals>ul li { + padding: 5px 0; + border-bottom: 1px solid #ddd; +} + +.article .art_side .journals>ul li p { + font-size: 12px; + width: 203px; + padding-right: 5%; + ; + float: left; +} + +.article .art_side .journals>ul li p:hover, +.article .art_side .journals>ul li p:focus { + text-decoration: underline; +} + +.article .art_side .journals>ul li img { + width: 30px; + height: 40px; + float: right; +} + +.ncon_hl, +.online_fr { + /*background-color: #fff;*/ + /*width: 1102px;*/ + /*margin: 0 auto;*/ +} + +.ncon_hl>ul { + background-color: #fff; +} +.Special_Issues_box>ul { + background-color: #fff; +} + +.online_fr>ul { + background-color: #fff; + /*padding: 15px;*/ +} + +.ncon_fr>ul, +.ncon_fr_tmr>ul { + /*background-color: #fff;*/ + /*padding: 15px;*/ +} + +.ncon_fr>h4, +.ncon_tcrd>h4, +.ncon_tcrd_tmr>h4, +.ncon_fr_tmr>h4 { + padding-top: 15px !important; +} + +.sy_notice>ul { + background-color: #fff; + margin-top: 20px; + padding: 15px +} + +.sy_notice>ul>div { + display: inline-block; + width: 24%; + margin-right: 14px; + padding: 8px; + line-height: 22px; + vertical-align: top; +} + +.sy_notice>ul>div:nth-child(4n) { + margin-right: 0; +} + +.sy_notice>ul>div:hover { + text-decoration: underline; +} + +.sy_notice>ul>div i { + margin-right: 10px; +} + +/*.sy_npar ul li{*/ +/* background-color: #f2f2f2 !important;*/ +/*}*/ + +.art_side .in_img { + width: 100%; + text-align: center; + background-color: #fff; + margin-top: 15px; + padding: 10px 0; + border-bottom: 2px solid #dcdcdc; +} + +.art_side .in_img h4 { + margin-top: 0; + text-align: left; + padding-left: 15px; + font-weight: 600; +} + +.sy_notice li:nth-child(2) { + padding: 0 !important; +} + +.wl_click { + cursor: pointer; +} + +.wl_click:hover { + color: #23527c; + text-decoration: underline; +} + +/*右侧文章*/ +.article .art_main { + float: right; + width: 804px; +} + +.article .art_main .new_art, +.article .art_main .high_light, +.news_ment, +.stage_, +.guest_ { + /*padding: 4px 0px;*/ + /*background-color: #fff;*/ +} + +.article .art_main .new_art>h4, +.article .art_main .high_light h4, +.news_ment h4, +.topics h4 { + font-size: 18px; + font-weight: bold; + /*color: #024393;*/ + line-height: 30px; + padding: 8px 4px 4px 6px; + overflow: hidden; + margin-top: 10px; +} + +.article .art_main .new_art h4 span { + font-size: 16px; + color: #555; + margin-left: 30px; + font-weight: bold; +} + +.article .art_main .new_art ul {} + +.article .art_main .new_art ul li { + /*border-bottom: 1px solid #dcdcdc;*/ + background-color: #fff; + border-top: 0; + padding: 10px 20px; +} + +.article .art_main .new_art ul li:last-child { + margin-bottom: 0; + /* padding-bottom: 45px !important; */ +} + +.article .art_main .new_art ul li .dbt_header { + color: #7f0202; + font-weight: bold; + border-bottom: 1px solid #f1f1f1; + margin-bottom: 8px; +} + +.article .art_main .new_art ul li .txt_biaoti, +.article .art_main .high_light ul li .txt_biaoti { + color: #222; + font-weight: bold; + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif; +} + +.article .art_main .new_art ul li .txt_biaoti>span.otStat { + margin: 0 5px 0 0; + background: #e32b2b; + border-radius: 5px; + padding: 1px 4px; + color: #fff; +} + +.article .art_main .new_art ul li i, +.wenzhang .wen_jian h4 i { + font-weight: bold; +} + +.article .art_main .new_art ul li .txt_biaoti:hover { + color: #ff3300; + text-decoration: underline; +} + +.article .art_main .new_art ul li .url_top { + margin: 3px 0 8px 10px; + display: inline-block; +} + +.article .art_main .new_art ul li .url_top a { + margin-right: 10px; + /*background-color: #4f5671;*/ + padding: 3px 5px; + /*color: #fff;*/ + font-family: Calibri; + font-size: 15px; +} + +.article .art_main .new_art ul li .url_top a:hover { + /*color: #23527c;*/ + text-decoration: underline; +} + +.article .art_main .new_art ul li .authorList, +.article .art_main .high_light ul li .authorList { + /*margin-top: 5px;*/ + color: #444; + font-size: 14px; + line-height: 24px; + /*font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif;*/ +} + +.article .art_main .new_art ul li .authorList a:hover, +.article .art_main .high_light ul li .authorList a:focus { + text-decoration: underline; + color: #23527c; +} + +.art_main .tradition-box .tradition-text { + line-height: 24px; + margin-top: 10px; + height: 120px; /* 限制高度 */ + overflow: hidden; /* 隐藏超出部分 */ + text-overflow: ellipsis; /* 显示省略号 */ + display: -webkit-box; + -webkit-line-clamp: 6; /* 显示前5行 */ + -webkit-box-orient: vertical; +} + +.article .art_main .new_art ul li .links_, +.article .art_main .high_light ul li .links_ { + /*line-height: 24px;*/ + font-size: 14px; + margin: 3px 0; + /*text-align: justify;*/ + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif; +} + +.article .art_main .new_art ul li .links_ img, +.article .art_main .high_light ul li .links_ img { + vertical-align: middle; + margin-right: 5px; +} + +.article .art_main .new_art ul li .links_ a, +.article .art_main .high_light ul li .links_ a { + color: #7a2702; + cursor: pointer; +} + +.article .art_main .new_art ul li .links_ a:hover, +.article .art_main .high_light ul li.links_ a:hover { + color: #024393; + TEXT-DECORATION: underline; +} + +.article .art_main .new_art ul li .links_ button { + background: #006699; + color: #fff; + border: none !important; + padding: 0 15px; + line-height: 22px; + cursor: pointer; + margin-left: 10px; + font-family: Calibri; + font-size: 16px; +} + +.article .art_main .new_art>ul li .apwrap { + margin-top: 10px; +} + +.article .art_main .new_art>ul li .apwrap>a { + float: left; + width: 45%; +} + +.article .art_main .new_art>ul li .apwrap>a>img { + width: 350px; +} + +.article .art_main .new_art>ul li .apwrap>div { + float: right; + width: 100%; + padding: 0 10px; + +} + +.art_main_con .new_art>ul li .apwrap>div>div { + text-align: justify; + font-family: Calibri; + font-size: 16px; + /*word-break: break-all;*/ + /*text-overflow: ellipsis;*/ + /*display: -webkit-box; !** 将对象作为伸缩盒子模型显示 **!*/ + /*-webkit-box-orient: vertical; !** 设置或检索伸缩盒对象的子元素的排列方式 **!*/ + /*-webkit-line-clamp: 6; !** 显示的行数 **!*/ + /*overflow: hidden; !** 隐藏超出的内容 **!*/ +} + +.art_main_con .new_art>ul>div>li .apwrap>div>div { + -webkit-line-clamp: 3 !important; + /** 显示的行数 **/ +} + +.article .art_main .new_art>ul li .apwrap>div>div>font { + font-weight: bold; + font-size: 14px; + color: #006699; + display: inline; +} + +.article .art_main .new_art>ul li .apwrap>div p { + color: #888; + line-height: 20px; + /*display: inline;*/ +} + +.art_main_con .new_art>ul li .apwrap>div>b { + color: #006699; + font-size: 12px; + cursor: pointer; +} + +.art_main_con .new_art>ul>div>li .apwrap>div p {} + +.art_main_con .new_art>ul>li { + border-top: 0 !important; + padding: 15px 4px 20px 4px !important; +} + +.art_main_con .new_art>ul>li .dbt_header { + color: #7f0202; + font-weight: bold; + border-bottom: 1px solid #f1f1f1; + margin-bottom: 10px; +} + +.article .art_main .high_light, +.article .art_main .news_ment { + margin-top: 15px; + +} + +.article .art_main .high_light h4 {} + +.article .art_main .high_light ul {} + +.article .art_main .high_light>ul>li { + padding: 15px 5px; +} + +.article .art_main .high_light ul li .txt_biaoti:hover { + color: #23527c; + text-decoration: underline; +} + +.article .art_main .high_light ul li>div { + float: left; + width: 524px; + margin-top: 7px; +} + +.article .art_main .high_light ul li>img { + width: 200px; + height: 130px; + float: right; +} + +.ncon_tcrd_tmr h4 span { + cursor: pointer; +} + +.ncon_tcrd_tmr h4 span:nth-child(1) { + font-weight: 600; +} + +.ncon_fr_tmr h4 span { + cursor: pointer; +} + +.ncon_fr_tmr h4 span:nth-child(1) { + font-weight: 600; +} + +.news_ment>ul { + margin: 15px 0 0 0; + display: flex; +} + +.news_ment>ul>li { + /*display: inline-block;*/ + float: left; + width: 23%; + margin-right: 15.5px; + /*background-color: #fff;*/ + padding: 5px 12px 10px 12px; + /*box-shadow: 0 0 10px #bdbdbd;*/ +} + +.news_ment>ul>li:nth-child(4) { + margin-right: 0; +} + +.news_ment ul li>a>img { + width: 100%; + height: 130px; + border: 1px solid #ddd; + margin: 8px 0 10px; + object-fit: fill; + object-fit: contain; + object-fit: scale-down; +} + +.news_ment ul li h5 { + margin: 10px 0; +} + +.news_ment ul li h5 a { + font-size: 16px; + color: #069; + line-height: 22px; + font-weight: bold; +} + +.news_ment ul li h6 { + margin-bottom: 8px; +} + +.news_ment ul li h6 a { + font-size: 16px; + color: #069; + line-height: 22px; +} + +.news_ment ul li h6 a>i { + font-weight: bold; +} + +.news_ment ul li h5 a:hover, +.news_ment ul li h5 a:focus, +.news_ment ul li h6 a:hover, +.news_ment ul li h6 a:focus { + color: #23527c; + text-decoration: underline; +} + +.news_ment { + position: relative; +} + +.lis_topic { + border-bottom: 2px solid #dcdcdc; + padding: 5px 20px 15px 20px; +} + +.news_ment a.more, +.topics a.more { + position: absolute; + font-weight: normal; + font-size: 14px; + color: #024393; + top: 64px; + right: 20px; + +} + +.news_ment a.more:hover, +.topics a.more:hover { + color: #024393; + text-decoration: underline; +} + +.news_ment>ul>li div.fo_fam { + font-family: Calibri; + font-size: 16px; + line-height: 20px; +} + +.article .art_main .new_art>ul>li .authorList span.fo_fam { + font-family: Calibri; + font-size: 16px; + line-height: 20px; + width: 100%; + display: inline-block; +} + +.sy_hlgt h4, +.sy_nct h4, +.sy_fr h4, +.sy_tcrd h4 { + /*padding-left: 20px;*/ + margin-top: 8px; +} + +.sy_hlgt ul, +.sy_nct ul, +.sy_fr ul, +.sy_tcrd ul { + /*padding: 0 5px;*/ + margin: 10px 0 0 0 !important; +} + +.sy_hlgt ul li { + /*display: inline-block;*/ + width: 31.8% !important; + border: 0; +} + +.sy_nct ul li { + width: 24% !important; + border: 0; + border-bottom: 2px solid #dcdcdc; +} + +.sy_hlgt ul li:nth-child(3) { + margin-right: 0; +} + +.sy_nct ul li:nth-child(4) { + margin-right: 0; +} + +.tmr_article>.bng_topic_bei { + /* background: url(../img/home_2.jpg) #f4fbff; */ + background-blend-mode: multiply; +} + +.tmr_article>.bng_topic_bei>.art_main_con_topic>div { + width: 1100px; + margin: 0 auto; + background-color: #fff; +} + + +.topics { + background-color: #fff; + position: relative; + +} + +.topics>h4 { + font-size: 18px !important; + padding-bottom: 2px; + padding-left: 18px; + padding-top: 2px; +} + +.topics ul { + overflow: auto; + /*margin-top: 5px;*/ +} + +.topics ul li { + text-align: center; + width: 208px; + margin-right: 15px; + display: inline-block; + vertical-align: top; + float: left; + /*margin-bottom: 10px;*/ +} + +.topics ul li:nth-child(5n) { + margin-right: 0; +} + +.topics ul li:hover img { + transform: scale(1.1); +} + +.topics ul li img { + /*width: 178px;*/ + height: 75px; +} + +.topics ul li h3 { + font-size: 14px; + +} + +.topics>h2 { + font-weight: 700; + text-align: center; + color: #000; + font-size: 24px; + padding: 30px 0; + border-bottom: 1px solid #ddd; + margin-bottom: 20px; +} + +/*新增的样式*/ +.article_ .pay_int { + /*display: block;*/ + background-color: #f8f8f8; + padding: 0; +} + +.article_ ul.pay_int>li { + width: 49%; + border-top: 0; + padding: 10px 20px; + border-bottom: none; + margin-right: 17px; + +} + +.article_ ul.pay_int>li:nth-child(2) { + margin-right: 0; +} + +.article_ ul.pay_int>li .dbt_header { + color: #7f0202; + font-weight: bold; + border-bottom: 1px solid #f1f1f1; + margin-bottom: 10px; +} + +.article_ ul.pay_int>li .txt_biaoti { + color: #222; + font-weight: bold; +} + +.article_ ul.pay_int>li i { + font-weight: bold; +} + +.article_ ul.pay_int>li .txt_biaoti:hover { + color: #ff3300; + text-decoration: underline; +} + +.article_ ul.pay_int>li .url_top { + margin: 3px 0 10px 20px; + display: inline-block; +} + +.article_ ul.pay_int>li .url_top a { + margin-right: 10px; + background-color: #4f5671; + padding: 3px 5px; + color: #fff; +} + +.article_ ul.pay_int>li .url_top a:hover { + /*color: #23527c;*/ + text-decoration: underline; +} + +.article_ ul.pay_int>li .authorList { + /*margin-top: 5px;*/ + color: #444; + font-size: 14px; + line-height: 24px; + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif; +} + +.article_ ul.pay_int>li .authorList a:hover { + text-decoration: underline; + color: #23527c; +} + +.article_ ul.pay_int>li .links_ { + /*line-height: 24px;*/ + margin: 3px 0; + text-align: justify; +} + +.article_ ul.pay_int>li .links_ img { + vertical-align: middle; + margin-right: 5px; + width: 14px; + height: 16px; +} + +.article_ ul.pay_int>li .links_ a { + color: #7a2702; + cursor: pointer; +} + +.article_ ul.pay_int>li .links_ a:hover { + color: #024393; + TEXT-DECORATION: underline; +} + +.article_ ul.pay_int>li>.links_ button { + background: #006699; + color: #fff; + border: none; + padding: 0 15px; + line-height: 22px; + cursor: pointer; + margin-left: 10px; + position: relative; +} + +.article_ ul.pay_int>li .ab_tad b, +.article_ ul.pay_int>li .ab_yin b { + cursor: pointer; +} + +ul li .ab_tad { + margin-top: 10px; +} + +.article_ ul.pay_int>li .ab_yin { + display: none; +} + +.article_ ul.pay_int>li .links_ button .export { + position: absolute; + left: 117px; + top: 0; + background-color: #fff; + width: 200px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; + z-index: 100; +} + +.article_ ul.pay_int>li .links_ button .export li { + color: #444; + text-align: left; + line-height: 26px; +} + +.article_ ul.pay_int>li.links_ button .export li:hover { + text-decoration: underline; +} + +.wenz_list li .links_ button { + position: relative; +} + +.wenz_list li .links_ button .export { + position: absolute; + left: 117px; + top: 0; + background-color: #fff; + width: 200px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; +} + +.wenz_list li .links_ button .export li { + color: #444; + text-align: left; + line-height: 26px; +} + +.wenz_list li .links_ button .export li:hover { + text-decoration: underline; +} + + +/*************底部导航****************/ +.footer { + background: #006699; + padding: 0 15px; + margin-top: 20px; +} + +.footer .daohang { + border-bottom: 1px solid #e6e6e6; + padding-bottom: 10px; + margin-bottom: 10px; +} + +.footer .daohang .dh_by { + float: left; + width: 230px; + color: #fff; + padding-top: 30px; + margin-left: 55px; + margin-right: 5px; + display: none; +} + +.footer .daohang .dh_by p { + margin-bottom: 10px; +} + +.footer .daohang .dh_by #combox1 {} + +.footer .daohang .dh_by input[type="text"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #ccc; + line-height: 28px; + border-radius: 5px; + padding-left: 7px; + margin: 5px 0 6px 0; + width: 220px; +} + +.footer .daohang .dh_by input[type="submit"] { + top: 45px; + left: 310px; + height: 30px; + /*padding: 0 35px 0 10px;*/ + border: 1px solid #fff; + cursor: pointer; + border-radius: 5px; + color: #fff; + width: 230px; + background-color: #fff; +} + +.footer .daohang .dh_by .spa { + /* margin-left: 75px; */ + font-size: 12px; + color: #e91c1c; +} + +.footer .daohang .dh_du { + /*float: left;*/ +} + +.footer .daohang ul { + float: left; + width: 285px; + margin: 0 10px; + +} + +.footer .daohang ul:nth-child(4) { + width: 160px; + +} + +.footer .daohang_ ul { + width: 196px; +} + +.footer .daohang ul h3 { + padding: 25px 0 15px 0; + font-weight: bold; + font-size: 14px; + line-height: 1.2em; + color: #dae0e8; +} + +.footer .daohang ul li { + margin-bottom: 5px; + list-style: disc; + margin-left: 14px; + color: #999; +} + +.footer .daohang ul li a { + color: #dae0e8; + font-size: 13px; +} + +.footer .daohang_ ul li a { + font-size: 12px; +} + +.footer .daohang ul li a:hover { + text-decoration: underline; +} + +.footer .bianma { + color: #fff; +} + +/*期刊内容 划过变色*/ +.line_sbil { + height: 2px; + background-image: -webkit-linear-gradient(left, #fff, #006699 25%, #fff 50%, #006699 75%, #fff); + -webkit-background-size: 200% 100%; + -webkit-animation: masked-animation 4s infinite linear; + z-index: 600; +} + +.topic_add_tmr { + -webkit-text-fill-color: transparent; + -webkit-background-clip: text; + -webkit-background-size: 200% 100%; + background-image: -webkit-linear-gradient(left, #fff, #006699 25%, #fff 50%, #006699 75%, #fff); + -webkit-animation: masked-animation 5s infinite linear; +} + +@-webkit-keyframes masked-animation { + 0% { + background-position: 0 0 + } + + to { + background-position: -100% 0 + } +} + +.nav_ban { + /*width: 100%;*/ + height: 200px; + padding: 0 15px; +} + +.nav_ban h1 { + display: inline-block; + /*width: 610px;*/ + line-height: 62px; + font-size: 58px; + text-align: left; +} + +.nav_ban h1 a { + font-weight: 600; + color: #fff; + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif; +} + +.nav_ban h2 { + float: right; + text-overflow: ellipsis; + line-height: 52px; + color: #fff; + font-size: 24px; + margin-right: 20px; +} + +.whitebg { + + /* background-color: #fff; */ + /*margin-bottom: 15px;*/ + /* border-bottom: 1px solid #dcdcdc; */ +} + +.whitebg .qk_img { + width: 190px; + height: 245px; + margin-bottom: 5px; + display: inline-block; +} + +.whitebg .qk_img img { + width: 100%; + height: 100%; +} + +.whitebg .qk_img img:hover { + transform: translateY(-5px); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); + border-color: rgba(44, 110, 73, 0.1); +} + +.whitebg>div { + /* margin: 0 10px; */ + /*border-bottom: 1px solid #ddd;*/ + padding-bottom: 20px; +} + + + +.whitebg h4 { + margin-top: 10px; + color: #006699; + padding: 0 10px; +} + + + +.whitebg ul li { + margin-bottom: 5px; +} + +.whitebg ul li a:hover, +.whitebg ul li a:focus { + color: #23527c; + text-decoration: underline; +} + +.whitebg .btn_system { + width: 240px; + height: 54px; + margin: 0 auto; + line-height: 54px; + padding: 0 !important; +} + +.whitebg .more { + float: right; + margin-top: -20px; + margin-right: 10px; +} + + +.jour_base_info { + height: 245px; + padding: 25px 20px; + /* background-color: #fff; */ +} + +.jour_base_info_center { + width: 1102px; + height: 100%; + padding: 0 10px 0 0px !important; + margin: 0 auto; + display: flex; + align-items: center; + justify-content: space-between; + box-sizing: border-box; +} + +.mes_issn_box { + width: auto; + font-size: 14px; + color: #7a2702; + /* margin-top: 10px; */ + text-align: center; + font-weight: bold !important; + position: absolute; + bottom: 6px; + left: 6px; +} + +.mes_issn_box span { + font-weight: bold !important; + +} + +.jour_base_info_center_left { + height: 100%; + position: relative; + /* width: 300px; */ + +} + +.whitebg .mes_all { + + width: calc(100% - 180px); + white-space: nowrap; + height: 100%; + padding-left: 20px; + /* padding-top: 10px; */ +} + +.mes_all_section { + list-style: none; + padding: 0; + /* margin: 0 20px; */ + color: #5a4632; + display: flex; + justify-content: space-between; +} + +.mes_all_section .mes_all_section_other:nth-child(1) { + width: 200px; + /* padding-top: 20px; */ +} + +/* .mes_all_section .mes_all_section_other:nth-child(2) { + width: 120px; + padding-top: 42px; +} */ +.mes_all_section .mes_all_section_other:nth-child(4) { + width: 200px; + +} + + +.mes_all_section .mes_all_title { + font-size: 18px; + line-height: 36px; + font-weight: bold; + margin-bottom: 10px; + +} + +.mes_all_section li:nth-child(1) .mes_all_title { + padding-left: 20px; + border-radius: 4px; + letter-spacing: 1px; +} + +.mes_all_section p { + margin: 0 0 5px; +} + +.mes_all_section li:nth-child(1) p { + /* padding-left: 20px; */ +} + +.mes_all_section li:nth-child(1) .share_tmrtb { + /* padding-left: 20px; */ +} + +.mes_all_section p b { + color: #333; + font-weight: 600; + cursor: pointer; +} + +.mes_all_section .mes_all_section_other { + color: #555; +} + +.mes_all_section .mes_all_section_other .mes_all_title { + border-bottom: 1px solid; + color: #7a2702; + +} + +.mes_all_section .mes_all_section_other p { + font-size: 14px; + +} + +.jour_ption { + padding: 10px; + position: relative; +} + +.jour_ption p { + margin-bottom: 5px; +} + +.jour_ption input[type="submit"] { + top: 45px; + left: 310px; + height: 30px; + padding: 0 35px 0 10px; + border: 1px solid #ccc; + cursor: pointer; + border-radius: 5px; + color: #fff; + width: 233px; + font-size: 18px; +} + +.jour_ption .icon { + /*background-image: url(../img/shoushi.png);*/ + background-repeat: no-repeat; + background-size: contain; + height: 26px; + width: 50px; + position: absolute; + bottom: 2px; + right: 12px; + z-index: 10; + cursor: pointer; +} + +.jour_ption input[type="text"] { + background-color: #fff; + border-style: solid; + border-width: 1px; + border-color: #ccc; + line-height: 28px; + border-radius: 5px; + padding-left: 10px; + margin: 5px 0 6px 0; + width: 220px; +} + +.jour_ption .spa { + /*margin-left: 75px;*/ + font-size: 12px; + color: #e91c1c; +} + +.jour_stage .jour_sta_wail li { + line-height: 28px; +} + +.jour_stage .All_Issues { + padding-left: 25px; + display: block; + font-weight: 600; + margin-bottom: 10px; +} + +.jour_stage .All_Issues:hover { + text-decoration: underline; +} + +.art_main_con_topic { + /*border-bottom: 2px solid #dcdcdc;*/ + /*background-color: #fff;*/ +} + +.art_main_con_topic .Topic_rgb_color { + width: 1102px; + margin: 0 auto; + font-weight: bold; + font-size: 30px; + line-height: 30px; + padding-left: 6px; +} + +.art_main_con_topic .topics_box { + margin-top: 15px !important; +} + +.top_ics { + margin-bottom: 10px !important; + margin-top: 10px !important; +} + +.art_main_con .top_ics h4 { + border-top: 1px solid #ddd; +} + +.art_top_topic { + background-color: #f8f8f8; + padding-top: 2px; + border-bottom: 0; +} + +.art_top_topic .topics { + padding: 20px 15px; + +} + +.art_top_topic .topics ul { + margin-top: 0; + width: 100%; + overflow: hidden; + +} + +.art_top_topic .topics li { + width: 202px; + padding: 15px 0 5px 0; + margin-bottom: 0; + margin-right: 15px; + float: left; + /*border-bottom: 2px solid white;*/ +} + +.art_top_topic .topics li img { + background-color: #fff; +} + +.art_top_topic .topics li h3 { + line-height: 18px; + /* color: #fff; */ + margin-top: 6px; +} + +.art_top_topic .topics li:nth-child(5) { + margin-right: 0; +} + +/*.art_top_topic_tmr .topics {*/ +/* background-color: #006699;*/ +/*}*/ +.art_top_topic_tmr .topics li img { + width: 202px; + height: 116px; +} + +.news_ment .call_paper ul {} + +.news_ment .call_paper li:nth-child(1) { + margin-right: 20px; +} + +.news_ment .call_paper li { + float: left; + width: 50%; + margin-right: 0; + padding: 9px 14px 1px 14px; + border: 0; + border-bottom: 2px solid #dcdcdc; +} + +.news_ment .call_paper li>div { + float: left; + width: 248px; + padding-right: 10px; +} + +.news_ment .call_paper li>div span { + font-size: 12px; + color: #888; +} + +.news_ment .call_paper li>div h6 { + margin: 10px 0; +} + +.news_ment .call_paper li img { + float: left; + width: 240px; + height: 180px; + +} + +.Rel_ated { + /*margin-top: 15px;*/ + background-color: #f8f8f8; +} + +.Rel_ated li { + width: 16% !important; + margin-right: 8px; + padding: 5px 0 0 0 !important; + margin-bottom: 0 !important; +} + +.Rel_ated li:nth-child(6) { + margin-right: 0; +} + +.Rel_ated img { + width: 128px !important; + height: 175px !important; +} +.ncon_SCom{ +padding-top: 0px !important; +} +.ncon_SCom>div { + padding: 15px 0; + display: flex; +} + +.ncon_SCom>div>div { + float: left; + width: 252px; + padding: 30px 12px; + /*background-color: #fff;*/ +} + +.ncon_SCom>div>div:hover { + background: #fff; +} + +.ncon_SCom>div>div:nth-child(1) { + position: relative; +} + +.ncon_SCom>div>div:nth-child(1)>a { + display: block; + font-size: 16px; + margin: 10px 0 10px 0; + font-weight: 600; + text-align: center; +} + +.ncon_SCom>div>div:nth-child(1)>a:hover { + text-decoration: underline; +} + +.ncon_SCom>div>div:nth-child(1)>i { + display: block; + font-size: 30px; +} + +.ncon_SCom>div>div:nth-child(2) {} + +.ncon_SCom>div>div:nth-child(2)>p { + line-height: 22px; + font-weight: 600; + margin: 15px 0 15px 22px; +} + +.ncon_SCom>div>div:nth-child(2)>a { + font-weight: 600; + cursor: pointer; + margin-left: 80px; +} + +.ncon_SCom>div>div:nth-child(2)>a:hover { + text-decoration: underline; +} + +.ncon_SCom>div>div:nth-child(2) #com_index { + width: 200px; + border: 1px solid #ccc; + border-radius: 5px; + margin: 10px 10px 10px 22px; + display: inline-block; +} + +.ncon_SCom>div>div:nth-child(2) #com_index .selectivity-single-select { + line-height: 22px; + background-color: #fff; + border-radius: 5px; + padding: 0; +} + +.ncon_SCom>div>div:nth-child(2) #com_index .selectivity-single-result-container { + top: 2px; + left: 7px; + height: 20px; +} + +.ncon_SCom>div>div:nth-child(2) #com_index .selectivity-caret { + right: 8px; + top: 4px; + border-left: 1px solid #ccc; + padding: 0 0 0 7px; + height: 20px; +} + +.ncon_SCom>div>div:nth-child(3)>p { + font-weight: 600; + line-height: 22px; + text-align: center; + margin: 10px 0 0 0; +} + +.ncon_SCom>div>div:nth-child(4) { + margin-right: 0; +} + +.ncon_SCom>div>div:nth-child(4) .suity_for {} + +.ncon_SCom>div>div:nth-child(4) .suity_for .spa_su { + font-size: 12px; + color: #e91c1c; +} + +.ncon_SCom>div>div:nth-child(4) .suity_for input[type='text'] { + background-color: #fff; + border: 1px solid #ccc; + line-height: 26px; + border-radius: 5px; + padding-left: 10px; + margin: 15px 0 1px 20px; + width: 215px; +} + +.ncon_SCom>div>div:nth-child(4)>a { + display: block; + text-align: center; + cursor: pointer; + margin: 10px 0 20px 15px; +} + +.ncon_SCom>div>div:nth-child(4)>p { + line-height: 20px; + margin: 14px 0 0 22px; + text-align: center; +} + +.ncon_SCom .bor_sty_col { + background: #d5dee3; + position: absolute; + height: 180px; + top: 20px; + width: 4px !important; + margin: 0 !important; +} + +.sear_ch { + padding-top: 15px; +} + +.sear_ch li { + width: 25% !important; +} + +.sear_ch img { + width: 165px !important; + height: 250px !important; +} + +.Special_Issues_box ul { + padding: 5px 0 0 0; +} + +.Special_Issues_box ul li { + font-size: 13px; + /* margin: 0 10px 12px 10px; */ +} + +.Special_Issues_box ul li a:hover { + color: #23527c; + text-decoration: underline; +} + +.Special_Issues_box h4 a:hover { + color: #23527c; + text-decoration: underline; +} + +.hunt_for { + border-top: 1px solid #ddd; + margin-top: 10px; + padding: 20px 0 10px 0; + position: relative; +} + +.hunt_for .hunt_inp { + line-height: 24px; + border-radius: 5px; + padding-left: 10px; + width: 180px; + background-color: #fff; + border: 1px solid #ccc; +} + +.hunt_for .hunt_btn { + position: absolute; + right: 0; + top: 20px; + color: #fff; + border: 0; + line-height: 26px; + width: 54px; + cursor: pointer; + border-radius: 5px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.current_list { + /*border-bottom: 2px solid #dcdcdc;*/ +} + +.border_title { + /* border-top: 5px solid #fff; */ + border-bottom: 1px solid #fff; +} + +.border_title_top { + + border-top: 5px solid #fff; +} + +.rgb_color_h4 { + /* padding-left: 18px !important; */ + padding-top: 15px !important; + padding-bottom: 15px !important; + /* margin-top: -5px !important; */ + font-size: 26px !important; + +} + +.current_list .links_ img { + margin-right: 5px; +} + +.current_list .links_>div { + display: none; + margin: 8px 0 0 0; + line-height: 26px; +} + +.current_list li .links_ button { + position: relative; +} + +.current_list li .links_ button .export { + position: absolute; + left: 117px; + top: 0; + background-color: #fff; + width: 220px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; + z-index: 1; +} + +.current_list li .links_ button .export li { + color: #444; + text-align: left; + line-height: 26px; + padding: 0; + margin-bottom: 0 !important; + border-bottom: 0; +} + +.current_list li .links_ button .export li:hover { + text-decoration: underline; +} + +.current_list li .cite_box { + position: relative; + display: inline-block; + cursor: pointer; + padding-left: 5px; +} + +.pai_two .current_list li .cite_box { + padding-left: 0px; +} + +.current_list li .cite_box .export_cite { + position: absolute; + left: 5px; + top: 35px; + background-color: #fff; + width: 500px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; + z-index: 100; +} + + + +.current_list li .cite_box .export_cite li { + color: #444; + text-align: left; + line-height: 26px; +} + +.current_list li .cite_box .export_cite li:hover { + text-decoration: underline; +} + +.wenz_list li .links_ button { + position: relative; +} + +.wenz_list li .links_ button .export { + position: absolute; + left: 117px; + top: 0; + background-color: #fff; + width: 200px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; +} + +.wenz_list li .links_ button .export li { + color: #444; + text-align: left; + line-height: 26px; +} + +.wenz_list li .links_ button .export li:hover { + text-decoration: underline; +} + +.sy_actic .links_>div { + display: none; +} + +.sy_actic li .links_ button { + position: relative; +} + +.sy_actic li .links_ button .export { + position: absolute; + left: 117px; + top: 0; + background-color: #fff; + width: 200px; + padding: 5px 10px; + box-shadow: 2px 2px 5px #ccc; +} + +.sy_actic li .links_ button .export li { + color: #444; + text-align: left; + line-height: 26px; +} + +.sy_actic li .links_ button .export li:hover { + text-decoration: underline; +} + +.links_ button .export li i { + font-weight: normal !important; + font-size: 12px !important; + margin-right: 5px !important; +} + +.triangle { + width: 0; + height: 0; + border-top: 8px solid transparent; + border-bottom: 8px solid transparent; + border-right: 8px solid #fff; + position: absolute; + top: 2px; + left: -8px; +} + +.current_list>ul .ab_tad b, +.current_list>ul .ab_yin b { + cursor: pointer; +} + +.current_list>ul .ab_yin { + display: none; +} + +/*图片放大*/ +#bigimg { + position: fixed; + background: rgba(0, 0, 0, .3); + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 500; + display: none; +} + +#bigimg>img { + max-width: 80%; + position: fixed; + left: 0; + right: 0; + top: 50%; + cursor: pointer; + background-color: #fff; + margin: 0 auto; +} + +/*分享*/ +.sharethis-inline-share-buttons { + display: inline-block; + margin-left: 10px; +} + +.sharethis-inline-share-buttons .st-btn { + border: 0 !important; + +} + +.share_tmrtb { + /* padding-top: 5px; */ + +} + +.share_tmrtb>div { + display: inline-block; +} + +.share_tmrtb img { + width: 15px; + height: 15px; + margin-right: 5px; + cursor: pointer; +} + +.share_tmrtb .share_4, +.share_tmrtb .share_5, +.share_tmrtb .share_6 { + position: relative; +} + +.share_tmrtb .share_4 .hov_img { + display: none; + position: absolute; + left: 8px; + top: 12px; + width: 220px; + height: 150px; + z-index: 10; +} + +.share_tmrtb .share_5 .hov_img { + display: none; + position: absolute; + left: 8px; + top: 12px; + width: 200px; + height: 200px; + z-index: 10; +} + +.share_tmrtb .share_6 .hov_img { + display: none; + position: absolute; + left: 8px; + top: 12px; + width: 200px; + height: 200px; + z-index: 10; +} + +.share_tmrtb .share_4:hover .hov_img { + display: block; +} + +.share_tmrtb .share_5:hover .hov_img { + display: block; +} + +.share_tmrtb .share_6:hover .hov_img { + display: block; +} + +/*TMR样式*/ +/*.overall_tmr {*/ +/* background-color: #ffffff;*/ +/*}*/ + +/*.overall_tmr #col-content {*/ +/* width: 100%;*/ +/*}*/ + +/*.overall_tmr #top_bar {*/ +/* background-color: #006699;*/ +/*}*/ + +.overall_tmr .top { + background-color: #fff; + text-align: center; +} + +.overall_tmr .top>.top_logo { + display: inline-block; + width: 710px; + text-align: left; + float: none; +} + +.overall_tmr .top>.top_sea { + display: inline-block; + float: none; +} + +.overall_tmr .top .top_sea .b_Sub { + margin-left: 0; +} + +.overall_tmr .top>.home_logo { + display: inline-block; + float: none; +} + +.overall_tmr .nav_ban { + width: 100%; + margin: 0 auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.overall_tmr .nav_ban h2 { + margin-right: 3px; +} + +.overall_tmr .art_top_topic { + background-color: #006699; +} + +.overall_tmr .art_top_topic>div { + background-color: #006699; + width: 1102px; + margin: 0 auto; +} + +.overall_tmr .art_top_topic>div .topics { + padding: 0px 0 0px 0 !important; +} + +.overall_tmr .art_top_topic>div .topics li { + width: 208px; +} + +.overall_tmr .art_top_topic>div .topics li img { + width: 208px; + height: 120px; +} + +.press-button { + padding-top: 10px; +} + +.press-button>a { + width: 238px !important; + display: block; + color: #fff; + text-align: center; + border-radius: 4px; + padding: 15px 0; + margin: 5px 0 11px 5px; + font-size: 16px; +} + +.press-button>a:hover { + text-decoration: underline; +} + +.press-button>div { + margin: 0 5px; +} + +.press-button>div a { + color: #fff; + width: 116px; + display: block; + float: left; + text-align: center; + font-size: 14px; + line-height: 20px; + margin-top: 10px; + border-radius: 4px; + padding: 10px 0 5px 0; + height: 45px; + white-space: nowrap; +} + +.press-button>div a:nth-child(2n+1) { + margin-right: 5px; +} + +.press-button>div a:hover { + text-decoration: underline; +} + +.overall_tmr .tmr_side_map { + background-color: #fff; + padding: 0; + margin: 0; +} + +.overall_tmr .tmr_side_book { + background-color: #fff; + padding: 0 0 20px 0; + position: relative; +} + +.overall_tmr .tmr_side_book .book_click { + position: absolute; + bottom: 10px; + right: 10px; + color: #006699; + cursor: pointer; +} + +.overall_tmr .tmr_side_book .book_click:hover { + color: #024393; + TEXT-DECORATION: underline; +} + +.overall_tmr .tmr_side_book ul li:nth-child(1) { + margin-top: 5px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(2) { + margin-top: 150px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(3) { + margin-top: 450px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(4) { + margin-top: 750px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(5) { + margin-top: 920px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(6) { + margin-top: 1090px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(7) { + margin-top: 1240px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(8) { + margin-top: 1390px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(9) { + margin-top: 1570px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(10) { + margin-top: 1740px !important; +} + +.overall_tmr .tmr_side_book ul li:nth-child(11) { + margin-top: 1910px !important; +} + +.overall_tmr .tmr_side_map>div {} + +.overall_tmr .tmr_article { + /*background-color: #ededed;*/ + /*background-size: 100% 100%;*/ + /*background: url(../img/home_2.jpg) #f4fbff;*/ + /*background-blend-mode: multiply;*/ + padding-bottom: 1px; + + /* background: url(../img/home_2.jpg) #f4fbff; */ + background-blend-mode: multiply; + +} + +.overall_tmr .tmr_article .jour_hauti_pd { + padding: 1px 0 0 0; + display: none; +} + +.overall_tmr .tmr_article .jour_ht_dy { + margin-top: -5px; +} + +.article_box { + /* margin-top: 20px; */ + /* background-color: #fff; */ +} + +.overall_tmr .article { + width: 1102px; + margin: 0 auto 0 auto; + /* background-color: #f4fafd; */ + padding: 0px 15px 15px 15px; +} + +.overall_tmr .article .art_main { + + + width: 100%; +} + +.overall_tmr .article>div { + /* background-color: #f4fafd; */ +} + +.overall_tmr .article_ {} + +.overall_tmr .ncon_fr_tmr ul li, +.overall_tmr .ncon_aper ul li { + box-shadow: 0 0 10px #bdbdbd; +} + +.overall_tmr .online_fr h4, +.overall_tmr .ncon_tcrd_tmr h4, +.overall_tmr .ncon_aper h4, +.overall_tmr .Rel_ated h4, +.overall_tmr .hua_tpice h4, +.overall_tmr .Special_Issues_box h4, +.overall_tmr .ncon_hl h4 { + width: 1102px; + margin: 0 auto; +} + +.ment_news>div { + width: 1102px; + margin: 5px auto 0 auto; + display: flex; +} + +.ment_news>div>div { + float: left; + width: 49%; + /*background-color: #fff;*/ + padding-top: 10px; +} + +.ment_news>div>div:nth-child(1) { + margin-right: 20px; +} + +.ment_news>div ul li { + float: left; + width: 45.5%; + padding: 0 12px 10px 12px; +} + +.ment_news h4 { + padding: 0 10px; +} + +.ment_news h4 b { + display: inline-block; +} + +.ment_news h4 a.more { + /*display: inline-block;*/ + /*margin-top: -15px;*/ +} + +.overall_tmr .topics a.more { + left: 49%; + margin-left: 510px; + margin-top: -12px; + top: 18px; +} + +.overall_tmr .news_ment a.more { + left: 50%; + margin-left: 495px; + width: 50px; + font-family: "Helvetica Neue For Number", "Merri_weather", Helvetica, serif; + letter-spacing: 0; +} + +.overall_tmr .news_ment a.m_new, +.overall_tmr .news_ment a.m_con { + font-family: "Helvetica Neue For Number", "Merri_weather", Helvetica, serif; + letter-spacing: 0; +} + +.overall_tmr .online_fr ul, +.overall_tmr .ncon_fr_tmr ul, +.overall_tmr .ncon_tcrd_tmr ul, +.overall_tmr .ncon_aper ul, +.overall_tmr .Rel_ated ul, +.overall_tmr .hua_tpice ul, +.overall_tmr .ncon_hl ul, +.overall_tmr .Special_Issues_box ul, +.overall_tmr .ncon_SCom>div { + width: 1098px; + margin: 15px auto 0; +} + +.overall_tmr .bgv_san { + /* background: url(../img/home_2.jpg) #f4fbff; */ + background-blend-mode: multiply; +} + +.overall_tmr .footer { + margin-top: 0; +} + +.overall_tmr .daohang { + width: 1102px; + margin: 0 auto; +} + +.footer .bianma { + color: #fff; + text-align: center; + margin-top: 10px; +} + +.footer .bianma p { + font-weight: 600; + font-size: 14px; + color: #fff; +} + +.footer .bianma>div { + font-weight: 600; + font-size: 14px; + color: #fff; +} + +.footer .bianma .mianZe { + display: inline-block; + position: relative; + font-weight: 600; + margin-left: 10px; +} + +.footer .bianma .mianZe:hover { + text-decoration: underline; + cursor: pointer; +} + +.footer .bianma .mianZe:hover .delog_tc { + display: block; +} + +.footer .bianma .delog_tc { + position: absolute; + width: 400px; + top: -190px; + left: -170px; + z-index: 100; + text-align: left; + background: #fff; + padding: 10px 20px; + border-radius: 10px; + box-shadow: 2px 2px 5px #ccc; + display: none; +} + +.footer .bianma .delog_tc p { + color: #333; +} + + +.footer .bianma .delog_tc .triacoud { + width: 0; + height: 0; + border-top: 8px solid #fff; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + bottom: -8px; + left: 194px; +} + + +.overall_tmr .tmr_back_bot { + background-color: #f4fafd !important; +} + +/*话题展示文章*/ +.hua_tpice {} + +.hua_tpice>ul.tpice_cancar { + display: block; + margin-top: 0 !important; +} + +.hua_tpice>ul.tpice_lies { + margin-top: 55px; + position: relative; + background-color: #fff; +} + +.hua_tpice>ul.tpice_lies .bor_sty_col { + background: #d5dee3; + position: absolute; + height: 110px; + top: 8px; + width: 4px; +} + +.hua_tpice>ul.tpice_lies>a { + right: 2px; + top: -30px; + position: absolute; + color: #024393; + cursor: pointer; + font-family: "Helvetica Neue For Number", "Merri_weather", Helvetica, serif; +} + +.hua_tpice>ul.tpice_lies li { + width: 180px; +} + +.hua_tpice>ul.tpice_lies li:hover img { + transform: scale(1.1); +} + +.hua_tpice>ul.tpice_lies li img { + height: 110px; + margin: 0; + border: 0; +} + +.hua_tpice>ul.tpice_lies li h6 { + margin-bottom: 0; +} + +.hua_tpice>ul.tpice_lies li h6 a { + font-size: 13px; + margin-bottom: 0; +} + +.hua_tpice>ul>div { + float: left; + margin-top: 15px; +} + +/*1*/ +.hua_tpice div.tpoce_con1 { + position: relative; +} + +.hua_tpice div.tpoce_con1 img { + width: 100%; + height: 265px; + background-color: #fff; +} + +.hua_tpice div.tpoce_con1 div { + position: absolute; + background-color: rgba(0, 0, 0, .7); + padding: 10px; + width: 450px; + bottom: -63px; +} + +.hua_tpice div.tpoce_con1 div span { + color: #fff; + font-family: Calibri; + font-size: 16px; + margin-bottom: 5px; + display: block; +} + +.hua_tpice div.tpoce_con1 div p { + color: #fff; +} + +.hua_tpice div.tpoce_con1 div p:hover { + text-decoration: underline; +} + +/*2*/ +.hua_tpice div.tpoce_con2 { + margin: 15px 15px 0 15px; +} + +.hua_tpice div.tpoce_con2>div { + float: left; + width: 47%; +} + +.hua_tpice div.tpoce_con2>div:nth-child(1) { + margin-right: 15px; +} + +.hua_tpice div.tpoce_con2>div img { + width: 100%; + height: 120px; +} + +.hua_tpice div.tpoce_con2 div span { + font-family: Calibri; + font-size: 16px; + margin-bottom: 5px; + display: block; + color: #006699; +} + +.hua_tpice div.tpoce_con2 p {} + +.hua_tpice div.tpoce_con2 p:hover { + text-decoration: underline; +} + +/*3*/ +.hua_tpice div.tpoce_con3 {} + +.hua_tpice div.tpoce_con3>div { + border-bottom: 1px solid #000; + padding: 0 0 3px 0; + margin: 0 0 5px 0; +} + +.hua_tpice div.tpoce_con3>div>span { + font-family: Calibri; + font-size: 14px; + display: block; + line-height: 18px; + color: #006699; +} + +.hua_tpice div.tpoce_con3>div:nth-child(3) { + margin: 0; + border-bottom: 0; +} + +.hua_tpice div.tpoce_con3 p {} + +.hua_tpice div.tpoce_con3 p:hover { + text-decoration: underline; +} + +/*轮播*/ +.overall_tmr #Marquee_x { + overflow: hidden; + width: 100%; +} + +.overall_tmr #Marquee_x ul { + margin-top: 0; +} + +.overall_tmr #Marquee_x ul li { + float: left; + line-height: 18px; + overflow: hidden; + display: flex; + background: 0; + box-shadow: none; + padding: 6px 0 6px 5px; +} + +.overall_tmr #Marquee_x ul li>div { + float: left; + width: 234px; + margin-right: 20px !important; + background-color: #fff; + padding: 5px 12px 10px 12px; + box-shadow: 0 0 10px #bdbdbd; + overflow: hidden +} + +.overall_tmr #Marquee_x ul li a img { + width: 100%; + height: 130px; + margin: 8px 0 15px; +} + +.overall_tmr #Marquee_x ul li div.fo_fam { + font-family: Calibri; + font-size: 16px; + line-height: 20px; +} + +.overall_tmr .article .art_main .new_art>ul li { + /* margin-bottom: 15px; */ + border-bottom: 2px solid #dcdcdc; +} + +/*.overall_tmr .article .art_main .new_art > ul li:nth-child(1) {*/ +/* margin-bottom: 15px;*/ +/*}*/ + +/*.overall_tmr .article .art_main .new_art > ul li:nth-child(2) {*/ +/* margin-bottom: 15px;*/ +/*}*/ + +/*.overall_tmr .article .art_main .new_art > ul li:nth-child(3) {*/ +/* margin-bottom: 15px;*/ +/*}*/ + +.overall_tmr .article .art_main .new_art>ul div li:nth-child(1) { + margin-right: 18px; + margin-bottom: 15px; +} + +.overall_tmr .article .art_main .new_art>ul li.pai_two { + width: 43.77%; + float: left; +} + +.overall_tmr .article .art_main .new_art>ul li.pai_two>.links_ button { + margin: 10px 10px 0 0; +} + +.overall_tmr .article .art_main .new_art>ul li.pai_two .apwrap>a { + float: none; + width: 100%; +} + +.overall_tmr .article .art_main .new_art>ul li.pai_two .apwrap>div { + float: none; + width: 96%; + margin-top: 10px; +} + +.footpanel { + display: none; +} + +/*搜索框*/ +.ment_sousuo_kuang { + margin-top: 28px; + padding-bottom: 0px; + /*background: #006699;*/ +} + +.ment_sousuo_kuang>div { + position: relative; + /* background: #fff; */ + /*background: url(../img/home_0.jpg) no-repeat #f4fbff;*/ + /*background-blend-mode: multiply;*/ + background-size: 100% 100%; + padding: 15px 0px; + /*border-radius: 75px 0 60px 0;*/ + width: 1102px; + margin: 0 auto; +} + +.ment_sousuo_kuang .soukuang_inp { + line-height: 15px; + border-radius: 5px; + width: 818px; + padding: 10px 16px; + background-color: #fff; + border: 1px solid #006699; + /*border: 0;*/ +} + +.ment_sousuo_kuang .soukuang_btn { + position: absolute; + display: block; + /* background: #fff; */ + right: 10px; + top: 17.5px; + color: #fff; + line-height: 26px; + width: 45px; + height: 45px; + border-radius: 5px; + cursor: pointer; +} + +.ment_sousuo_kuang .soukuang_btn i { + color: #006699; + padding: 9px 9.5px; + background: #fff; + font-size: 18px; + border-radius: 4px; + border: 1px solid #006699; +} + +.ment_sousuo_kuang .soukuang_btn i:hover { + color: #fff; + background: #006699; + border: 1px solid #fff; +} + +.ment_sousuo_kuang select { + line-height: 38px; + height: 45px; + width: 145px; + border: 1px solid #006699; + border-radius: 5px; + padding: 0 0 0 20px; + cursor: pointer; + appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + background: url(/img/arrow.png) no-repeat 124px center transparent; +} + + +.jour_correlate>h4 {} + + +.Special_Issues_box ul li .gue_s_btn { + margin: 8px 0 0 0; +} + +.Special_Issues_box ul li .gue_s_btn a { + cursor: pointer; + border: 1px solid #006699; + color: #006699; + border-radius: 5px; + padding: 2px 5px; + letter-spacing: -0.5px; +} + +.Special_Issues_box ul li .gue_s_btn a:hover { + text-decoration: underline; +} + +.Special_Issues_box ul li .gue_s_btn a.gue_submin { + margin-right: 5px; +} + +.jour_awaite { + margin-top: -5px !important; +} + +.jour_awaite li { + margin-bottom: 10px !important; +} + +.jour_awaite li:last-child { + margin-bottom: 0 !important; +} + +.jour_awaite li a { + font-size: 13px; + line-height: 16px; + margin-bottom: 2px; + display: block; +} + +[class*="loader-"] { + display: inline-block; + width: 1em; + height: 1em; + color: inherit; + vertical-align: middle; + pointer-events: none; +} + +.loader-01 { + border: .2em dotted currentcolor; + border-radius: 50%; + -webkit-animation: 1s loader-01 linear infinite; + animation: 1s loader-01 linear infinite; +} + +@-webkit-keyframes loader-01 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes loader-01 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.cite_txt_button { + background: #fff !important; + padding: 0 !important; + color: #7a2702 !important; + margin-left: 5px !important; + font-family: "Helvetica Neue", Helvetica, Georgia, sans-serif !important; + + font-size: 14px !important; +} + +.cite_txt_button .export { + left: 130px !important; +} + +.pai_two .cite_txt_button { + + margin-left: 0px !important; +} + +#col-content { + background-color: #fff; + /* background: url(../img/home_2.jpg) #f4fbff; + background-blend-mode: multiply; */ +} + +.Special_Issues_box {} + +.Special_Issues_box .Special_Issues_title { + color: #444; + font-size: 16px; + font-weight: bold; + padding-bottom: 8px; +} + +.Special_Issues_box ul { + padding-top: 0; + display: block; + overflow: hidden; +} + +.Special_Issues_box ul li { + width: 25%; + box-sizing: border-box; + margin-right: 0; + padding: 5px 12px 10px 12px; +} + +.Special_Issues_box ul li img { + width: 100%; + background: #fff; + +} + +.mes_all_current_issue { + font-weight: 600; + color: #7f0202; +} + +.mes_all_current_issue_time { + font-size: 12px; + color: #006699; + /* font-weight: 600; */ +} + +.jour_notice .jour_notice_title_name { + font-size: 14px; + font-weight: bold; + text-align: left; + margin-bottom: 10px; + margin-top: 15px; +} + +.rgb_color_show_more { + display: flex; + align-items: center; + justify-content: space-between; +} \ No newline at end of file diff --git a/journals_tmr_v14.html b/journals_tmr_v14.html new file mode 100644 index 0000000..f88159a --- /dev/null +++ b/journals_tmr_v14.html @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + +
      +
      +
      + +
      + + + +
      +
      +
      +
      +
      +
        +
      +
      +
      + +
      +
      +
      +
      + +
      +

      Current Issue

      +
        + +
      +
      + + +
      +
      +
      + +
      + + + + +
      + + +
      +
      +

      +
      Online First
      +

      + More +
        + +
      +
      + +
      +
      + +
      + + +
      + + + +
      +
      +
      +

      Archiving +

      + More +
      +
        + +
      +
      +
      +
      + +

      +
      Special Issues
      +

      + +
        + +
      + + + +
      +
      +

      +
      Highlights
      +

      More +
        + +
      +
      +
      + + +
      +
      +

      +
      Topics
      +

      +
      +
      +
      +
      +
      +
      + + +
      +
      + + + + +
      + + + +
      + +
      +
      +
      + +
      +
      +

      + Too many journals to choose?
      + Select the topic of manuscript. +

      +
      + + Search + + +
      +
      + + + +
      +

      Traditional Medicine Research
      Data Expanded

      +
      +
      +

      Subscribe to receive the latest
      research and news from
      +

      +
      + + +
      + + Subscribe + +
      +
      +
      +
      + + + + +
      + + + +
      + +
      + + +
      +
      +

      Subscribe to receive latest research and news from 

      +

      We will exclusively utilize your email address to inform you about the release of new articles. You + have the freedom to unsubscribe at any given moment.

      +
      +
      +

      Email address

      +
      + + +
      + + +
      +
      + +
      +
      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/js/h3_tit_new.png b/js/h3_tit_new.png new file mode 100644 index 0000000..8aed5b7 Binary files /dev/null and b/js/h3_tit_new.png differ diff --git a/js/not_map.js b/js/not_map.js index afe95ae..d2e9135 100644 --- a/js/not_map.js +++ b/js/not_map.js @@ -9,191 +9,191 @@ function getQueryString(name) { var footer_map_ID = getQueryString('footer_id'); //footer var country_data = [ - {"name": "Canada", "value": 0}, //{"name": "Canada", "value": 3} - {"name": "Russia", "value": 0}, //{"name": "Russia", "value": 1} - {"name": "China", "value": 0}, //{"name": "China", "value": 2}, - {"name": "United States", "value": 0}, // {"name": "United States", "value": 17} - {"name": "Singapore Rep.", "value": 0}, - {"name": "Dominican Rep.", "value": 0}, - {"name": "Palestine", "value": 0}, - {"name": "Bahamas", "value": 0}, - {"name": "Timor-Leste", "value": 0}, - {"name": "Afghanistan", "value": 0}, - {"name": "Guinea-Bissau", "value": 0}, - {"name": "Côte d'Ivoire", "value": 0}, - {"name": "Siachen Glacier", "value": 0}, - {"name": "Br. Indian Ocean Ter.", "value": 0}, - {"name": "Angola", "value": 0}, - {"name": "Albania", "value": 0}, //{"name": "Albania", "value": 1} - {"name": "United Arab Emirates", "value": 0}, - {"name": "Argentina", "value": 0}, - {"name": "Armenia", "value": 0}, - {"name": "French Southern and Antarctic Lands", "value": 0}, - {"name": "Australia", "value": 0}, //{"name": "Australia", "value": 2} - {"name": "Austria", "value": 0}, - {"name": "Azerbaijan", "value": 0}, - {"name": "Burundi", "value": 0}, - {"name": "Belgium", "value": 0}, - {"name": "Benin", "value": 0}, - {"name": "Burkina Faso", "value": 0}, - {"name": "Bangladesh", "value": 0}, //{"name": "Bengal", "value": 1} - {"name": "Bulgaria", "value": 0}, - {"name": "The Bahamas", "value": 0}, - {"name": "Bosnia and Herz.", "value": 0}, - {"name": "Belarus", "value": 0}, - {"name": "Belize", "value": 0}, - {"name": "Bermuda", "value": 0}, - {"name": "Bolivia", "value": 0}, - {"name": "Brazil", "value": 0}, - {"name": "Brunei", "value": 0}, - {"name": "Bhutan", "value": 0}, - {"name": "Botswana", "value": 0}, - {"name": "Central African Rep.", "value": 0}, - {"name": "Switzerland", "value": 0}, - {"name": "Chile", "value": 0}, - {"name": "Ivory Coast", "value": 0}, - {"name": "Cameroon", "value": 0}, - {"name": "Dem. Rep. Congo", "value": 0}, - {"name": "Congo", "value": 0}, - {"name": "Colombia", "value": 0}, - {"name": "Costa Rica", "value": 0}, - {"name": "Cuba", "value": 0}, - {"name": "N. Cyprus", "value": 0}, - {"name": "Cyprus", "value": 0}, - {"name": "Czech Rep.", "value": 0}, - {"name": "Germany", "value": 0}, - {"name": "Djibouti", "value": 0}, - {"name": "Denmark", "value": 0}, //{"name": "Denmark", "value": 1} - {"name": "Algeria", "value": 0}, - {"name": "Ecuador", "value": 0}, - {"name": "Egypt", "value": 0}, //{"name": "Egypt", "value": 1} - {"name": "Eritrea", "value": 0}, - {"name": "Spain", "value": 0}, - {"name": "Estonia", "value": 0}, - {"name": "Ethiopia", "value": 0}, - {"name": "Finland", "value": 0}, - {"name": "Fiji", "value": 0}, - {"name": "Falkland Islands", "value": 0}, - {"name": "France", "value": 0}, //{"name": "France", "value": 1} - {"name": "Gabon", "value": 0}, - {"name": "United Kingdom", "value": 0}, - {"name": "Georgia", "value": 0}, - {"name": "Ghana", "value": 0}, - {"name": "Guinea", "value": 0}, - {"name": "Gambia", "value": 0}, - {"name": "Guinea Bissau", "value": 0}, - {"name": "Eq. Guinea", "value": 0}, - {"name": "Greece", "value": 0}, //{"name": "Greece", "value": 1} - {"name": "Greenland", "value": 0}, - {"name": "Guatemala", "value": 0}, - {"name": "French Guiana", "value": 0}, - {"name": "Guyana", "value": 0}, - {"name": "Honduras", "value": 0}, - {"name": "Croatia", "value": 0}, //{"name": "Croatia", "value": 1} - {"name": "Haiti", "value": 0}, - {"name": "Hungary", "value": 0}, - {"name": "Indonesia", "value": 0}, - {"name": "India", "value": 0}, //{"name": "India", "value": 18} - {"name": "Ireland", "value": 0}, - {"name": "Iran", "value": 0}, //{"name": "Iran", "value": 5} - {"name": "Iraq", "value": 0}, //{"name": "Iraq", "value": 1} - {"name": "Iceland", "value": 0}, - {"name": "Israel", "value": 0}, - {"name": "Italy", "value": 0}, - {"name": "Jamaica", "value": 0}, - {"name": "Jordan", "value": 0}, - {"name": "Japan", "value": 0}, - {"name": "Kazakhstan", "value": 0}, - {"name": "Kenya", "value": 0}, - {"name": "Kyrgyzstan", "value": 0}, - {"name": "Cambodia", "value": 0}, - {"name": "Korea", "value": 0}, - {"name": "Kosovo", "value": 0}, - {"name": "Kuwait", "value": 0}, - {"name": "Lao PDR", "value": 0}, - {"name": "Lebanon", "value": 0}, - {"name": "Liberia", "value": 0}, - {"name": "Libya", "value": 0}, - {"name": "Sri Lanka", "value": 0}, - {"name": "Lesotho", "value": 0}, - {"name": "Lithuania", "value": 0}, - {"name": "Luxembourg", "value": 0}, - {"name": "Latvia", "value": 0}, - {"name": "Morocco", "value": 0}, - {"name": "Moldova", "value": 0}, - {"name": "Madagascar", "value": 0}, - {"name": "Mexico", "value": 0}, - {"name": "Macedonia", "value": 0}, - {"name": "Mali", "value": 0}, - {"name": "Myanmar", "value": 0}, - {"name": "Montenegro", "value": 0}, - {"name": "Mongolia", "value": 0}, - {"name": "Mozambique", "value": 0}, - {"name": "Mauritania", "value": 0}, - {"name": "Malawi", "value": 0}, - {"name": "Malaysia", "value": 0}, //{"name": "Malaysia", "value": 2} - {"name": "Namibia", "value": 0}, - {"name": "New Caledonia", "value": 0}, - {"name": "Niger", "value": 0}, - {"name": "Nigeria", "value": 0}, - {"name": "Nicaragua", "value": 0}, - {"name": "Netherlands", "value": 0}, - {"name": "Norway", "value": 0}, - {"name": "Nepal", "value": 0}, //{"name": "Nepal", "value": 1} - {"name": "New Zealand", "value": 0}, - {"name": "Oman", "value": 0}, - {"name": "Pakistan", "value": 0}, //{"name": "Pakistan", "value": 1}, - {"name": "Panama", "value": 0}, - {"name": "Peru", "value": 0}, - {"name": "Philippines", "value": 0}, - {"name": "Papua New Guinea", "value": 0}, - {"name": "Poland", "value": 0}, - {"name": "Puerto Rico", "value": 0}, - {"name": "Dem. Rep. Korea", "value": 0}, - {"name": "Portugal", "value": 0}, - {"name": "Paraguay", "value": 0}, - {"name": "Qatar", "value": 0}, - {"name": "Romania", "value": 0}, - {"name": "Rwanda", "value": 0}, - {"name": "W. Sahara", "value": 0}, - {"name": "Saudi Arabia", "value": 0}, - {"name": "Sudan", "value": 0}, //{"name": "Sultan", "value": 1} - {"name": "S. Sudan", "value": 0}, - {"name": "Senegal", "value": 0}, - {"name": "Solomon Is.", "value": 0}, - {"name": "Sierra Leone", "value": 0}, - {"name": "El Salvador", "value": 0}, - {"name": "Somaliland", "value": 0}, - {"name": "Somalia", "value": 0}, - {"name": "Serbia", "value": 0}, //{"name": "Serbia", "value": 1} - {"name": "Suriname", "value": 0}, - {"name": "Slovakia", "value": 0}, - {"name": "Slovenia", "value": 0}, - {"name": "Sweden", "value": 0}, - {"name": "Swaziland", "value": 0}, - {"name": "Syria", "value": 0}, - {"name": "Chad", "value": 0}, - {"name": "Togo", "value": 0}, - {"name": "Thailand", "value": 0}, - {"name": "Tajikistan", "value": 0}, - {"name": "Turkmenistan", "value": 0}, - {"name": "East Timor", "value": 0}, - {"name": "Trinidad and Tobago", "value": 0}, - {"name": "Tunisia", "value": 0}, - {"name": "Turkey", "value": 0}, //{"name": "Turkey", "value": 1} - {"name": "Tanzania", "value": 0}, - {"name": "Uganda", "value": 0}, - {"name": "Ukraine", "value": 0}, - {"name": "Uruguay", "value": 0}, - {"name": "Uzbekistan", "value": 0}, - {"name": "Venezuela", "value": 0}, - {"name": "Vietnam", "value": 0}, //{"name": "Vietnam", "value": 1} - {"name": "Vanuatu", "value": 0}, - {"name": "West Bank", "value": 0}, - {"name": "Yemen", "value": 0}, - {"name": "South Africa", "value": 0}, - {"name": "Zambia", "value": 0}, - {"name": "Zimbabwe", "value": 0}, + { "name": "Canada", "value": 0 }, //{"name": "Canada", "value": 3} + { "name": "Russia", "value": 0 }, //{"name": "Russia", "value": 1} + { "name": "China", "value": 0 }, //{"name": "China", "value": 2}, + { "name": "United States", "value": 0 }, // {"name": "United States", "value": 17} + { "name": "Singapore Rep.", "value": 0 }, + { "name": "Dominican Rep.", "value": 0 }, + { "name": "Palestine", "value": 0 }, + { "name": "Bahamas", "value": 0 }, + { "name": "Timor-Leste", "value": 0 }, + { "name": "Afghanistan", "value": 0 }, + { "name": "Guinea-Bissau", "value": 0 }, + { "name": "Côte d'Ivoire", "value": 0 }, + { "name": "Siachen Glacier", "value": 0 }, + { "name": "Br. Indian Ocean Ter.", "value": 0 }, + { "name": "Angola", "value": 0 }, + { "name": "Albania", "value": 0 }, //{"name": "Albania", "value": 1} + { "name": "United Arab Emirates", "value": 0 }, + { "name": "Argentina", "value": 0 }, + { "name": "Armenia", "value": 0 }, + { "name": "French Southern and Antarctic Lands", "value": 0 }, + { "name": "Australia", "value": 0 }, //{"name": "Australia", "value": 2} + { "name": "Austria", "value": 0 }, + { "name": "Azerbaijan", "value": 0 }, + { "name": "Burundi", "value": 0 }, + { "name": "Belgium", "value": 0 }, + { "name": "Benin", "value": 0 }, + { "name": "Burkina Faso", "value": 0 }, + { "name": "Bangladesh", "value": 0 }, //{"name": "Bengal", "value": 1} + { "name": "Bulgaria", "value": 0 }, + { "name": "The Bahamas", "value": 0 }, + { "name": "Bosnia and Herz.", "value": 0 }, + { "name": "Belarus", "value": 0 }, + { "name": "Belize", "value": 0 }, + { "name": "Bermuda", "value": 0 }, + { "name": "Bolivia", "value": 0 }, + { "name": "Brazil", "value": 0 }, + { "name": "Brunei", "value": 0 }, + { "name": "Bhutan", "value": 0 }, + { "name": "Botswana", "value": 0 }, + { "name": "Central African Rep.", "value": 0 }, + { "name": "Switzerland", "value": 0 }, + { "name": "Chile", "value": 0 }, + { "name": "Ivory Coast", "value": 0 }, + { "name": "Cameroon", "value": 0 }, + { "name": "Dem. Rep. Congo", "value": 0 }, + { "name": "Congo", "value": 0 }, + { "name": "Colombia", "value": 0 }, + { "name": "Costa Rica", "value": 0 }, + { "name": "Cuba", "value": 0 }, + { "name": "N. Cyprus", "value": 0 }, + { "name": "Cyprus", "value": 0 }, + { "name": "Czech Rep.", "value": 0 }, + { "name": "Germany", "value": 0 }, + { "name": "Djibouti", "value": 0 }, + { "name": "Denmark", "value": 0 }, //{"name": "Denmark", "value": 1} + { "name": "Algeria", "value": 0 }, + { "name": "Ecuador", "value": 0 }, + { "name": "Egypt", "value": 0 }, //{"name": "Egypt", "value": 1} + { "name": "Eritrea", "value": 0 }, + { "name": "Spain", "value": 0 }, + { "name": "Estonia", "value": 0 }, + { "name": "Ethiopia", "value": 0 }, + { "name": "Finland", "value": 0 }, + { "name": "Fiji", "value": 0 }, + { "name": "Falkland Islands", "value": 0 }, + { "name": "France", "value": 0 }, //{"name": "France", "value": 1} + { "name": "Gabon", "value": 0 }, + { "name": "United Kingdom", "value": 0 }, + { "name": "Georgia", "value": 0 }, + { "name": "Ghana", "value": 0 }, + { "name": "Guinea", "value": 0 }, + { "name": "Gambia", "value": 0 }, + { "name": "Guinea Bissau", "value": 0 }, + { "name": "Eq. Guinea", "value": 0 }, + { "name": "Greece", "value": 0 }, //{"name": "Greece", "value": 1} + { "name": "Greenland", "value": 0 }, + { "name": "Guatemala", "value": 0 }, + { "name": "French Guiana", "value": 0 }, + { "name": "Guyana", "value": 0 }, + { "name": "Honduras", "value": 0 }, + { "name": "Croatia", "value": 0 }, //{"name": "Croatia", "value": 1} + { "name": "Haiti", "value": 0 }, + { "name": "Hungary", "value": 0 }, + { "name": "Indonesia", "value": 0 }, + { "name": "India", "value": 0 }, //{"name": "India", "value": 18} + { "name": "Ireland", "value": 0 }, + { "name": "Iran", "value": 0 }, //{"name": "Iran", "value": 5} + { "name": "Iraq", "value": 0 }, //{"name": "Iraq", "value": 1} + { "name": "Iceland", "value": 0 }, + { "name": "Israel", "value": 0 }, + { "name": "Italy", "value": 0 }, + { "name": "Jamaica", "value": 0 }, + { "name": "Jordan", "value": 0 }, + { "name": "Japan", "value": 0 }, + { "name": "Kazakhstan", "value": 0 }, + { "name": "Kenya", "value": 0 }, + { "name": "Kyrgyzstan", "value": 0 }, + { "name": "Cambodia", "value": 0 }, + { "name": "Korea", "value": 0 }, + { "name": "Kosovo", "value": 0 }, + { "name": "Kuwait", "value": 0 }, + { "name": "Lao PDR", "value": 0 }, + { "name": "Lebanon", "value": 0 }, + { "name": "Liberia", "value": 0 }, + { "name": "Libya", "value": 0 }, + { "name": "Sri Lanka", "value": 0 }, + { "name": "Lesotho", "value": 0 }, + { "name": "Lithuania", "value": 0 }, + { "name": "Luxembourg", "value": 0 }, + { "name": "Latvia", "value": 0 }, + { "name": "Morocco", "value": 0 }, + { "name": "Moldova", "value": 0 }, + { "name": "Madagascar", "value": 0 }, + { "name": "Mexico", "value": 0 }, + { "name": "Macedonia", "value": 0 }, + { "name": "Mali", "value": 0 }, + { "name": "Myanmar", "value": 0 }, + { "name": "Montenegro", "value": 0 }, + { "name": "Mongolia", "value": 0 }, + { "name": "Mozambique", "value": 0 }, + { "name": "Mauritania", "value": 0 }, + { "name": "Malawi", "value": 0 }, + { "name": "Malaysia", "value": 0 }, //{"name": "Malaysia", "value": 2} + { "name": "Namibia", "value": 0 }, + { "name": "New Caledonia", "value": 0 }, + { "name": "Niger", "value": 0 }, + { "name": "Nigeria", "value": 0 }, + { "name": "Nicaragua", "value": 0 }, + { "name": "Netherlands", "value": 0 }, + { "name": "Norway", "value": 0 }, + { "name": "Nepal", "value": 0 }, //{"name": "Nepal", "value": 1} + { "name": "New Zealand", "value": 0 }, + { "name": "Oman", "value": 0 }, + { "name": "Pakistan", "value": 0 }, //{"name": "Pakistan", "value": 1}, + { "name": "Panama", "value": 0 }, + { "name": "Peru", "value": 0 }, + { "name": "Philippines", "value": 0 }, + { "name": "Papua New Guinea", "value": 0 }, + { "name": "Poland", "value": 0 }, + { "name": "Puerto Rico", "value": 0 }, + { "name": "Dem. Rep. Korea", "value": 0 }, + { "name": "Portugal", "value": 0 }, + { "name": "Paraguay", "value": 0 }, + { "name": "Qatar", "value": 0 }, + { "name": "Romania", "value": 0 }, + { "name": "Rwanda", "value": 0 }, + { "name": "W. Sahara", "value": 0 }, + { "name": "Saudi Arabia", "value": 0 }, + { "name": "Sudan", "value": 0 }, //{"name": "Sultan", "value": 1} + { "name": "S. Sudan", "value": 0 }, + { "name": "Senegal", "value": 0 }, + { "name": "Solomon Is.", "value": 0 }, + { "name": "Sierra Leone", "value": 0 }, + { "name": "El Salvador", "value": 0 }, + { "name": "Somaliland", "value": 0 }, + { "name": "Somalia", "value": 0 }, + { "name": "Serbia", "value": 0 }, //{"name": "Serbia", "value": 1} + { "name": "Suriname", "value": 0 }, + { "name": "Slovakia", "value": 0 }, + { "name": "Slovenia", "value": 0 }, + { "name": "Sweden", "value": 0 }, + { "name": "Swaziland", "value": 0 }, + { "name": "Syria", "value": 0 }, + { "name": "Chad", "value": 0 }, + { "name": "Togo", "value": 0 }, + { "name": "Thailand", "value": 0 }, + { "name": "Tajikistan", "value": 0 }, + { "name": "Turkmenistan", "value": 0 }, + { "name": "East Timor", "value": 0 }, + { "name": "Trinidad and Tobago", "value": 0 }, + { "name": "Tunisia", "value": 0 }, + { "name": "Turkey", "value": 0 }, //{"name": "Turkey", "value": 1} + { "name": "Tanzania", "value": 0 }, + { "name": "Uganda", "value": 0 }, + { "name": "Ukraine", "value": 0 }, + { "name": "Uruguay", "value": 0 }, + { "name": "Uzbekistan", "value": 0 }, + { "name": "Venezuela", "value": 0 }, + { "name": "Vietnam", "value": 0 }, //{"name": "Vietnam", "value": 1} + { "name": "Vanuatu", "value": 0 }, + { "name": "West Bank", "value": 0 }, + { "name": "Yemen", "value": 0 }, + { "name": "South Africa", "value": 0 }, + { "name": "Zambia", "value": 0 }, + { "name": "Zimbabwe", "value": 0 }, ] @@ -240,7 +240,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -249,12 +249,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -264,7 +264,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -281,13 +281,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -353,7 +353,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -362,12 +362,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -377,7 +377,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -394,13 +394,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -462,7 +462,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -471,12 +471,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -486,7 +486,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -503,13 +503,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -571,7 +571,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -580,12 +580,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -595,7 +595,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -612,13 +612,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -680,7 +680,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -689,12 +689,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -704,7 +704,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -721,13 +721,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -789,7 +789,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -798,12 +798,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -813,7 +813,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -830,13 +830,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -898,7 +898,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -907,12 +907,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -922,7 +922,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -939,13 +939,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -1007,7 +1007,7 @@ if (footer_map_ID == '125') { text: '', top: "30px", left: 'center', - textStyle: {color: '#000'} + textStyle: { color: '#000' } }, visualMap: { //图列显示柱 type: 'piecewise', @@ -1016,12 +1016,12 @@ if (footer_map_ID == '125') { calculable: true, color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) ] }, toolbox: { //工具栏 @@ -1031,7 +1031,7 @@ if (footer_map_ID == '125') { itemGap: 20, left: 30, feature: { - dataView: {readOnly: false}, + dataView: { readOnly: false }, restore: {}, saveAsImage: {} } @@ -1048,13 +1048,13 @@ if (footer_map_ID == '125') { mapType: 'world', roam: true, zoom: 1, - mapLocation: {y: 100}, + mapLocation: { y: 100 }, data: dataMap, //绑定数据 // nameMap: nameComparison, symbolSize: 12, label: { - normal: {show: false}, - emphasis: {show: true} + normal: { show: false }, + emphasis: { show: true } }, itemStyle: { normal: { @@ -1083,130 +1083,133 @@ if (footer_map_ID == '125') { // 侧栏小地图 // tmr,life,感染,胃肠,精准,历史与哲学 // Jour_num == "1"||Jour_num == "4"||Jour_num == "7"||Jour_num == "8"||Jour_num == "13"||Jour_num == "14" -if (Jour_num == "1"||Jour_num == "8"||Jour_num == "14") { - // 编委国际化图表 - $.ajax({ - type: 'post', url: apiUrl + 'api/Journal/getAuthorFB', - data: { - "journal_id": Jour_num - }, - success: function (result) { - if (result.code == 0) { +function renderMap(height,callback) { + if (Jour_num == "1" || Jour_num == "8" || Jour_num == "14") { + // 编委国际化图表 + $.ajax({ + type: 'post', url: apiUrl + 'api/Journal/getAuthorFB', + data: { + "journal_id": Jour_num + }, + success: function (result) { + if (result.code == 0) { - var country_shu = result.data.countrys; - var pm_num = 0; - var paiming = '' + var country_shu = result.data.countrys; + var pm_num = 0; + var paiming = '' - for (var i in country_data) { - for (var j in country_shu) { - if (country_data[i].name == country_shu[j].author_country) { - country_data[i].value = country_shu[j].sum - } else if (country_data[i].name == 'Bangladesh' && j == 'Bengal') { - country_data[i].value = country_shu[j] - } else if (country_data[i].name == 'Sudan' && j == 'Sultan') { - country_data[i].value = country_shu[j] - } else if (country_data[i].name == 'Korea' && j == 'The Republic of Korea') { - country_data[i].value = country_shu[j] - } else if (country_data[i].name == 'United States' && country_shu[j].author_country == 'U.S.A') { - country_data[i].value = country_shu[j].sum - } - pm_num = pm_num + 1 - if (country_shu[j].sum >= 3 && pm_num <= 10) { - paiming += '
    • ' + pm_num + '' + - '' + country_shu[j].author_country + '' + - '' + country_shu[j].sum + '
    • ' - } - } - } - - $('.tmr_side_map .map_paiming').html(paiming); - - // 绘制图表 - var worldChart = echarts.init(document.getElementById('worldMap')); - - // 数据 - var dataMap = country_data - var option = { - backgroundColor: "#fff", - title: { //地图显示标题 - show: false, - text: '', - top: "50px", - left: 'center', - textStyle: {color: '#000'} - }, - visualMap: { //图列显示柱 - show: false, - type: 'piecewise', - // top: 10, - left: 30, - realtime: false, - calculable: true, - color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], - pieces: [ - {gte: 16, label: '>17'}, // (10, Infinity] - {gte: 12, lte: 16, label: '13-16'}, // (1, 9] - {gte: 8, lte: 12, label: '9-12'}, // (1, 9] - {gte: 4, lte: 8, label: '5-8'}, // (1, 9] - {gte: 1, lte: 4, label: '1-4'}, // (1, 9] - {lt: 1, label: '0'} // (-Infinity, 1) - ] - }, - toolbox: { //工具栏 - show: false, - orient: 'vertical', - top: 50, - itemGap: 20, - left: 30, - feature: { - dataView: {readOnly: false}, - restore: {}, - saveAsImage: {} - } - }, - tooltip: { //提示框组件 - show: true, - trigger: 'item', - // backgroundColor:"#4169E1",//提示标签背景颜色 - formatter: '' - }, - series: [{ - name: " ", - type: 'map', - mapType: 'world', - roam: true, - zoom: 1, - top: 20, - mapLocation: {y: 100}, - data: dataMap, //绑定数据 - // nameMap: nameComparison, - symbolSize: 12, - label: { - normal: {show: false}, - emphasis: {show: true} - }, - itemStyle: { - normal: { - areaColor: "#e9a633",//区域颜色 - }, - emphasis: { - borderColor: 'transparent', - areaColor: "#e9a633",//区域颜色 - borderWidth: 1 + for (var i in country_data) { + for (var j in country_shu) { + if (country_data[i].name == country_shu[j].author_country) { + country_data[i].value = country_shu[j].sum + } else if (country_data[i].name == 'Bangladesh' && j == 'Bengal') { + country_data[i].value = country_shu[j] + } else if (country_data[i].name == 'Sudan' && j == 'Sultan') { + country_data[i].value = country_shu[j] + } else if (country_data[i].name == 'Korea' && j == 'The Republic of Korea') { + country_data[i].value = country_shu[j] + } else if (country_data[i].name == 'United States' && country_shu[j].author_country == 'U.S.A') { + country_data[i].value = country_shu[j].sum + } + pm_num = pm_num + 1 + if (country_shu[j].sum >= 3 && pm_num <= 10) { + paiming += '
    • ' + pm_num + '' + + `` + country_shu[j].author_country + '' + + '' + country_shu[j].sum + '
    • ' } } - }], - }; - worldChart.setOption(option); + } + $('.tmr_side_map .map_paiming').html(paiming); - } else { - // ShowDanger("请求失败!"); + // 绘制图表 + var worldChart = echarts.init(document.getElementById('worldMap')); + + // 数据 + var dataMap = country_data + var option = { + backgroundColor: "#fff", + title: { //地图显示标题 + show: false, + text: '', + top: "50px", + left: 'center', + textStyle: { color: '#000' } + }, + visualMap: { //图列显示柱 + show: false, + type: 'piecewise', + // top: 10, + left: 30, + realtime: false, + calculable: true, + color: ['#2e89bf', '#5a97c6', '#75a3c7', '#8cb3d1', '#abbfd0', '#eff5fb'], + pieces: [ + { gte: 16, label: '>17' }, // (10, Infinity] + { gte: 12, lte: 16, label: '13-16' }, // (1, 9] + { gte: 8, lte: 12, label: '9-12' }, // (1, 9] + { gte: 4, lte: 8, label: '5-8' }, // (1, 9] + { gte: 1, lte: 4, label: '1-4' }, // (1, 9] + { lt: 1, label: '0' } // (-Infinity, 1) + ] + }, + toolbox: { //工具栏 + show: false, + orient: 'vertical', + top: 50, + itemGap: 20, + left: 30, + feature: { + dataView: { readOnly: false }, + restore: {}, + saveAsImage: {} + } + }, + tooltip: { //提示框组件 + show: true, + trigger: 'item', + // backgroundColor:"#4169E1",//提示标签背景颜色 + formatter: '' + }, + series: [{ + name: " ", + type: 'map', + mapType: 'world', + roam: true, + zoom: 1, + top: 20, + mapLocation: { y: 100 }, + data: dataMap, //绑定数据 + // nameMap: nameComparison, + symbolSize: 12, + label: { + normal: { show: false }, + emphasis: { show: true } + }, + itemStyle: { + normal: { + areaColor: "#e9a633",//区域颜色 + }, + emphasis: { + borderColor: 'transparent', + areaColor: "#e9a633",//区域颜色 + borderWidth: 1 + } + } + }], + }; + worldChart.setOption(option); + + callback(); + } else { + // ShowDanger("请求失败!"); + } + }, + error: function () { + ShowDanger("error!"); } - }, - error: function () { - ShowDanger("error!"); - } - }) + }) + } } +renderMap()