<style>
|
.footer {
|
width: 100%;
|
padding: 24px 20px;
|
box-sizing: border-box;
|
background: #2E333A;
|
position: relative;
|
}
|
.footer_title {
|
font-weight: 600;
|
font-size: 16px;
|
color: #FFFFFF;
|
margin-bottom: 15px;
|
}
|
.footer_row {
|
width: 100%;
|
margin-bottom: 11px;
|
}
|
.footer_row {
|
width: 100%;
|
display: flex;
|
align-items: center;
|
}
|
.footer_row img {
|
width: 14px;
|
height: 14px;
|
margin-right: 16px;
|
}
|
.footer_row span {
|
font-weight: 400;
|
font-size: 13px;
|
color: #CCCCCC;
|
}
|
.footer_x {
|
width: 100%;
|
height: 1px;
|
margin-bottom: 23px;
|
background-color: #898989;
|
}
|
.footer_info {
|
width: 100%;
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
}
|
.footer_info span {
|
font-weight: 400;
|
font-size: 11px;
|
color: #999999;
|
}
|
.footer_qrcode {
|
position: absolute;
|
right: 30px;
|
top: 30px;
|
display: flex;
|
align-items: center;
|
}
|
.footer_qrcode_item {
|
width: 68px;
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
margin-left: 11px;
|
}
|
.footer_qrcode_item img {
|
width: 68px;
|
height: 68px;
|
}
|
.footer_qrcode_item span {
|
font-weight: 400;
|
font-size: 12px;
|
color: #CCCCCC;
|
margin-top: 10px;
|
}
|
.footer_lx {
|
width: 100%;
|
height: 54px;
|
background: #FFFFFF;
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
padding: 0 15px;
|
box-sizing: border-box;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
}
|
.footer_lx_left {
|
display: flex;
|
align-items: center;
|
}
|
.footer_lx_left img {
|
width: 23px;
|
height: 23px;
|
margin-right: 8px;
|
}
|
.footer_lx_left span {
|
font-weight: 500;
|
font-size: 14px;
|
color: #191B1F;
|
}
|
.footer_lx_right {
|
width: 214px;
|
height: 36px;
|
line-height: 36px;
|
text-align: center;
|
background: #FF7900;
|
box-shadow: 0px 2px 10px 0px rgba(255,121,0,0.54);
|
border-radius: 18px;
|
font-weight: 600;
|
font-size: 15px;
|
color: #FFFFFF;
|
}
|
</style>
|
<div class="footer">
|
<div class="footer_title">联系我们</div>
|
<div class="footer_row">
|
<img src="${webDomain}/images/ic_telephone@2x.png" />
|
<span>${bottom.linkPhone!''}</span>
|
</div>
|
<div class="footer_row">
|
<img src="${webDomain}/images/ic_cellphone@2x.png" />
|
<span>${bottom.linkMobile!''}</span>
|
</div>
|
<div class="footer_row">
|
<img src="${webDomain}/images/ic_time@2x.png" />
|
<span>${bottom.serverTime!''}</span>
|
</div>
|
<div class="footer_row">
|
<img src="${webDomain}/images/ic_telephone@2x.png" />
|
<span>${bottom.address!''}</span>
|
</div>
|
<div class="footer_x"></div>
|
<div class="footer_info">
|
<span>${bottom.footWords1!''}</span>
|
<span>${bottom.footWords2!''}</span>
|
</div>
|
<div style="width: 100%; height: 54px;"></div>
|
<div class="footer_qrcode">
|
<div class="footer_qrcode_item">
|
<img src="${bottom.footFullImgUrl!''}" id="qrcode" />
|
<span>微信公众号</span>
|
</div>
|
<div class="footer_qrcode_item">
|
<img src="${bottom.footFullImgUrl2!''}" />
|
<span>客服微信</span>
|
</div>
|
</div>
|
<div class="footer_lx">
|
<a href="tel:${bottom.linkMobile!''}">
|
<div class="footer_lx_left">
|
<img src="${webDomain}/images/ic_phone@2x.png" />
|
<span >电话咨询</span>
|
</div>
|
</a>
|
<div class="footer_lx_right">
|
<#if template == 'cooperationMobile.html' || template == 'aboutMobile.html'>
|
<a onclick="submitInfo()" >提交申请试用</a>
|
<#else>
|
<a href="${webDomain}/cooperationMobile.html">申请免费试用</a>
|
</#if>
|
</div>
|
</div>
|
</div>
|