 .stopwatch .row {
     width: 100%;
     padding: 10px 0;
 }

 .stopwatch .time {
     padding: 10px;
     text-align: center;
     /* font-family: clock !important; */
     font-size: 48px;
     font-weight: 900;
     color: #666;
     /* 文字阴影 实现3D效果 */
     border: 1px dashed #000;
     border-radius: 6px;

 }

 .stopwatch .type {
     display: flex;
     justify-content: space-between;
     background-color: #fff;
     border: 1px solid #ADADAD;
     padding: 8px;
     border-radius: 4px;
 }

 .stopwatch .stopwatch_btn {
     display: flex;
     justify-content: center;
     padding: 15px 15px;
 }


 .stopwatch button {
     border: 0;
     border-radius: 4px;
     padding: 5px 15px;
     line-height: 20px;
     margin: 0 5px;
     font-size: 14px;
     cursor: pointer;
 }

 .stopwatch .stopwatch_btn button {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .stopwatch .stopwatch_btn .stop {
     color: #fff;
     display: none;
 }

 .stopwatch .stopwatch_btn i.start {
     display: inline-block;
     width: 20px;
     height: 20px;
     background-image: url('../images/start.png');
     background-size: 100%;
     margin-right: 5px;

 }

 .stopwatch .stopwatch_btn i.pause {
     display: inline-block;
     width: 20px;
     height: 20px;
     background-image: url('../images/pause.png');
     background-size: 100%;
     margin-right: 5px;

 }

 .result {
     min-height: 0px !important;
     font-size: 24px;
 }

 .corlor_Info {
     background-color: #909399;
     /* border: 1px solid #909399 !important; */
     color: #fff;
 }

 .corlor_default {
     background-color: #6366f1 !important;
     color: #fff !important;
     border: 1px solid #6366f1 !important;
 }

 .panel-body .item {
     display: flex;
     justify-content: space-between;
     line-height: 32px;
     border-bottom: 1px dashed #ddd;
 }


 .result .item {
     display: flex;
     justify-content: space-between;
     line-height: 38px;
     font-size: 16px;
 }

 .result .ret {
     display: flex;
     justify-content: space-between;
     border-bottom: 1px solid #ddd;
     font-size: 14px !important;
     line-height: 18px;
     padding: 10px 5px !important;
     color: #333 !important;
 }

 .result .color1 {
     color: #009688 !important;
     font-weight: 600;
 }

 .result .color2 {
     color: #ff0000 !important;
     font-weight: 600;
 }

 @media screen and (max-width: 992px) {
     .stopwatch .time {
         font-size: 40px;
     }
 }