.shared-page-box {
    border: 0;
    width: 100%;
}
.color-gray{
    color: #9b9b9b;
}
.red {
    color: red;
}
.blue {
    color: #3d8ff4;
}
.clearfix::after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*: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,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

html ::-webkit-scrollbar {/*滚动条整体样式*/
    height: 0px;
    width: 0px;
    scrollbar-3dlight-color:#D4D0C8; /*- 最外左 -*/
    scrollbar-highlight-color:#fff; /*- 左二 -*/
    scrollbar-face-color:#E4E4E4; /*- 面子 -*/
    scrollbar-arrow-color:#666; /*- 箭头 -*/
    scrollbar-shadow-color:#808080; /*- 右二 -*/
    scrollbar-darkshadow-color:#D7DCE0; /*- 右一 -*/
    scrollbar-base-color:#D7DCE0; /*- 基色 -*/
    scrollbar-track-color:#D7DCE0;/*- 滑道 -*/
}

body {
    background: #fff;
    color: #555;
    font-size: .3733rem;
    font-family: 'Helvetica Neue', 'Hiragino Sans GB', 'Microsoft YaHei', '\9ED1\4F53', Arial, sans-serif, sans-serif;
}

td,
th,
caption {
    font-size: .3733rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

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

a {
    color: #555;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    border: none;
    vertical-align: middle;
}

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

input,
textarea,
select,
button {
    font: .3733rem "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}

table {
    border-collapse: collapse;
}

html {
    overflow-y: scroll;
}

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

.clearfix {
    *zoom: 1;
}

/* 标题头部样式 */
.title_box {
    text-align: center;
    margin: 36px 0;
}
.title_box h2 {
    color: #3d8ff4;
    font-size: 36px;
}
.title_box p{
    font-size: .3733rem;
    color: #4F5362;
}

/*公共类*/

.fl {
    float: left
}

.fr {
    float: right
}

.al {
    text-align: left
}

.ac {
    text-align: center
}

.ar {
    text-align: right
}

.hide {
    display: none
}
.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.bold {
    font-weight: bold;
}

.MB20{
    margin-bottom: 20px;
}
.MT20{
    margin-top: 20px;
}
.MT30{
    margin-top: 30px;
}
.text-indent{
    text-indent: 40px;
}
.first-title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: .2667rem;
}

/*布局*/

/* 水平对齐 */

.flexh {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* 锤子对齐 */

.flexv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex0 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.flex1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* 远端对齐 */

.flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* 近端对齐 */

.flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-vstart {
    align-items: flex-start
}

.flex-hstart {
    justify-content: flex-start
}

/* 多列 水平居中对齐 */

.flex-vcenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* 多行垂直居中对齐 */

.flex-hcenter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-vend {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-hend {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.flex-self-center {
    align-self: center;
}

.flex-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/*flex换行*/

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*文本换行*/

.break-all {
    word-break: break-all;
}

/*文本pre显示*/

.content-pro {
    white-space: pre-wrap;
}

/*手形鼠标*/

.cur-pointer {
    cursor: pointer;
}

/*阴影*/

.box-shadow {
    -webkit-box-shadow: 0 0 13px -5px #000;
    box-shadow: 0 0 13px -5px #000;
}

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

/*滚动条*/

.scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ddd;
}

.scrollbar::-webkit-scrollbar-button {
    display: block;
    width: 0.0267rem;
    height: 0.0267rem;
}

.scrollbar.auto-hide::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: transparent;
}

.scrollbar.auto-hide:hover::-webkit-scrollbar-thumb {
    background-color: #c3c3c3;
}

.scrollbar.auto-hide:hover::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#cnzz_stat_icon_1273503996{
    display: none;
}
