* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  width: 100%;
}
a {
  cursor: pointer;
  text-decoration: none;
  color: white;
}

header {
  background: #d2181a;
  height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 999;
}

.header-op{
  /* background: white; */
  /* color: #d2181a; */
  opacity: 1;
  /* top: 66px; */
}

header > div {
  margin: 25px auto;
}

header div {
  display: inline-block;
  position: relative;
}

header .logo {
  margin-left: 119px;
  width: 169px;
  height: 60px;
}

header .logo img {
  width: 100%;
}

header .tips {
  width: fit-content;
  right: 10%;
  position: absolute;
  margin: 23px auto;
}

header .tips ul {
  width: 1075px;
  display: flex;
  position: relative;
}

header .tips ul li {
  font-size: 18px;
  font-family: Helvetica;
  font-weight: 400;
  color: #ffffff;
  line-height: 32px;
  position: relative;
  text-align: center;
}

header .tips ul .smile{
  width: fit-content;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: 1s;
}

header .tips ul .smile-active{
  transform: translateX(-50%) scale(1);
}

header .tips ul li:hover .smile{
  transform: translateX(-50%) scale(1);
}

header .tips ul .smile img{
  width: 26px;
}

header .tips .search img {
  width: 20px;
  margin-left: 128px;
}

.container {
  clear: all;
}

/*img{*/
/*  opacity: 0.6;*/
/*  transform: scale(1.1);*/
/*}*/


