/***reset.css***/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
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,
img {
    margin: 0px;
    padding: 0px;
    outline: none;
    border: 0px;
}

li {
    list-style: none;
}

body {
    text-align: left;
    font-family: '微软雅黑';
    color: #252B3A;
    background: #fff;
}

html {
    font-size: 62.5%;
}

a,
ins {
    text-decoration: none;
}

a {
    color: #252B3A;
}

a:hover {
    text-decoration: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

a:visited,
a:active,
a:focus {
    text-decoration: none;
}

.contentWidth {
    width: 74vw;
    margin: 0 auto;
    min-height: calc(100vh - 19.79vw - 4.51vw) !important;
}

.hidden {
    display: none;
}

*::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 8px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 8px;
}

*::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    /* background-color: skyblue; */
    background-color: #336DFF;
    background-image: -webkit-linear-gradient( 45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

*::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ededed;
    border-radius: 10px;
}


/*自定义公用按钮组*/

.zj_btn {
    border: 1px solid #497DFD;
    background-color: #fff;
    color: #497DFD;
    padding: 9px 28px;
    font-size: 0.833333vw;
    border-radius: 4px;
    margin: 0 10px;
    cursor: pointer;
    line-height: 0.833333vw;
}

.zj_btn_sm {
    padding: 8px 17px !important;
    font-size: 0.729166vw !important;
    line-height: 0.729166vw !important;
}

.zj_btn:hover {
    background-color: #497DFD;
    color: #fff;
}


/* .zj_btn:active{
	border-color: #0073cc;
	background-color: #0073cc;
} */

.zj_btn_success {
    border: 1px solid #497DFD;
    background-color: #497DFD;
    color: #fff;
    padding: 9px 28px;
    font-size: 0.833333vw;
    border-radius: 4px;
    margin: 0 10px;
    cursor: pointer;
    line-height: 0.833333vw;
}

.zj_btn_success_sm {
    padding: 8px 17px !important;
    font-size: 0.729166vw !important;
    line-height: 0.729166vw !important;
}

.zj_btn_success:hover {
    border-color: #3670ff;
    background-color: #3670ff;
}


/* .zj_btn_success:active{
	border-color: #0073cc;
	background-color: #0073cc;
} */

.zj_btn_text {
    background-color: transparent;
    cursor: pointer;
    color: #497DFD;
    font-size: 14px;
    line-height: 14px;
    padding: 9px 11px;
}