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

/* 所有网页共享的 css */

/* 通用的 CSS 样式：必须放在其它 CSS 前面 */

body {
    padding: 0px;
    margin: 0px;
    font-size: 0px;
    background-color: white;
    /* font-family: "宋体", "Times New Roman";
	font-family: "微软雅黑"; */
    font-family: "微软雅黑", "Microsoft YaHei", "黑体", "宋体", "Times New Roman", Arial, sans-serif;
}
div {
    word-wrap: break-word;
    word-break: break-all;
    
/*  在缩放网页显示比例小于100%时，对容器的border属性默认不做处理，仍为1px。这样两个div的最后总宽度仍大于外层宽度，自动溢出到下一行。    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
*/
    
}
img {
    border: none;
}
.scale105 img:hover {
    transform: scale(1.05, 1.05);
    transition: transform 0.7s ease;
    cursor: pointer;
}
.scale105 img {
    transform: scale(1, 1);
    transition: transform 0.7s ease;
}
.scale110 img:hover {
    transform: scale(1.1, 1.1);
    transition: transform 0.7s ease;
    cursor: pointer;
}
.scale110 img {
    transform: scale(1, 1);
    transition: transform 0.7s ease;
}
a {
    text-decoration: none;
}
.txtJastify {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
    word-break: break-all;
}
.fLeft {
    float: left;
}
.fRight {
    float: right;
}
.fClear {
    clear: both;
}
.ofHide {
    overflow: hidden;
}
.h100{
    height: 100%;
}
.w100{
    width: 100%;
}
.w100c {
    width: 100%; 
    text-align: center;
}

input:focus {
    outline: none;
}
.inputBox01 {
    background-color: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}
.inputBox02 {
    border: 0;
    padding: 0px;
    margin: 0px;
    text-align: center;
    border-radius: 16px;
    background-color: #E3DACA;
    height: 26px;
    width: 220px;
}
.menuBox {
    box-shadow: 0px 3px 3px 3px #D5F2F5;
}
.boxShadow01 {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
.boxShadow02 {
    box-shadow: 0px 0px 10px 10px #F3F3F3;
}


.txtShadow01 {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 0px 0px 0px #888;
    transition:text-shadow 0.5s
}

.txtShadow01:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 2px 2px 4px #888;
}
.txtShadow02:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 2px 2px 4px;
}
.txtShadow03:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 1px 1px 2px #000;
}

.fgxDaE6 {
    border-bottom: 01px dashed #D5D3D3;
    height: 1px;
    
    transition: border-bottom 0.5s;
}

.bgWhite {
    background-color: white;
}
.bgBlue {
    background-color: blue;
}
.bgYellow {
    background-color: yellow;
}

.wAuto {
    width: auto;
}
.imgCover {
    object-fit: cover;
}

.cWhite {
    color: white;
}
</pre></body></html>