-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e2c7b3
commit 22395bc
Showing
24 changed files
with
669 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,42 @@ | ||
import React, { Component } from 'react' | ||
|
||
import React, { Component } from "react"; | ||
import "./index.scss"; | ||
import code from "images/code.png" | ||
export default class Footer extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
Footer | ||
<div className="footer"> | ||
<div className="w flex-row"> | ||
<div className="footer-left flex-4"> | ||
<ul className="flex-column"> | ||
<li>首页</li> | ||
<li>课程体系</li> | ||
<li>AI课</li> | ||
<li>火花知识</li> | ||
<li>常见问题</li> | ||
<li>软件下载</li> | ||
<li>关于我们</li> | ||
</ul> | ||
</div> | ||
<div className="footer-center flex-5 flex-column"> | ||
<p>客服:10109909</p> | ||
<p style={{ marginTop: 15 }}>工作时间:周一至周日9:00-21:00</p> | ||
<div className="zhaopin"> | ||
<span>教师招聘 - [email protected]</span> | ||
</div> | ||
<div className="hezuo"> | ||
<span>商务合作 - [email protected]</span> | ||
</div> | ||
</div> | ||
<div className="footer-right flex-3"> | ||
<p>微信服务号</p> | ||
<img className="code-img" src={code} alt=""/> | ||
</div> | ||
</div> | ||
<div className="footer-bottom flex-column align-items-center"> | ||
<p>Copyright © 2019 北京心更远科技发展有限公司 版权所有京ICP备16037757号-2</p> | ||
<p>京公网安备 11010502036019号网络文化经营许可证京网文[2018]7814-639号</p> | ||
</div> | ||
</div> | ||
) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.footer { | ||
background-color: #3c3c3c; | ||
color: #fff; | ||
font-size: 16px; | ||
padding: 50px 0 0 0; | ||
.footer-left { | ||
ul { | ||
li { | ||
height: 40px; | ||
line-height: 40px; | ||
} | ||
} | ||
} | ||
.footer-center { | ||
.zhaopin, | ||
.hezuo { | ||
margin-top: 10px; | ||
span { | ||
display: inline-block; | ||
background-color: #2f2f2f; | ||
height: 40px; | ||
line-height: 40px; | ||
padding: 0 20px; | ||
border-radius: 20px; | ||
} | ||
} | ||
|
||
} | ||
.footer-right{ | ||
.code-img{ | ||
width: 258px; | ||
height: 258px; | ||
margin-top: 20px; | ||
} | ||
|
||
} | ||
.footer-bottom{ | ||
font-size: 13px; | ||
line-height: 25px; | ||
background-color: #2f2f2f; | ||
padding: 30px 0 30px 0; | ||
color: #cdcdcd; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
.common { | ||
position: relative; | ||
|
||
background-color: #e7ecf3; | ||
.float-btns { | ||
position: fixed; | ||
right: 0; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React, { Component } from 'react' | ||
import "./index.scss" | ||
export default class Course extends Component { | ||
render() { | ||
return ( | ||
<div className="course"> | ||
<div className="banner-image"> | ||
|
||
</div> | ||
</div> | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.course{ | ||
position: relative; | ||
|
||
background-color: red; | ||
.banner-image{ | ||
width: 100%; | ||
height: 416px; | ||
background: url(https://asset.txqn.huohua.cn/image/113ae1e6-3ac6-44cb-8157-b424558b05f5.jpg) no-repeat; | ||
background-position: center; | ||
background-size: cover; | ||
} | ||
} |
Oops, something went wrong.