.breadcrumbs {
  border-top: 1px solid #CCCCCC;
  margin-top: 128px;
}

.asterisk {
  color: #f00;
}

.comment {
  width: 100%;
  height: auto;
  padding: 100px 0px;
}

.comment .comment_box {
  width: 100%;
  height: auto;
  padding: 24px 316px;
  background: #fff;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.comment .comment_box .comment_title {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: bold;
}

.comment .comment_box .form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment .comment_box .form .form_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.comment .comment_box .form .form_item .item_title {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.comment .comment_box .form .form_item .item_title select {
  border: none;
  color: #2FA8FF;
}

.comment .comment_box .form .form_item .item_title select option {
  color: #333;
}

.comment .comment_box .form .form_item .item_desc {
  text-align: center;
  line-height: 1.625;
  font-size: 16px;
  color: #333;
}

.comment .comment_box .form .form_item .item_desc a {
  line-height: 1.625;
  font-size: 16px;
  color: #333;
}

.comment .comment_box .form .form_item .item_desc a:hover {
  color: #333;
}

.comment .comment_box .form .form_item .form_img {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.comment .comment_box .form .form_item .form_img .form_file_box {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 128px;
  height: 128px;
  border: 1px solid #e4e4e4;
  position: relative;
}

.comment .comment_box .form .form_item .form_img .form_file_box .form_file {
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.comment .comment_box .form .form_item .form_img .form_file_box img {
  width: 60px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.comment .comment_box .form .form_item .form_img .img_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.comment .comment_box .form .form_item .form_img .img_box .img_item {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 128px;
  height: 128px;
  border: 1px solid #e4e4e4;
  position: relative;
}

.comment .comment_box .form .form_item .form_img .img_box .img_item img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment .comment_box .form .form_item .form_img .img_box .img_item video {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment .comment_box .form .form_item .form_img .img_box .img_item .img_close {
  position: absolute;
  right: 5px;
  top: 5px;
  text-align: center;
  z-index: 1;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
}

.comment .comment_box .form .form_item > input {
  outline: none;
  width: 100%;
  height: 44px;
  border: 1px solid #e4e4e4;
  background: #ffff;
  border-radius: 40px;
  padding: 0 16px;
  font-size: 16px;
  color: #333;
}

.comment .comment_box .form .form_item > input::placeholder {
  color: #999;
}

.comment .comment_box .form .form_item textarea {
  border: 1px solid #e4e4e4;
  outline: none;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  padding: 16px 16px;
  border-radius: 20px;
  font-size: 16px;
  color: #333;
}

.comment .comment_box .form .form_item textarea::placeholder {
  color: #999;
}

.comment .comment_box .form .form_item .submit {
  cursor: pointer;
  border: none;
  padding: 24px 80px;
  background: #2FA8FF;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    border-top: 0vw solid #CCCCCC;
    margin-top: 19.73333vw;
  }
  .comment {
    width: 100%;
    height: auto;
    padding: 5.33333vw 0vw;
  }
  .comment .comment_box {
    width: 100%;
    height: auto;
    padding: 5.33333vw 3.2vw;
    background: #fff;
    box-shadow: 0vw 0.53333vw 2.13333vw rgba(0, 0, 0, 0.1);
  }
  .comment .comment_box .comment_title {
    margin-bottom: 4.8vw;
    font-size: 4.8vw;
    font-weight: bold;
  }
  .comment .comment_box .form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .comment .comment_box .form .form_item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vw;
  }
  .comment .comment_box .form .form_item .item_title {
    font-size: 3.2vw;
    margin-bottom: 2.13333vw;
    color: #333;
  }
  .comment .comment_box .form .form_item .item_title select {
    border: none;
    color: #2FA8FF;
  }
  .comment .comment_box .form .form_item .item_title select option {
    color: #333;
  }
  .comment .comment_box .form .form_item .item_desc {
    text-align: center;
    line-height: 1.625;
    font-size: 3.46667vw;
    color: #333;
  }
  .comment .comment_box .form .form_item .item_desc a {
    line-height: 1.625;
    font-size: 3.46667vw;
    color: #333;
  }
  .comment .comment_box .form .form_item .item_desc a:hover {
    color: #333;
  }
  .comment .comment_box .form .form_item .form_img {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .comment .comment_box .form .form_item .form_img .form_file_box {
    margin-right: 1.33333vw;
    margin-bottom: 1.33333vw;
    width: 21.33333vw;
    height: 21.33333vw;
    border: 0.13333vw solid #e4e4e4;
    position: relative;
  }
  .comment .comment_box .form .form_item .form_img .form_file_box .form_file {
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }
  .comment .comment_box .form .form_item .form_img .form_file_box img {
    width: 8vw;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .comment .comment_box .form .form_item .form_img .img_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .comment .comment_box .form .form_item .form_img .img_box .img_item {
    margin-right: 2.66667vw;
    margin-bottom: 2.66667vw;
    width: 21.33333vw;
    height: 21.33333vw;
    border: 0.13333vw solid #e4e4e4;
    position: relative;
  }
  .comment .comment_box .form .form_item .form_img .img_box .img_item img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .comment .comment_box .form .form_item .form_img .img_box .img_item .img_close {
    position: absolute;
    right: 0.66667vw;
    top: 0.66667vw;
    text-align: center;
    z-index: 1;
    background: #fff;
    width: 5.33333vw;
    height: 5.33333vw;
    border-radius: 50%;
    box-shadow: 0vw 0.26667vw 0.26667vw rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    font-size: 3.46667vw;
    line-height: 5.33333vw;
  }
  .comment .comment_box .form .form_item > input {
    outline: none;
    width: 100%;
    height: 9.33333vw;
    border: 0.13333vw solid #e4e4e4;
    background: #ffff;
    border-radius: 5.33333vw;
    padding: 0 3.46667vw;
    font-size: 3.46667vw;
    color: #333;
  }
  .comment .comment_box .form .form_item > input::placeholder {
    color: #999;
  }
  .comment .comment_box .form .form_item textarea {
    border: 0.13333vw solid #e4e4e4;
    outline: none;
    max-width: 100%;
    min-width: 100%;
    min-height: 26.66667vw;
    padding: 3.46667vw 3.46667vw;
    border-radius: 2.66667vw;
    font-size: 3.46667vw;
    color: #333;
  }
  .comment .comment_box .form .form_item textarea::placeholder {
    color: #999;
  }
  .comment .comment_box .form .form_item .submit {
    cursor: pointer;
    border: none;
    padding: 3.2vw 10.66667vw;
    background: #2FA8FF;
    border-radius: 1.33333vw;
    font-weight: 400;
    font-size: 3.73333vw;
    color: #FFFFFF;
  }
}
