
<>
/* 1. 验证码按钮 - 未验证状态(重点:用!important覆盖.m-inp1) */
.captcha-btn {
width: 100% !important;
height: 44px !important;
border: 1px solid #e5e6eb !important;
border-radius: 6px !important;
background-color: #fff !important;
color: #333 !important;
font-size: 14px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
/* 清除父级可能的内边距干扰 */
padding: 0 12px !important;
margin: 0 !important;
/* 清除父级可能的定位干扰 */
position: static !important;
top: auto !important;
left: auto !important;
transform: none !important;
}
.captcha-btn:hover {
border-color: #1677ff !important;
background-color: #f0f7ff !important;
}
.captcha-btn .icon {
width: 18px !important;
height: 18px !important;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E") no-repeat center !important;
/* 清除父级可能的背景干扰 */
background-size: contain !important;
border: none !important;
margin: 0 !important;
}
/* 2. 验证码按钮 - 验证中状态 */
.captcha-btn.loading {
border-color: #1677ff !important;
background-color: #f0f7ff !important;
cursor: not-allowed !important;
}
.captcha-btn.loading .icon {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231677ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='2' x2='12' y2='6'/%3E%3Cline x1='12' y1='18' x2='12' y2='22'/%3E%3Cline x1='4.93' y1='4.93' x2='7.76' y2='7.76'/%3E%3Cline x1='16.24' y1='16.24' x2='19.07' y2='19.07'/%3E%3Cline x1='2' y1='12' x2='6' y2='12'/%3E%3Cline x1='18' y1='12' x2='22' y2='12'/%3E%3Cline x1='4.93' y1='19.07' x2='7.76' y2='16.24'/%3E%3Cline x1='16.24' y1='7.76' x2='19.07' y2='4.93'/%3E%3C/svg%3E") no-repeat center !important;
animation: spin 1.5s linear infinite !important;
}
.captcha-btn.loading span {
color: #1677ff !important;
}
/* 3. 验证码按钮 - 验证成功状态 */
.captcha-btn.success {
border-color: #52c41a !important;
background-color: #f6ffed !important;
}
.captcha-btn.success .icon {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2352c41a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center !important;
}
.captcha-btn.success span {
color: #52c41a !important;
}
/* 4. 验证码按钮 - 验证失败状态 */
.captcha-btn.error {
border-color: #ff4d4f !important;
background-color: #fff2f0 !important;
}
.captcha-btn.error .icon {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ff4d4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center !important;
}
.captcha-btn.error span {
color: #ff4d4f !important;
}
/* 状态提示文本 */
.captcha-tip {
font-size: 12px !important;
margin-top: 8px !important;
margin-bottom: 0 !important;
height: 16px !important; /* 固定高度防跳动 */
line-height: 16px !important;
text-align: left !important;
}
.captcha-tip.success {
color: #52c41a !important;
}
.captcha-tip.error {
color: #ff4d4f !important;
}
.captcha-tip.loading {
color: #1677ff !important;
}
/* 提交按钮样式 */
.submit-btn {
width: 100% !important;
height: 44px !important;
background-color: #1677ff !important;
color: #fff !important;
border: none !important;
border-radius: 6px !important;
font-size: 14px !important;
font-weight: 500 !important;
cursor: pointer !important;
transition: background-color 0.2s ease !important;
padding: 0 !important;
margin: 0 !important;
}
.submit-btn:disabled {
background-color: #91c2ff !important;
cursor: not-allowed !important;
}
.submit-btn:hover:not(:disabled) {
background-color: #0958d9 !important;
}
/* 加载动画 */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 加载动画 */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.captcha-btn span {
position:inherit !important;
display: inline-block !important; /* 重置显示方式,避免父级设置为block导致图标换行 */
width: auto !important; /* 取消父级可能的固定宽度,自适应文字 */
height: auto !important; /* 取消父级可能的固定高度,避免文字截断 */
padding: 0 !important; /* 清除父级可能的内边距 */
margin: 0 !important; /* 清除父级可能的外边距 */
font-size: 14px !important; /* 强制固定字体大小,避免父级缩放 */
font-weight: 400 !important; /* 重置字体粗细,确保文字清晰 */
color: #333 !important; /* 未验证状态文字色,强制覆盖 */
line-height: normal !important; /* 重置行高,避免文字垂直居中异常 */
text-align: center !important; /* 文字居中,与图标对齐 */
text-decoration: none !important; /* 清除父级可能的下划线(如a标签样式污染) */
text-transform: none !important; /* 清除父级可能的大小写转换 */
background: transparent !important; /* 清除父级可能的背景色 */
border: none !important; /* 清除父级可能的边框 */
}
>
<>
.social-share .icon-wechat .wechat-qrcode .help p{font-size:12px;}
.shareBtn{position:relative;z-index:9;}
.shareBtn .social-share{display: none;position: absolute;left:-12px;top:103%;background-color: #fff;border: 1px solid #eee;border-radius: 4px;white-space: nowrap;}
.shareBtn:hover .social-share{display:block;}
.shareBtn .social-share::after {
content: '';
position: absolute;
width: 0;
height: 0;
border-bottom: 5px solid #fff;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
top: -5px;
left: 20px;
z-index: 10;
}
.shareBtn .social-share::before {
content: '';
position: absolute;
width: 0;
height: 0;
border-bottom: 4px solid #ddd;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
top: -5px;
left: 20px;
z-index: 9;
}
.shareBtn .social-share .icon-wechat .wechat-qrcode *{opacity: 1;}
.shareBtn .social-share .icon-wechat{color: #7bc549;opacity: 1;}
.shareBtn .social-share .icon-weibo{color: #ff763b;opacity: 1;}
.shareBtn .social-share .icon-qq{color: #56b6e7;opacity: 1;}
.shareBtn .social-share .icon-qzone{color: #FDBE3D;opacity: 1;}
.pointOfView p video{max-width:100%;height:auto;margin-left: -2em;}
.viewpoint-title{ padding-bottom: 15px;}
.viewpoint-title .info-group{font-size: 14px !important;}
.btn-other{ padding: 3px 8px;}
>
<>
.book-preview-header {
/* 重置.header样式 */
position: static;
z-index: auto;
padding: 0;
height: auto;
min-height: auto;
line-height: normal;
background: none;
background-color: #174a77;
color: #fff;
}
>
<>
.J-nav-list {
margin-bottom: 0;
}
.J-nav-list li {
float: left;
position: relative;
}
.J-nav-list li.child-nav {
padding-right: 15px;
}
.J-nav-list li.child-nav::before {
position: absolute;
right: 0px;
height: 100%;
content: "";
background: url(/images/nav_dwon_icon.png) no-repeat center;
background-size: 10px auto;
width: 10px;
}
.child-nav-list {
padding-left: 10px;
}
.child-nav-list,
.threeNav {
top: 100px;
transition: top 0.5s;
visibility: hidden;
}
.J-nav-list > li:hover .child-nav-list,
.cur.threeNav {
top: 40px;
visibility: visible;
z-index: 1;
}
.header-top {
display: flex;
height: 50px;
/* overflow: hidden; */
background-color: #174a77;
color: #fff;
line-height: 50px;
border-bottom: none;
/* padding-left: 10.5%; */
}
.header-top .top-left {
width: 146px;
}
.header-top .top-center {
/* flex: 1;
width: 88%;
padding-right: 60px; */
}
.header-top .top-right {
width: 23%;
}
.header-top a {
font-size: 14px;
color: #b6caea;
}
.header-top .child-nav-list a {
color: #383838;
}
.header-top .loginColor a,
.header-top .loginColor {
color: #fff;
}
/* .logo img{max-height: 30px;} */
/* .btn-other{padding: 2px 9px;} */
.personinfo .select-list {
left: 0px;
right: auto;
}
.J-nav-list > li:hover .child-nav-list,
.cur.threeNav {
z-index: 999;
}
@media only screen and (max-width: 967px) {
.header-top .top-right {
width: 100%;
}
/* .header-top{background-color: #fff;} */
}
@media only screen and (max-width: 992px) {
.header-top {
padding: 0 15px;
display: block;
}
.J-nav-list > li:hover .child-nav-list,
.cur.threeNav {
top: 75px;
}
}
>
《中国国际传播发展报告(2024)》在南京发布
作者:中国社会科学网-中国社会科学报
发布时间:2025-04-01
本报讯 (记者 吴楠)3月29日,AI赋能地方国际传播创新发展研讨会暨中国国际传播蓝皮书(2024)发布会在南京师范大学举行。《中国国际传播发展报告(2024)》(以下简称《报告》)在会上正式发布。
据介绍,《报告》是由中国社会科学院新闻与传播研究所主持编撰的关于国际传播发展的最新年度报告,分为总报告、人工智能篇、传播主体篇、传播内容篇、媒体和平台篇、比较与借鉴篇六个部分,概述了国际传播的整体态势和战略方向,探讨了AI技术在国际传播中的应用与影响,分析了多元主体在国际传播中的角色与协同机制,研究了内容创新对国际传播效能的提升作用,探讨了媒体深度融合与传播平台的创新发展,分析了国际经验,提出了战略启示。
《报告》提出,在AI赋能国际传播新实践方面,新一代人工智能技术显著增强了中华文明国际传播“沟通力”,深度伪造技术显著提高了传播内容的视觉表现力和感染力,但技术广泛应用的同时也导致虚假信息的传播风险大幅增加,威胁全球公共信息生态安全。在多元主体协同传播新格局方面,多元主体协同模式成为国际传播新常态。在传播内容“出海”的新趋势方面,中国电视剧国际传播路径逐渐从以“引进版权”模式为主转向以本土化创作、合拍剧及网络平台自主传播为特征的多元化路径;微短剧成为中国文化内容海外传播的新特点。在媒体融合与平台创新的新路径方面,平台媒体以算法技术为基础,重新定义了国际传播的内容分发权力结构,实现了传播由“大众投放”向“精准触达”的根本性转变。视频社交平台引领国际传播视觉化转向。在国际传播效能提升方面,中国企业国际传播效能明显提升,但精准性与专业化水平仍存在结构性短板。
南京师范大学校长华桂宏提出,当前,随着世界百年未有之大变局加速演进,全球传播格局正在重构,人工智能、大数据等技术深刻改变着传播生态。
新华日报社党委书记、社长,南京师范大学新闻与传播学院院长双传学认为,要把握好本土实践与自主知识、中国主体与世界标尺、工具理性与价值理性这三组关系,“以中国为方法”提升国际传播效能。倡导“以中国为方法”,就是要从中国视角出发,探索更多具有全球对话价值的地方性知识。只有不断打开视野、破除迷思、转型范式,推动理论与实践深度融合,才能真正构建起具有中国特色和世界意义的国际传播理论体系。
中国社会科学院新闻与传播研究所所长胡正荣表示,人工智能已成为驱动国际传播结构重塑的关键变量。人工智能技术深刻影响着国际传播的内容生产、传播渠道、话语体系与传播战略布局,推动中国国际传播体系向智能传播模式全面转型。中国国际传播的多元主体协同模式趋于成熟。政府机构、主流媒体、企业、高校智库等多元主体通过协同化、区域化、全球化角色定位,共同构建起具有明显分工与协调机制的“复调传播”新态势。
国际传播不仅是信息的流动,而且是不同文化价值观和世界观的碰撞与激荡,还涉及信息安全与文化适应等多元话题。如何加强和改进国际传播工作,是一个兼具时代追求、理论价值和实践导向的重要命题。来自地方国际传播机构的7位代表从内容创作、平台建设、产业运营等方面分享了当地开展国际传播的创新实践。来自高校的4位学者则谈到了提升国际传播能力建设的新路径、构建新时代国际传播叙事体系、中华文化“和谐”价值理念及其国际传播路径等议题。
会议由中国社会科学院新闻与传播研究所、南京师范大学、新华报业传媒集团联合主办。
转载请注明来源:中国社会科学网【编辑:刘娟(报纸) 贾伟(网络)】
<>
.feedback_right {
width: 70%;
border: solid 1px #e1e4e8;
border-radius: 6px;
height: 40px;
line-height: 20px;
padding: 12px 25px;
}
#feedback_description {
background: #f9f9f9;
width: 100%;
padding: 6px 12px;
}
.view {
padding: 0;
word-wrap: break-word;
cursor: text;
height: 90%;
}
.feedback_error {
display: none;
margin-bottom: 20px;
color: #ff9c3b;
}
.unvalid .feedback_error{
display: block;
}
.spde_feedback_box{width: 1000px;left: 34%;max-height: 600px;top:16%}
@media (min-width: 992px){
.spde_feedback_box .paddingR {
padding-right: 30px;
}
.spde_feedback_box .paddingL {
padding-left: 30px;
}
}
>
<>
body {
margin: 0;
padding: 0;
min-height: 100vh;
/* padding-bottom: 380px; */
position: relative;
}
/* .footer {
height: 380px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
} */
.k-content {
width: 100%;
margin: auto;
text-align: left;
background: #fff;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.purchase-dialog {
color: #333;
}
.dialog-bd {
background: #fffff9;
}
.k-text {
color: #000;
font-size: 12px;
line-height: 1.5;
white-space: normal;
margin-bottom: 10px;
}
.purchase-dialog .works-info {
line-height: 30px;
padding: 0;
margin: 0;
background: #fff9d5;
}
.purchase-dialog .works-info h4 {
margin: 0px;
font-size: 14px;
padding: 0 16px;
}
.purchase-dialog .works-info .price {
float: right;
color: #c51a17;
font-size: 20px;
}
.purchase-dialog .account-info {
margin: 25px 0 12px;
}
.purchase-dialog .account-info .info {
font-size: 14px;
margin-bottom: 2px;
}
input[type="radio"],
input[type="checkbox"] {
margin: 3px 0;
line-height: normal;
}
.purchase-dialog .inline-price {
color: #935352;
margin: 0 5px;
}
.purchase-dialog .account-info .balance {
color: #999;
}
.purchase-dialog .payment-channels {
margin: 0;
padding-top: 12px;
margin-bottom: 15px;
}
.purchase-dialog .payment-channels .title {
color: #333;
font-size: 14px;
margin-bottom: 15px;
}
.purchase-dialog .inline-price {
color: #935352;
margin: 0 5px;
}
.purchase-dialog .channel {
margin-bottom: 15px;
}
.purchase-dialog .payment-channels .field-label {
font-size: 12px;
}
.purchase-dialog .channel-name {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
.field-label {
color: #333;
font-size: 14px;
}
.purchase-dialog .channel .fields {
margin-left: 10px;
}
.purchase-dialog .alipay-express .payment-method {
margin: 0;
}
.purchase-dialog .payment-method {
cursor: pointer;
vertical-align: middle;
margin-bottom: 23px;
width: 200px;
font-size: 0;
}
.radio,
.checkbox {
display: inline-block;
color: #666;
margin: 5px 15px 0 0;
}
.purchase-dialog .channel .radio input {
float: none;
margin-right: 8px;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
float: left;
padding: 0;
margin-right: 5px;
}
input[type="radio"],
input[type="checkbox"] {
margin: 3px 0;
line-height: normal;
}
.purchase-dialog .payment-method [type="radio"]:checked ~ .bank-box {
border-color: #b0605e;
}
.purchase-dialog .bank-box {
display: inline-block;
width: 147px;
height: 47px;
vertical-align: middle;
background: #fff;
border: 1px solid #ddd;
}
.purchase-dialog .bank-box .bank-icon {
display: inline-block;
width: 147px;
height: 47px;
_color: #fff;
}
.alipay-logo {
background-position: 0 -946px;
background: url(/template/images/pay_1114.jpg);
}
.weixinpay-logo {
background-position: 0 -946px;
background: url(/template/images/pay_3.jpg);
}
.unionpay-logo {
background-position: 0 -946px;
background: url(/template/images/pay_1115.jpg);
}
.purchase-dialog .purchase-options .checkbox {
cursor: pointer;
color: #999;
font-size: 12px;
}
.k-buttons {
text-align: right;
}
.k-buttons .btn {
margin-left: 6px;
}
.k-content {
width: 100%;
margin: auto;
text-align: left;
background: #fff;
text-align: left;
display: inline-block;
vertical-align: middle;
}
.k-text {
color: #000;
font-size: 12px;
line-height: 1.5;
white-space: normal;
background: #fff;
}
.purchase-dialog .account-info {
border-bottom: 1px solid #ddd;
padding: 0 20px;
padding-bottom: 10px;
}
.purchase-dialog .payment-channels {
margin: 0 20px;
}
/* 适配h5处理 xu */
@media only screen and (max-width: 767px) {
body {
padding-bottom: 0;
}
.footer {
position: static;
height: auto;
}
}
.bock-right ul li:first-child a:hover img {
display: none;
}
.bock-right ul li:first-child a:hover:before {
content: "问道";
}
>
<>
.bock-right ul li.question-and-answer-icon {
position: fixed;
left: 8px;
bottom: 0;
width: 108px;
height: 152px;
border-radius: 16px;
background-image: url("/assets/images/yuan-xiaoxi.gif");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
cursor: pointer;
}
.bock-right ul li.question-and-answer-icon:hover {
background-color: transparent;
}
.question-and-answer {
position: fixed;
bottom: 5vh;
left: 120px;
z-index: 99999;
display: none;
width: 360px;
height: 500px;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 2px 12px 0 rgba(0000.1);
}
.question-and-answer.visible {
display: block;
}
#question-and-answer-frame {
width: 100%;
height: 100%;
border: none;
}
>
请支付
×
<>
.feedback_right {
width: 70%;
border: solid 1px #e1e4e8;
border-radius: 6px;
height: 40px;
line-height: 20px;
padding: 12px 25px;
}
#recommend_reason {
background: #f9f9f9;
width: 100%;
padding: 6px 12px;
}
.edui-editor {
width: 100% !important;
border: 1px solid #d4d4d4;
background-color: white;
position: relative;
overflow: visible;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.dui-editor-iframeholder {
z-index: 999;
overflow: hidden;
}
.view {
padding: 0;
word-wrap: break-word;
cursor: text;
height: 90%;
}
.feedback_error {
display: none;
margin-bottom: 20px;
color: #ff9c3b;
}
.unvalid .feedback_error{
display: block;
}
.recommend_buy_box{width: 1000px;left: 34%;max-height: 600px;top:16%}
.recommend_buy_box textarea{resize: none;}
@media (min-width: 992px){
.recommend_buy_box .paddingR {
padding-right: 30px;
}
.recommend_buy_box .paddingL {
padding-left: 30px;
}
}
>
<>
#showWXMaskFlag {
display: none;
}
>
1
点击右上角的
按钮