【问题标题】:Cannot move html button to the right无法将html按钮向右移动
【发布时间】:2020-01-17 16:51:04
【问题描述】:

我是 html 和 css 的新手。我试图将按钮“dropbtn”移动到我网页的右侧,但它仍然在左侧。我尝试过使用 float、align、right、text-align 但它们似乎都不起作用。我也尝试过使用标签 !important 但这也无济于事。

.mystyle{
    	height: 90px;
    	width: 254px;
    	color: white;
    	font-size: smaller;
    }
    .flip-container{
    	perspective: 1000px;
    }
    .flip-container:hover .flipper,
    .flip-container.hover .flipper{
    	transform: rotateY(180deg);
    }
    .flip-container,
    .front
    .back{
    	height: 200px;
        width: 260px;
    }
    .flipper{
    	transition: 1s;
    	transform-style: preserve-3d;
    	position: relative;
    }
    .front,
    .back{
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
    }
    .front{
        text-align: center;
        color: black !important;
        z-index: 2;
        transform: rotateY(0deg);
        
    }
    .back{
        transform: rotateY(180deg);
    }
    footer{
        background: #aaa;
        color: white;
    }
    .edit{
        float: right;
        padding-right: 10px;
    }
    
    nav{
    
        height: 6cm;
        background-image: url("bg.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        position: absolute;   
    }
    
    
    /* Dropdown Button */
    .dropbtn {
        background-color: #4CAF50;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
      }
      
      /* The container <div> - needed to position the dropdown content */
      .dropdown {
        position: relative;
        display: inline-block;
      }
      
      /* Dropdown Content (Hidden by Default) */
      .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }
      
      /* Links inside the dropdown */
      .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
      }
      
      /* Change color of dropdown links on hover */
      .dropdown-content a:hover {background-color: #ddd;}
      
      /* Show the dropdown menu on hover */
      .dropdown:hover .dropdown-content {display: block;}
      
      /* Change the background color of the dropdown button when the dropdown content is shown */
      .dropdown:hover .dropbtn {background-color: #3e8e41;}
<!DOCTYPE html>
    <html lang="en">
        <head>
            <title>webpage title</title>
            <meta charset="utf-8">
            <link rel="stylesheet" href="css/mystyle.css">
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
            <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
            <script src="js/app.js"></script>
            <script src="js/restaurants.js"></script>
        </head>
    <body onload="getRestaurantData()">
            <!-- This is where top navigation html codes is -->
            <div w3-include-html="top-navigation.html"></div>
            <!-- This is the container that holds the initial message, heading, and movies -->
    
            <div class="dropdown">
                <button class="dropbtn">Dropdown</button>
                <div class="dropdown-content">
                  <a href="#">Link 1</a>
                  <a href="#">Link 2</a>
                  <a href="#">Link 3</a>
                </div>
              </div>
              
            <div class="container">
            <!-- The message will be shown when the page loads and will
            disappear after the movies are loaded -->
                <div class="row" id="parent">
                    Retrieving movies from database... Please wait...<br><br>
                    If you are seeing this message for a long time, it is likely
                    that you have a JavaScript error. Troubleshoot your script by
                    using the browser console panel now. Please use either Firefox
                    or Chrome to render this webpage.
                </div>
                <p>
                    <!-- This is the heading showing how many movies are there -->
                    <h3 id="summary"></h3>
                </p>
                <!-- Displays thumbnails of the movies here -->
                <div id="restaurantsTable" class="row"></div>
            </div>
            <br><br>
            <!-- Include footer here -->
            <div w3-include-html="footer.html"></div>
        </body>
    <script src="js/w3.js"></script>
    <script>
            //to bring in other HTML on the fly into this page
            w3.includeHTML();
    </script>
    </html>
无法将html按钮向右移动

【问题讨论】:

    标签: html css


    【解决方案1】:

    .mystyle{
        height: 90px;
        width: 254px;
        color: white;
        font-size: smaller;
    }
    .flip-container{
        perspective: 1000px;
    }
    .flip-container:hover .flipper,
    .flip-container.hover .flipper{
        transform: rotateY(180deg);
    }
    .flip-container,
    .front
    .back{
        height: 200px;
        width: 260px;
    }
    .flipper{
        transition: 1s;
        transform-style: preserve-3d;
        position: relative;
    }
    .front,
    .back{
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
    }
    .front{
        text-align: center;
        color: black !important;
        z-index: 2;
        transform: rotateY(0deg);
    
    }
    .back{
        transform: rotateY(180deg);
    }
    footer{
        background: #aaa;
        color: white;
    }
    .edit{
        float: right;
        padding-right: 10px;
    }
    
    nav{
    
        height: 6cm;
        background-image: url("bg.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        position: absolute;   
    }
    
    
    /* Dropdown Button */
    .dropbtn {
        background-color: #4CAF50;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
      }
    
      /* The container <div> - needed to position the dropdown content */
      .dropdown {
        position: relative;
        display: inline-block;
      }
    
      /* Dropdown Content (Hidden by Default) */
      .dropdown-content {
        display: none;
        right:0px;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }
    
      /* Links inside the dropdown */
      .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
      }
    
    .dropdown-menu.show {
        display: block;
        right: 0px !important;
        left: initial !important;
        transform: translate3d(0px, 56px, 0px) !important;
    }
    
      /* Change color of dropdown links on hover */
      .dropdown-content a:hover {background-color: #ddd;}
    
      /* Show the dropdown menu on hover */
      .dropdown:hover .dropdown-content {display: block;}
    
      /* Change the background color of the dropdown button when the dropdown content is shown */
      .dropdown:hover .dropbtn {background-color: #3e8e41;}
       <!DOCTYPE html>
    <html lang="en">
        <head>
            <title>webpage title</title>
            <meta charset="utf-8">
            
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
          <link rel="stylesheet" href="css/mystyle.css">
            
        </head>
    <body onload="getRestaurantData()">
            <!-- This is where top navigation html codes is -->
            <div w3-include-html="top-navigation.html"></div>
            <!-- This is the container that holds the initial message, heading, and movies -->
    
      <div class="clearfix">
        <div class="dropdown float-right">
          <button class="dropbtn" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
            Dropdown
          </button>
          <div class="dropdown-menu" aria-labelledby="dropdownMenu2">
            <button class="dropdown-item" type="button">Action</button>
            <button class="dropdown-item" type="button">Another action</button>
            <button class="dropdown-item" type="button">Something else here</button>
          </div>
        </div>
      </div>
    
            <div class="container">
            <!-- The message will be shown when the page loads and will
            disappear after the movies are loaded -->
                <div class="row" id="parent">
                    Retrieving movies from database... Please wait...<br><br>
                    If you are seeing this message for a long time, it is likely
                    that you have a JavaScript error. Troubleshoot your script by
                    using the browser console panel now. Please use either Firefox
                    or Chrome to render this webpage.
                </div>
                <p>
                    <!-- This is the heading showing how many movies are there -->
                    <h3 id="summary"></h3>
                </p>
                <!-- Displays thumbnails of the movies here -->
                <div id="restaurantsTable" class="row"></div>
            </div>
            <br><br>
            <!-- Include footer here -->
            <div w3-include-html="footer.html"></div>
        </body>
    <script>
            //to bring in other HTML on the fly into this page
            w3.includeHTML();
    </script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
            <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
            <script src="js/app.js"></script>
            <script src="js/restaurants.js"></script>
    </html>

    只需更改您的 HTMLCSS

    .mystyle{
        height: 90px;
        width: 254px;
        color: white;
        font-size: smaller;
    }
    .flip-container{
        perspective: 1000px;
    }
    .flip-container:hover .flipper,
    .flip-container.hover .flipper{
        transform: rotateY(180deg);
    }
    .flip-container,
    .front
    .back{
        height: 200px;
        width: 260px;
    }
    .flipper{
        transition: 1s;
        transform-style: preserve-3d;
        position: relative;
    }
    .front,
    .back{
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
    }
    .front{
        text-align: center;
        color: black !important;
        z-index: 2;
        transform: rotateY(0deg);
    
    }
    .back{
        transform: rotateY(180deg);
    }
    footer{
        background: #aaa;
        color: white;
    }
    .edit{
        float: right;
        padding-right: 10px;
    }
    
    nav{
    
        height: 6cm;
        background-image: url("bg.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        position: absolute;   
    }
    
    
    /* Dropdown Button */
    .dropbtn {
        background-color: #4CAF50;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
      }
    
      /* The container <div> - needed to position the dropdown content */
      .dropdown {
        position: relative;
        display: inline-block;
      }
    
      /* Dropdown Content (Hidden by Default) */
      .dropdown-content {
        display: none;
        right:0px;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }
    
      /* Links inside the dropdown */
      .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
      }
    
      /* Change color of dropdown links on hover */
      .dropdown-content a:hover {background-color: #ddd;}
    
      /* Show the dropdown menu on hover */
      .dropdown:hover .dropdown-content {display: block;}
    
      /* Change the background color of the dropdown button when the dropdown content is shown */
      .dropdown:hover .dropbtn {background-color: #3e8e41;}
       <!DOCTYPE html>
    <html lang="en">
        <head>
            <title>webpage title</title>
            <meta charset="utf-8">
            <link rel="stylesheet" href="css/mystyle.css">
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
            <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
            <script src="js/app.js"></script>
            <script src="js/restaurants.js"></script>
        </head>
    <body onload="getRestaurantData()">
            <!-- This is where top navigation html codes is -->
            <div w3-include-html="top-navigation.html"></div>
            <!-- This is the container that holds the initial message, heading, and movies -->
    
      <div class="clearfix">
        <div class="dropdown float-right">
                <button class="dropbtn">Dropdown</button>
                <div class="dropdown-content">
                  <a href="#">Link 1</a>
                  <a href="#">Link 2</a>
                  <a href="#">Link 3</a>
                </div>
              </div>
      </div>
    
            <div class="container">
            <!-- The message will be shown when the page loads and will
            disappear after the movies are loaded -->
                <div class="row" id="parent">
                    Retrieving movies from database... Please wait...<br><br>
                    If you are seeing this message for a long time, it is likely
                    that you have a JavaScript error. Troubleshoot your script by
                    using the browser console panel now. Please use either Firefox
                    or Chrome to render this webpage.
                </div>
                <p>
                    <!-- This is the heading showing how many movies are there -->
                    <h3 id="summary"></h3>
                </p>
                <!-- Displays thumbnails of the movies here -->
                <div id="restaurantsTable" class="row"></div>
            </div>
            <br><br>
            <!-- Include footer here -->
            <div w3-include-html="footer.html"></div>
        </body>
    <script src="js/w3.js"></script>
    <script>
            //to bring in other HTML on the fly into this page
            w3.includeHTML();
    </script>
    </html>

    【讨论】:

    • 是的,这行得通,但是当我将光标移动到网页上正文的任何​​部分时,按钮就会被触发。有解决办法吗?
    • 再次检查我做了一些更改。
    【解决方案2】:

    您发布的代码的问题是您已将display: inline-block; 添加到dropdown 类。这意味着标有dropdown 类的div 默认只占用渲染其子级所需的空间。然而,与display: inline; 不同,inline-block 元素将响应设置元素或其类的widthheight 属性。因此,如果您只想在类上设置width: 100%; 属性,如in this fiddle 所示,那么您将能够使用text-align: right;

    像其他人建议的那样,您可以使用将display 属性设置为flex,当您尝试在包含元素中定位子元素时,它可以为您提供更多控制。旧浏览器也存在一些兼容性问题(主要是 IE

    但根本原因是display: inline-block; 属性。如果没有设置,我怀疑您的大多数其他尝试可能已经奏效,因为还有许多其他方法可以按照您想要的方式正确定位按钮。

    【讨论】:

      【解决方案3】:

      .mystyle{
          height: 90px;
          width: 254px;
          color: white;
          font-size: smaller;
      }
      
      .dropdown{
      float: right !important;
      }
      
      
      
      .flip-container{
          perspective: 1000px;
      }
      .flip-container:hover .flipper,
      .flip-container.hover .flipper{
          transform: rotateY(180deg);
      }
      .flip-container,
      .front
      .back{
          height: 200px;
          width: 260px;
      }
      .flipper{
          transition: 1s;
          transform-style: preserve-3d;
          position: relative;
      }
      .front,
      .back{
          backface-visibility: hidden;
          position: absolute;
          top: 0;
          left: 0;
      }
      .front{
          text-align: center;
          color: black !important;
          z-index: 2;
          transform: rotateY(0deg);
      
      }
      .back{
          transform: rotateY(180deg);
      }
      footer{
          background: #aaa;
          color: white;
      }
      .edit{
          float: right;
          padding-right: 10px;
      }
      
      nav{
      
          height: 6cm;
          background-image: url("bg.jpg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          position: absolute;   
      }
      
      
      /* Dropdown Button */
      .dropbtn {
          background-color: #4CAF50;
          color: white;
          padding: 16px;
          font-size: 16px;
          border: none;
        }
      
        /* The container <div> - needed to position the dropdown content */
        .dropdown {
          position: relative;
          display: inline-block;
        }
      
        /* Dropdown Content (Hidden by Default) */
        .dropdown-content {
          display: none;
          position: absolute;
          background-color: #f1f1f1;
          min-width: 160px;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 1;
        }
      
        /* Links inside the dropdown */
        .dropdown-content a {
          color: black;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
        }
      
        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {background-color: #ddd;}
      
        /* Show the dropdown menu on hover */
        .dropdown:hover .dropdown-content {display: block;}
      
        /* Change the background color of the dropdown button when the dropdown content is shown */
        .dropdown:hover .dropbtn {background-color: #3e8e41;}
      <!DOCTYPE html>
      <html lang="en">
          <head>
              <title>webpage title</title>
              <meta charset="utf-8">
              <link rel="stylesheet" href="css/mystyle.css">
              <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
              <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
              <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
              <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
              <script src="js/app.js"></script>
              <script src="js/restaurants.js"></script>
          </head>
      <body onload="getRestaurantData()">
              <!-- This is where top navigation html codes is -->
              <div w3-include-html="top-navigation.html"></div>
              <!-- This is the container that holds the initial message, heading, and movies -->
      
              <div class="dropdown">
                  <button class="dropbtn">Dropdown</button>
                  <div class="dropdown-content">
                    <a href="#">Link 1</a>
                    <a href="#">Link 2</a>
                    <a href="#">Link 3</a>
                  </div>
                </div>
      
              <div class="container">
              <!-- The message will be shown when the page loads and will
              disappear after the movies are loaded -->
                  <div class="row" id="parent">
                      Retrieving movies from database... Please wait...<br><br>
                      If you are seeing this message for a long time, it is likely
                      that you have a JavaScript error. Troubleshoot your script by
                      using the browser console panel now. Please use either Firefox
                      or Chrome to render this webpage.
                  </div>
                  <p>
                      <!-- This is the heading showing how many movies are there -->
                      <h3 id="summary"></h3>
                  </p>
                  <!-- Displays thumbnails of the movies here -->
                  <div id="restaurantsTable" class="row"></div>
              </div>
              <br><br>
              <!-- Include footer here -->
              <div w3-include-html="footer.html"></div>
          </body>
      <script src="js/w3.js"></script>
      <script>
              //to bring in other HTML on the fly into this page
              w3.includeHTML();
      </script>
      </html>

      【讨论】:

        【解决方案4】:
         .dropdown {
            float: right;
          }
        
        

        将此添加到您的样式中。

        【讨论】:

          【解决方案5】:

          float:right 分配给具有类下拉菜单的 div。

          【讨论】:

            【解决方案6】:

            您可以在使用 CSS Flexbox 时轻松解决此问题。避免使用float 之类的东西,这在当今的 Web 开发中被认为是一种不好的做法,因为它可以通过更好的方式解决。

            display: flex 添加到.dropbtn 的父级(在本例中为.dropdown)并将margin-left: auto 添加到.dropbtn 以将其完全移动到页面的右侧。

            更新了这两个类的样式:

            /* Dropdown Button */
            .dropbtn {
              background-color: #4CAF50;
              color: white;
              padding: 16px;
              font-size: 16px;
              border: none;
              margin-left: auto;
            }
            
            
            /* The container <div> - needed to position the dropdown content */
            
            .dropdown {
              position: relative;
              display: flex;
            }
            

            阅读更多关于using CSS Flexbox at MDN的信息。

            .mystyle {
              height: 90px;
              width: 254px;
              color: white;
              font-size: smaller;
            }
            
            .flip-container {
              perspective: 1000px;
            }
            
            .flip-container:hover .flipper,
            .flip-container.hover .flipper {
              transform: rotateY(180deg);
            }
            
            .flip-container,
            .front .back {
              height: 200px;
              width: 260px;
            }
            
            .flipper {
              transition: 1s;
              transform-style: preserve-3d;
              position: relative;
            }
            
            .front,
            .back {
              backface-visibility: hidden;
              position: absolute;
              top: 0;
              left: 0;
            }
            
            .front {
              text-align: center;
              color: black !important;
              z-index: 2;
              transform: rotateY(0deg);
            }
            
            .back {
              transform: rotateY(180deg);
            }
            
            footer {
              background: #aaa;
              color: white;
            }
            
            .edit {
              float: right;
              padding-right: 10px;
            }
            
            nav {
              height: 6cm;
              background-image: url("bg.jpg");
              background-position: center;
              background-repeat: no-repeat;
              background-size: cover;
              width: 100%;
              position: absolute;
            }
            
            
            /* Dropdown Button */
            .dropbtn {
              background-color: #4CAF50;
              color: white;
              padding: 16px;
              font-size: 16px;
              border: none;
              margin-left: auto;
            }
            
            
            /* The container <div> - needed to position the dropdown content */
            
            .dropdown {
              position: relative;
              display: flex;
            }
            
            
            /* Dropdown Content (Hidden by Default) */
            
            .dropdown-content {
              display: none;
              position: absolute;
              right: 0;
              background-color: #f1f1f1;
              min-width: 160px;
              box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
              z-index: 1;
              top: 100%;
            }
            
            
            /* Links inside the dropdown */
            
            .dropdown-content a {
              color: black;
              padding: 12px 16px;
              text-decoration: none;
              display: block;
            }
            
            
            /* Change color of dropdown links on hover */
            
            .dropdown-content a:hover {
              background-color: #ddd;
            }
            
            
            /* Show the dropdown menu on hover */
            
            .dropdown:hover .dropdown-content {
              display: block;
            }
            
            
            /* Change the background color of the dropdown button when the dropdown content is shown */
            
            .dropdown:hover .dropbtn {
              background-color: #3e8e41;
            }
            <!DOCTYPE html>
            <html lang="en">
            
            <head>
              <title>webpage title</title>
              <meta charset="utf-8">
              <link rel="stylesheet" href="css/mystyle.css">
              <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
              <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
              <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
              <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
              <script src="js/app.js"></script>
              <script src="js/restaurants.js"></script>
            </head>
            
            <body onload="getRestaurantData()">
              <!-- This is where top navigation html codes is -->
              <div w3-include-html="top-navigation.html"></div>
              <!-- This is the container that holds the initial message, heading, and movies -->
            
              <div class="dropdown">
                <button class="dropbtn">Dropdown</button>
                <div class="dropdown-content">
                  <a href="#">Link 1</a>
                  <a href="#">Link 2</a>
                  <a href="#">Link 3</a>
                </div>
              </div>
            
              <div class="container">
                <!-- The message will be shown when the page loads and will
                    disappear after the movies are loaded -->
                <div class="row" id="parent">
                  Retrieving movies from database... Please wait...<br><br> If you are seeing this message for a long time, it is likely that you have a JavaScript error. Troubleshoot your script by using the browser console panel now. Please use either Firefox or
                  Chrome to render this webpage.
                </div>
                <p>
                  <!-- This is the heading showing how many movies are there -->
                  <h3 id="summary"></h3>
                </p>
                <!-- Displays thumbnails of the movies here -->
                <div id="restaurantsTable" class="row"></div>
              </div>
              <br><br>
              <!-- Include footer here -->
              <div w3-include-html="footer.html"></div>
            </body>
            <script src="js/w3.js"></script>
            <script>
              //to bring in other HTML on the fly into this page
              w3.includeHTML();
            </script>
            
            </html>

            【讨论】:

              猜你喜欢
              • 1970-01-01
              • 1970-01-01
              • 1970-01-01
              • 1970-01-01
              • 1970-01-01
              • 2017-10-17
              • 2018-05-07
              • 1970-01-01
              • 2014-06-12
              相关资源
              最近更新 更多