﻿@font-face {
    font-family: 'mobileIcon'; /* project id 1540828 */
    src: url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.eot');
    src: url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.eot?#iefix') format('embedded-opentype'), url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.woff2') format('woff2'), url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.woff') format('woff'), url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.ttf') format('truetype'), url('http://at.alicdn.com/t/font_1540828_hy7izlszrvk.svg#iconfont') format('svg');
}
@font-face {
    font-family: 'comIcon'; /* Project id 1070120 */
    src: url('http://image.wjx.cn/wjxUI/font/1070120/iconfont.woff2?t=1653967509898') format('woff2'), url('http://image.wjx.cn/wjxUI/font/1070120/iconfont.woff?t=1653967509898') format('woff'), url('http://image.wjx.cn/wjxUI/font/1070120/iconfont.ttf?t=1653967509898') format('truetype');
}
.mobileIcon {
    font-family: "mobileIcon" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400 !important;
    text-decoration: none;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-hightlight-color: transparent;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}

article, aside, dialog, footer, header, section, footer, nav, figure, menu {
    display: block
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC","Microsoft YaHei","Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif !important;
    word-break: break-all;
    color: #262626;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

ul, ol, dd, dt, dl {
    list-style-type: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

a, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-border-radius: 0;
    outline: none;
    border: none;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC","Microsoft YaHei","Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}

input, img {
    border: none;
    padding: 0;
    font-size: 14px;
}

a, img {
    /*阻止长按页面，弹出菜单的方法。*/
    -webkit-touch-callout: none;
}

i, em {
    font-style: normal;
}

:focus {
    outline: none
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}
/*单行溢出*/
.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 移动端点击a链接出现蓝色背景问题解决 */
a:link, a:active, a:visited, a:hover {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
/* ============================================================
flex：定义布局为盒模型
flex-v：盒模型垂直布局
flex-1：子元素占据剩余的空间
flex-align-center：子元素垂直居中
flex-pack-center：子元素水平居中
flex-pack-justify：子元素两端对齐
兼容性：ios 4+、android 2.3+、winphone8+
============================================================ */
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
