/* basic20181022 */

*, 
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-position: center;
	background-repeat: no-repeat;
}

a {
    display: block;
    color: inherit;
	outline: medium none;
	text-decoration: none;
	transition: all 0.25s ease 0s;
}
a img {
	border: 0 none;
}
button {
	cursor: pointer;
}


/* Nested Frames START */

body {
    text-align: center;
    font-family:"Noto Sans CJK SC Blod", "Source Han Sans CN Blod";
    overflow-x: hidden;
    min-height: 100vh;
    flex-direction: column;
}
.frame {
    width: 100%;
    position: relative;
    z-index: 0;
}
.center.frame {
    flex-grow: 1;
}
.container {
    width: 100%;
    max-width: 1920px;
    min-width: 1200px;
    margin: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.panel {
    width: 1200px;
    margin: auto;
}

/* Nested Frames END */


/* Basic Reusable Components START */

/* Simple Layout */
/* no specific html stucture needed */

.clear {
    clear: both;
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
}
.flex-box {
    display: box;
    /* OLD - Android 4.4- */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
   
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.ellipsis-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line[title]::after,
.ellipsis-line [title]::after {
    content: attr(title);
}

/* Basic Reusable Components END */




.center.frame {
  background-color: #eff3f5;
  padding-bottom: 20px;
}
.center.frame .panel,
.center.frame .panel .content {
  margin-top: 20px;
}
.center.frame .panel .title-bar {
  height: 50px;
  padding-bottom: 5px;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
}
.center.frame .panel .title-bar .text {
  font-size: 26px;
  color: #333333;
  font-weight: bold;
}
.center.frame .panel .title-bar .more {
  font-size: 14px;
  color: #666666;
}
.center.frame .panel .title-bar .more::after {
  content: ">";
  margin-left: 0.25em;
}