@import url(../../../public/css/rem.css);
* {
  margin: 0;
  padding: 0;
}
#app {
  width: 100%;
  /* 消息容器 */
  /* 小喇叭 */
  /* 中间部分 */
  /* 关闭消息按钮 */
  /* 消息文字 */
}
#app .message-wrap {
  position: absolute;
  top: 90px;
  left: 0;
  /* animation: moves 0.5s ease infinite; */
  z-index: 10;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
#app .message-wrap .horn {
  width: 24px;
  height: 24px;
}
#app .message-wrap .animate_set {
  position: relative;
  /* transform: translateX(-100%); */
  width: 75%;
  text-align: center;
  display: flex;
  align-items: center;
  padding-left: 24px;
  overflow: hidden;
}
#app .message-wrap .close-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
#app .message-wrap .message {
  transform: translateX(1600px);
  max-width: fit-content;
  margin-left: 12px;
  color: #ccc;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  animation: example 15s linear infinite;
}
#app .header {
  width: 100%;
  height: 88px !important;
  vertical-align: bottom;
}
#app .footer {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}
#app .wrap {
  width: 70%;
  margin: 0 auto;
  margin-top:188px;
  min-width: 1100px;
}
#app .wrap .item-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
}
#app .wrap .item-wrap img {
  max-height: 100%;
  width: 100%;
}
#app .wrap .item-wrap .img_phone {
  display: none;
}
#app .wrap .item-wrap .content {
  position: absolute;
  left: 90px;
  box-sizing: border-box;
  max-width: 560px;
}
#app .wrap .item-wrap .content h3 {
  margin: 0;
  width: 100%;
  max-height: 200px;
  font-size: 42px;
  font-weight: 400;
  line-height: 59px;
}
#app .wrap .item-wrap .content p {
  margin-top: 22px;
  width: 500px;
  max-height: 78px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
#app .wrap .item-wrap:nth-child(2n) .content {
  width: unset;
  max-width: 541px;
  position: absolute;
  left: unset;
  right: 90px;
  border: none;
}
#app .wrap .item-wrap:nth-child(2n) p {
  margin-right: 0;
}

@media screen and (max-width: 1500px) {
  #app .wrap .item-wrap{
    margin-bottom: 60px;
  }
  #app .wrap{
    margin-top:150px;
  }
}