
body {  
  font-family: 'Microsoft JhengHei';
}

.dchart {
      position: relative;
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    margin: 1.5rem auto;
	border-radius: 50%;
    box-shadow:0 0 20px #e0d0c4;
}

.doughnutTip {
  position: absolute;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #ddd;
  font-size: 14px;
	font-size:weight;
  text-shadow: 0 1px 0 #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .06em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.doughnutTip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.7);
  line-height: 0;
}

.doughnutSummary {
    position: absolute;
    top: 50px;
    left: 50px;
    color: #4d4d4d;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    width: 200px;
    height: 200px;
    padding: 0;
	display: none;
}

.doughnutSummaryTitle {
  position: absolute;
    top: 33px;
    width: 100%;
    margin-top: 0;
    font-size: 30px;
    letter-spacing: -0.01em;
}

.doughnutSummaryNumber {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -15%;
  font-size: 36px;
}
.doughnutSummaryNumber::before{
	content:"一級警戒";
	font-size:14px;
}
.dchart path:hover {
  opacity: 0.65;
}
