@charset "UTF-8";
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin: 0; padding: 0; }
body{color: #000;font-family: "Helvetica Neue","Microsoft Yahei",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif}
ul,ol{list-style:none;}
a{text-decoration:none;color: #333333}
a:hover{color: #000}
a,span{vertical-align:middle;}
img{border:0;vertical-align:middle;}
input,button,text{vertical-align:middle;outline:none;border:none;}
button{padding: 0;cursor: pointer;}
button::-moz-focus-inner {padding: 0;}  /*for FireFox button 内置padding为0*/
textarea{outline:none;border:none;resize:none;}
input, textarea {box-sizing: content-box;outline: none;background: 0 0;font-family: "Microsoft YaHei"}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: #acacac;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color:#acacac;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color:#acacac;
}
table tr td,table{border-collapse:collapse;}  /* 可任意设置td,tr,table的边框而不会重合*/

/* 浮动 */
.rt{float:right;}
.lf{float: left;}

/*清除浮动*/
.clearfix{*zoom:1;} /* 针对IE7 hack，触发IE7的haslayout，以清除浮动 */
.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
.clearfix:after{clear:both;}

/*通用样式*/
.centerWidth {
    width: 1200px;
    margin: 0 auto;  
}

.imgW .img {
    width: 100%;
    height: 100%;
}

.num {
    font-family: "HelveticaNeue";
}

.pointer {
    cursor: pointer;
}

.db {
    display: inline-block;
    vertical-align: middle;
}

.mtl-50 {
    margin-top: 50px;
    margin-left: 50px;
}

.mt-44 {
    margin-top: 44px;
}

.mt-41 {
    margin-top: 41px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-29 {
    margin-top: 29px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-33 {
    margin-top: 33px;
}

.mt-39 {
    margin-top: 39px;
}

.mt-11 {
    margin-top: 11px;
}

.mt-22 {
    margin-top: 22px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-52 {
    margin-top: 52px;
}

.pt-9 {
    padding-top: 9px;
}

.pb-8 {
    padding-bottom: 8px;
}

/*省略号：添加元素必定包含块级元素上（有float、block、inline-block等）*/
.ellipsis, .e {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* tab切换 */

.m-tab {
    overflow: hidden;
}

.tabBtns {
    font-size: 0;
}

.tabBtns .btn {
    display: inline-block;
    vertical-align: top;
}

.tabItems>.item {
    display: none;
}

.tabItems>.item:first-child {
    display: block;
}

/* 轮播 */

.m-lb-img {
    position: relative;
    overflow: hidden;
}

.lbItems, .lbItems .a, .lbItems .a img {
    width: 100%;
    height: 100%;
}

.lbItems .a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.lbNums {
    position: absolute;
}

.lbNums span {
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    cursor: pointer;
}

.lbIists {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.lbIists .a {
    display: block;
    max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

.lbIists .a:hover {
    font-weight: bold;
}

/* 动画 */

@keyframes myfirst
{
    0%   {transform: rotate(10deg);}
    20%  {transform: rotate(-10deg);}
    40%  {transform: rotate(10deg);}
    60% {transform: rotate(-10deg);}
    80% {transform: rotate(10deg);}
    100% {transform: rotate(0deg);}
}

@-moz-keyframes myfirst /* Firefox */
{
    0%   {transform: rotate(10deg);}
    20%  {transform: rotate(-10deg);}
    40%  {transform: rotate(10deg);}
    60% {transform: rotate(-10deg);}
    80% {transform: rotate(5deg);}
    100% {transform: rotate(0deg);}
}

@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
    0%   {transform: rotate(10deg);}
    20%  {transform: rotate(-10deg);}
    40%  {transform: rotate(10deg);}
    60% {transform: rotate(-10deg);}
    80% {transform: rotate(5deg);}
    100% {transform: rotate(0deg);}
}

@-o-keyframes myfirst /* Opera */
{
    0%   {transform: rotate(10deg);}
    20%  {transform: rotate(-10deg);}
    40%  {transform: rotate(10deg);}
    60% {transform: rotate(-10deg);}
    80% {transform: rotate(5deg);}
    100% {transform: rotate(0deg);}
}

@keyframes mytwo
{
    0%   {transform: scale(1.2);}
    20%  {transform: scale(1);}
    40%  {transform: scale(1.1);}
    60% {transform: scale(1.2);}
    80% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

@-moz-keyframes mytwo /* Firefox */
{
    0%   {transform: scale(1.2);}
    20%  {transform: scale(1);}
    40%  {transform: scale(1.1);}
    60% {transform: scale(1.2);}
    80% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

@-webkit-keyframes mytwo /* Safari 和 Chrome */
{
    0%   {transform: scale(1.2);}
    20%  {transform: scale(1);}
    40%  {transform: scale(1.1);}
    60% {transform: scale(1.2);}
    80% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

@-o-keyframes mytwo /* Opera */
{
    0%   {transform: scale(1.2);}
    20%  {transform: scale(1);}
    40%  {transform: scale(1.1);}
    60% {transform: scale(1.2);}
    80% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

/* 遮罩层和弹窗 */

.mask {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.pop {
    display: none;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
}

.pop .cancel {
    position: absolute;
    cursor: pointer;
}