#carousel {
    height: 100%;
    width: 100%;
}

#carousel > div {
    height: 100%;
    width: 100%;
}

#carousel > div .focus-box {
    height: 100% !important;
    width: 100% !important;
}

#carousel > div .focus-box .focus-container {
    height: 100% !important;
}

#carousel > div .focus-box .focus-container .focus-item a img {
    height: 100% !important;
    width: 100% !important;

    object-fit: cover;
}

#carousel .focus-prev,
#carousel .focus-next {
    display: none;
}

#carousel .focus-title-bar {
    display: none !important;
}

#carousel .focus-pagination {
    height: auto;
    width: 80%;

    /* bottom: 15px; */
    right: 50%;
    
    transform: translateX(50%);

    text-align: center;

    height: 160px;
    width: 100%;
    padding-top: 130px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

#carousel .focus-pagination a.focus-page {
    height: 6px;
    width: 70px;
}

#carousel .focus-pagination a.focus-page:not(.focus-page-active) {
    background-color: rgba(255, 255, 255, 0.35);
}

/************************************************ .list-container ************************************/
.list-container {
    /* padding: 4rem 12rem 4rem; */

    display: flex;
    justify-content: space-between;

    padding: 4rem 8rem 4rem;
}

.list-container:nth-child(2n) {
    background-color: #f0f0f0;
}

.list-container:nth-child(2n+1) {
    background-color: transparent;
}

.list-container.category-container {
    display: flex;
    flex-flow: column nowrap;
}

.list-container.carousel {
    padding: 0;
}

#carousel-container {
    flex: 1 0 auto;
}

.list-container.composite {
    padding: 4rem 6rem 4rem;
    
    display: flex;
    justify-content: center;
}

.list-container.composite ul {
    display: flex;
    
    padding: 0;
    margin: 0 10px;

    flex-flow: row wrap;
    justify-content: center;
}

/************************************************ .item-list ************************************/
.item-list {
    flex: 0 0 47%;

    overflow: hidden;
}

.item-list .banner {
    display: flex;
}

.item-list .list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;

    flex: 1 0 auto;
}

.item-list .list-head .title {
    flex: 0 0 auto;

    font-size: 1.5rem;
    font-weight: bold;

    margin-right: 1.5rem;
}

.item-list .list-head .title-divider {
    flex: 1 0 auto;
    
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.item-list .list-head .list {
    margin-left: 1.5rem;

    background-color: var(--theme-color);
    color: #f0f0f0;

    padding: 4px 10px;

    border-radius: 0.25rem;
}

.item-list .more a {
    margin-left: 1.5rem;
    padding: 4px 10px;

    background-color: var(--theme-color);
    color: #f0f0f0;
    
    border-radius: 0.25rem;
}

.item-list .list-body {
    /* padding: 1rem 2rem; */
}

.item-list ul {
    list-style: none;

    margin: 0;
    padding: 0;

    max-height: 200px;
    width: 100%;

    overflow: hidden;
}

.item-list ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.item-list ul li:hover {
    /* color: #0d8e3a; */
}

.item-list ul li:hover a {
    text-decoration: underline;
}

.item-list ul li span.index {
    font-size: 0.6rem;

    flex: 0 0 0.6rem;
}

.item-list ul li a {
    flex: 1 0 50%;

    padding: 0.5rem 1.5rem 0.5rem 0.5rem;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    color: rgba(0, 0, 0, 0.85);
}

.item-list ul li span.date {
    flex: 0 0 auto;
}

#news ul.wp_article_list li,
#announcement ul.wp_article_list li {
    height: 40px;
}

#news ul.wp_article_list li .article-title,
#announcement ul.wp_article_list li .article-title {
    display: flex;
    flex: 1 0 50%;
    overflow: hidden;
}

#news div.list-body div.more,
#announcement div.list-body div.more {
    display: none;
}

/***************************************************** .hs *****************************************/
.hs-container {
    padding: 4rem;
}

