@charset "UTF-8";

/*
*  reset
*/

@-ms-viewport {
    width: device-width;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, "San Francisco", 'Hiragino Sans GB', "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    color: #333;
    background-color: #fff;
}
a {
    color: #333;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition: linear 0.2s all;
    -webkit-transition: linear 0.2s all;
}

input , textarea,select{
    outline:none;
}

input::-webkit-input-placeholder {
  color: #DFDFDF;
}
input::-moz-input-placeholder {
  color: #DFDFDF;
}
input::-ms-input-placeholder {
  color: #DFDFDF;
}

ul{
    list-style: none;
}


select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #F0F0F0;
   
    /*很关键：将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
   
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-left: 15px;
    padding-right: 30px;
    
  }
   
   
  /*清除ie的默认选择框样式清除，隐藏下拉箭头*/
  
/*滚动条样式*/

/* *::-webkit-scrollbar-track {
    background-color: #fff;
    margin-right:10px;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #111;
    border-radius: 2px;
} */

body::-webkit-scrollbar-track {
    background-color: #fff;
}

body::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #606060;
    border-radius: 2px;
}

.scroll-container {
    overflow-y: auto;
}

.scroll-container::-webkit-scrollbar-track {
    background-color: #fff;
}

.scroll-container::-webkit-scrollbar {
    width: 5px;
    height:5px;
    background-color: #fff;
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #606060;
    border-radius: 2px;
}

div:focus{
  outline:none;
}


/*用户选中区域样式*/

::selection {
    background: #73a3d4;
    color: #fff;
}

::-moz-selection {
    background: #73a3d4;
    color: #fff;
}

::-webkit-selection {
    background: #73a3d4;
    color: #fff;
}

img {
    vertical-align: middle;
    border-style: none;
}


/* 宽 */
.w-1600{
    max-width: 1630px;
    padding: 0 15px;
    margin: 0 auto;
}

.lubb{
  margin: 40px auto;
}


.mt-90{
  margin-top: 90px;
}
.mt-60{
  margin-top: 60px;
}

.pt-100{

  margin-top: 100px;
}

.pt-80{
  padding-top: 80px;
}
.pt-55{
  
  padding-top: 55px;
}
.pt-20{
  padding-top: 20px;
}

.mb-20{
  margin-bottom: 20px;
}

.clearfix:after{
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

