码迷,mamicode.com
首页 > 其他好文 > 详细

EDM响应式邮件框架:Formerly Ink

时间:2020-05-23 20:32:48      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:imp   rgba   png   aci   no-repeat   lin   back   sub   which   

概述

新课题研究:响应式邮件框架Formerly Ink(Formerly Ink官网:http://foundation.zurb.com/emails.html
姐妹篇: EDM响应式邮件框架:Formerly Ink

介绍

打开官网,就能看到Formerly Ink的主标题是Foundation for Emails2
Foundation大家再熟悉不过,是和bootstrap齐名的响应式框架
所以可以放心使用Formerly Ink~~

不知道大家怎么看待响应式框架,像之前那个姐妹篇MJML一样,Formerly Ink也有标记语言Inky。鉴于标记语言都差不多,今天就不用Inky作为讲解主体了。

安装

有两种方法

  • 方法一 CSS Version

下载压缩包:Download Foundation for Emails

  • 方法二 Sass Version

    npm install --global foundation-cli
    foundation new --framework emails

使用

以css版本为例,说说怎么用

基础模板

默认邮件模板

<!-- Emails use the XHTML Strict doctype -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <!-- The character set should be utf-8 -->
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <!-- Enables media queries -->
  <meta name="viewport" content="width=device-width"/>
  <!-- Link to the email‘s CSS, which will be inlined into the email -->
  <link rel="stylesheet" href="assets/css/foundation.css">
</head>

<body>
  <!-- Wrapper for the body of the email -->
  <table class="body" data-made-with-foundation>
    <tr>
      <!-- The class, align, and <center> tag center the container -->
      <td class="center" align="center" valign="top">
        <center>
          <!-- 把你的邮件内容写在这里就好了 -->
        </center>
      </td>
    </tr>
  </table>
</body>
</html>

栅格or网格?(不知道怎么翻译好- -!!!)

因为是响应式,所以少不了栅格~

容器 container

就放在上面那个基础模板的center里,里面放你的邮件代码

<table class="container">
  <tr>
    <td></td>
  </tr>
</table>

行 row

放在容器内

<table class="row">
  <tr>
    <th></th>
  </tr>
</table>

列 columns

放在行内,一行最多12列

像bootstrap一样,用类名控制在行内的大小和位置

  • small类是手机显示 large类是电脑显示

  • 首列需要添加.first类名,末列需要添加.last类名

<table class="row">
  <tr>
    <th class="small-12 large-6 first columns ">
      Column One
    </th>
    <th class="small-12 large-6 last columns ">
      Column Two
    </th>
    <th class="expander"></th>
  </tr>
</table>

其他

和bootstrap一样,还有其他的样式类名,与响应式邮件不直接相关就不在此多说了,有兴趣的话可以自行了解

官方文档: Bring Your Email Styles Inline

行内样式转换

由于有的邮件客户端会忽略<style>内的css样式,所以转换成行内样式是必须的~~
(全文写行内样式累死狗啊~~)

行内样式在线转换: Bring Your Email Styles Inline

邮件测试

高(土)大(豪)上公司必须注重邮件体验呀~~(收费的哟~)
(额。。。我们公司是自己有什么测什么~~)

邮件测试: Optimize every email for the apps and devices your subscribers use

实例

还是用css版本

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width">
    <link rel="stylesheet" href="../css/foundation.css"> </head>
<style>
#outlook a {
  padding: 0; }

body {
  width: 100% !important;
  min-width: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  Margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.ExternalClass {
  width: 100%; }
  .ExternalClass,
  .ExternalClass p,
  .ExternalClass span,
  .ExternalClass font,
  .ExternalClass td,
  .ExternalClass div {
    line-height: 100%; }

#backgroundTable {
  margin: 0;
  Margin: 0;
  padding: 0;
  width: 100% !important;
  line-height: 100% !important; }

img {
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
  width: auto;
  max-width: 100%;
  clear: both;
  display: block; }

center {
  width: 100%;
  min-width: 580px; }

a img {
  border: none; }

