|
游客,本帖隐藏的内容需要积分高于 1 才可浏览,您当前积分为 0
资源信息:
上 映: 1991年10月4日
地 区: 美国
对 白: 英语
评 分: 7.4/10 (2,701票)
画 面: 彩色
时 长: 99 分钟
类 型: 剧情 / 爱情
分 级: 阿根廷:13 / 澳大利亚:PG / 智利:14 / 德国:6 / 西班牙:13 / 瑞典:11 / UK:PG / 美国:PG-13 / 加拿大安大略省:PG
字 幕: 无
【剧情简介 】
这是一部让人心动的电影,青春、友情、亲情、爱情……辛辣且甜中带苦。十四岁的丹妮与她的姐姐总是分享任何东西,但是当爱情来临的时候,同样渴望爱与被爱的姐妹成为对手。在经历了感情的甜蜜与痛苦之后,姐妹俩获得了人生的经验,明白了爱的生活哲理。
Robert Mulligan's graceful coming-of-age drama, set in rural Louisiana in 1957, explores the relationship change two sisters experience when both fall for the handsome new boy next door, Court Foster (Jason London). The younger sister, 14-year-old Dani (Reese Witherspoon), gains Court’s friendship and a brief kiss but not his romantic affections, which he delivers to college-bound Maureen (Emily Warfield). The once-close sisters turn into rivals while learning some painful lessons about growing up. But when a sudden tragedy strikes, they are forced to draw strength from their powerful familial bond. Witherspoon gives a moving performance in her film debut, and Mulligan demonstrates once again his graceful and tender knack (shown in previous films such as SUMMER OF '42 and TO KILL A MOCKINGBIRD) for capturing the bewilderment, awkwardness, and fresh excitement of adolescence.
【演员表】
山姆·沃特森 Sam Waterston .... Matthew Trant
特斯·哈珀 Tess Harper .... Abigail Trant
Gail Strickland .... Marie Foster
瑞茜·威瑟斯彭 Reese Witherspoon .... Danielle 'Dani' Trant
贾森·伦敦 Jason London .... Court Foster
Emily Warfield .... Maureen Trant
Bentley Mitchum .... Billy Sanders
Ernie Lively .... Will Sanders
Dennis Letts .... Doc White
Earleen Bergeron .... Eileen Sanders
Anna Chappell .... Mrs. Taylor
Brandi Smith .... Missy Trant
Sandi Smith .... Missy Trant
Derek Ball .... Foster Twin
Spencer Ball .... Foster Twin
【影片评论】
两姐妹同时爱上邻家男孩,是初恋,是悲剧,也是对爱的理想与执着。这是当时年仅14岁的Reese Witherspoon的处女作,且她本是剧中群众演员之一。但导演罗伯特·马利根(Robert Mulligan)独具慧眼,将她升格为主角。瑞茜·威瑟斯彭(Reese Witherspoon)的纯真让观众随着剧情的发展也感受到她的心碎。“月中人”(The Man in the Moon)是剧中姐妹倾诉心事的对象,但现实生活中,彼此才是对方的“月中人”。
"The Man in the Moon" is a wonderful movie, but it is more than that, it is a victory of tone and mood. It is like a poem.
-- ROGER EBERT (Chicago Sun-Times)
"...[A] deeply moving film....The story unwinds with the inevitability, rigor, clarity and mysterious suggestiveness of a confession..."
-- MICHAEL WILMINGTON (Los Angeles Times)
【剧照】
// 全局复制函数(抽离出来,避免重复定义)
function copyEd2kFullLink(btn) {
// 从按钮的data属性读取链接(兼容所有特殊字符)
var link = btn.dataset.ed2kLink || btn.getAttribute("data-ed2k-link");
if(!link) {
alert("链接读取失败,请手动复制!");
return;
}
// 清理可能的转义字符,还原原始链接
link = link.replace(/&/g, "&").replace(/"/g, "\"").replace(/'/g, "'");
var t = document.createElement("textarea");
t.style.position = "fixed";
t.style.top = "-9999px";
t.style.left = "-9999px";
t.value = link.trim();
document.body.appendChild(t);
// 强制选中所有内容(兼容超长/特殊字符链接)
t.focus();
try {
t.setSelectionRange(0, link.length);
} catch (e) {
t.select(); // 兼容低版本浏览器
}
try {
var success = document.execCommand("copy");
alert(success ? "ED2K链接已复制!" : "复制失败,请手动复制:\n" + link);
} catch (e) {
alert("复制失败,请手动复制:\n" + link);
}
document.body.removeChild(t);
}
|