/* Preloder 加载界面*/
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  //background: #01070F;
  background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
  border-radius: 50%;
  animation: loader 0.8s linear infinite;
}
// 加载界面动画
@keyframes loader {
  0% {
    transform: rotate(0deg);
    //border: 4px solid #f44336;
    border: 4px solid #FFFFFF;
    border-left-color: transparent;
  }
  50% {
    transform: rotate(180deg);
    //border: 4px solid #673ab7;
    border: 4px solid #ffffff;
    border-left-color: transparent;
  }
  100% {
    transform: rotate(360deg);
    //border: 4px solid #f44336;
    border: 4px solid #ffffff;
    border-left-color: transparent;
  }
}

// 媒体查询
@media screen and (max-width: 768px) {
  .container-m {
    display: block;
  }
  .container-pc {
    display: none;
  }
  a{
    display: flex;
  }
  button{
    border: none;
  }
  ::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
  }

}

// 媒体查询
@media screen and (min-width: 769px) {
  .container-m {
    display: none;
  }
  .container-pc {
    display: block;
    min-width: 1440px;
    position: relative;
  }
  .main-container{
    min-width: 1440px;
    position: relative;
    //overflow: auto;
  }
  #header{
    position: sticky;
    top: 0;
    z-index: 999;
  }
}



