携程网首页案例制作(移动端)

技术选型

方案:采用单独制作移动页面方案

技术:布局采用flex布局

body样式

通常要设置最大宽度,最小宽度,水平居中,字体设置,背景颜色以及相关初始化

body {
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    font: normal 14px/1.5 Tahoma,"Lucida Grande",Verdana,"Microsoft Yahel",STXihei,hei;
    color: #000;
    background-color: #f2f2f2;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

搜索模块

搜索模块是一个固定定位,它与父亲没有关系,只与视口有关,所以设定位置为水平居中时,要以视口为标准。固定定位的盒子要有宽度

.search-index {
    /* 固定定位跟父亲没有关系 它与视口有关(屏幕) */
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 固定的盒子要有宽度 */
    width: 100%;
    height: 44px;
    max-width: 540px;
    min-width: 320px;
}
  • 左边为自适应,右边小盒子定宽定高,这就需要用到flex布局,给右边盒子顶宽定高,左边盒子不设置宽高,直接设置flex:1;即可,记得给父元素加flex属性,display:flex;
  • 右边小盒子由两个部分组成,可以只使用一个元素,给这个元素设置伪元素即可
  • 给伪元素设置宽度时,要先将其变为块级元素,之后给伪元素设置背景图即可,二倍背景图(精灵图)要先将原图等比例缩小一半,测定坐标,记得也要将原图设置background-size:原宽的一半 auto;
  • 设置文字水平居中以及颜色大小等等

        <a href="" class="user">我 的</a>
.user {
    width: 44px;
    height: 44px;
    background-color: aquamarine;
    font-size: 12px;
    text-align: center;
    color: #2eaae0;
}
.user::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url(../images/sprite.png) no-repeat -59px -194px;
    background-size: 104px auto;
    margin: 4px auto -3px;
}
  • 左边搜索区域里的搜索也可用伪元素,同样使用精灵图,但使用伪元素时要将伪元素设置为块级元素,右边的文字就会被挤下去,此时伪元素可采取定位,之后将设置search的padding-left即可
  • 文字垂直居中使用line-height时,最好不要和高度相同,而要减去边框的高度,因为使用的时CSS3模型,边框不会扩大盒子,此时的内容区会变小,若使用原高度文字会偏下
 <div class="search-index">
        <div class="search">目的地/景点/酒店</div>
        <a href="" class="user">我 的</a> 
    </div>
.search {
    position: relative;
    height: 26px;
    border: 1px solid #ccc;
    flex: 1;
    align-self: center;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    line-height: 24px;
    padding-left: 25px;
    box-shadow: 0 2px rgba(0,0,0,.2);
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.search::before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/sprite.png) no-repeat -59px -279px;
    background-size: 104px auto;
}

焦点图区域

直接添加图片即可,但因为上面搜索区域是固定定位,不占据位置,下方图片某部分会被搜索区域覆盖住,因此要设置焦点图区域的padding-left使其往下方移动

local-nav 

常见flex布局思路

    <ul class="local-nav">
        <li><a href="" title="景点 玩乐">
            <span class="local-nav-icon"></span>
            <span>景点 玩乐</span>
        </a></li>
        <li><a href="" title="景点 玩乐">
            <span class="local-nav-icon"></span>
            <span>景点 玩乐</span>
        </a></li>
        <li><a href="" title="景点 玩乐">
            <span class="local-nav-icon"></span>
            <span>景点 玩乐</span>
        </a></li>
        <li><a href="" title="景点 玩乐">
            <span class="local-nav-icon"></span>
            <span>景点 玩乐</span>
        </a></li>
        <li><a href="" title="景点 玩乐">
            <span class="local-nav-icon"></span>
            <span>景点 玩乐</span>
        </a></li>
    </ul>