.hs {
    position: relative;

    /* flex: 0 0 22.5%; */
    flex: 0 0 calc((100% - 8rem)*0.3);

    /* height: 500px; */

    overflow: hidden;

    display: flex;
    flex-flow: column nowrap;
}

.hs-header {
    text-transform: uppercase;
}

.hs-header div:first-child {
    font-size: 25px;
    font-weight: bold;
}

.hs-header div:not(:first-child) {
    margin-top: 5px;

    color: #666;

    display: none;
}

.hs-body {
    flex: 1 0 auto;
}

.hs-body .highlight-picture {
    position: relative;

    background: var(--theme-color);

    height: 200px;

    margin: 25px 0;
}

.hs-body .highlight-picture img {
    height: 100%;
    width: 100%;
    
    object-fit: cover;
    object-position: center;
}

.hs-body .highlight-picture:before {
    content: "";
    
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: var(--theme-color);

    opacity: 0.05;

    mix-blend-mode: overlay;
}

.hs-body .info > div:first-child {
    text-align: center;
    
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    
    font-size: 1.1rem;
    
    background-color: #ccc;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.hs-body .info > div:first-child img {
    margin-right: 0.5rem;

    height: 20px;
    width: 20px;
}

.hs-body .info > div:not(:first-child) {
    text-indent: 2rem;

    margin-bottom: 1rem;
}

.hs-footer {
    margin-top: 15px;
}

.hs-footer:hover {
    cursor: pointer;
}

.hs-footer .detail {
    color: var(--theme-color);
}

.hs-footer span {
    margin-right: 10px;
}

.hs.description {
    /* background: url(/img/hs/hs-bg.jpg) no-repeat; */
    /* background-size: cover; */

    /* flex: 0 0 auto; */

    background-color: var(--theme-color);
    flex: 0 0 8rem;
    padding: 0 3rem;
}

.hs.description > div {
    color: #fff;

    background-color: var(--theme-color);

    opacity: 0.95;
}

