@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* //禁止文本缩放 字体设置  取消touch高亮效果 */
html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: "Microsoft YaHei", "system-ui", "Arial", "\9ED1\4F53", "\5B8B\4F53", sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* font-size: 62.5%; */
    /* background: #ecf0f3; */
    min-width: 1200px;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Microsoft YaHei", system-ui, "Arial", "\9ED1\4F53", "\5B8B\4F53", sans-serif;
    -webkit-overflow-scrolling: touch;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
sumary {
    margin: 0;
    padding: 0;
}

/* //清除输入框内阴影 */
input,
select,
textarea {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ol,
ul {
    list-style: none;
}

/* //禁止选中文本内容 */
*:not(input, select, textArea) {
    -webkit-user-select: none;
}

/* //禁用长按页面时的弹出菜单(iOS下有效) ,img和a标签都要加 */
img,
a {
    -webkit-touch-callout: none;
}

a,
a:active,
a:hover {
    text-decoration: none;
}

/* //去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android) */
a,
button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button:focus{
    outline: none;
}

.icon {
    vertical-align: middle;
    fill: currentColor;
    overflow: hidden;
}

/*
 *  滚动条样式
 */
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #bbbec4;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
}

.ivu-table-body::-webkit-scrollbar-thumb {
    -webkit-transform: scaleY(0.5) !important;
    transform: scaleY(0.5) !important;
    width: 6px !important;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #80848f;
}

::-webkit-scrollbar-thumb:active {
    background-color: #495060;
}

.color-white {
    color: #fff;
}

.color-black {
    color: #000;
}

.color-gray {
    color: #cccccc;
}

.color-gray2 {
    color: #999;
}

.color-red {
    color: #f00;
}

.color-blue {
    color: #019dd9;
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-black-op3 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-op5 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-op6 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-gray {
    background-color: #cccccc;
}

.bg-gray2 {
    background-color: #999;
}

.bg-red {
    background-color: #f00;
}

.bg-blue {
    background-color: #019dd9;
}

.ta-c {
    text-align: center;
}

.ta-l {
    text-align: left;
}

.ta-r {
    text-align: right;
}

.d-b {
    display: block;
}

.d-n {
    display: none;
}

.d-ib {
    display: inline-block;
}

.d-i {
    display: inline;
}

.f-l {
    float: left;
}

.f-r {
    float: right;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.hidden {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}

.clearfix:after {
    clear: both;
}

img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

.mt-0 {
    margin-top: 0px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-0 {
    margin-left: 0px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-0 {
    padding-left: 0px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
}

#homeStatic {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
}



.appHeader {}

.appHeader .head-box {
    height: 60px;
}

.appHeader .head-box .logo {
    width: 105px;
    height: 40px;
}

.appHeader .head-box .logo img {
    width: 105px;
    height: 40px;
}

.appHeader .head-box .right-box {
    flex: 1;
    margin-left: 10px;
}

.appHeader .head-box .right-box .menu-list {
}

.appHeader .head-box .right-box .menu-list-item {
    cursor: pointer;
    margin: 0 0 0 75px;
    position: relative;
    font-size:14px;
    color:rgba(0,0,0,0.85);
}


.appHeader .head-box .right-box .menu-list-item:hover,
.appHeader .head-box .right-box .menu-list-item.current {
    color: #0066FF;
}
.appHeader .head-box .right-box .menu-list-item:hover:before,
.appHeader .head-box .right-box .menu-list-item.current:before{
    position: absolute;
    content: "";
    width:20px;
    height:3px;
    background:rgba(0,102,255,1);
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.appHeader .head-box .right-box .menu-list-item .down-box-out {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 28px;
    z-index: 2;

}

.appHeader .head-box .right-box .menu-list-item .down-box-out > div{
    box-shadow:0px 4px 12px 0px rgba(0,0,0,0.2);
    background-color: #FFFFFF;
    padding: 22px 22px 25px 22px;
}

.appHeader .head-box .right-box .menu-list-item .down-box {
    white-space: nowrap;
}

.appHeader .head-box .right-box .menu-list-item:hover .down-box-out {
    display: block;
}

.appHeader .head-box .right-box .menu-list-item .down-box .down-box-item {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    margin-top: 15px;
}

.appHeader .head-box .right-box .menu-list-item .down-box .down-box-item.sty2{
    font-size: 16px;
    color: #333;
    line-height: 22px;
    border-bottom: 1px solid rgba(229,237,252,1);
    padding-bottom: 15px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.appHeader .head-box .right-box .menu-list-item .down-box .down-box-item:hover {
    color: #0066FF;
}
.appHeader .head-box .right-box .menu-list-item .down-box .down-box-item.sty2:hover {
    color: #666666;
}

.appHeader .head-box .right-box .right-box-btn button{
    margin-left: 20px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    width:107px;
    height:36px;
    border-radius:2px;
    border:1px solid rgba(0,102,255,1);
    font-size:14px;
    color:rgba(0,102,255,1);
    background-color: #fff;
}

.appHeader .head-box .right-box .right-box-btn button:hover {
    color: #fff;
    background:rgba(0,102,255,1);
    border:1px solid rgba(0,102,255,1);
}


.footer2 {
    background-color: #2D2F3E;
    /* padding: 41px 0 22px; */
}

.footer2-item1 {}

.footer2-item-logo{
    width: 193px;
    height: 74px;
}

.footer2-item-title{
    font-size:24px;
    font-weight:Medium;
    color:rgba(255,255,255,1);
    margin-top: 64px;
}
.footer2-item-title2{
    font-size:18px;
    color:rgba(255,255,255,1);
}

.footer2-item2{

}

.footer2-item2-box{
    /* margin: 0 30px; */
}

.footer2-item2-box-sty1{
    font-size:16px;
    font-weight:bold;
    color:#FFC643;
    text-align: center;
    /* margin: 7px 0 23px; */
}

.footer2-item2-box-sty2,
.footer2-item2-box-sty2 img{
    width: 100px;
    height: 100px;
}
.footer2-item2-box-sty2{
    margin: 26px 0 18px;
}

/* .footer2-item2-box-sty2{
    position: relative;
}
.footer2-item2-box-sty2:before{
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width:1px;
    height:120px;
    background:rgba(255,255,255, 0.2);
    margin-left: -30px;
} */

.footer2-item2-box-sty3{
    text-align: center;
    font-size:14px;
    color:rgba(255,255,255,.6);
    /* margin: 25px 0 0; */
}


.footer2-link {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 48px;
    line-height: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer2-link a{
    margin: 0 15px;
    color: rgba(255,255,255,0.65);
}
.footer2-link a:hover{
    color:#74B6FF;
}
.footer2-item3{
    padding: 38px 0 25px;
}
.footer2-item3-left{
    padding:10px 75px 10px 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.footer2-item3-left >div{
    margin-right: 60px;
}
.footer2-item3-left >div:last-child{
    margin-right: 0;
}
.footer2-item3-left-title ~div:hover{
    color:#74B6FF;
    cursor: pointer;
}
.footer2-item3-left-title{
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}
.footer2-item3-left-item >a{
    color: rgba(255,255,255,0.65);
}
.footer2-item3-left-item >a:hover{
    color:#74B6FF;
}



.footer2-item3-right{
    padding-left: 70px;
}
.copyright{
    /* background-color: rgba(36,38,50,1); */
    text-align: center;
    color:#fff;
    font-size: 12px;
    line-height: 67px;
}

.copyright a{
    text-decoration: underline;
    color: #fff;
}

.c-p{
    cursor: pointer;
}