.local-nav {
    display: flex;
    height: 64px;
    background-color: #fff;
    border-radius: 8px;
    margin: 3px 4px;
}
.local-nav li {
    flex: 1;
}
.local-nav a {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    /* 侧轴居中 */
    align-items: center;
}
.local-nav-icon {
    margin-top: 8px;
    width: 32px;
    height: 32px;
    background: url(../images/localnav_bg.png) no-repeat 0 0;
    background-size: 32px;
    
}

主导航栏

  •  将nav设置为flex,三个子元素设置flex:1;这样三个子元素会平分宽度
  • 第二个和第三个孩子也设置为flex,将主轴改为column,再让里面的儿子设置为flex;1;就可实现垂直平分
  • 接着向里面添加背景图和内容即可

背景线性渐变


语法1:
background:linear-gradient(起始方向,颜色1,颜色2,...);

background:-webkit-linear-gradient(left, red,blue);

background:-webkit-linear-gradient(left top,red,blue); 

  • 背景渐变必须添加浏览器私有前缀
  • 起始方向可以是:方位名词或者度数,如果省略默认就是top
    <style>
        div {
            width: 600px;
            height: 200px;
            /* 背景渐变必须添加浏览器私有前缀 */
            background: -webkit-linear-gradient(left,red,blue);
        }
    </style>
<body>
    <div></div>
</body>

 

三个子盒子就用到了线性渐变。

 

    <div class="nav">
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
    </div>
.nav {
    border-radius: 8px;
    margin: 0 4px 3px;
    overflow: hidden;
}

.nav-common {
    display: flex;
    height: 88px;
    background-color: #666;
}