.hs.description .hs-header {
    color: #fff;

    /* font-size: 25px; */
    font-size: 2rem;
    font-weight: bold;

    /* padding: 60px 60px 0; */

    /* height: 130px; */
    
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.hs.description .hs-header i {
    /* font-size: 2rem; */

    /* margin-right: 10px; */

    margin-bottom: 20px;
}

.hs.description .hs-body {
    padding: 0 60px 20px;

    height: 370px;

    display: none;
}

.hs.credit .hs-header {
    margin-bottom: 10px;
}

.hs .list {
    padding: 8px 0;

    padding: 2px 0 8px 0;
}

.hs .list .list-header {
    font-weight: bold;

    padding: 4px 0 4px 20px;
    margin-bottom: 6px;

    color: #fff;
    background-color: var(--theme-color);
}

.hs .list .list-entry {
    display: flex;

    padding: 2px 0;
}

.hs .list .list-entry i {
    /* color: goldenrod; */
    color: #da2020;

    display: none;
}

.hs .list .list-entry img {
    height: 22px;

    margin-right: 6px;
}

.hs .list .list-entry strong {
	color: #fff;
	background-color: #c00;
	
	border-radius: 1rem;
	
	padding: 0 0.75rem;
	margin: 0 0.25rem;
	
	white-space: nowrap;
	
	font-weight: normal;
}

/***************************************************** .composite ********************************************************/
link-container ul {
    margin: 0;
    padding: 0;
}

.link-container ul li {
    list-style: none;
    
    height: 50px;
    width: 240px;

    margin: 10px 10px;
    
    box-shadow: 0 0 10px rgb(100 100 100 / 35%);
}

.link-container.composite ul {
	display: flex;
}

.link-container.composite ul li  {
	margin: 10px 10px 0px 10px;
}

.link-container ul li a {
    display: block;
    height: 100%;
    width: 100%;
}

.link-container ul li img {
    display: block;
    height: 100%;
    width: 100%;

    object-fit: cover;
}

/***************************************************** .category ********************************************************/
.category-wrapper-header {
    padding: 15px 15px;

    font-size: 1.5rem;
    font-weight: bold;
}

.category-wrapper-divider {
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 20px;
}

.category-wrapper {
    position: relative;

    flex: 0 0 100%;

    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}    

.category {
    position: relative;

    /* flex: 0 0 22.5%; */

    /*
    height: 220px;
    overflow: hidden;
    */

    /* padding: 20px 40px; */

    border-radius: 0.5rem;

    border: 1px solid transparent;

    transition: all 0.5s;
}

@media screen and (max-width:1919px) {
    .category {
        flex: 0 0 15%;
    }
}

@media screen and (min-width:1920px) {
    .category {
        flex: 0 0 22.5%;
    }
}

.category > a {
    display: inline-block;

    padding: 20px 20px;
}

.category:hover {
    cursor: pointer;

    background-color: #f0f0f0;

    border: 1px solid #cccccc;

    color: var(--theme-color);
}

.category .header {
    display: flex;
    align-items: center;
}

.category .header img {
    height: 26px;

    margin-right: 16px;
}

.category .header span {
    font-size: 20px;

    margin-bottom: -3px;
}

@media screen and (max-width:1919px) {
    .category .header span.extra-eng-name {
        display: none;
    }
}

@media screen and (min-width:1920px) {
    .category .header span.extra-eng-name {
        display: inline;
    }
}

.category .body {
    padding: 20px 52px;

    /* display: none; */
    
    position: absolute;
    left: 0;
    top: 100%;

    background-color: #fff;

    display: none;
}

.category:hover .body {
    cursor: pointer;

    background-color: #f0f0f0;

    border: 1px solid #cccccc;

    color: var(--theme-color);

    z-index: 10;
}

/********************************************** text container *************************************/
.text {
    flex: 1 0 auto;

    padding: 4rem 10%;
}

.text > h1 {
    font-size: 1.5rem;
    font-weight: bold;

    text-align: center;

    margin-bottom: 40px;
}

.text > h2 {
    font-size: 1.15rem;
    font-weight: bold;

    margin: 40px 0 20px;
    padding: 10px 16px;

    background-color: #e2e2e2;

    border-radius: 0.5rem;
}

.text p {
    text-indent: 2rem;
}

.text p.img-wrapper {
	display: block;

    text-align: center;

	margin: 40px 0;

    text-indent: 0;
}

.text p.img-wrapper img {
	border: 1px solid #ccc;

    /* width: 100%; */
    max-width: 100%;

    padding: 0;
    margin: 0;
}

.text p.img-wrapper img.pw50 {
    width: 50%;
}

.text p.img-wrapper img.pw85 {
    width: 85%;

    margin: 1rem 0 3rem;

    border: none;
}

.text p.img-wrapper .img-title {
    display: block;

    text-align: center;

    margin-top: 1.5rem;
}

.text table td,
.text .table td {
    font-size: 1rem;
}

.text p {
    font-size: 1rem;

    margin-bottom: 1rem;
}

/********************************************** wrapper container *************************************/
.wrapper {
    flex: 1 0 auto;
    
    padding: 4rem 10%;
}

/********************************************** leader page *************************************/
.wrapper .group-divider {
    border-bottom: 1px solid #ddd;

    margin: 2rem 0;
}

.wrapper .group {
    display: flex;
}

.wrapper .group .header {
    padding: 2rem 0 0 0;

    text-align: right;

    font-size: 1.25rem;
    font-weight: bold;

    flex: 0 0 8rem;
    
    display: none;
}

.wrapper .group .body {
    display: flex;
    /* flex-flow: column nowrap; */
    flex-flow: row wrap;

    /* margin-left: 6rem; */
}

.wrapper .group .body .entry {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;

    padding: 0.25rem 0;
    margin: 1rem 0;

    width: 300px;
    width: 350px;
}

.wrapper .group .body .entry .avatar {
    height: 60px;
    width: 60px;

    border-radius: 50%;
    overflow: hidden;

    background-color: #fff;
    box-shadow: 0 0 2px 3px var(--theme-color);

    margin-right: 1.5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .group .body .entry img {
    height: 56px;
    width: 56px;

    border: 2px solid #888;
    background-color: var(--theme-color);

    border-radius: 50%;
    overflow: hidden;
}

.wrapper .group .body .entry .info {
    display: flex;
    flex-flow: column nowrap;
    
    justify-content: space-evenly;
    
    height: 60px;
}

.wrapper .group .body .entry .info div:first-child {
    font-size: 1.25rem;
    font-weight: bold;
}

.wrapper .group .body .entry .info div:last-child {
    color: rgba(0, 0, 0, 0.65);
}

/********************************************** teacher page *************************************/
.info-wrappers {
	flex: 1 0 auto;
	
	margin: 4rem auto 4rem;

    position: relative;
}

.info-wrappers .indicator.prev,
.info-wrappers .indicator.next {
    position: absolute;
    height: 100%;
    top: 0;

    font-size: 40px;
    font-weight: bold;

    color: rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
}

.info-wrappers .indicator:hover {
    color: rgba(0, 0, 0, 0.75);
}

.info-wrappers .indicator.prev {
    left: 0;
    
    transform: translate(-200%, 0);
}

.info-wrappers .indicator.next {
    right: 0;

    transform: translate(200%, 0);
}

.info-wrapper {
    width: auto;
    overflow: hidden;

    position: relative;
}

.entry-wrapper {
    display: flex;
    flex-flow: row nowrap;
    
    position: relative;
    left: 0;
    
    transition: left 0.5s;
}

.entry-wrapper .entry {
    position: relative;

    display: flex;
    flex-flow: column nowrap;
    
    padding: 50px 40px;
    /* margin: 0 5px 5px 0; */
    margin: 4px 2px;
    
    background-color: #f4f4f4;
    
    border-radius: 0.5rem;
    
    transition: background-color 0.25s;
}

.entry-wrapper .entry:hover {
    cursor: pointer;

    /* background-color: #78909c; */
    background-color: rgba(200, 200, 200, 0.75);

    /* color: #fff; */
}

.entry-wrapper .entry .avatar {
    height: 160px;
    width: 160px;

    border-radius: 50%;
    overflow: hidden;

    background-color: #fff;
    box-shadow: 0 0 2px 3px var(--theme-color);

    display: flex;
    justify-content: center;
    align-items: center;
}

.entry-wrapper .entry .avatar img {
    height: calc(100% - 4px);
    width: calc(100% - 4px);

    overflow: hidden;

    border: 2px solid #888;
    border-radius: 50%;

    background-color: var(--theme-color);
}

.entry-wrapper .entry div:not(:first-child) {
    text-align: center;

    margin: 1.5rem 0 0;
}

.entry-wrapper .entry div.profile {
    display: none;
}

#detail-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;

    /* background-color: rgba(255, 255, 255, 0.9); */
    
    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

#detail {
    /* background-color: #78909c; */
    background-color: var(--theme-color);

	max-height: 500px;
	
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;

	border: 1px solid #ccc;
    border-radius: 10px;
    
    overflow: hidden;
}

#detail img {
    width: 300px;
    height: 400px;
}

