@charset "UTF-8";
body {
  background: #f7f8f9;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 1050px;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .container .logo {
  color: #1b242f;
}
header .container ul {
  display: flex;
}
header .container ul li a {
  display: block;
  height: 60px;
  padding: 0 20px;
  cursor: pointer;
  text-decoration: none;
  color: #97999b;
}
header .container ul li a:hover {
  color: #5dc9c9;
}
header .container img {
  display: none;
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  header .container ul {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
  }
  header .container ul li a {
    color: #333;
  }
  header .container .logo {
    margin-left: 20px;
  }
  header .container img {
    display: block;
    margin-right: 20px;
  }
}
/* 内容 */
.main {
  width: 100%;
  padding: 20px 0;
}

.main .container {
  display: flex;
  justify-content: space-between;
}
.main .container .main-left {
  width: 740px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
.main .container .main-left .header {
  box-shadow: none;
}
.main .container .main-left .header h1 {
  margin: 15px 0px;
  line-height: 26px;
  font-size: 20px;
  color: #000;
  font-weight: bold;
}
.main .container .main-left .header .user {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.main .container .main-left .header .user img {
  width: 28px;
  height: 28px;
}
.main .container .main-left .header .user .name {
  color: #666;
  margin-left: 15px;
}
.main .container .main-left .header .user .time {
  color: #ccc;
  margin-left: 15px;
}
.main .container .main-left .header p {
  margin: 20px 0;
}
.main .container .main-left .header .reply-title {
  color: #666;
}
.main .container .main-left .header .reply-title p {
  font-size: 16px;
  line-height: 36px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  color: #555;
}
.main .container .main-left .box-item {
  margin-bottom: 20px;
}
.main .container .main-left .box-item .user {
  display: flex;
  align-items: start;
  padding-bottom: 15px;
}
.main .container .main-left .box-item .user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.main .container .main-left .box-item .user .name {
  margin-left: 10px;
  font-size: 16px;
  color: #ff9d00;
  line-height: 26px;
}
.main .container .main-left .box-item p {
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.main .container .main-left .box-item .pinglun {
  padding-left: 25px;
  margin-bottom: 20px;
}
.main .container .main-left .box-item .pinglun ul {
  padding: 15px 0;
}
.main .container .main-left .box-item .pinglun ul li {
  list-style: none;
  float: left;
  line-height: 19px;
  font-size: 12px;
  border-right: 1px solid #e5e5e5;
  color: #999;
  padding: 0 10px;
}
.main .container .main-left .box-item .reply-box {
  width: 100%;
  border: 1px solid #e5e5e5;
  margin-top: 14px;
  box-sizing: border-box;
  position: relative;
}
.main .container .main-left .box-item .reply-box .jiantou {
  position: absolute;
  left: 80px;
  top: -6px;
  transform: rotate(45deg);
  z-index: 2;
  border: 1px solid #e5e5e5;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-right: none;
  border-bottom: none;
}
.main .container .main-left .box-item .reply-box .reply-item {
  margin: 0 15px 15px 15px;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  display: flex;
}
.main .container .main-left .box-item .reply-box .reply-item .left {
  padding-right: 10px;
}
.main .container .main-left .box-item .reply-box .reply-item .left img {
  width: 32px;
  height: 32px;
}
.main .container .main-left .box-item .reply-box .reply-item .right .name {
  font-size: 15px;
  color: #ff9d00;
  margin-bottom: 5px;
}
.main .container .main-left .box-item .reply-box .reply-item .right img {
  max-width: 100%;
}
.main .container .main-left .box-item > img {
  width: 100%;
  margin-bottom: 15px;
}
.main .container .main-right {
  width: 296px;
}
.main .container .card {
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}
.main .container .card h1 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 5px;
}
.main .container .card img {
  width: 100%;
}

/* 底部 */
footer {
  background-color: #3c3c3c;
  color: #c2c2c2;
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
}
footer a {
  color: #c2c2c2;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.fw {
  font-weight: 600;
}

.didian {
  color: #f39c12;
}

.red {
  color: red;
}/*# sourceMappingURL=index.css.map */