* {
  margin: 0px;
  box-sizing: border-box;
  padding: 0px;
}
.clear {
  clear: both;
}
html {
  background-color: #c7c7c8;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  margin-top: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(108, 108, 108, 0.14);
  border-radius: 3px;
}
.container.first-container {
  margin-top: 75px;
}
.filepath {
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
  padding: 10px;
  color: #747474;
}
.header {
  width: 100%;
  margin-top: -1px;
}
.header .main_error {
  width: 65%;
  float: left;
  height: 125px;
  position: relative;
}
.header .main_error .php_version {
  display: block;
  position: absolute;
  right: 125px;
  top: 10px;
  color: #383838;
}
.header .main_error .project_version {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #383838;
}
.header .main_error .error_type {
  display: inline-block;
  margin: 20px;
  background-color: #e7e7ea;
  padding: 5px;
  border-radius: 8px;
  color: #4e4848;
}
.header .main_error .error {
  display: block;
  margin-left: 20px;
  margin-top: -12px;
  font-size: 18px;
  font-weight: bold;
}
.header .main_error .request {
  display: block;
  margin-left: 20px;
  margin-top: 10px;
  font-size: 14px;
}
.header .tip_error {
  width: 35%;
  float: left;
  height: 125px;
  text-align: center;
  background-color: #cb9797;
  font-weight: bold;
  border-bottom-right-radius: 2px;
  padding-top: 50px;
  color: #393939;
}
.error_data {
  width: 100%;
}
.error_data .error_menu {
  width: 25%;
  float: left;
}
.error_data .error_menu .tab {
  width: 100%;
  display: block;
  padding: 15px;
  font-size: 14px;
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  color: #4e4848;
  cursor: pointer;
  transition: background-color 0.2s;
}
.error_data .error_menu .tab:hover,
.error_data .error_menu .tab.open {
  font-weight: 600;
  background-color: #f2dfdf;
}
.error_data .error_content {
  float: left;
  width: 75%;
}
.error_data .error_content .block {
  display: none;
}
.error_data .error_content .block .block-inner .block-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
}
.error_data .error_content .block .stack-item {
  width: 5%;
  padding: 10px;
  float: left;
  font-weight: bold;
  color: #cb9797;
}
.error_data .error_content .block .stack-info {
  width: 95%;
  padding: 10px;
  float: left;
}
.error_data .error_content .block .stack-info .stack-path {
  color: #747474;
}
.error_data .error_content .block .stack-info .stack-line {
  color: #cb9797;
}
.error_data .error_content .block .error-header {
  display: block;
  word-break: break-all;
  white-space: inherit;
  padding: 10px;
  padding-bottom: 0px;
}
.error_data .error_content .block .error-header .header-key {
  display: inline;
  padding-right: 5px;
  color: #cb9797;
}
.error_data .error_content .block .error-header .header-value {
  display: inline;
  word-break: break-all;
}
