.flexbox {  
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.page .header {
    padding-top: 38px;
    background: linear-gradient(top, #3AA6FF, #3A8FFF);
}
.page .header .search-bg {
    position: relative;
    height: 56px;
    margin: 0 9px;
    border-radius: 8px;
    overflow: hidden;
}
.page .header .search {
    height: 50px;
    position: relative;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    overflow: hidden;
    border: 1px solid #E2E2E2;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.13);
    border-radius: 8px;
}
.page .header .search input {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 20px;
    line-height: 24px;
    padding: 12px 57px 12px 16px;
    border-radius: 8px;
}
.page .header .search input::placeholder {
    color: #999;
}
.page .header .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 11;
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    background: #333333 url('../imgs/home-header-search.png') no-repeat center/31px 31px;
}
.searching {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}
.into-search .searching {
    display: block;
}
.searching .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    will-change: opacity;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    z-index: 1;
    opacity: .15;
}
.searching .content {
    position: absolute;
    z-index: 10;
    background: #fff;
    width: 100%;
    height: 264px;
    padding: 10px 0;
    box-shadow: 0 4px 28px 0 rgba(0,0,0,.2);
}
.searching .content .search input {
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
}
.searching .content .hotwords-panel h3 {
    color: #999;
    padding: 0 12px;
    margin: 14px 0 6px;
    font-weight: normal;
}
.searching .content .hotwords-panel ul {
    padding: 0 12px;
    margin-bottom: 14px;
    height: 111px;
    overflow: hidden;
}
.searching .content .hotwords-panel ul li {
    width: 48%;
    background: #f2f2f2;
    margin: 4px 0;
    border-radius: 4px;
    overflow: hidden;
    padding: 6px 12px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.searching .content .hotwords-panel ul li:nth-child(2n+1) {
    float: left;
}
.searching .content .hotwords-panel ul li:nth-child(2n) {
    float: right;
}
.searching .content .close {
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #f2f2f2;
    display: block;
    text-align: center;
    color: #a7a7a7;
}

.tab-header {
    position: relative;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #F2F2F2;
    background: #fff;
}
.tab-header li {
    width: 100%;
    padding: 0 6px;
    position: relative;
}
.tab-header li::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  background: #f2f2f2;
  right: 0;
  top: 14px;
}
.tab-header li:last-child::after {
  display: none;
}
.tab-header li.active {
    color: #388CFA;
    border-bottom: 3px solid #388CFA;
}
.tab-header .tab-hot,
.tab-header .tab-hot.active {
    color: #EB4335;
    padding-right: 12px;
}
.tab-hot img {
    width: 18px;
    vertical-align: middle;
    margin-bottom: 3px;
}
@-webkit-keyframes rotate2{from{-webkit-transform: rotate(0deg) scale(2,2)}
    to{-webkit-transform: rotate(360deg) scale(2,2)}
}
@-moz-keyframes rotate2{from{-moz-transform: rotate(0deg) scale(2,2)}
    to{-moz-transform: rotate(359deg) scale(2,2)}
}
@-o-keyframes rotate2{from{-o-transform: rotate(0deg) scale(2,2)}
    to{-o-transform: rotate(359deg) scale(2,2)}
}
@keyframes rotate2{from{transform: rotate(0deg) scale(2,2)}
    to{transform: rotate(359deg) scale(2,2)}
}
.swiper-container {
    overflow: hidden;
}
.swiper-wrapper {
    display: flex;
    display: -webkit-flex;
}
.strip li:nth-child(2n+1) {
  background: #F8F8F8;
}
.strip li:nth-child(2n) {
  background: #FFF;
}
.section > h3 {
  height: 40px;
  line-height: 40px;
  font-weight: bolder;
  padding: 0 10px 0 37px;
  position: relative;
  font-size: 20px;
}
.section > h3 a {
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  top: 8px;
}
.section > h3 a::before {
  content: '';
  width: 10px;
  height: 10px;
  left: 0;
  bottom: 0;
  position: absolute;
  background: transparent;
  border-top: 2px solid #2F2F2F;
  border-right: 2px solid #2F2F2F;
  transform: rotate(45deg) translate(-4px,-5px);
}
@media screen and (max-width: 334px) {
  .Tools .entry a {
    width: 90px;
  }
}
.policy {
  height: 50px;
  text-align: center;
}
.policy a {
  display: inline-block;
  color: #999;
  font-size: 12px;
  line-height: 50px;
  position: relative;
}
.policy .terms {
  padding-right: 17px;
}
.policy .terms::after {
  content: '';
  width: 1px;
  height: 12px;
  position: absolute;
  top: 19px;
  right: 0;
  background: #999;
}
.policy .pri {
  padding-left: 17px;
}

.news .swiper-wrapper {
  width: 500%;
}
.news .swiper-slide {
  width: 20%;
}
.news .swiper-slide {
  padding: 0 16px;
}
.news .swiper-slide a {
  padding: 10px 0;
  height: 109px;
}
.news .swiper-slide a > div:nth-child(1) {
  width: 89px;
  height: 89px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0,0,0,.2);
  flex-shrink: 0;
}
.news .swiper-slide a .content {
  padding: 0 8px;
  height: 89px;
  flex-shrink: 1;
  font-weight: 500;
  width: 100%;
}
.news a .content p:nth-child(1){
  color: #333333;
  font-size: 16px;
  line-height: 20px;
  height: 60px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news a .content p:nth-child(2){
  color: #999;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  margin-top: 16px;
}
.news a .content p:nth-child(2) span:nth-child(1){
  display: inline;
  max-width: 120px;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px 8px;
  background: #ECECEC;
  border-radius: 3px;
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  float: left;
}
.news a .content p:nth-child(2) span:nth-child(2){
  float: right;
}
.news a:nth-child(5n-4) {
  display: block;
  position: relative;
  margin: 6px -16px;
  border-radius: 10px;
  height: 210px;
  //padding-bottom: 46.646%;
}
.news a:nth-child(5n-4)::before {
  content: '';
  position: absolute;
  height: 210px;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 15;
  //background: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.5));
  //background: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.5));
}
.news a:nth-child(5n-4) div:nth-child(1){
  position: absolute;
  width: 100%;
  height: 200px;
  //padding-bottom: 46.646%;
  z-index: 10;
  background-position: center top;
}
.news .tab-header-container {
  height: 46px;
}
.news .tab-header.fix {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
}
