【问题标题】:Issue with the logo and its position using media queries使用媒体查询的徽标及其位置问题
【发布时间】:2020-02-18 00:10:47
【问题描述】:

正如标题所述,我的此作业的徽标需要以不同的屏幕尺寸出现在屏幕的某些区域。我已经正确实现了移动定位,但我似乎找不到 ipad 和大屏幕徽标定位的解决方案。

对于大屏幕,徽标需要在第一个 .product 元素的正上方居中,在我的例子中是 Apple 中的 A

对于 ipad 屏幕,徽标需要位于屏幕左边缘和居中的h1 元素之间

无论我尝试什么,徽标都固定在左侧。

我意识到在css 中,它的位置设置为float:left,但我已将其更改为display:flex 和各种flexbox 属性,但它最终产生了更多问题。我已经更改了每个 @media query 中的徽标位置,但徽标总是最终保持在原位或远离它需要的位置。

我知道 google 是我最好的朋友,但我已经用尽了所有可能的方法,并且已经到了最后的手段。我想做的最后一个是被卡住并立即在此处发布,而无需至少尝试几个小时。请原谅我这个新手和可能很明显的问题,但我束手无策,真的需要帮助。谢谢。

* {
  box-sizing: border-box;
  text-align: center;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

body>i> {
  flex-grow: 0;
}

body>header> {
  flex-grow: 1;
}

.logo>img {
  width: 50px;
}

p {
  text-align: left;
  padding: 15px;
}

.navbar {
  background-color: rgb(105, 105, 105);
  padding: 10px;
  color: white;
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: row-reverse;
}

.social {
  display: flex;
  padding-top: 20px;
  flex-direction: row;
  justify-content: space-around;
  border-top: 2px solid #e2e2e2;
}

ul {
  list-style: none;
}

li {
  line-height: 5px;
  float: right;
  padding: 0 0 50px 0;
  margin-right: 30px;
  margin-top: -10px;
}

.product {
  border: 1px solid lightgray;
  border-radius: 10px;
  margin: 10px 30px;
  padding: 10px;
}

@media screen and (max-width: 700px) {
  .logo {
    float: left;
  }
  .menu {
    display: none;
  }
  .logo {
    float: left;
  }
}

@media screen and (max-width: 500px) {
  .logo {
    float: none;
  }
  .menu {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .hamburger {
    display: none;
  }
  .product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid lightgray;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 30px;
    width: 50%;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 0px;
  }
  main {
    display: inline-flex;
  }
  .logo {
    position: absolute;
    left: 0;
    top: 25;
  }
}
<!DOCTYPE html>
<html lang="en">

<head>
  <title>Parcel Sandbox</title>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
  <link rel="stylesheet" href="style.css" />
</head>

<body>
  <header>
    <div class="logo"><img src="https://uploads.codesandbox.io/uploads/user/6eb75550-4d51-47fd-8ec1-d216b5da5e5c/M4sq-logo.jpeg" /></div>
    <h1>The ABC Company</h1>
  </header>
  <nav class="navbar">
    <div class="hamburger">&#9776;</div>
    <ul class="menu">
      <li>Help</li>
      <li>Products</li>
      <li>About</li>
      <li>Home</li>
    </ul>
  </nav>
  <main>
    <section class="product">
      <i class="fas fa-apple-alt fa-5x"></i>
      <h2>A as in Apple</h2>
      <p>
        We take out fruit very seriously at ABC, that is why the A in ABC is for Apple. Try our new AppleBook App, the coolest new technology disrupting the fruit industry. This is the Uber of Apples!
      </p>
    </section>
    <section class="product">
      <i class="fas fa-money-bill-wave fa-5x"></i>
      <h2>B as in Bail</h2>
      <p>
        Do you need Bail! Our new BailFace app will provide you with lawyers and bail money at the push of a button. Its the Facebook of bail bonds!
      </p>
    </section>
    <section class="product">
      <i class="fas fa-utensils fa-5x"></i>
      <h2>C as in Curry</h2>

      <p>
        Fancy some curry! Our new HurryCurry app will provide curry cooked by Italian chefs right to your door. Its the AirBnB of curry!
      </p>
    </section>
  </main>
  <footer>
    <ul class="social">
      <li class="social_icon"><i class="fab fa-twitter"></i></li>
      <li class="social_icon"><i class="fab fa-facebook"></i></li>
      <li class="social_icon"><i class="fab fa-instagram"></i></li>
    </ul>
  </footer>
</body>

</html>

【问题讨论】:

    标签: html css web flexbox responsive


    【解决方案1】:

    试试这个:

    将标头分成 3 个相等部分

    header {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    

    使标志图像居中

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    

    使标题不换行

    header h1 {
      white-space: nowrap;
    }
    

    查看 sn-p 它的外观。我评论了媒体查询中的所有浮动和绝对定位。

    * {
      box-sizing: border-box;
      text-align: center;
    }
    
    body {
      font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0;
    }
    
    body>i> {
      flex-grow: 0;
    }
    
    body>header> {
      flex-grow: 1;
    }
    
    .logo>img {
      width: 50px;
    }
    
    p {
      text-align: left;
      padding: 15px;
    }
    
    .navbar {
      background-color: rgb(105, 105, 105);
      padding: 10px;
      color: white;
      width: 100%;
    }
    
    .hamburger {
      display: flex;
      flex-direction: row-reverse;
    }
    
    .social {
      display: flex;
      padding-top: 20px;
      flex-direction: row;
      justify-content: space-around;
      border-top: 2px solid #e2e2e2;
    }
    
    ul {
      list-style: none;
    }
    
    li {
      line-height: 5px;
      float: right;
      padding: 0 0 50px 0;
      margin-right: 30px;
      margin-top: -10px;
    }
    
    .product {
      border: 1px solid lightgray;
      border-radius: 10px;
      margin: 10px 30px;
      padding: 10px;
    }
    
    header {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    
    header h1 {
      white-space: nowrap;
    }
    
    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    @media screen and (max-width: 700px) {
      /*.logo {
        float: left;
      }*/
      .menu {
        display: none;
      }
      /*.logo {
        float: left;
      }*/
    }
    
    @media screen and (max-width: 500px) {
      /*.logo {
        float: none;
      }*/
      .menu {
        display: none;
      }
      header {
        display: block;
      }
    }
    
    @media screen and (min-width: 900px) {
      .hamburger {
        display: none;
      }
      .product {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid lightgray;
        border-radius: 10px;
        margin-left: 30px;
        margin-right: 30px;
        width: 50%;
        text-align: center;
        margin-top: -20px;
        margin-bottom: 0px;
      }
      main {
        display: inline-flex;
      }
      /*.logo {
        position: absolute;
        left: 0;
        top: 25;
      }*/
    }
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <title>Parcel Sandbox</title>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
      <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
      <link rel="stylesheet" href="style.css" />
    </head>
    
    <body>
      <header>
        <div class="logo"><img src="https://uploads.codesandbox.io/uploads/user/6eb75550-4d51-47fd-8ec1-d216b5da5e5c/M4sq-logo.jpeg" /></div>
        <h1>The ABC Company</h1>
      </header>
      <nav class="navbar">
        <div class="hamburger">&#9776;</div>
        <ul class="menu">
          <li>Help</li>
          <li>Products</li>
          <li>About</li>
          <li>Home</li>
        </ul>
      </nav>
      <main>
        <section class="product">
          <i class="fas fa-apple-alt fa-5x"></i>
          <h2>A as in Apple</h2>
          <p>
            We take out fruit very seriously at ABC, that is why the A in ABC is for Apple. Try our new AppleBook App, the coolest new technology disrupting the fruit industry. This is the Uber of Apples!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-money-bill-wave fa-5x"></i>
          <h2>B as in Bail</h2>
          <p>
            Do you need Bail! Our new BailFace app will provide you with lawyers and bail money at the push of a button. Its the Facebook of bail bonds!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-utensils fa-5x"></i>
          <h2>C as in Curry</h2>
    
          <p>
            Fancy some curry! Our new HurryCurry app will provide curry cooked by Italian chefs right to your door. Its the AirBnB of curry!
          </p>
        </section>
      </main>
      <footer>
        <ul class="social">
          <li class="social_icon"><i class="fab fa-twitter"></i></li>
          <li class="social_icon"><i class="fab fa-facebook"></i></li>
          <li class="social_icon"><i class="fab fa-instagram"></i></li>
        </ul>
      </footer>
    </body>
    
    </html>

    【讨论】:

    • 这无疑是朝着正确方向迈出的一步。我打算从头开始尝试,然后从那里开始。除了智能手机(500px)媒体查询中的标志外,一切都很完美。徽标需要位于标题上方。我在网络开发方面非常新,所以我很抱歉。它需要看起来像这样 @500px i.imgur.com/NF1u0Gg.png
    • @danuma 只需将header {display: block;} 添加到@media screen and (max-width: 500px) 更新答案
    • @danuma 如果你认为我应得的,我真的很感谢你。
    【解决方案2】:

    首先对不起我的英语,我不流利,我的解决方案建议,我冒昧地改变了你的css中的一些东西。

    <html lang="en">
    <head>
        <title>Parcel Sandbox</title>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
        <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
         crossorigin="anonymous">
        <link rel="stylesheet" href="style.css" />
    </head>
    <style>
        *{
        box-sizing: border-box;
    }
    body{
        margin: 0;
        padding: 0;
    }
    .navbar {
        display: flex;
        flex-direction: row-reverse;
        width: 100vw;
        background-color: rgb(105, 105, 105);
        color: white;
    }
        
    .hamburger {
        display: flex;
        flex-direction: row-reverse;
        align-content: center;
        align-self: center;
        justify-content: flex-start;
        margin-right: 10px;
        display: none;
    }
        
    .social {
        display: flex;
        padding-top: 20px;
        flex-direction:row;
        justify-content:space-around; 
        border-top: 2px solid #e2e2e2;
        }
    .menu{
        display: inherit;
        list-style: none;
    }
        
        
    .navbar ul li {
        display: inline;
        padding: 0 15px;
    }
        
    .product {
        border: 1px solid lightgray;
        border-radius: 10px;
        margin: 10px 30px;
        padding:10px;
    }
    
    header{
        display: flex;
        flex-direction: row;
        
        
    }
    
    header h1 {
        display: inherit;
        flex-grow: 1;
        align-content: center;
        align-self: center;
        align-items: center;
        justify-content: flex-start;
    }
    
    
    
    .logo{
        display: inherit;
        align-content: center;
        align-self: center;
        align-items: center;
        flex-grow: 1;
        justify-content: center;
        
    }
    
    .logo > img{
        width: 50px;
        height: 50px;
    }
    
    @media (max-width: 900px) {
        .hamburger {
          display: none;
        }
        main{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
     
        .product {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
          align-self: center;
          align-content: center;
          border: 1px solid lightgray;
          border-radius: 10px;
          width: 50vw;
          text-align: center;
        }
    }
    
    @media (max-width:700px){
        .navbar ul li{
            display: none;
        }
        .hamburger{
            display: block;
        }
    }
    
    @media (max-width: 400px){
        header h1 {
            display: inherit;
            flex-grow: 1;
            align-content: center;
            align-self: center;
            align-items: center;
            justify-content: flex-start;
            font-size: 1.5rem;
        }
    }
    </style>
    <body>
      <header>
            <div class="logo"><img src="https://uploads.codesandbox.io/uploads/user/6eb75550-4d51-47fd-8ec1-d216b5da5e5c/M4sq-logo.jpeg"/></div>
            <h1>The ABC Company</h1>
        </header>
        <nav class="navbar">
            <div class="hamburger">&#9776;</div>
            <ul class="menu">
                <li>Help</li>
                <li>Products</li>
                <li>About</li>
                <li>Home</li>
            </ul>
        </nav>
        <main>
        <section class="product">
             <i class="fas fa-apple-alt fa-5x"></i>
                <h2>A as in Apple</h2>
                <p>
                We take out fruit very seriously at ABC, that is why
                the A in ABC is for Apple. Try our new AppleBook App,
                the coolest new technology disrupting the fruit industry.
                This is the Uber of Apples! 
                </p>
            </section>
            <section class="product">
                <i class="fas fa-money-bill-wave fa-5x"></i>
                <h2>B as in Bail</h2>
                <p>
                    Do you need Bail! Our new BailFace app will provide you
                    with lawyers and bail money at the push of a button. Its the 
                    Facebook of bail bonds!
                </p>
            </section>
            <section class="product">
                <i class="fas fa-utensils fa-5x"></i>
                <h2>C as in Curry</h2>
    
                <p>
                    Fancy some curry! Our new HurryCurry app will provide curry
                    cooked by Italian chefs right to your door. Its the AirBnB of curry!
                </p>
            </section>
        </main>
      <footer>
            <ul class="social">
                <li class="social_icon"><i class="fab fa-twitter"></i></li>
                <li class="social_icon"><i class="fab fa-facebook"></i></li>
                <li class="social_icon"><i class="fab fa-instagram"></i></li>
            </ul>
        </footer>
    </body>
    </html>

    【讨论】:

    • 这得到了桌面和平板媒体查询所需的徽标,但对于移动设备,徽标需要像这样imgur.com/NF1u0Gg 那样位于标题上方,但非常感谢您的帮助,谢谢
    【解决方案3】:

    这是使用 flexbox 或 css 网格的一个很好的解决方案:

    解决问题的步骤:

    1. 从媒体查询中删除类.logo

    2. 像这样在标题元素中实现解决方案:

    * {
      box-sizing: border-box;
      text-align: center;
    }
    
    body {
      font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0;
    }
    
    header {
      display: flex;
      justify-content: space-between;
      align-items:center;
      margin: 0 30px;
    }
    
    .logo>img {
      width: 50px;
    }
    
    p {
      text-align: left;
      padding: 15px;
    }
    
    .navbar {
      background-color: rgb(105, 105, 105);
      padding: 10px;
      color: white;
      width: 100%;
    }
    
    .hamburger {
      display: flex;
      flex-direction: row-reverse;
    }
    
    .social {
      display: flex;
      padding-top: 20px;
      flex-direction: row;
      justify-content: space-around;
      border-top: 2px solid #e2e2e2;
    }
    
    ul {
      list-style: none;
    }
    
    li {
      line-height: 5px;
      float: right;
      padding: 0 0 50px 0;
      margin-right: 30px;
      margin-top: -10px;
    }
    
    .product {
      border: 1px solid lightgray;
      border-radius: 10px;
      margin: 10px 30px;
      padding: 10px;
    }
    
    @media screen and (max-width: 700px) {
      .menu {
        display: none;
      }
    }
    
    @media screen and (max-width: 500px) {
      header {
          flex-flow: column
      }
      .menu {
        display: none;
      }
    }
    
    @media screen and (min-width: 900px) {
      .hamburger {
        display: none;
      }
      .product {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid lightgray;
        border-radius: 10px;
        margin-left: 30px;
        margin-right: 30px;
        width: 50%;
        text-align: center;
        margin-top: -20px;
        margin-bottom: 0px;
      }
      main {
        display: inline-flex;
      }
    }
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <title>Parcel Sandbox</title>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
      <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
      <link rel="stylesheet" href="style.css" />
    </head>
    
    <body>
      <header>
        <div class="logo"><img src="https://uploads.codesandbox.io/uploads/user/6eb75550-4d51-47fd-8ec1-d216b5da5e5c/M4sq-logo.jpeg" /></div>
        <h1>The ABC Company</h1>
      </header>
      <nav class="navbar">
        <div class="hamburger">&#9776;</div>
        <ul class="menu">
          <li>Help</li>
          <li>Products</li>
          <li>About</li>
          <li>Home</li>
        </ul>
      </nav>
      <main>
        <section class="product">
          <i class="fas fa-apple-alt fa-5x"></i>
          <h2>A as in Apple</h2>
          <p>
            We take out fruit very seriously at ABC, that is why the A in ABC is for Apple. Try our new AppleBook App, the coolest new technology disrupting the fruit industry. This is the Uber of Apples!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-money-bill-wave fa-5x"></i>
          <h2>B as in Bail</h2>
          <p>
            Do you need Bail! Our new BailFace app will provide you with lawyers and bail money at the push of a button. Its the Facebook of bail bonds!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-utensils fa-5x"></i>
          <h2>C as in Curry</h2>
    
          <p>
            Fancy some curry! Our new HurryCurry app will provide curry cooked by Italian chefs right to your door. Its the AirBnB of curry!
          </p>
        </section>
      </main>
      <footer>
        <ul class="social">
          <li class="social_icon"><i class="fab fa-twitter"></i></li>
          <li class="social_icon"><i class="fab fa-facebook"></i></li>
          <li class="social_icon"><i class="fab fa-instagram"></i></li>
        </ul>
      </footer>
    </body>
    
    </html>

    如果您需要将文本保留在标题中间,只需使用 css 网格代替。

    * {
      box-sizing: border-box;
      text-align: center;
    }
    
    body {
      font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0;
    }
    
    header {
      flex-grow: 1;
      display: grid;
      grid-template-columns: 0 2fr;
      grid-template-rows: 1fr;
      align-items:center;
      margin: 0 30px;
    }
    
    .logo>img {
      width: 50px;
    }
    
    p {
      text-align: left;
      padding: 15px;
    }
    
    .navbar {
      background-color: rgb(105, 105, 105);
      padding: 10px;
      color: white;
      width: 100%;
    }
    
    .hamburger {
      display: flex;
      flex-direction: row-reverse;
    }
    
    .social {
      display: flex;
      padding-top: 20px;
      flex-direction: row;
      justify-content: space-around;
      border-top: 2px solid #e2e2e2;
    }
    
    ul {
      list-style: none;
    }
    
    li {
      line-height: 5px;
      float: right;
      padding: 0 0 50px 0;
      margin-right: 30px;
      margin-top: -10px;
    }
    
    .product {
      border: 1px solid lightgray;
      border-radius: 10px;
      margin: 10px 30px;
      padding: 10px;
    }
    
    @media screen and (max-width: 700px) {
      .menu {
        display: none;
      }
    }
    
    @media screen and (max-width: 500px) {
      header {
        grid-template-columns: 1fr;
      }
      .menu {
        display: none;
      }
    }
    
    @media screen and (min-width: 900px) {
      .hamburger {
        display: none;
      }
      .product {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid lightgray;
        border-radius: 10px;
        margin-left: 30px;
        margin-right: 30px;
        width: 50%;
        text-align: center;
        margin-top: -20px;
        margin-bottom: 0px;
      }
      main {
        display: inline-flex;
      }
    }
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <title>Parcel Sandbox</title>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
      <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
      <link rel="stylesheet" href="style.css" />
    </head>
    
    <body>
      <header>
        <div class="logo"><img src="https://uploads.codesandbox.io/uploads/user/6eb75550-4d51-47fd-8ec1-d216b5da5e5c/M4sq-logo.jpeg" /></div>
        <h1>The ABC Company</h1>
      </header>
      <nav class="navbar">
        <div class="hamburger">&#9776;</div>
        <ul class="menu">
          <li>Help</li>
          <li>Products</li>
          <li>About</li>
          <li>Home</li>
        </ul>
      </nav>
      <main>
        <section class="product">
          <i class="fas fa-apple-alt fa-5x"></i>
          <h2>A as in Apple</h2>
          <p>
            We take out fruit very seriously at ABC, that is why the A in ABC is for Apple. Try our new AppleBook App, the coolest new technology disrupting the fruit industry. This is the Uber of Apples!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-money-bill-wave fa-5x"></i>
          <h2>B as in Bail</h2>
          <p>
            Do you need Bail! Our new BailFace app will provide you with lawyers and bail money at the push of a button. Its the Facebook of bail bonds!
          </p>
        </section>
        <section class="product">
          <i class="fas fa-utensils fa-5x"></i>
          <h2>C as in Curry</h2>
    
          <p>
            Fancy some curry! Our new HurryCurry app will provide curry cooked by Italian chefs right to your door. Its the AirBnB of curry!
          </p>
        </section>
      </main>
      <footer>
        <ul class="social">
          <li class="social_icon"><i class="fab fa-twitter"></i></li>
          <li class="social_icon"><i class="fab fa-facebook"></i></li>
          <li class="social_icon"><i class="fab fa-instagram"></i></li>
        </ul>
      </footer>
    </body>
    
    </html>

    【讨论】:

    • 我认为结合每个人帖子中提到的所有内容,我相信问题已经解决。为了降低徽标,我在每个 @media 查询中使用了 position: relative 。我意识到这里的根本问题是我缺乏经验,但感谢所有帮助我解决这个问题的人。
    猜你喜欢
    • 2017-07-15
    • 2016-06-29
    • 1970-01-01
    • 2018-04-14
    • 1970-01-01
    • 2011-08-11
    相关资源
    最近更新 更多