| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- :root {
- --fontColor: #515151;
- --mainWidth: 1000px;
- --mainColor: #0093fd;
- --linkColor: #308EFF;
- font-size: 14px;
- }
- html, body, div, span, applet, object, iframe,
- blockquote, pre, abbr, acronym, address, big, cite, code,
- del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var,
- b, u, i, center,
- dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend,
- table, caption, tbody, tfoot, thead, tr, th, td,
- article, aside, canvas, details, embed,
- figure, figcaption, footer, header, hgroup,
- menu, nav, output, ruby, section, summary,
- time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
- }
- /* HTML5 display-role reset for older browsers */
- article, aside, details, figcaption, figure,
- footer, header, hgroup, menu, nav, section {
- display: block;
- }
- a {
- color: var(--linkColor);
- text-decoration: none;
- }
- body {
- line-height: 1;
- background: #F4F5F9;
- }
- ol, ul {
- list-style: none;
- }
- blockquote, q {
- quotes: none;
- }
- blockquote:before, blockquote:after,
- q:before, q:after {
- content: '';
- content: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- input {
- outline: none;
- border: 0;
- }
- button {
- border: 0;
- padding: 0;
- margin: 0;
- background: transparent;
- outline: none;
- cursor: pointer;
- }
- sub {
- font-size: .6em;
- }
- img {
- max-width: 100%;
- }
- .flex{
- display: flex;
- }
- .flex-column{
- display: flex;
- flex-direction: column;
- }
- .space-between{
- display: flex;
- justify-content: space-between;
- }
- .space-around{
- display: flex;
- justify-content: space-around;
- }
- .align-center{
- display: flex;
- align-items: center;
- }
- .align-center-c{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .justify-center{
- display: flex;
- justify-content: center;
- }
- .justify-center-c{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .justify-between{
- display: flex;
- justify-content: space-between;
- }
- .margin-0-auto{
- margin:0 auto;
- }
- .inline-block{
- display: inline-block;
- }
- .gray-153{
- color:rgb(153,153,153);
- }
- .gray-34{
- color:rgb(34,34,34);
- }
- .gray-51{
- color:rgb(51,51,51);
- }
- .text-center{
- text-align: center;
- }
|