.hideScrollBar {
  /* ¹ö¶¯²Û */
  /* ¹ö¶¯Ìõ»¬¿é */
}
.hideScrollBar ::-webkit-scrollbar {
  width: 1px;
}
.hideScrollBar ::-webkit-scrollbar-track {
  -webkit-box-shadow: rgba(0, 0, 0, 0);
  border-radius: 1px;
}
.hideScrollBar ::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background: rgba(0, 0, 0, 0);
  -webkit-box-shadow: rgba(0, 0, 0, 0);
}
.hideScrollBar ::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0);
}
.znwd-container {
  position: relative;
  background-image: url("/znwd/assets/imgs/bg.png");
  background-size: cover;
  margin: 0;
  padding: 0;
}
.znwd-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 13.666px;
}
.znwd-container::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-linear-gradient(to bottom, #229fff, #147bf1);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(to bottom, #229fff, #147bf1);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(to bottom, #229fff, #147bf1);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to bottom, #229fff, #147bf1);
  z-index: -1;
}
.znwd-container .znwd {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 25px;
}
.znwd-container .znwd .znwd-titles {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.znwd-container .znwd .znwd-titles > div:nth-child(1) {
  width: 659px;
  height: 38px;
  background-size: 659px 38px;
  background-image: url(/znwd/assets/imgs/icon13.png);
  background-position-x: -112px;
  background-repeat: no-repeat;
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) {
  width: 150px;
  display: flex;
  justify-content: space-between;
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon::before {
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon:nth-child(1)::before {
  background-image: url("/znwd/assets/imgs/icon1.png");
  background-size: 22px 22px;
  width: 22px;
  height: 22px;
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon:nth-child(2)::before {
  background-image: url("/znwd/assets/imgs/icon2.png");
  background-size: 21px 20px;
  width: 21px;
  height: 20px;
}
.znwd-container .znwd .znwd-titles > div:nth-child(2) .icon:nth-child(3)::before {
  background-image: url("/znwd/assets/imgs/icon3.png");
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}
.znwd-container .znwd .chatBox {
  display: flex;
  align-items: center;
}
.znwd-container .znwd .chatBox > .left {
  width: 860px;
  height: 720px;
  position: relative;
  background-color: #f8fafc;
  border-right: 1px solid #ccc;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  flex-direction: column;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) {
  flex: 1;
  position: relative;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content {
  position: absolute;
  left: 25px;
  top: 20px;
  bottom: 50px;
  right: 25px;
  overflow-y: auto;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .headIcon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #d9ebff;
  position: relative;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .headIcon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .headIcon.robot::before {
  width: 26px;
  height: 23px;
  background-size: 26px 23px;
  background-image: url("/znwd/assets/imgs/icon12.png");
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(200, 200, 200, 0.5);
  padding: 10px;
  max-width: 480px;
  border-radius: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .tabs {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .tabs div {
  height: 30px;
  line-height: 28px;
  padding: 0 5px;
  color: #4d94f0;
  border: 1px solid #4d94f0;
  background-color: #fff;
  cursor: pointer;
  border-radius: 15px;
  margin-left: 5px;
  margin-top: 5px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .tabs div.selected {
  background-color: #4d94f0;
  color: #fff;
  cursor: auto;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer div {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer div::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer div:nth-child(1)::before {
  background-image: url("/znwd/assets/imgs/icon16.png");
  width: 16px;
  height: 17px;
  background-size: 16px 17px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer div:nth-child(2)::before {
  background-image: url("/znwd/assets/imgs/icon17.png");
  width: 16px;
  height: 17px;
  background-size: 16px 17px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .footer div + div {
  margin-left: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list {
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list div {
  position: relative;
  padding-left: 15px;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list div a {
  text-decoration: none;
  color: unset;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list div::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/znwd/assets/imgs/icon21.png");
  width: 6px;
  height: 10px;
  background-size: 6px 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list div span {
  color: #fb372f;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem .chatContent.chatPage .list div + div {
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem.left {
  display: flex;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem.left .chatContent {
  margin-left: 10px;
  border-top-left-radius: 0;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem.right {
  display: flex;
  justify-content: flex-end;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem.right .chatContent {
  background-color: #4d94f0;
  border-top-right-radius: 0;
  color: #fff;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem:nth-child(1) {
  margin-top: 5px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem:last-child {
  margin-bottom: 5px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .content .chatItem + .chatItem {
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .tags {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 0;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .tags div {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(200, 200, 200, 0.5);
  background-color: #fff;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .tags div + div {
  margin-left: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .tags div.hot {
  position: relative;
  padding-left: 25px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .tags div.hot::before {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  background-size: 11px 13px;
  background-image: url("/znwd/assets/imgs/icon18.png");
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess {
  display: none;
  padding: 15px;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  left: 10px;
  box-shadow: 0 0 5px rgba(222, 222, 222, 0.5);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  min-width: 350px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(1) {
  font-weight: bold;
  color: #4d94f0;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) {
  min-width: 350px;
  max-width: 550px;
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div {
  cursor: pointer;
  position: relative;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div + div {
  margin-top: 5px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div > div:nth-child(1) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div > div:nth-child(1) span {
  color: #fb372f;
  font-weight: bold;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div > div:nth-child(1) a {
  text-decoration: none;
  color: unset;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(1) .guess > div:nth-child(2) > div > div:nth-child(2) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  color: #999;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) {
  height: 150px;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-bottom-left-radius: 20px;
  position: relative;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) textarea {
  width: 100%;
  height: 100px;
  border: 0;
  outline: none;
  resize: none;
  padding: 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) .tips {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 10px;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) .tips div:nth-child(1) {
  color: #aaa;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) .tips div:nth-child(1) span {
  font-weight: bold;
  color: #4d94f0;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) .tips div:nth-child(3) {
  height: 35px;
  line-height: 35px;
  padding: 0 20px 0 50px;
  background-color: #4d94f0;
  border-radius: 17.5px;
  color: #fff;
  position: relative;
}
.znwd-container .znwd .chatBox > .left > div:nth-child(2) .tips div:nth-child(3)::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-image: url("/znwd/assets/imgs/icon19.png");
  background-size: 20px 18px;
  width: 20px;
  height: 18px;
}
.znwd-container .znwd .chatBox > .right {
  width: 350px;
  height: 720px;
  background-color: #ffffff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 15px;
}
.znwd-container .znwd .chatBox > .right .topZnwd .tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #ccc;
}
.znwd-container .znwd .chatBox > .right .topZnwd .tabs div {
  font-size: 16px;
  height: 30px;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .right .topZnwd .tabs div.selected {
  cursor: auto;
  font-weight: bold;
  color: #1d7df9;
  position: relative;
}
.znwd-container .znwd .chatBox > .right .topZnwd .tabs div.selected::before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1d7df9;
}
.znwd-container .znwd .chatBox > .right .topZnwd .list {
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .right .topZnwd .list div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  position: relative;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .right .topZnwd .list div + div {
  margin-top: 10px;
}
.znwd-container .znwd .chatBox > .right .topZnwd .list div::before {
  content: " ";
  width: 3px;
  height: 3px;
  background-color: #888;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.znwd-container .znwd .chatBox > .right .middle {
  margin-top: 15px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(1) {
  width: 131px;
  height: 28px;
  background-size: 131px 28px;
  background-image: url("/znwd/assets/imgs/icon14.png");
  margin: 0 auto;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(222, 222, 222, 0.5);
  background-color: #fff;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div > div:nth-child(1) {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div > div:nth-child(2) {
  text-align: center;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon5.png");
  background-size: 30px 27px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon6.png");
  background-size: 34px 27px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(3) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon7.png");
  background-size: 23px 28px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(4) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon8.png");
  background-size: 33px 31px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(5) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon9.png");
  background-size: 29px 29px;
}
.znwd-container .znwd .chatBox > .right .middle > div:nth-child(2) > div:nth-child(6) > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon10.png");
  background-size: 35px 34px;
}
.znwd-container .znwd .chatBox > .right .bottom {
  margin-top: 15px;
}
.znwd-container .znwd .chatBox > .right .bottom .title {
  position: relative;
}
.znwd-container .znwd .chatBox > .right .bottom .title > div:nth-child(1) {
  background-image: url("/znwd/assets/imgs/icon15.png");
  width: 128px;
  height: 24px;
  background-size: 128px 24px;
  margin: 0 auto;
}
.znwd-container .znwd .chatBox > .right .bottom .title > div:nth-child(2) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 20px;
  cursor: pointer;
  color: #aaa;
}
.znwd-container .znwd .chatBox > .right .bottom .title > div:nth-child(2)::before {
  content: " ";
  display: block;
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  background-image: url("/znwd/assets/imgs/icon11.png");
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.znwd-container .znwd .chatBox > .right .bottom .list {
  margin-left: -10px;
  font-size: 0;
}
.znwd-container .znwd .chatBox > .right .bottom .list div {
  font-size: 13.66px;
  margin-left: 10px;
  margin-top: 10px;
  height: 30px;
  border-radius: 15px;
  padding: 0 15px;
  background-color: #f7f7f7;
  display: inline-block;
  line-height: 30px;
}
.submitBox {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1024;
  display: none;
}
.submitBox .submitBoxInner {
  width: 400px;
  background-color: #FFF;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.submitBox .submitBoxInnerHeader {
  width: 100%;
  height: 30px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 16px;
  background-color: #147bf1;
  line-height: 30px;
}
.submitBox textarea {
  width: 380px;
  margin: 10px;
  height: 110px;
  resize: none;
  padding: 5px;
}
.submitBox .submitBoxInnerFooter {
  display: flex;
  justify-content: space-around;
}
.submitBox .submitBoxInnerFooter div {
  width: 80px;
  height: 30px;
  line-height: 30px;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}
.submitBox .submitBoxInnerFooter div:nth-child(1) {
  background-color: #ccc;
}
.submitBox .submitBoxInnerFooter div:nth-child(2) {
  background-color: #147bf1;
}

.letter-modal{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1024;
}

.letter-modal iframe{
    width: 1200px;
    height: 800px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    background: #FFF;
    border: 0;
}
