css布局实现vip购买充值页面代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现vip购买充值页面代码

代码标签: vip 购买 充值 页面

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bootstrap.4.3.1.min.css">
    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
    <style>
@charset "utf-8";

        * {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        html {
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
        }
        body {
            background: #f8f8f8;
            font-size: 14px;
            font-family: "微软雅黑", "宋体", "Helvetica Neue", Arial, Helvetica, sans-serif;
            margin: 0 auto;
            color: #646464;
        }
        a {
            color: #646464;
            text-decoration: none;
        }
        a:hover {
            text-decoration: none;
            color: #108bf3;
        }
        *:focus {
            outline: none;
        }
        input {
            border: 1px solid #ccc;
            border-radius: 2px;
        }
        input:focus {
            outline: none;
            border-color: #108bf3;
            box-shadow: 0 0 4px rgba(41, 128, 185, 0.4);
            -webkit-transition: border-color ease-in-out .2s, -webkit-box-shadow ease-in-out .2s;
            -o-transition: border-color ease-in-out .2s, box-shadow ease-in-out .2s;
            transition: border-color ease-in-out .2s, box-shadow ease-in-out .2s;
        }
        em {
            font-style: normal;
        }

        p {
            line-height: 28px;
        }

        .text-f00 {
            color: #f00;
        }

        .line-through {
            text-decoration: line-through;
        }

        /*底部*/
        .pay {
            padding-left: 10px;
            margin: 0 auto;
        }
        .pay .pay-main {
            position: relative;
            background-color: #fff;
            min-height: 620px;
            padding-bottom: 60px;
        }
        .pay .pay-main .pay-main-title {

            height: 70px;
            margin: 0 auto;
            font-size: 16px;
            text-align: center;
            line-height: 70px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        .pay .pay-main .pay-main-title i.iconVip {
            vertical-align: middle;
            display: inline-block;
            width: 20px;
            height: 20px;
            -webkit-background-size: contain;
            background-size: contain;
            background-repeat: no-repeat;
            position: relative;
            background: url('//repo.bfw.wiki/bfwrepo/image/60d52cf59ea10.png') no-repeat;
            background-size: contain;
        }


        .pay-main .pay-rmb {
            width: 100%;
            height: 180px;
            margin: 50px auto 37px;
            text-align: center;
            overflow: unset;
            padding-left: 40px;
        }
        .pay-main .pay-rmb .pay-rmb-price:focus {
            outline: none;
            -moz-outline: none;
            color: #646464;
        }
        .pay-main .pay-rmb .pay-rmb-price:hover {
            color: #646464;

        }
        .pay-main .pay-rmb .pay-rmb-price.rmbSelect {
            border: 2px solid #FF9628;
        }
        .pay-main .pay-rmb .pay-rmb-price.rmbSelect::before {
            display: block;
        }

        .pay-main .pay-rmb .pay-rmb-price::before {
            display: none;
            c.........完整代码请登录后点击上方下载按钮下载查看

网友评论0