body {
    font-size: 14px;
    font-family: "Helvetica Neue","Times New Roman", Helvetica, Tahoma, Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
}

@font-face {
    font-family: "DINPro";
    src: url('../fonts/DINPro-Medium.otf');
}

* {
    outline: none;
    margin: 0;
    padding: 0;
    font-style: normal;
    list-style: none;
    -webkit-text-size-adjust: none;
}

a {
    text-decoration: none;
}

input {
    line-height: normal;
}

.none {
    display: none;
}


/* a{
    color: #333;
    transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
}
a:hover{
    color: #00479d;
} */

.fl {
    float: left;
}

.fr {
    float: right;
}

.hidden {
    overflow: hidden;
}

.scroll_y {
    overflow-y: auto;
}

.scroll_x {
    overflow-x: auto;
}

.indent2 {
    text-indent: 2em;
}

.box {
    /*width: 1500px;*/
    margin: 0 auto;
}

.row {
    display: block;
    line-height: 0;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}


/** font **/

.font12 {
    font-size: 12px;
}

.font13 {
    font-size: 13px;
}

.font14 {
    font-size: 14px;
}

.font15 {
    font-size: 15px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font21 {
    font-size: 21px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font26 {
    font-size: 26px;
}

.font28 {
    font-size: 28px;
}

.font30 {
    font-size: 30px;
}

.font36 {
    font-size: 36px;
}


/** font end **/


/** 禁止复制 **/

.no-selected {
    -webkit-user-select: none;
    /*Chrome/ Safari/ Opear新版本*/
    -moz-user-select: none;
    /*Foxfire */
    -ms-user-select: none;
    /*Internet Explorer/ Edge*/
    -o-user-select: none;
    /*Opear老版本*/
    -khtml-user-select: none;
    /* Konqueror */
    -webkit-touch-callout: none;
    /* iOS Safari */
    user-select: none;
}


/** 禁止复制 end **/


/** 动画 **/

.transition__all_3s {
    transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -moz-transition: all .3s;
}

.animate-rotate-one {
    transform: rotate(0deg);
}

.animate-rotate-one:hover {
    transform: rotate(360deg);
}


/** 动画 end **/


/** 文本控制 **/

.f--left {
    text-align: left;
}

.f--center {
    text-align: center;
}

.f--right {
    text-align: right;
}

.ellipsis {
    text-overflow: ellipsis;
}

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

.nowrap {
    white-space: nowrap;
}

.bold {
    font-weight: bold;
}

.bolder {
    font-weight: bolder;
}


/** 文本控制 end **/


/** color **/

.cobase {
    color: #009944;
}

.co333 {
    color: #333333;
}

.co666 {
    color: #666666;
}

.co999 {
    color: #999999;
}

.cof1f1f1 {
    color: #f1f1f1;
}

.coccc {
    color: #cccccc;
}

.coeee {
    color: #eeeeee;
}

.base__bg {
    background: var(--base);
    color: #fff;
}

.white {
    color: white;
}

.black {
    color: black;
}

.green {
    color: #00e676;
    background: none;
}

.red {
    color: red;
}

.coblue {
    color: blue;
}


/** color end **/


/** border **/

.border_baseColor {
    border-color: #C4D2D5;
}


/** border end **/


/** flex 布局  **/

.flexbox,
.flexYbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.flexYbox {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
}

.flex {
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    position: relative;
}


/** flex 布局 end  **/