#detail .profile-entry-wrapper {
    padding: 40px 90px 40px 60px;
    
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    
    font-size: 1rem;
    font-family: '\5B8B\4F53';
    
    max-height: 400px;
}

#detail .profile-entry {
    display: flex;
    justify-content: flex-start;

    color: #fff;

    margin-bottom: 0.25rem;
}

#detail .profile-entry span {
    flex: 0 0 20px;

    text-align: center;

    align-self: flex-start;
}

#detail .profile-entry span:first-child {
    /* flex: 0 0 80px; */
    flex: 0 0 6rem;

    text-align: right;

    /* background-color: rgba(100, 100,100, 0.55); */

    border-radius: 0.5rem;

    padding-right: 0.75rem;
}

#detail .profile-entry span:last-child {
    flex: 1 0 auto;
    text-align: left;
}

/********************************************** theory page *************************************/
.text .table.theory {
    margin-bottom: 5rem;
}

.text .table.theory thead th:nth-child(1), 
.text .table.theory tbody td:nth-child(1) {
	width: 80px;
	text-align: center;
}

.text .table.theory thead th:nth-child(2), 
.text .table.theory tbody td:nth-child(2) {
	width: 180px;
	text-align: center;
}

.text .table.theory thead th:nth-child(3),
.text .table.theory thead th:nth-child(5),
.text .table.theory thead th:nth-child(7),
.text .table.theory tbody td:nth-child(3),
.text .table.theory tbody td:nth-child(5),
.text .table.theory tbody td:nth-child(7) {
	width: 120px;
	text-align: center;
}