p {
  margin: 0 0 0 10px;
  Margin: 0 0 0 10px; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

td {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  border-collapse: collapse !important; }

table, tr, td {
  padding: 0;
  vertical-align: top;
  text-align: left; }

html {
  min-height: 100%;
  background: #f3f3f3; }

table.body {
  background: #f3f3f3;
  height: 100%;
  width: 100%; }

table.container {
  background: #fefefe;
  width: 580px;
  margin: 0 auto;
  Margin: 0 auto;
  text-align: inherit; }

table.row {
  padding: 0;
  width: 100%;
  position: relative; }

table.container table.row {
  display: table; }

td.columns,
td.column,
th.columns,
th.column {
  margin: 0 auto;
  Margin: 0 auto;
  padding-left: 16px;
  padding-bottom: 16px; }

td.columns.last,
td.column.last,
th.columns.last,
th.column.last {
  padding-right: 16px; }

td.columns table,
td.column table,
th.columns table,
th.column table {
  width: 100%; }

td.large-1,
th.large-1 {
  width: 32.33333px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-1.first,
th.large-1.first {
  padding-left: 16px; }

td.large-1.last,
th.large-1.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-1,
.collapse > tbody > tr > th.large-1 {
  padding-right: 0;
  padding-left: 0;
  width: 48.33333px; }

.collapse td.large-1.first,
.collapse th.large-1.first,
.collapse td.large-1.last,
.collapse th.large-1.last {
  width: 56.33333px; }

td.large-2,
th.large-2 {
  width: 80.66667px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-2.first,
th.large-2.first {
  padding-left: 16px; }

td.large-2.last,
th.large-2.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-2,
.collapse > tbody > tr > th.large-2 {
  padding-right: 0;
  padding-left: 0;
  width: 96.66667px; }

.collapse td.large-2.first,
.collapse th.large-2.first,
.collapse td.large-2.last,
.collapse th.large-2.last {
  width: 104.66667px; }

td.large-3,
th.large-3 {
  width: 129px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-3.first,
th.large-3.first {
  padding-left: 16px; }

td.large-3.last,
th.large-3.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-3,
.collapse > tbody > tr > th.large-3 {
  padding-right: 0;
  padding-left: 0;
  width: 145px; }

.collapse td.large-3.first,
.collapse th.large-3.first,
.collapse td.large-3.last,
.collapse th.large-3.last {
  width: 153px; }

td.large-4,
th.large-4 {
  width: 177.33333px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-4.first,
th.large-4.first {
  padding-left: 16px; }

td.large-4.last,
th.large-4.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-4,
.collapse > tbody > tr > th.large-4 {
  padding-right: 0;
  padding-left: 0;
  width: 193.33333px; }

.collapse td.large-4.first,
.collapse th.large-4.first,
.collapse td.large-4.last,
.collapse th.large-4.last {
  width: 201.33333px; }

td.large-5,
th.large-5 {
  width: 225.66667px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-5.first,
th.large-5.first {
  padding-left: 16px; }

td.large-5.last,
th.large-5.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-5,
.collapse > tbody > tr > th.large-5 {
  padding-right: 0;
  padding-left: 0;
  width: 241.66667px; }

.collapse td.large-5.first,
.collapse th.large-5.first,
.collapse td.large-5.last,
.collapse th.large-5.last {
  width: 249.66667px; }

td.large-6,
th.large-6 {
  width: 274px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-6.first,
th.large-6.first {
  padding-left: 16px; }

td.large-6.last,
th.large-6.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-6,
.collapse > tbody > tr > th.large-6 {
  padding-right: 0;
  padding-left: 0;
  width: 290px; }

.collapse td.large-6.first,
.collapse th.large-6.first,
.collapse td.large-6.last,
.collapse th.large-6.last {
  width: 298px; }

td.large-7,
th.large-7 {
  width: 322.33333px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-7.first,
th.large-7.first {
  padding-left: 16px; }

td.large-7.last,
th.large-7.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-7,
.collapse > tbody > tr > th.large-7 {
  padding-right: 0;
  padding-left: 0;
  width: 338.33333px; }

.collapse td.large-7.first,
.collapse th.large-7.first,
.collapse td.large-7.last,
.collapse th.large-7.last {
  width: 346.33333px; }

td.large-8,
th.large-8 {
  width: 370.66667px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-8.first,
th.large-8.first {
  padding-left: 16px; }

td.large-8.last,
th.large-8.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-8,
.collapse > tbody > tr > th.large-8 {
  padding-right: 0;
  padding-left: 0;
  width: 386.66667px; }

.collapse td.large-8.first,
.collapse th.large-8.first,
.collapse td.large-8.last,
.collapse th.large-8.last {
  width: 394.66667px; }

td.large-9,
th.large-9 {
  width: 419px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-9.first,
th.large-9.first {
  padding-left: 16px; }

td.large-9.last,
th.large-9.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-9,
.collapse > tbody > tr > th.large-9 {
  padding-right: 0;
  padding-left: 0;
  width: 435px; }

.collapse td.large-9.first,
.collapse th.large-9.first,
.collapse td.large-9.last,
.collapse th.large-9.last {
  width: 443px; }

td.large-10,
th.large-10 {
  width: 467.33333px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-10.first,
th.large-10.first {
  padding-left: 16px; }

td.large-10.last,
th.large-10.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-10,
.collapse > tbody > tr > th.large-10 {
  padding-right: 0;
  padding-left: 0;
  width: 483.33333px; }

.collapse td.large-10.first,
.collapse th.large-10.first,
.collapse td.large-10.last,
.collapse th.large-10.last {
  width: 491.33333px; }

td.large-11,
th.large-11 {
  width: 515.66667px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-11.first,
th.large-11.first {
  padding-left: 16px; }

td.large-11.last,
th.large-11.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-11,
.collapse > tbody > tr > th.large-11 {
  padding-right: 0;
  padding-left: 0;
  width: 531.66667px; }

.collapse td.large-11.first,
.collapse th.large-11.first,
.collapse td.large-11.last,
.collapse th.large-11.last {
  width: 539.66667px; }

td.large-12,
th.large-12 {
  width: 564px;
  padding-left: 8px;
  padding-right: 8px; }

td.large-12.first,
th.large-12.first {
  padding-left: 16px; }

td.large-12.last,
th.large-12.last {
  padding-right: 16px; }

.collapse > tbody > tr > td.large-12,
.collapse > tbody > tr > th.large-12 {
  padding-right: 0;
  padding-left: 0;
  width: 580px; }

.collapse td.large-12.first,
.collapse th.large-12.first,
.collapse td.large-12.last,
.collapse th.large-12.last {
  width: 588px; }

td.large-1 center,
th.large-1 center {
  min-width: 0.33333px; }

td.large-2 center,
th.large-2 center {
  min-width: 48.66667px; }

td.large-3 center,
th.large-3 center {
  min-width: 97px; }

td.large-4 center,
th.large-4 center {
  min-width: 145.33333px; }

td.large-5 center,
th.large-5 center {
  min-width: 193.66667px; }

td.large-6 center,
th.large-6 center {
  min-width: 242px; }

td.large-7 center,
th.large-7 center {
  min-width: 290.33333px; }

td.large-8 center,
th.large-8 center {
  min-width: 338.66667px; }

td.large-9 center,
th.large-9 center {
  min-width: 387px; }

td.large-10 center,
th.large-10 center {
  min-width: 435.33333px; }

td.large-11 center,
th.large-11 center {
  min-width: 483.66667px; }

td.large-12 center,
th.large-12 center {
  min-width: 532px; }

.body .columns td.large-1,
.body .column td.large-1,
.body .columns th.large-1,
.body .column th.large-1 {
  width: 8.33333%; }

.body .columns td.large-2,
.body .column td.large-2,
.body .columns th.large-2,
.body .column th.large-2 {
  width: 16.66667%; }

.body .columns td.large-3,
.body .column td.large-3,
.body .columns th.large-3,
.body .column th.large-3 {
  width: 25%; }

.body .columns td.large-4,
.body .column td.large-4,
.body .columns th.large-4,
.body .column th.large-4 {
  width: 33.33333%; }

.body .columns td.large-5,
.body .column td.large-5,
.body .columns th.large-5,
.body .column th.large-5 {
  width: 41.66667%; }

.body .columns td.large-6,
.body .column td.large-6,
.body .columns th.large-6,
.body .column th.large-6 {
  width: 50%; }

.body .columns td.large-7,
.body .column td.large-7,
.body .columns th.large-7,
.body .column th.large-7 {
  width: 58.33333%; }

.body .columns td.large-8,
.body .column td.large-8,
.body .columns th.large-8,
.body .column th.large-8 {
  width: 66.66667%; }

.body .columns td.large-9,
.body .column td.large-9,
.body .columns th.large-9,
.body .column th.large-9 {
  width: 75%; }

.body .columns td.large-10,
.body .column td.large-10,
.body .columns th.large-10,
.body .column th.large-10 {
  width: 83.33333%; }

.body .columns td.large-11,
.body .column td.large-11,
.body .columns th.large-11,
.body .column th.large-11 {
  width: 91.66667%; }

.body .columns td.large-12,
.body .column td.large-12,
.body .columns th.large-12,
.body .column th.large-12 {
  width: 100%; }

td.large-offset-1,
td.large-offset-1.first,
td.large-offset-1.last,
th.large-offset-1,
th.large-offset-1.first,
th.large-offset-1.last {
  padding-left: 64.33333px; }

td.large-offset-2,
td.large-offset-2.first,
td.large-offset-2.last,
th.large-offset-2,
th.large-offset-2.first,
th.large-offset-2.last {
  padding-left: 112.66667px; }

td.large-offset-3,
td.large-offset-3.first,
td.large-offset-3.last,
th.large-offset-3,
th.large-offset-3.first,
th.large-offset-3.last {
  padding-left: 161px; }

td.large-offset-4,
td.large-offset-4.first,
td.large-offset-4.last,
th.large-offset-4,
th.large-offset-4.first,
th.large-offset-4.last {
  padding-left: 209.33333px; }

td.large-offset-5,
td.large-offset-5.first,
td.large-offset-5.last,
th.large-offset-5,
th.large-offset-5.first,
th.large-offset-5.last {
  padding-left: 257.66667px; }

td.large-offset-6,
td.large-offset-6.first,
td.large-offset-6.last,
th.large-offset-6,
th.large-offset-6.first,
th.large-offset-6.last {
  padding-left: 306px; }

td.large-offset-7,
td.large-offset-7.first,
td.large-offset-7.last,
th.large-offset-7,
th.large-offset-7.first,
th.large-offset-7.last {
  padding-left: 354.33333px; }

td.large-offset-8,
td.large-offset-8.first,
td.large-offset-8.last,
th.large-offset-8,
th.large-offset-8.first,
th.large-offset-8.last {
  padding-left: 402.66667px; }

td.large-offset-9,
td.large-offset-9.first,
td.large-offset-9.last,
th.large-offset-9,
th.large-offset-9.first,
th.large-offset-9.last {
  padding-left: 451px; }

td.large-offset-10,
td.large-offset-10.first,
td.large-offset-10.last,
th.large-offset-10,
th.large-offset-10.first,
th.large-offset-10.last {
  padding-left: 499.33333px; }

td.large-offset-11,
td.large-offset-11.first,
td.large-offset-11.last,
th.large-offset-11,
th.large-offset-11.first,
th.large-offset-11.last {
  padding-left: 547.66667px; }

td.expander,
th.expander {
  visibility: hidden;
  width: 0;
  padding: 0 !important; }

.block-grid {
  width: 100%;
  max-width: 580px; }
  .block-grid td {
    display: inline-block;
    padding: 8px; }

.up-2 td {
  width: 274px !important; }

.up-3 td {
  width: 177px !important; }

.up-4 td {
  width: 129px !important; }

.up-5 td {
  width: 100px !important; }

.up-6 td {
  width: 80px !important; }

.up-7 td {
  width: 66px !important; }

.up-8 td {
  width: 56px !important; }

table.text-center,
td.text-center,
h1.text-center,
h2.text-center,
h3.text-center,
h4.text-center,
h5.text-center,
h6.text-center,
p.text-center,
span.text-center {
  text-align: center; }

h1.text-left,
h2.text-left,
h3.text-left,
h4.text-left,
h5.text-left,
h6.text-left,
p.text-left,
span.text-left {
  text-align: left; }

h1.text-right,
h2.text-right,
h3.text-right,
h4.text-right,
h5.text-right,
h6.text-right,
p.text-right,
span.text-right {
  text-align: right; }

span.text-center {
  display: block;
  width: 100%;
  text-align: center; }

@media only screen and (max-width: 596px) {
  .small-float-center {
    margin: 0 auto !important;
    float: none !important;
    text-align: center !important; }
  .small-text-center {
    text-align: center !important; }
  .small-text-left {
    text-align: left !important; }
  .small-text-right {
    text-align: right !important; } }

img.float-left {
  float: left;
  text-align: left; }

img.float-right {
  float: right;
  text-align: right; }

img.float-center,
img.text-center {
  margin: 0 auto;
  Margin: 0 auto;
  float: none;
  text-align: center; }

table.float-center,
td.float-center,
th.float-center {
  margin: 0 auto;
  Margin: 0 auto;
  float: none;
  text-align: center; }

table.body table.container .hide-for-large {
  display: none;
  width: 0;
  mso-hide: all;
  overflow: hidden;
  max-height: 0px;
  font-size: 0;
  width: 0px;
  line-height: 0; }
  @media only screen and (max-width: 596px) {
    table.body table.container .hide-for-large {
      display: block !important;
      width: auto !important;
      overflow: visible !important; } }

table.body table.container .hide-for-large * {
  mso-hide: all; }

@media only screen and (max-width: 596px) {
  table.body table.container .row.hide-for-large,
  table.body table.container .row.hide-for-large {
    display: table !important;
    width: 100% !important; } }

@media only screen and (max-width: 596px) {
  table.body table.container .show-for-large {
    display: none !important;
    width: 0;
    mso-hide: all;
    overflow: hidden; } }

body,
table.body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
td,
th,
a {
  color: #0a0a0a;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
  Margin: 0;
  text-align: left;
  line-height: 1.3; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  word-wrap: normal;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 10px;
  Margin-bottom: 10px; }

h1 {
  font-size: 34px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 20px; }

h6 {
  font-size: 18px; }

body,
table.body,
p,
td,
th {
  font-size: 16px;
  line-height: 19px; }

p {
  margin-bottom: 10px;
  Margin-bottom: 10px; }
  p.lead {
    font-size: 20px;
    line-height: 1.6; }
  p.subheader {
    margin-top: 4px;
    margin-bottom: 8px;
    Margin-top: 4px;
    Margin-bottom: 8px;
    font-weight: normal;
    line-height: 1.4;
    color: #8a8a8a; }

small {
  font-size: 80%;
  color: #cacaca; }

a {
  color: #2199e8;
  text-decoration: none; }
  a:hover {
    color: #147dc2; }
  a:active {
    color: #147dc2; }
  a:visited {
    color: #2199e8; }

h1 a,
h1 a:visited,
h2 a,
h2 a:visited,
h3 a,
h3 a:visited,
h4 a,
h4 a:visited,
h5 a,
h5 a:visited,
h6 a,
h6 a:visited {
  color: #2199e8; }

pre {
  background: #f3f3f3;
  margin: 30px 0;
  Margin: 30px 0; }
  pre code {
    color: #cacaca; }
    pre code span.callout {
      color: #8a8a8a;
      font-weight: bold; }
    pre code span.callout-strong {
      color: #ff6908;
      font-weight: bold; }

hr {
  max-width: 580px;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  margin: 20px auto;
  Margin: 20px auto;
  clear: both; }

.stat {
  font-size: 40px;
  line-height: 1; }
  p + .stat {
    margin-top: -16px;
    Margin-top: -16px; }

table.button {
  width: auto !important;
  margin: 0 0 16px 0;
  Margin: 0 0 16px 0; }
  table.button table td {
    text-align: left;
    color: #fefefe;
    background: #2199e8;
    border: 2px solid #2199e8; }
    table.button table td.radius {
      border-radius: 3px; }
    table.button table td.rounded {
      border-radius: 500px; }
    table.button table td a {
      font-family: Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: bold;
      color: #fefefe;
      text-decoration: none;
      display: inline-block;
      padding: 8px 16px 8px 16px;
      border: 0px solid #2199e8;
      border-radius: 3px; }

table.button:hover table tr td a,
table.button:active table tr td a,
table.button table tr td a:visited,
table.button.tiny:hover table tr td a,
table.button.tiny:active table tr td a,
table.button.tiny table tr td a:visited,
table.button.small:hover table tr td a,
table.button.small:active table tr td a,
table.button.small table tr td a:visited,
table.button.large:hover table tr td a,
table.button.large:active table tr td a,
table.button.large table tr td a:visited {
  color: #fefefe; }

table.button.tiny table td,
table.button.tiny table a {
  padding: 4px 8px 4px 8px; }

table.button.tiny table a {
  font-size: 10px;
  font-weight: normal; }

table.button.small table td,
table.button.small table a {
  padding: 5px 10px 5px 10px;
  font-size: 12px; }

table.button.large table a {
  padding: 10px 20px 10px 20px;
  font-size: 20px; }

table.expand,
table.expanded {
  width: 100% !important; }
  table.expand table,
  table.expanded table {
    width: 100%; }
    table.expand table a,
    table.expanded table a {
      text-align: center; }
  table.expand center,
  table.expanded center {
    min-width: 0; }

table.button:hover table td,
table.button:visited table td,
table.button:active table td {
  background: #147dc2;
  color: #fefefe; }

table.button:hover table a,
table.button:visited table a,
table.button:active table a {
  border: 0px solid #147dc2; }

table.button.secondary table td {
  background: #777777;
  color: #fefefe;
  border: 2px solid #777777; }

table.button.secondary table a {
  color: #fefefe;
  border: 0px solid #777777; }

table.button.secondary:hover table td {
  background: #919191;
  color: #fefefe; }

table.button.secondary:hover table a {
  border: 0px solid #919191; }

table.button.secondary:hover table td a {
  color: #fefefe; }

table.button.secondary:active table td a {
  color: #fefefe; }

table.button.secondary table td a:visited {
  color: #fefefe; }

table.button.success table td {
  background: #3adb76;
  border: 2px solid #3adb76; }

table.button.success table a {
  border: 0px solid #3adb76; }

table.button.success:hover table td {
  background: #23bf5d; }

table.button.success:hover table a {
  border: 0px solid #23bf5d; }

table.button.alert table td {
  background: #ec5840;
  border: 2px solid #ec5840; }

table.button.alert table a {
  border: 0px solid #ec5840; }

table.button.alert:hover table td {
  background: #e23317; }

table.button.alert:hover table a {
  border: 0px solid #e23317; }

table.callout {
  margin-bottom: 16px;
  Margin-bottom: 16px; }

th.callout-inner {
  width: 100%;
  border: 1px solid #cbcbcb;
  padding: 10px;
  background: #fefefe; }
  th.callout-inner.primary {
    background: #def0fc;
    border: 1px solid #444444;
    color: #0a0a0a; }
  th.callout-inner.secondary {
    background: #ebebeb;
    border: 1px solid #444444;
    color: #0a0a0a; }
  th.callout-inner.success {
    background: #e1faea;
    border: 1px solid #1b9448;
    color: #fefefe; }
  th.callout-inner.warning {
    background: #fff3d9;
    border: 1px solid #996800;
    color: #fefefe; }
  th.callout-inner.alert {
    background: #fce6e2;
    border: 1px solid #b42912;
    color: #fefefe; }

.thumbnail {
  border: solid 4px #fefefe;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 3px;
  margin-bottom: 16px; }
  .thumbnail:hover, .thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }

table.menu {
  width: 580px; }
  table.menu td.menu-item,
  table.menu th.menu-item {
    padding: 10px;
    padding-right: 10px; }
    table.menu td.menu-item a,
    table.menu th.menu-item a {
      color: #2199e8; }

table.menu.vertical td.menu-item,
table.menu.vertical th.menu-item {
  padding: 10px;
  padding-right: 0;
  display: block; }
  table.menu.vertical td.menu-item a,
  table.menu.vertical th.menu-item a {
    width: 100%; }

table.menu.vertical td.menu-item table.menu.vertical td.menu-item,
table.menu.vertical td.menu-item table.menu.vertical th.menu-item,
table.menu.vertical th.menu-item table.menu.vertical td.menu-item,
table.menu.vertical th.menu-item table.menu.vertical th.menu-item {
  padding-left: 10px; }

table.menu.text-center a {
  text-align: center; }

.menu[align="center"] {
  width: auto !important; }

body.outlook p {
  display: inline !important; }

@media only screen and (max-width: 596px) {
  table.body img {
    width: auto !important;
    height: auto !important; }
  table.body center {
    min-width: 0 !important; }
  table.body .container {
    width: 95% !important; }
  table.body .columns,
  table.body .column {
    height: auto !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 16px !important;
    padding-right: 16px !important; }
    table.body .columns .column,
    table.body .columns .columns,
    table.body .column .column,
    table.body .column .columns {
      padding-left: 0 !important;
      padding-right: 0 !important; }
  table.body .collapse .columns,
  table.body .collapse .column {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  td.small-1,
  th.small-1 {
    display: inline-block !important;
    width: 8.33333% !important; }
  td.small-2,
  th.small-2 {
    display: inline-block !important;
    width: 16.66667% !important; }
  td.small-3,
  th.small-3 {
    display: inline-block !important;
    width: 25% !important; }
  td.small-4,
  th.small-4 {
    display: inline-block !important;
    width: 33.33333% !important; }
  td.small-5,
  th.small-5 {
    display: inline-block !important;
    width: 41.66667% !important; }
  td.small-6,
  th.small-6 {
    display: inline-block !important;
    width: 50% !important; }
  td.small-7,
  th.small-7 {
    display: inline-block !important;
    width: 58.33333% !important; }
  td.small-8,
  th.small-8 {
    display: inline-block !important;
    width: 66.66667% !important; }
  td.small-9,
  th.small-9 {
    display: inline-block !important;
    width: 75% !important; }
  td.small-10,
  th.small-10 {
    display: inline-block !important;
    width: 83.33333% !important; }
  td.small-11,
  th.small-11 {
    display: inline-block !important;
    width: 91.66667% !important; }
  td.small-12,
  th.small-12 {
    display: inline-block !important;
    width: 100% !important; }
  .columns td.small-12,
  .column td.small-12,
  .columns th.small-12,
  .column th.small-12 {
    display: block !important;
    width: 100% !important; }
  .body .columns td.small-1,
  .body .column td.small-1,
  td.small-1 center,
  .body .columns th.small-1,
  .body .column th.small-1,
  th.small-1 center {
    display: inline-block !important;
    width: 8.33333% !important; }
  .body .columns td.small-2,
  .body .column td.small-2,
  td.small-2 center,
  .body .columns th.small-2,
  .body .column th.small-2,
  th.small-2 center {
    display: inline-block !important;
    width: 16.66667% !important; }
  .body .columns td.small-3,
  .body .column td.small-3,
  td.small-3 center,
  .body .columns th.small-3,
  .body .column th.small-3,
  th.small-3 center {
    display: inline-block !important;
    width: 25% !important; }
  .body .columns td.small-4,
  .body .column td.small-4,
  td.small-4 center,
  .body .columns th.small-4,
  .body .column th.small-4,
  th.small-4 center {
    display: inline-block !important;
    width: 33.33333% !important; }
  .body .columns td.small-5,
  .body .column td.small-5,
  td.small-5 center,
  .body .columns th.small-5,
  .body .column th.small-5,
  th.small-5 center {
    display: inline-block !important;
    width: 41.66667% !important; }
  .body .columns td.small-6,
  .body .column td.small-6,
  td.small-6 center,
  .body .columns th.small-6,
  .body .column th.small-6,
  th.small-6 center {
    display: inline-block !important;
    width: 50% !important; }
  .body .columns td.small-7,
  .body .column td.small-7,
  td.small-7 center,
  .body .columns th.small-7,
  .body .column th.small-7,
  th.small-7 center {
    display: inline-block !important;
    width: 58.33333% !important; }
  .body .columns td.small-8,
  .body .column td.small-8,
  td.small-8 center,
  .body .columns th.small-8,
  .body .column th.small-8,
  th.small-8 center {
    display: inline-block !important;
    width: 66.66667% !important; }
  .body .columns td.small-9,
  .body .column td.small-9,
  td.small-9 center,
  .body .columns th.small-9,
  .body .column th.small-9,
  th.small-9 center {
    display: inline-block !important;
    width: 75% !important; }
  .body .columns td.small-10,
  .body .column td.small-10,
  td.small-10 center,
  .body .columns th.small-10,
  .body .column th.small-10,
  th.small-10 center {
    display: inline-block !important;
    width: 83.33333% !important; }
  .body .columns td.small-11,
  .body .column td.small-11,
  td.small-11 center,
  .body .columns th.small-11,
  .body .column th.small-11,
  th.small-11 center {
    display: inline-block !important;
    width: 91.66667% !important; }
  table.body td.small-offset-1,
  table.body th.small-offset-1 {
    margin-left: 8.33333% !important;
    Margin-left: 8.33333% !important; }
  table.body td.small-offset-2,
  table.body th.small-offset-2 {
    margin-left: 16.66667% !important;
    Margin-left: 16.66667% !important; }
  table.body td.small-offset-3,
  table.body th.small-offset-3 {
    margin-left: 25% !important;
    Margin-left: 25% !important; }
  table.body td.small-offset-4,
  table.body th.small-offset-4 {
    margin-left: 33.33333% !important;
    Margin-left: 33.33333% !important; }
  table.body td.small-offset-5,
  table.body th.small-offset-5 {
    margin-left: 41.66667% !important;
    Margin-left: 41.66667% !important; }
  table.body td.small-offset-6,
  table.body th.small-offset-6 {
    margin-left: 50% !important;
    Margin-left: 50% !important; }
  table.body td.small-offset-7,
  table.body th.small-offset-7 {
    margin-left: 58.33333% !important;
    Margin-left: 58.33333% !important; }
  table.body td.small-offset-8,
  table.body th.small-offset-8 {
    margin-left: 66.66667% !important;
    Margin-left: 66.66667% !important; }
  table.body td.small-offset-9,
  table.body th.small-offset-9 {
    margin-left: 75% !important;
    Margin-left: 75% !important; }
  table.body td.small-offset-10,
  table.body th.small-offset-10 {
    margin-left: 83.33333% !important;
    Margin-left: 83.33333% !important; }
  table.body td.small-offset-11,
  table.body th.small-offset-11 {
    margin-left: 91.66667% !important;
    Margin-left: 91.66667% !important; }
  table.body table.columns td.expander,
  table.body table.columns th.expander {
    display: none !important; }
  table.body .right-text-pad,
  table.body .text-pad-right {
    padding-left: 10px !important; }
  table.body .left-text-pad,
  table.body .text-pad-left {
    padding-right: 10px !important; }
  table.menu {
    width: 100% !important; }
    table.menu td,
    table.menu th {
      width: auto !important;
      display: inline-block !important; }
    table.menu.vertical td,
    table.menu.vertical th, table.menu.small-vertical td,
    table.menu.small-vertical th {
      display: block !important; }
  table.menu[align="center"] {
    width: auto !important; }
  table.button.expand {
    width: 100% !important; } }

.footer-drip {
  background: #F3F3F3;
  border-radius: 0 0 10px 10px; }

.footer-drip .columns {
  padding-top: 16px; }

.container.header-drip {
  background: #F3F3F3; }

.container.header-drip .columns {
  padding-bottom: 16px;
  padding-top: 16px; }

.container.body-drip {
  border-radius: 10px;
  border-top: 10px solid #663399; }

.header {
  background: #8a8a8a; }

.header p {
  color: #ffffff;
  margin: 0; }

.header .columns {
  padding-bottom: 0; }

.header .container {
  background: #8a8a8a;
  padding-top: 16px;
  padding-bottom: 16px; }

.header .container td {
  padding-top: 16px;
  padding-bottom: 16px; }
    
</style>
  <body>
    <!-- <style> -->
    <table class="body" data-made-with-foundation="">
      <tr>
        <td class="center" align="center" valign="top">
          <center data-parsed="">
            <table class="container text-center">
              <tbody>
                <tr>
                  <td>
                    <!--header-->
                    <table class="row">
                      <tbody>
                        <tr>
                          <th class="small-12 large-12 columns first last" style="" bgcolor="#ff5a5f">
<!--                                <img src="images/bottom_icon.png" alt="logo" style="margin: 10px auto;">-->
                                <span style="display:block;background:url(‘images/bottom_icon.png‘) no-repeat center center;width:100%;height:55px;margin: 20px auto;"></span>
                                   <h2 style="color:#fff;font-size:20px;text-align:center;margin:0;">最佳热门房源火热预定</h2>
                          </th>
                        </tr>
                      </tbody>
                    </table>
                   <!--list-->
                    <table class="row" style="border:5px solid #ff5a5f;border-bottom:none;">
                      <tbody>
                          <!--title-->
                           <tr>
                               <th class="small-12 large-12 columns first last" style="padding:0px;" colspan="2">
                                   <h2 style="margin:0;color: #626262;font-size:18px;line-height:18px;padding:20px;font-family: 微软雅黑;"> 猜你喜欢:</h2>
                            </th>
                       </tr>
                        <!--1-->
                        <tr>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                        </tr>
                        <!--2-->
                        <tr>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                        </tr>
                        <!--3-->
                        <tr>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                          <th class="small-12 large-6 columns first">
                            <table>
                              <tr>
                                <th>
                                  <center data-parsed=""> 
                                  
                                    <a href="" style="display:block; overflow:hidden; text-decoration: none;" target="_blank">
                                        <p style="position: relative; padding: 0 15px; margin:0;">
<!--                                            <img src="images/pic.jpg" style="width: 100%;display:block;" />-->
                                            <span style="display:block;background:url(‘images/pic.jpg‘) no-repeat center center;width:100%;height:150px;background-size:cover;"></span>
                                            <span style="padding: 11px 21px; line-height: 23px; font-size:24px; color: #f2f2f2; position: absolute; left: 15px; bottom: 10px; background: rgba(0, 0, 0, 0.5);">¥650</span>
                                            <span style="position: absolute;right: 25px;bottom: -25px;width: 56px;height: 56px;overflow:hidden;border-radius: 50%;border: 2px solid #fff;background:url(‘images/header_icon.png‘) no-repeat center center;background-size:cover;">
<!--                                                <img style="display:block;" src="images/header_icon.png">-->
                                            </span>
                                        </p>
                                        <div style="margin: 0px;padding: 0 15px;font-family: 微软雅黑;font-size:14px;">
                                            <p style="margin:0;color:#666;margin-top:10px;">Constable Terrace 60A</p>
                                            <p style="margin:0;color:#999;">独栋别墅 距离托马斯吧啦吧艺术高中2.5公</p>
                                        </div>
                                    </a>
                                    
                                     </center>
                                </th>
                              </tr>
                            </table>
                          </th>
                        </tr>
                      </tbody>
                    </table>
                    <!--info-->
                    <table class="row" style="border:5px solid #ff5a5f;">
                      <tbody>
                        <tr>
                          <th class="small-12 large-12 columns first last" colspan="2">
                            <h2 style="margin:0;font-size: 18px; color:#626262;line-height:18px;padding:20px 10px 0;font-family: 微软雅黑;font-weight:bold;">立即联系我们,查看更多优质房源!</h2>
                            <p style="margin:0;font-size: 14px; color:#626262;line-height:1.5;padding:10px;">我们的咨询顾问为您在理想位置寻找满意的海外住所,全称跟踪,预订无忧。期待您的来电或邮件!</p>
                          </th>
                        </tr>
                        <tr>
                          <th class="small-12 large-2 columns first">
                            <p style="width:180px;height:190px;margin:0 auto;padding:0 45px;background:url(‘http://pic.uhouzz.com/mailImages/201603/14/vcode_icon.png‘) no-repeat center center;">&nbsp;</p>
                          </th>
                          <th class="small-12 large-10 columns last">
                            <p style="margin:0 auto;font-size: 16px;padding-left:10px"><span style="color:#626262;display:block;background:url(‘http://pic.uhouzz.com/mailImages/201603/14/network_icon.png‘) no-repeat left center;height:35px;line-height:35px;margin: 5px 0 0;padding-left: 56px;">网址:<a href="http://www.123.com" style="color:#626262;text-decoration: none;display:inline-block;">www.123.com</a></span> <span style="color:#626262;display:block;background:url(‘http://pic.uhouzz.com/mailImages/201603/14/phone_icon.png‘) no-repeat 7px center;height:44px;line-height:44px;margin: 30px 0;padding-left: 56px;">电话:<a href="tel:123" style="color:#626262;text-decoration: none;display:inline-block;">123</a></span> <span style="color:#626262;display:block;background:url(‘http://pic.uhouzz.com/mailImages/201603/14/email_icon.png‘) no-repeat 2px center;height:32px;line-height:32px;padding-left: 56px;">邮箱:<a href="mailto:zd9027@qq.com" style="color:#626262;text-decoration: none;display:inline-block;">zd9027@qq.com</a></span></p>
                          </th>
                        </tr>
                      </tbody>
                    </table>
                    <!--footer-->
                    <table class="row">
                      <tbody>
                        <tr>
                          <th class="small-12 large-12 columns first last" bgcolor="#ff5a5f">
                            <span style="display:block;background:url(‘images/bottom_icon.png‘) no-repeat center center;width:100%;height:55px;margin: 10px auto 0;"></span>
<!--                            <img src="images/bottom_icon.png" alt="logo" style="margin: 10px auto 0;">-->
                          </th>
                        </tr>
                      </tbody>
                    </table>
                  </td>
                </tr>
              </tbody>
            </table>
          </center>
        </td>
      </tr>
    </table>
  </body>
</html>

本文转载于:EDM响应式邮件框架:Formerly Ink

EDM响应式邮件框架:Formerly Ink

标签:imp   rgba   png   aci   no-repeat   lin   back   sub   which   

原文地址:https://www.cnblogs.com/baimeishaoxia/p/12944073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!