123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- @charset "UTF-8";
- html,
- body,
- div,
- span,
- applet,
- object,
- iframe,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- blockquote,
- pre,
- a,
- 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,
- label1,
- 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;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- hgroup,
- menu,
- nav,
- section {
- display: block;
- }
- :focus {
- outline: 0;
- }
- img {
- border: 0;
- max-width: 100%;
- }
- body {
- line-height: 1;
- }
- 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;
- }
- .clear {
- width: 100%;
- height: 0;
- line-height: 0;
- font-size: 0;
- overflow: hidden;
- clear: both;
- display: block;
- _display: inline;
- }
- .none {
- display: none;
- }
- .hidden {
- visibility: hidden;
- }
- .clearfix:after {
- clear: both;
- content: ".";
- display: block;
- height: 0;
- visibility: hidden;
- }
- .clearfix {
- display: block;
- *zoom: 1;
- }
- body {
- font-size: 14px;
- font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
- Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
- sans-serif;
- color: var(--vt-c-indigo);
- line-height: 1;
- background-color: #f0f2f5;
- }
- a {
- text-decoration: none;
- color: var(--vt-c-indigo);
- transition: all 0.4s ease-in-out;
- }
- a:hover {
- text-decoration: none;
- color: var(--vt-c-primary);
- }
- .wrapper {
- width: 100%;
- margin: 0 auto;
- }
- .wrapper .inner {
- max-width: 1644px;
- width: 100%;
- padding: 0 20px;
- margin: 0 auto;
- box-sizing: border-box;
- }
- .detail_inner {
- max-width: 1200px;
- width: 100%;
- margin: 0 auto;
- padding: 0 20px;
- }
- * {
- box-sizing: border-box;
- }
- ::selection {
- color: #fff;
- background: var(--vt-c-primary);
- }
|