<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*全局*/
* {
    padding: 0;
    margin: 0;
}

div,
dl,
dt,
dd,
form,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
ul,
li,
table,
th,
td,
p,
span,
a {
    border: 0;
    font-weight: normal;
}

img,
input {
    border: 0;
    vertical-align: middle;
    outline: none
}

body {
    font-family: Arial, Helvetica, "Microsoft YaHei";
    font-size: 12px;
    background: #000;
    color: #333;
}

/*html{overflow-y:scroll;}*/
ul,
ol {
    list-style-type: none;
}

li {
    list-style: none;
}

th,
td,
input {
    font-size: 12px;
}

button {
    border: none;
    cursor: pointer;
    font-size: 12px;
    background-color: transparent;
}

select {
    border-width: 1px;
    _zoom: 1;
    border-style: solid;
    padding-top: 2px;
    font-size: 12px;
}

.clear {
    clear: both;
    font-size: 1px;
    height: 0;
    visibility: hidden;
    line-height: 0;
}

.clearfix {
    zoom: 1;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/*重置webkit表单元素的默认外观*/
input[type=number]::-webkit-textfield-decoration-container {
    background-color: transparent;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
select,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/*禁用 radio 和 checkbox 默认样式*/
a,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0; )
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
    display: none;
}

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

.d-fl {
    float: left;
}

.d-fr {
    float: right;
}

.d-abso {
    position: absolute;
}

.d-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.d-rela {
    position: relative;
}

.d-fixed {
    position: fixed;
}

.d-mask {
    position: fixed;
    top: 0;
    left: 0;
}

.d-hide {
    display: none;
}

*:active {}

.animated {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.d-img {
    width: 100%;
}

/*---------以上。全局---------*/
/*竖屏时使用的样式*/
@media all and (orientation:portrait) {}

/*横屏时使用的样式*/
@media all and (orientation:landscape) {}</pre></body></html>