*{
    box-sizing: border-box;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ul,
li,
dl,
dd,
dt,
textarea{
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #333;
    font-family: 'Microsoft YaHei', 'SimSun';
    line-height: 24px;
}
body{
    min-width: 1200px;
    background: #fff;
}
input, textarea {
    resize: none;
    outline: 0;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
    font-style: normal;
    cursor: pointer;
}
i{
    font-style: normal;
}
img {
    border: 0;
    vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ellipsis_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis_3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.d-flex{
    display: flex;
    align-items: center;
}
.just-content-between{
    justify-content: space-between;
}
.container1200 {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
a:hover {
    text-decoration: none !important;
    outline: medium none;
    color: #88b3b7;
}
.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}
.left {
    float: left;
    display: flex;
    align-items: start;
}
.right {
    float: right;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: '';
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    border-color: #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #cccccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #cccccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #cccccc;
}