/********************************************** teamwork page *************************************/
.text .table.teamwork {
    margin-bottom: 5rem;
}

.text .table.teamwork thead th:nth-child(1), 
.text .table.teamwork tbody td:nth-child(1) {
	width: 80px;
	text-align: center;
}

.text .table.teamwork thead th:nth-child(2), 
.text .table.teamwork tbody td:nth-child(2) {
	width: 180px;
	text-align: center;
}

.text .table.teamwork thead th:nth-child(3), 
.text .table.teamwork tbody td:nth-child(3) {
	width: 100px;
	text-align: center;
}

.text .table.teamwork thead th:nth-child(6), 
.text .table.teamwork tbody td:nth-child(6) {
	width: 80px;
	text-align: center;
}

/********************************************** affair page *************************************/
.text .table.affair {
    margin-bottom: 5rem;
}

.text .table.affair thead th:nth-child(1), 
.text .table.affair tbody td:nth-child(1) {
    width: 80px;
	text-align: center;
}

/********************************************** achievement page *************************************/
.text .table.achievement thead th:nth-child(1), 
.text .table.achievement thead th:nth-child(5), 
.text .table.achievement tbody td:nth-child(1), 
.text .table.achievement tbody td:nth-child(5) {
    width: 80px;
	text-align: center;
}

/********************************************** reform page *************************************/
.text .table.reform thead th:nth-child(1), 
.text .table.reform tbody td:nth-child(1) {
    width: 80px;
	text-align: center;
}

.text .table.reform thead th:nth-child(3), 
.text .table.reform thead th:nth-child(4), 
.text .table.reform thead th:nth-child(5), 
.text .table.reform tbody td:nth-child(3),
.text .table.reform tbody td:nth-child(4),
.text .table.reform tbody td:nth-child(5) {
    width: 120px;
	text-align: center;
}

/********************************************** politics page *************************************/
.text .table.politics thead th:nth-child(1), 
.text .table.politics tbody td:nth-child(1) {
    width: 80px;
	text-align: center;
}

/********************************************** research page *************************************/
div.table-wrapper-separator {
    margin-bottom: 4rem;
}

.text .table.research thead th:nth-child(1),
.text .table.research thead th:nth-child(4),
.text .table.research tbody td:nth-child(1),
.text .table.research tbody td:nth-child(4) {
    width: 80px;

    text-align: center;
}

.text .table.research thead th:nth-child(2),
.text .table.research tbody td:nth-child(2) {
	width: 120px;
}

.text .table.research thead th:nth-child(5),
.text .table.research tbody td:nth-child(5) {
	width: 120px;
	
	text-align: center;
}

.text .table.paper thead th:nth-child(1),
.text .table.paper tbody td:nth-child(1) {
    width: 80px;
    
    text-align: center;
}

.text .table.paper thead th:nth-child(3),
.text .table.paper thead th:nth-child(4),
.text .table.paper thead th:nth-child(5),
.text .table.paper tbody td:nth-child(3),
.text .table.paper tbody td:nth-child(4),
.text .table.paper tbody td:nth-child(5) {
    width: 160px;

    text-align: center;
}

