加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
page-about.php 3.85 KB
一键复制 编辑 原始数据 按行查看 历史
zengxiaoluan 提交于 2017-02-24 10:14 . page-about add clearfix
<?php
/*
Template Name: about
*/
?>
<?php
get_header();
?>
<div class="container-fluid welink-house">
<div class="col-md-12">
<img class="img-responsive center-block" src="<?php echo get_template_directory_uri(); ?>/images/about.png" alt="">
</div>
</div>
<div class="container">
<?php
while ( have_posts() ) : the_post();
?>
<?php the_content(); ?>
<?php
endwhile;
?>
<div class="row text-center major">
<div class="col-md-4">
<i class="fa fa-users fa-5x" aria-hidden="true"></i>
<h3><?php _e( '企业画像', 'orange' ); ?></h3>
<h5><?php _e( '实时采集中小企业各类流水数据,判断企业经营状况,为企业画像', 'orange' ); ?></h5>
</div>
<div class="col-md-4">
<i class="fa fa-jpy fa-5x" aria-hidden="true"></i>
<h3><?php _e( '企业征信', 'orange' ); ?></h3>
<h5><?php _e( '根据企业画像,湖南文沥面向电商企业和建筑企业推出了电商流水贷和工程融资贷两款金融产品', 'orange' ); ?></h5>
</div>
<div class="col-md-4">
<i class="fa fa-compass fa-5x" aria-hidden="true"></i>
<h3><?php _e( '金融科技', 'orange' ); ?></h3>
<h5><?php _e( '湖南文沥是一家金融科技企业,擅于用科技的力量为金融行业服务,促进金融行业的创新', 'orange' ); ?></h5>
</div>
<div class="clearfix"></div>
<div class="col-md-4">
<i class="fa fa-database fa-5x" aria-hidden="true"></i>
<h3><?php _e( '大数据', 'orange' ); ?></h3>
<h5><?php _e( '“数据为本,科技铸金”是我们的理念,在数据方面的深厚积累,助于我们在数据时代立于主动位置', 'orange' ); ?></h5>
</div>
<div class="col-md-4">
<i class="fa fa-stumbleupon fa-5x" aria-hidden="true"></i>
<h3><?php _e( '机器学习', 'orange' ); ?></h3>
<h5><?php _e( '通过机器学习完善湖南文沥的大数据风控系统,趋近智能化、全局视角化', 'orange' ); ?></h5>
</div>
<div class="col-md-4">
<i class="fa fa-home fa-5x" aria-hidden="true"></i>
<h3><?php _e( '精准营销', 'orange' ); ?></h3>
<h5><?php _e( '快速找准客户,减少推广成本,实现企业画像的价值', 'orange' ); ?></h5>
</div>
</div>
<?php get_template_part('sections/part','team'); ?>
</div>
<div class="container-fluid">
<div class="row work">
<h2 class="text-center text-muted"><strong><?php _e( '我们的工作环境', 'orange' ); ?></strong></h2>
<div class="col-md-6"><img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/images/work.jpg" alt=""></div>
<div class="col-md-6"><img class="img-responsive" src="<?php echo get_template_directory_uri(); ?>/images/work2.jpg" alt=""></div>
</div>
</div>
<style>
.major{
margin-top: 4em;
}
.major .col-md-4:hover{
background-color: aliceblue;
}
.major .fa{
color: aquamarine;
transition: all 1s;
}
.major .col-md-4:hover i.fa{
transform: rotate(360deg);
}
.welink-house{
margin-top: 1em;
}
.work{
margin-bottom: 4em;
}
.work img{
filter: brightness(0.5);
transition: all 1s;
}
.work img:hover{
filter: brightness(2);
}
</style>
<?php
get_footer();
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化