index.html 2.0 KB
<!DOCTYPE html>
<html lang="zh">
{include file="public/head"}
<style>
    body{
        background: rgba(249,249,249,1);
    }
    .content{
        width: 100%;
        font-size: 0;
        background: rgba(249,249,249,1);
    }
    .content .titleImgContent{
        width: 100%;
        height: 146px;
    }
    .content .titleImgContent img{
        width: 100%;
        height: 100%;
    }

    /*富文本区域样式*/
    .content .contentBox{
        width: 100%;
        font-size: 18px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 25px;
        color: rgba(91,94,99,1);
        background: rgba(249,249,249,1);
    }
    .content .contentBox .contentMain{
        width: 1200px;
        /*height: 975px;*/
        padding: 25px 0 59px 0;
        margin: 0 auto;
    }

    /*在线客服按钮样式*/
    .rightButtons{
        position: fixed;
        width: 64px;
        height: 65px;
        top: 400px;
        right: 0;
        background: rgba(0,159,142,1);
    }
    .rightButtons a{
        display: block;
        width: 64px;
        height: 64px;
        text-align: center;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight:500;
        color: rgba(255,255,255,1);
    }
    .rightButtons a img{
        display: block;
        margin: 10px auto 8px auto;
    }
</style>
<body>
{include file="public/header"}
<!--主要内容-->
<div class="content">
    {include file="public/nav"}
    <!--标题图片-->
    <div class="titleImgContent">
        <img src="__CDN__/assets/store/images/helpBuyImg.png" alt="img">
    </div>
    <!--富文本内容-->
    <div class="contentBox">
        <div class="contentMain">
            {$helpbuy.content}
        </div>
    </div>
</div>

<!--右侧功能按钮-->
<div class="rightButtons">
    <a href="tencent://message/?uin={$site.service_qq}&Site=baidu.com&Menu=yes">
        <img src="__CDN__/assets/store/images/onlineService.png" alt="onlineService">
        在线客服
    </a>
</div>
{include file="public/footer"}
</body>
</html>