@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
    height: 100%;
}
html,
body,
div,
p,
strong,
span,
a,
b,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
del,
img,
i,
em,
select,
button,
textarea,
input {
    margin: 0;
    padding: 0;
}
body {
    background: #fff;
    font-family: 'Microsoft YaHei', 'NotoSansHans-light', "Arial", 'SimSun', Serif;
    font-size: 16px;
    color: #666;
    position: relative;
    min-height: 100%;
}
a,
img,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}


table {
    border-collapse: collapse;
}
a {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    border: none;
}
i{
    font-style: normal;
}
.img img {
    width: 100%;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clear {
    clear: both;
}
.oh {
    overflow: hidden;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: normal;
}
.pr{
    position: relative;
}
.tc{
    text-align: center;
}
.db{
    display: block;
}
.clearfix:after,.box:after,.my-container:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.sca{
    overflow: hidden;
}
.cp{
    cursor: pointer;
}
.toh{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;}

/*图片悬浮放大*/
.sca img{
    -webkit-transition: -webkit-transform 1.3s;
    transition: -webkit-transform 1.3s;
    -o-transition: transform 1.3s;
    transition: transform 1.3s;
    transition: transform 1.3s, -webkit-transform 1.3s;
    -webkit-transition: transform 1.3s;
}
.sca img:hover{
    -webkit-transform: scale(1.06);
        -ms-transform: scale(1.06);
            transform: scale(1.06);
}
/*Y轴旋转*/
.rot-y img {
    -o-transition: all 1.6s;
    transition: all 1.6s;
    -webkit-transition: all 1.6s;
}
.rot-y:hover img {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
}
.cell_box {
    font-size: 0;
}
.cell_box:before {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.cell_box .cell {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}
/*scroll*/
/*::-webkit-scrollbar {
    width: 4px;
    height: 4px
}
::-webkit-scrollbar-button:vertical {
    display: none
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #ccc;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #016EC5;
}
::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #016EC5;
}
::-webkit-scrollbar-thumb:vertical:active {
    background-color: #016EC5;
}
*/

/*隐藏显示*/
.hide-ipad,.hide-mobile{display:table-cell;}
.show-ipad,.show-mobile{display:none;}
@media (max-width:1200px){
    .hide-ipad{display:none;}
    .show-ipad{display:table-cell;}
}
@media (max-width:768px){
    .hide-mobile{display:none;}
    .show-mobile{display:table-cell;}
}