@charset "utf-8";
/* 常量设置 */
.wrap {
    width: 1400px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/*对ie8设置最小宽度，防止页面错乱*/
/*for ie8*/
body {
    min-width: 1240px\9;
    overflow-x: auto;
}

/*for ie9+*/
@media all and (min-width: 0) {
    body {
        min-width: 0;
        overflow-x: hidden;
    }
}

body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
}

a:hover {
    color: #d41a16;
}

/* ::-moz-selection {
    color: #d41a16;
}

::selection {
    color: #d41a16;
} */

::-webkit-input-placeholder {
    color: #aaa;
}

.placeholder {
    color: #aaa;
}

/*基础ui*/
.fix {
    *zoom: 1;
    *clear: both;
}

.fix:before,
.fix:after {
    display: table;
    clear: both;
    content: "";
}

.oh {
    overflow: hidden;
    *zoom: 1;
}

.l {
    float: left;
}

.r {
    float: right;
}

.dib {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.el {
   /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
width: 76%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;



}

.hide {
    display: none;
}

.hidetext {
    font: 0/0 a;
    letter-spacing: -9px;
}

.arr {
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 0;
}

.opc0 {
    opacity: 0;
    filter: alpha(opacity=0);
}

/*常用动画*/
.rotation {
    -webkit-animation: rotation 0.8s infinite linear;
    animation: rotation 0.8s infinite linear;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg);
    }
}

@keyframes rotation {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.heartbeat {
    -webkit-animation: heartbeat 1.2s infinite ease-in;
    animation: heartbeat 1.2s infinite ease-in;
}

@-webkit-keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    15% {
        -webkit-transform: scale(1.3);
        opacity: 0.5;
    }

    30% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    15% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    30% {
        transform: scale(1);
        opacity: 1;
    }
}

.trigger:hover {
    -webkit-animation: trigger 0.2s ease;
    animation: trigger 0.2s ease;
}

@-webkit-keyframes trigger {
    0% {
        -webkit-transform: rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(180deg);
    }
}

@keyframes trigger {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(180deg);
    }
}

/* 等比图片 */
*[class*="rect-"] {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
}

*[class*="rect-"] ._full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    *height: auto;
}

.rect-50 {
    padding-bottom: 50%;
}

.rect-5625 {
    padding-bottom: 56.25%;
}

.rect-60 {
    padding-bottom: 60%;
}

.rect-618 {
    padding-bottom: 61.8%;
}

.rect-70 {
    padding-bottom: 70%;
}

.rect-75 {
    padding-bottom: 75%;
}

.rect-80 {
    padding-bottom: 80%;
}

.rect-90 {
    padding-bottom: 90%;
}

.rect-100 {
    padding-bottom: 100%;
}
.rect-120 {
    padding-bottom: 120%;
}
.rect-170 {
    padding-bottom: 172.8%;
}



/*字体图标*/
@font-face {
    font-family: "iconfont";
    src: url('./font/iconfont.woff2?t=1653125324058') format('woff2'),
    url('./font/iconfont.woff?t=1653125324058') format('woff'),
    url('./font/iconfont.ttf?t=1653125324058') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.3em;
    font-size: 1.1em;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0px;
    -moz-osx-font-smoothing: grayscale;
}


/* flex栅格 */

.flex-col {
    /* overflow: hidden; */
    display: -ms-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}

.flex-row {
    /* overflow: hidden; */
    display: -ms-box;

 display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex-1 {
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.flex-2 {
    -ms-flex: 2;
    flex: 2;
    min-width: 0;
}

.flex-3 {
    -ms-flex: 3;
    flex: 3;
    min-width: 0;
}

.flex-4 {
    -ms-flex: 4;
    flex: 4;
    min-width: 0;
}

.align-stretch {
    -ms-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-center {
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-center {
    -ms-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

/*css组件设置*/
.form-control,
.input-group-addon,
.btn {
    border-radius: 2px;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px rgba(102, 175, 233, 0.6);
}
.transition{
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.imgZoom img,
.imgY180 img {
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.imgZoom {
    overflow: hidden;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.imgZoom:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imgY180:hover img {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.clearfix {
    /* 为了兼容IE */
    zoom: 1;
}