@charset "utf-8";
/**
 *+----------------------------------------------------------------------
	lichaoyang
 *+----------------------------------------------------------------------
 */

/* initialize css */

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
span,
a,
section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: "微软雅黑", "Microsoft YaHei", "Microsoft YaHei UI", "Segoe UI", Arial, Verdana, Sans-Serif, sans-serif;
}

em {
    font-style: normal
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

b,
strong {
    font-weight: bold;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: #333;
    font-family: "Microsoft YaHei";
}

a:hover {
    text-decoration: none;
}

fieldset,
img {
    border: 0;
}

ol,
ul,
li {
    list-style: none;
}

del,
ins {
    text-decoration: none;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
    font: inherit;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

::selection {
    background: #1E9FFF;
    color: #fff;
}

::-moz-selection {
    background: #1E9FFF;
    color: #fff;
}

/*common css*/

.pos-r {
    position: relative;
}

.pos-a {
    position: absolute;
}

.pos-f {
    position: fixed;
}

.pos-sc {
    position: static;
}

.none {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.flex {
    display: flex;
}

.table {
    display: table;
}

.tr {
    display: table-row;
}

.td {
    display: table-cell;
}

.thead {
    display: table-header-group;
}

.tbody {
    display: table-row-group;
}

.tfoot {
    display: table-footer-group;
}

.li {
    display: list-item;
}

/*对齐方式*/

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.middle {
    vertical-align: middle;
}

/*浮动*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.fn {
    float: none;
}

/* 清除浮动样式 */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

.fz12 {
    font-size: 12px;
}

.fz13 {
    font-size: 13px;
}

.fz14 {
    font-size: 14px;
}

.fz14 {
    font-size: 14px;
}

.fz15 {
    font-size: 15px;
}

.fz16 {
    font-size: 16px;
}

.fz18 {
    font-size: 18px;
}

.fz20 {
    font-size: 20px;
}

.fz24 {
    font-size: 24px;
}

.fz26 {
    font-size: 26px;
}

.fz28 {
    font-size: 28px;
}

.fz30 {
    font-size: 30px;
}

.fz32 {
    font-size: 32px;
}

.fz36 {
    font-size: 36px;
}

.fz40 {
    font-size: 40px;
}

.fz45 {
    font-size: 45px;
}

.fz50 {
    font-size: 50px;
}

.fz60 {
    font-size: 60px;
}

.fz72 {
    font-size: 72px;
}

.blod {
    font-weight: bold;
}

/*阳光----按钮全局样式
    ---yg-btn
    ---2019-1-11
*/
.yg-btn {
    box-sizing: border-box;
    border: none;
    border-radius: 2px;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    height: 58px;
    line-height: 58px;
    outline: none;
    -webkit-appearance: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    padding: 0 18px;
    text-align: center;
    white-space: nowrap;
}

.yg-btn:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: #fff;
}

.yg-btn:active {
    opacity: 1;
    filter: alpha(opacity=100);
}
.yg-btn+.yg-btn {
    margin-left: 10px;
}

.yg-btn-black {
    background-color: #000000;
    color: #ffffff;
}