.nav-common .nav-items {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nav-items a {
    flex: 1;
    text-align: center;
    line-height: 44px;
    color: #fff;
    font-size: 14px;
    /* 文字阴影 */
    text-shadow: 1px 1px rgba(0,0,0,.2);
}
.nav-items a:nth-child(1) {
    border-bottom: 1px solid #fff;
}
.nav-items:nth-child(1) a {
    border: 0;
    background: url(..//images/hotel.png) no-repeat bottom center;
    background-size: 121px auto;
}
.nav-items:nth-child(-n+2) {
    border-right: 1px solid #fff;
}
.nav-common:nth-child(1) {
    background: -webkit-linear-gradient(left,#fa5a55,#fa994d);
}
.nav-common:nth-child(2) {
    margin: 3px 0;
    background: -webkit-linear-gradient(left,#4b90ed,#53bced);
}
.nav-common:nth-child(3) {
    background: -webkit-linear-gradient(left,#34c2a9,#6cd559);
}

侧导航栏

  • 侧导航栏的制作与local-nav相似,只是多了一个换行,将父级加上flow-wrap:wrap;
  • 子元素设置为flex:20%(相对于父元素)
  • 子元素里和local-nav里的子元素一样,将a设置为flex,将主轴改为column,侧边居中即可

 

    <div class="subnav-entry">
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
    </div>

 

.subnav-entry {
    display: flex;
    border-radius: 8px;
    background-color: #fff;
    margin: 0 4px;
    flex-wrap: wrap;
}

.subnav-entry li {
    /* 里面的盒子可以写百分比 相对于父级来说的 */
    flex: 20%;
}

.subnav-entry a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subnav-entry-icon {
    width: 28px;
    height: 28px;
    margin-top: 4px;
    background: url(../images/subnav-bg.png) no-repeat;
    background-size: 28px auto;
}

 销售模块

  • 分为头部和身体,头部热门活动因为SEO优化先写文字,再利用首行缩进将文字隐藏,利用定位添加伪元素设置背景,伪元素添加定位之后就变成行内块元素了,故不需要将其变为块级元素。
  • 三角的CSS制作,显示出右边框和下边框,瞬时针旋转45度即可。
  • 下面图片区域使用flex布局,里面两个a元素,a元素均flex:1;就能水平平均分布。添加边框即可

整体代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>携程在手,说走就走</title>
    <link rel="stylesheet" href="./CSS/normalize.css">
    <link rel="stylesheet" href="./CSS/index.css">
</head>

<body>
    <div class="search-index">
        <div class="search">目的地/景点/酒店</div>
        <a href="" class="user">我 的</a>
    </div>
    <!-- 焦点图模块 -->
    <div class="focus">
        <img src="./upload/focus.jpg" alt="">
    </div>
    <!-- local-nav -->
    <ul class="local-nav">
        <li><a href="" title="景点 玩乐">
                <span class="local-nav-icon"></span>
                <span>景点 玩乐</span>
            </a></li>
        <li><a href="" title="景点 玩乐">
                <span class="local-nav-icon"></span>
                <span>景点 玩乐</span>
            </a></li>
        <li><a href="" title="景点 玩乐">
                <span class="local-nav-icon"></span>
                <span>景点 玩乐</span>
            </a></li>
        <li><a href="" title="景点 玩乐">
                <span class="local-nav-icon"></span>
                <span>景点 玩乐</span>
            </a></li>
        <li><a href="" title="景点 玩乐">
                <span class="local-nav-icon"></span>
                <span>景点 玩乐</span>
            </a></li>
    </ul>
    <!-- nav -->
    <div class="nav">
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
        <div class="nav-common">
            <div class="nav-items">
                <a href="">海外酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
            <div class="nav-items">
                <a href="">海外酒店</a><a href="">特价酒店</a>
            </div>
        </div>
    </div>
    <!-- subnav-entry -->
    <div class="subnav-entry">
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
        <li>
            <a href="">
                <span class="subnav-entry-icon"></span>
                <span>电话费</span>
            </a>
        </li>
    </div>
    <!-- 销售模块 -->
    <div class="sale-box">
        <div class="sales-hd">
            <h2>热门活动</h2>
            <a href="" class="more">获取更多福利</a>
        </div>
        <div class="sales-bd">
            <div class="row">
                <a href="">
                    <img src="./upload/pic1.jpg" alt="">
                </a>
                <a href="">
                    <img src="./upload/pic2.jpg" alt="">
                </a>
            </div>
            <div class="row">
                <a href="">
                    <img src="./upload/pic3.jpg" alt="">
                </a>
                <a href="">
                    <img src="./upload/pic4.jpg" alt="">
                </a>
            </div>
            <div class="row">
                <a href="">
                    <img src="./upload/pic5.jpg" alt="">
                </a>
                <a href="">
                    <img src="./upload/pic6.jpg" alt="">
                </a>
            </div>
        </div>
    </div>
</body>

</html>
body {
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    font: normal 14px/1.5 Tahoma, "Lucida Grande", Verdana, "Microsoft Yahel", STXihei, hei;
    color: #000;
    background-color: #f2f2f2;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

div {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #222;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 搜索模块 */
.search-index {
    /* 固定定位跟父亲没有关系 它与视口有关(屏幕) */
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 固定的盒子要有宽度 */
    width: 100%;
    height: 44px;
    max-width: 540px;
    min-width: 320px;
}

.search {
    position: relative;
    height: 26px;
    border: 1px solid #ccc;
    flex: 1;
    align-self: center;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    line-height: 24px;
    padding-left: 25px;
    box-shadow: 0 2px rgba(0, 0, 0, .2);
    background-color: #f6f6f6;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.search::before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/sprite.png) no-repeat -59px -279px;
    background-size: 104px auto;
}

.user {
    width: 44px;
    height: 44px;
    font-size: 12px;
    text-align: center;
    color: #2eaae0;
}

.user::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url(../images/sprite.png) no-repeat -59px -194px;
    background-size: 104px auto;
    margin: 4px auto -3px;
}

/* focus */
.focus {
    padding-top: 44px;
}

.focus img {
    width: 100%;
}

.local-nav {
    display: flex;
    height: 64px;
    background-color: #fff;
    border-radius: 8px;
    margin: 3px 4px;
}

.local-nav li {
    flex: 1;
}

.local-nav a {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    /* 侧轴居中 */
    align-items: center;
}

.local-nav-icon {
    margin-top: 8px;
    width: 32px;
    height: 32px;
    background: url(../images/localnav_bg.png) no-repeat 0 0;
    background-size: 32px;

}

/* nav */
.nav {
    border-radius: 8px;
    margin: 0 4px 3px;
    overflow: hidden;
}

.nav-common {
    display: flex;
    height: 88px;
    background-color: #666;
}

.nav-common .nav-items {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-items a {
    flex: 1;
    text-align: center;
    line-height: 44px;
    color: #fff;
    font-size: 14px;
    /* 文字阴影 */
    text-shadow: 1px 1px rgba(0, 0, 0, .2);
}

.nav-items a:nth-child(1) {
    border-bottom: 1px solid #fff;
}

.nav-items:nth-child(1) a {
    border: 0;
    background: url(..//images/hotel.png) no-repeat bottom center;
    background-size: 121px auto;
}

.nav-items:nth-child(-n+2) {
    border-right: 1px solid #fff;
}

.nav-common:nth-child(1) {
    background: -webkit-linear-gradient(left, #fa5a55, #fa994d);
}

.nav-common:nth-child(2) {
    margin: 3px 0;
    background: -webkit-linear-gradient(left, #4b90ed, #53bced);
}

.nav-common:nth-child(3) {
    background: -webkit-linear-gradient(left, #34c2a9, #6cd559);
}

.subnav-entry {
    display: flex;
    border-radius: 8px;
    background-color: #fff;
    margin: 0 4px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.subnav-entry li {
    /* 里面的盒子可以写百分比 相对于父级来说的 */
    flex: 20%;
}

.subnav-entry a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subnav-entry-icon {
    width: 28px;
    height: 28px;
    margin-top: 4px;
    background: url(../images/subnav-bg.png) no-repeat;
    background-size: 28px auto;
}
/* sales-box */
.sales-box {
    border-top: 1px solid #bbb;
    background-color: #fff;
    margin: 0 4px;
}
.sales-hd {
    position: relative;
    height: 44px;
    border-bottom: 1px solid #ccc;
}
.sales-hd h2 {
    position: relative;
    text-indent: -999px;
    overflow: hidden;
}
.sales-hd h2::after {
    position: absolute;
    top: 8px;
    left: 20px;
    content: "";
    width: 79px;
    height: 15px;
    background: url(../images/hot.png) no-repeat 0 -20px;
    background-size: 79px auto;
}
.sales-hd .more {
    position: absolute;
    top: 8px;
    right: 5px;
    border-radius: 8px;
    padding: 3px 20px 3px 10px;
    color: #fff;
    font-size: 12px;
    background: -webkit-linear-gradient(left,#ff506c,#ff68c6);
}
.more::after {
    content: "";
    position: absolute;
    /* 定位改变行内块 */
    top: 9px;
    right: 9px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.row {
    display: flex;
}
.row a {
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.row a:nth-child(1) {
    border-right: 1px solid #ccc;
}
.row a img {
    width: 100%;
}body {
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    font: normal 14px/1.5 Tahoma, "Lucida Grande", Verdana, "Microsoft Yahel", STXihei, hei;
    color: #000;
    background-color: #f2f2f2;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

div {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #222;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 搜索模块 */
.search-index {
    /* 固定定位跟父亲没有关系 它与视口有关(屏幕) */
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* 固定的盒子要有宽度 */
    width: 100%;
    height: 44px;
    max-width: 540px;
    min-width: 320px;
}

.search {
    position: relative;
    height: 26px;
    border: 1px solid #ccc;
    flex: 1;
    align-self: center;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    line-height: 24px;
    padding-left: 25px;
    box-shadow: 0 2px rgba(0, 0, 0, .2);
    background-color: #f6f6f6;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.search::before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../images/sprite.png) no-repeat -59px -279px;
    background-size: 104px auto;
}

.user {
    width: 44px;
    height: 44px;
    font-size: 12px;
    text-align: center;
    color: #2eaae0;
}

.user::before {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background: url(../images/sprite.png) no-repeat -59px -194px;
    background-size: 104px auto;
    margin: 4px auto -3px;
}

/* focus */
.focus {
    padding-top: 44px;
}

.focus img {
    width: 100%;
}

.local-nav {
    display: flex;
    height: 64px;
    background-color: #fff;
    border-radius: 8px;
    margin: 3px 4px;
}

.local-nav li {
    flex: 1;
}

.local-nav a {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    /* 侧轴居中 */
    align-items: center;
}

.local-nav-icon {
    margin-top: 8px;
    width: 32px;
    height: 32px;
    background: url(../images/localnav_bg.png) no-repeat 0 0;
    background-size: 32px;

}

/* nav */
.nav {
    border-radius: 8px;
    margin: 0 4px 3px;
    overflow: hidden;
}

.nav-common {
    display: flex;
    height: 88px;
    background-color: #666;
}

.nav-common .nav-items {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-items a {
    flex: 1;
    text-align: center;
    line-height: 44px;
    color: #fff;
    font-size: 14px;
    /* 文字阴影 */
    text-shadow: 1px 1px rgba(0, 0, 0, .2);
}

.nav-items a:nth-child(1) {
    border-bottom: 1px solid #fff;
}

.nav-items:nth-child(1) a {
    border: 0;
    background: url(..//images/hotel.png) no-repeat bottom center;
    background-size: 121px auto;
}

.nav-items:nth-child(-n+2) {
    border-right: 1px solid #fff;
}

.nav-common:nth-child(1) {
    background: -webkit-linear-gradient(left, #fa5a55, #fa994d);
}

.nav-common:nth-child(2) {
    margin: 3px 0;
    background: -webkit-linear-gradient(left, #4b90ed, #53bced);
}

.nav-common:nth-child(3) {
    background: -webkit-linear-gradient(left, #34c2a9, #6cd559);
}

.subnav-entry {
    display: flex;
    border-radius: 8px;
    background-color: #fff;
    margin: 0 4px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.subnav-entry li {
    /* 里面的盒子可以写百分比 相对于父级来说的 */
    flex: 20%;
}

.subnav-entry a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subnav-entry-icon {
    width: 28px;
    height: 28px;
    margin-top: 4px;
    background: url(../images/subnav-bg.png) no-repeat;
    background-size: 28px auto;
}
/* sales-box */
.sales-box {
    border-top: 1px solid #bbb;
    background-color: #fff;
    margin: 0 4px;
}
.sales-hd {
    position: relative;
    height: 44px;
    border-bottom: 1px solid #ccc;
}
.sales-hd h2 {
    position: relative;
    text-indent: -999px;
    overflow: hidden;
}
.sales-hd h2::after {
    position: absolute;
    top: 8px;
    left: 20px;
    content: "";
    width: 79px;
    height: 15px;
    background: url(../images/hot.png) no-repeat 0 -20px;
    background-size: 79px auto;
}
.sales-hd .more {
    position: absolute;
    top: 8px;
    right: 5px;
    border-radius: 8px;
    padding: 3px 20px 3px 10px;
    color: #fff;
    font-size: 12px;
    background: -webkit-linear-gradient(left,#ff506c,#ff68c6);
}
.more::after {
    content: "";
    position: absolute;
    /* 定位改变行内块 */
    top: 9px;
    right: 9px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.row {
    display: flex;
}
.row a {
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.row a:nth-child(1) {
    border-right: 1px solid #ccc;
}
.row a img {
    width: 100%;
}

最后加上通用样式即可。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/377808.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

CDH6.3.2 多 Spark 版本共存

一 部署Spark客户端 1.1 部署spark3客户端 tar -zxvf spark-3.3.1-bin-3.0.0-cdh6.3.2.tgz -C /opt/cloudera/parcels/CDH/lib cd /opt/cloudera/parcels/CDH/lib mv spark-3.3.1-bin-3.0.0-cdh6.3.2/ spark3将 CDH 集群的 spark-env.sh 复制到 /opt/cloudera/parcels/CDH/li…

RxJava Subject

目录 AsyncSubjectBehaviorSubjectPublishSubjectReplaySubjectSerializedSubjectUnicastSubject 在Rxjava中&#xff0c; Subject可以同时表示Observer和Observable, 允许从单个源到多个子观察者multiple child Observers。 除了 onSubscribe(io.reactivex.disposables.Dispos…

25、数据结构/二叉树相关练习20240207

一、二叉树相关练习 请编程实现二叉树的操作 1.二叉树的创建 2.二叉树的先序遍历 3.二叉树的中序遍历 4.二叉树的后序遍历 5.二叉树各个节点度的个数 6.二叉树的深度 代码&#xff1a; #include<stdlib.h> #include<string.h> #include<stdio.h> ty…

使用easyExcel 定义表头 字体 格式 颜色等,定义表内容,合计

HeadStyle 表头样式注解 HeadFontStyle 表头字体样式 HeadStyle(fillPatternType FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor 22) HeadFontStyle(fontHeightInPoints 12) 以下为实现效果

PostgreSql与Postgis安装

POstgresql安装 1.登录官网 PostgreSQL: Linux downloads (Red Hat family) 2.选择版本 3.安装 ### 源 yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm ### 客户端 yum install postgresql14 ###…

vue 实现一个持续时间定时器组件

vue 实现一个定时器组件 效果图子组件父组件 效果图 子组件 新建一个timer.vue文件 <template><span :class"{red: string > 600}">{{ string | formatDurationS }}</span> </template> <script>export default {name: timer,pro…

详细分析python中的from waitress import serve(附Demo)

目录 前言1. 基本知识2. serve源码分析3. 基本操作 前言 以前玩python 开发的时候写过一些见解&#xff0c;推荐阅读&#xff1a; uwsgi启动django以及uwsgi.ini的配置参数详解Django框架零基础入门 部署服务器除了Flask还有serve 在讲述serve之前&#xff0c;先讲述两者的…

[大厂实践] Netflix容器平台内核panic可观察性实践

在某些情况下&#xff0c;K8S节点和Pod会因为出错自动消失&#xff0c;很难追溯原因&#xff0c;其中一种情况就是发生了内核panic。本文介绍了Netflix容器平台针对内核panic所做的可观测性增强&#xff0c;使得发生内核panic的时候&#xff0c;能够导出信息&#xff0c;帮助排…

基于SpringBoot3的快速迭代平台

SpringBoot3的快速开发平台 前言一、技术栈二、项目结构三、总结 前言 MateBoot是一个基于SpringBoot3的快速开发平台&#xff0c;采用前后端分离的模式&#xff0c;前端采用Element Plus组件&#xff0c;后端采用SpringBoot3、Sa-token、Mybatis-Plus、Redis、RabbitMQ、Fast…

大模型为什么会有 tokens 限制?

人是以字数来计算文本长度&#xff0c;大语言模型 &#xff08;LLM&#xff09;是以 token 数来计算长度的。LLM 使用 token 把一个句子分解成若干部分。 token 可以是一个单词、一个单词中的一个部分、甚至是一个字符&#xff0c;具体取决于它使用的标记化方法 (tokenization…

【Unity】QFramework通用背包系统优化:使用Odin优化编辑器

前言 在学习凉鞋老师的课程《QFramework系统设计&#xff1a;通用背包系统》第四章时&#xff0c;笔者使用了Odin插件&#xff0c;对Item和ItemDatabase的SO文件进行了一些优化&#xff0c;使物品页面更加紧凑、更易拓展。 核心逻辑和功能没有改动&#xff0c;整体代码量减少…

AI-数学-高中-23-三角函数的平移与伸缩

原作者视频&#xff1a;三角函数】11三角函数的平移伸缩&#xff08;易&#xff09;_哔哩哔哩_bilibili 左加右减&#xff1a;针对函数中的x变化&#xff0c;上加下减&#xff1a;针对函数f(x)变化。 示例1&#xff1a; 示例2&#xff1a; 示例3

实现远程开机(电脑)的各种方法总结

一.为什么要远程开机 因为工作需要&#xff0c;总是需要打开某台不在身边的电脑&#xff0c;相信很多值友也遇到过相同的问题&#xff0c;出门在外&#xff0c;或者在公司&#xff0c;突然需要的一个文件存在家里的电脑上&#xff0c;如果家里有人可以打个电话回家&#xff0c…

响应式设计的基本原理和实现方法(超级详细)

目录 一、是什么二、实现方式媒体查询百分比vw/vhrem小结 三、总结参考文献 一、是什么 响应式网站设计&#xff08;Responsive Web design&#xff09;是一种网络页面设计布局&#xff0c;页面的设计与开发应当根据用户行为以及设备环境(系统平台、屏幕尺寸、屏幕定向等)进行…

【状态管理一】概览:状态使用、状态分类、状态具体使用

文章目录 一. 状态使用概览二. 状态的数据类型1. 算子层面2. 接口层面2.1. UML与所有状态类型介绍2.2. 内部状态&#xff1a;InternalKvState 将知识与实际的应用场景、设计背景关联起来&#xff0c;这是学以致用、刨根问底知识的一种直接方式。 本文介绍 状态数据管理&#x…

【Linux系统学习】3.Linux用户和权限

Linux用户和权限 1.认知root用户 1.1 root用户&#xff08;超级管理员&#xff09; 无论是Windows、MacOS、Linux均采用多用户的管理模式进行权限管理。 在Linux系统中&#xff0c;拥有最大权限的账户名为&#xff1a;root&#xff08;超级管理员&#xff09; 而在前期&#…

海外云手机的核心优势

随着5G时代的到来&#xff0c;云计算产业正处于高速发展的时期&#xff0c;为海外云手机的问世创造了一个可信任的背景。在资源有限且需求不断增加的时代&#xff0c;将硬件设备集中在云端&#xff0c;降低个人用户的硬件消耗&#xff0c;同时提升性能&#xff0c;这一点单单就…

Vue3中路由配置Catch all routes (“*“) must .....问题

Vue3中路由配置Catch all routes (“*”) must …问题 文章目录 Vue3中路由配置Catch all routes ("*") must .....问题1. 业务场景描述1. 加载并添加异步路由场景2. vue2中加载并添加异步路由(OK)3. 转vue3后不好使(Error)1. 代码2. 错误 2. 处理方式1. 修改前2. 修…

分布式存储中常见的容错机制:多副本、纠删码(RS、LRC、SHEC)

文章目录 分布式存储中常见的容错机制浴缸原理多副本纠删码RSLRCSHEC 总结 分布式存储中常见的容错机制 浴缸原理 在存储领域中&#xff0c;通常我们会使用浴缸曲线来描述硬盘的故障率&#xff0c;如下图。 浴缸曲线 故障率随着时间变化&#xff0c;主要分为三个阶段&#x…

设计模式2-对象池模式

对象池模式&#xff0c;Object Pool Pattern&#xff0c;当你的应用程序需要频繁创建和销毁某种资源&#xff08;比如数据库连接、线程、socket连接等&#xff09;时&#xff0c;Object Pool 设计模式就变得很有用。它通过预先创建一组对象并将它们保存在池中&#xff0c;以便在…