/********************************************** regulation && health-download && doc-download page *************************************/
.text ul.doc-download {
    margin: 0;
    padding: 0;

    list-style: none;

    margin-bottom: 4rem;
}

.text ul.doc-download h2 {
	font-size: 1.15rem;
    font-weight: bold;
    
    margin: 40px 0 20px;
    padding: 10px 16px;
    
    background-color: #e2e2e2;
    
    border-radius: 0.5rem;
}

.text ul.doc-download h2 i {
	margin-right: 1rem;
}

.text ul.doc-download li {
    padding: 0.5rem 4rem;
}

.text ul.doc-download li.category-name {
    border: none;
    font-weight: bold;
    
    padding-left: 4rem;
    margin-bottom: 2rem;

    /* background-color: transparent; */
    /* background-color: rgba(236, 236, 236, 1); */
    background-color: #78909c;
    color: #fff;
    
    display: flex;
    align-items: center;

    pointer-events: none;
}

.text ul.doc-download li.category-name i {
    font-size: 1.6rem;
    
    margin-right: 1.5rem;
}

.text ul.doc-download li a {
    color: rgba(0, 0, 0, 0.65); 
}

.text ul.doc-download li a:hover {
    text-decoration: underline;
}

.text ul.doc-download li i {
	margin-right: 0.5rem;
}

/*************************************** for sudy's displayinfo.htm ****************************************************/
#info-wrapper {
    margin: 4rem auto 4rem;
    
    min-height: 400px;
    
    min-width: 800px;
    max-width: 1000px;
}

#info-wrapper .caption {
    line-height: 2.5rem;

    text-align: center;

    font-size: 1.25rem;

    font-weight: bold;
}

#info-wrapper .description,
#info-wrapper .date {
    line-height: 2.5rem;

    text-align: center;
}

#info-wrapper .content {
    margin-top: 2rem;
    
    padding-top: 3rem;
    
    border-top: 1px solid rgba(128,128,128,0.25);
}

#info-wrapper .content img {
    max-width: 100%;
}

#info-wrapper p img {
    margin: 2rem auto;
    
}

#info-wrapper .wp_articlecontent p img {
    max-width: 100%;
    max-height: 100%;

    object-fit: cover;

    box-shadow: 0 0 50px 5px rgba(100, 100, 100, 0.25);
    border: 1px solid rgba(200, 200, 200, 0.95);
}

/***************************************** fix for sudy **************************************/
#info-wrapper .article h1.article-title {
    line-height: 2.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

#info-wrapper .article .article-metas {
    text-align: center;
}

#info-wrapper .article span.article-views {
    display: none;
}

#info-wrapper .article .entry {
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(128,128,128,0.25);
}

#info-wrapper .article .entry .wp_articlecontent,
#info-wrapper .article .entry .wp_articlecontent div,
#info-wrapper .article .entry .wp_articlecontent div span,
#info-wrapper .article .entry .wp_articlecontent p,
#info-wrapper .article .entry .wp_articlecontent p span {
    font-size: 1rem !important;
    font-family: "Microsoft YaHei" !important;

    line-height: 1.5rem;

    text-indent: 2rem;
}

#info-wrapper .article .entry .wp_articlecontent p:has(img) {
    text-align: center;

    text-indent: 0;
}

#list-wrapper {
    flex: 1 0 auto;
}

.wp_article_list {
    padding: 0;
    margin: 4rem 10% 1.5rem;

    width: 80%;
}

.wp_article_list .list_item {
    height: 40px;
    
    display: flex;
    align-items: center;
}

.wp_article_list .list_item .article-index {
    flex: 0 0 30px;
}

.wp_article_list .list_item .article-title {
    flex: 1 0 calc(100% - 150px);

    overflow: hidden;
}

.wp_article_list .list_item .article-title a {
    display: inline-block;

    width: 100%;

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.wp_article_list .list_item .article-publishdate {
    flex: 0 0 120px;

    display: flex;
    justify-content: flex-end;
}