:root{
    --primary-color: #0295A3;
    --background-color: #f7f8fa;
}

*, *:focus {
	outline: none;
}

html {
    height: 100%;
    min-height: 100%;
    font-family: Noto Sans TC, Microsoft JhengHei, Arial;
    text-align: justify; 
    color: #303030;
    background: var(--background-color);
    /* background: #fff;     */
    /* background: #e0e0e0; */
	cursor: default;
}

body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    /* background: #e0e0e0; */
}

a {
	margin: 0;
	padding: 0;
	text-decoration: none;
    color: #008aff;
	outline: 0;
    word-break: break-all;
}

img {
	border: 0;
}

.clear {
	height: 0;
	margin: 0;
	padding: 0;
	clear: both;
}

.noBorder {
    border: none !important;
}

#app {
    height: 100%;
    min-height: 100%;
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .txtBreak {
        display: block;
    }
    
    .txtMerge {
        display: inline;
    }
}





/*---------- header (start) ----------*/
header {				
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 -1px 1px #d8d8d8 inset;
}

header .headerCont {
    width: 1200px;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



header .searchBox {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 101;
    background: #f7f8fa;
    box-shadow: 0 3px 3px #00000011;
}

header .searchBox .searchWrap {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

header .searchBox .searchWrap input {
    width: 100%;
    padding: 10px 10px 10px 50px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 2px #d2edf0;
    font-size: 16px;
}

header .searchBox .searchWrap input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c0c0c0;
}

header .searchBox .searchWrap input:enabled:focus {
    border-color: #3AB5B1;
    /* box-shadow: 0 0 5px #0093a0; */
}

header .searchBox .searchWrap i {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #808080;
    cursor: pointer;
}
                                                                    
@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    header {
        width: 100%;
        padding: 10px 0;
    }

    header .headerCont {
        width: 100%;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    header {
        width: 100%;
        padding: 10px 0;
    }    

    header .headerCont {
        width: 100%;
        height: 40px;
        justify-content: flex-start;
    }

    header .searchBox .searchWrap {
        width: 90%;
        margin: 20px 5%;
    }
}
/*---------- header (end) ----------*/


/*---------- header nav desktop (start) ----------*/
#nav {
    width: 100%;
    margin: 1px 0 0;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    box-sizing: border-box;
    z-index: 102;
}

#nav ul {
    margin: 0 auto;
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    transform: translateY(24px);
}





#nav {
    display: flex;
    align-items: center;
}

#nav .apName {
    flex: 0 1 auto;
    padding: 8px 0 !important;
}

#nav .apName.atLoginPage {
    /* margin: auto; */
}

#nav .apName h1 {
    margin: 0;
    font-size: 28px;
    color: var(--primary-color);
}

#nav a {
    padding: 10px 10px;
    display: inline-block;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    font-size: 15px;
    color: #808080;
}

#nav ul {
    /* margin: 12px 0 0; */
    display: inline-block;
    list-style-type: none;		
}

#nav ul li {
    float: left;
    position: relative;
    font-size: 15px;
    /* background: #ccc; */
}

#nav ul li span {
    padding: 10px 10px 20px;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    letter-spacing: 0.5px;
    color: #808080;
}

#nav ul li:hover span {
    color: #000;
}

#nav ul li:hover > a {
    color: #000;
}

#nav ul li .stage {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
    visibility: hidden;
    position: absolute;
    left: 0;
    /* top: 100%; */
    z-index: 101;
    border-radius: 0 0 10px 10px;
    background: #f8f8f8;
    box-shadow: 0px 0px 2px #c0c0c0;
}

#nav ul li:hover .stage {
    display: block;
    visibility: visible;
}

#nav ul li:nth-child(1) .stage,
#nav ul li:nth-child(2) .stage {
    width: 150%;
    margin: 0 0 0 -25%;
}

#nav ul li .stage a {
    width: 100%;
    padding: 10px 0px;
    box-sizing: border-box;
    display: block;
    letter-spacing: 0.5px;
    text-align: center;
    word-break: keep-all;
    color: #808080;
}

#nav ul li .stage a:hover {

    color: var(--primary-color);
}

#nav a.router-link-exact-active {
    /* font-weight: 900; */
}

#nav .searchBtn {
    margin: 0 10px;
    padding: 0 3px 3px;
    box-sizing: border-box;
    color: #808080;
    cursor: pointer;
}

#nav .suggestBtn {
    width: 90px;
    margin: 0 10px;
    padding: 3px 5px 5px;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 5px;
    border: solid 1px #0693A4;
    text-align: center;
    color: #0693A4;
}

#nav .logoutBtn {
    width: 90px;
    padding: 3px 5px 5px;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #0693A4 0%, #3AB5B1 100%);
    cursor: pointer;
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    #nav {
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    header .headerCont #nav {
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    header .headerCont #nav {
        display: none;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    header .headerCont #nav {
        display: none;
    }

    header .headerCont #nav .apName h1 {
        font-size: 20px;
    }
}
/*---------- header nav desktop (end) ----------*/


/*---------- header nav phone (start) ----------*/
#navPhone {
    flex: 0 0 100%;
    /* width: 100%; */
    height: 60px;
    display: none;
    position: relative;
    transition: background-color 0.5s;
}

.navBackAni {
    background-color: #303030;
}

#navPhone .hamburger {
    width: 60px;
    height: 60px;
    padding: 11px 0;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    color: #0295A3;
    cursor: pointer;
}

#navPhone .hamburger .hamburOpen {
    margin: 0 0 0 -14px;
    padding: 0;
    position: absolute;
    font-size: 32px;
    transform-origin: center;
}

#navPhone .hamburger .hamburClose {
    margin: -2px 0 0 -14px;
    padding: 0;
    position: absolute;
    font-size: 36px;
    opacity: 0;
    transform-origin: center;
}

#navPhone .hamburger .hamburOpenAni {
    animation: hamburOpen 0.3s ease-in-out 0.0s 1 alternate forwards;
}

#navPhone .hamburger .hamburCloseAni {
    animation: hamburClose 0.3s ease-in-out 0.0s 1 alternate forwards;
}

@keyframes hamburOpen {    
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(180deg);
    }
}

@keyframes hamburClose {    
    0%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

#navPhone .apName {
    margin: 0;
    padding: 0 !important;
    /* transform: translateY(-2px); */
}

#navPhone .apName.atLoginPage {
    margin: 10px;
    display: inline-block;
}

#navPhone .apName h1 {
    margin: 0;
    display: inline-block;
    font-size: 24px;
    color: #0295A3;
}

#navPhone .search {
    position: absolute;
    top: 13px;
    right: 15px;
    font-size: 20px;
}

#navPhone .phoneMenu {
	width: 100%;
    min-height: 200px;
    box-sizing: border-box;
    /* display: none; */
	position: absolute;
    left: 0px;
	z-index: 101;
    overflow: auto;
    background: #f8f8f8;
}

#navPhone .phoneMenu .item {
    text-align: center;
}

#navPhone .phoneMenu .item h3 {
    margin: 0;
    padding: 15px 0;
    box-sizing: border-box;
    border-bottom: solid 1px #e0e0e0;
    font-weight: normal;
    font-size: 20px;
    color: #000;
    outline: none;
    /* background: #fff; */
}

#navPhone .phoneMenu .subMenu {
    display: none;
    border-bottom: solid 1px #e0e0e0;
    background: #fff;
}

#navPhone .phoneMenu .subMenu.open {
    display: block;
}

#navPhone .phoneMenu .subMenu a {
    padding: 15px 0;
    display: block;
    color: #808080;
}

#navPhone .phoneMenu .fn {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
    display: block;
    text-align: center;
    float: none;
}

#navPhone .phoneMenu .fn .suggestBtn {
    width: 90px;
    margin:  20px auto;
    padding: 10px 0;
    box-sizing: border-box;
    display: block;
    border-radius: 5px;
    border: solid 1px #0693A4;
    text-align: center;
    color: #0693A4;
}

#navPhone .phoneMenu .fn .logoutBtn {
    width: 90px;
    margin:  20px auto;
    padding: 10px 0;
    box-sizing: border-box;
    display: block;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #0693A4 0%, #3AB5B1 100%);
    cursor: pointer;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #navPhone {
        display: block;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    #navPhone {
        display: block;
    }
}
/*---------- header nav phone (end) ----------*/


/*---------- article (start) ----------*/
article {
    min-height: 100%;
    margin: -60px 0 -60px;
    padding: 60px 0 60px;
    box-sizing: border-box;
}

article section {
    width: 100%;
    min-height: 10px;
    position: relative;
    overflow: hidden;
}

article section .ctx {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
    position: relative;
    vertical-align: bottom;
}

article section .ctxFullW {
    width: 100% !important;
}

article section .ctx .breadcrumb {
    color: #808080;
}

article section .ctx .caption {
    margin: 20px 0;
    letter-spacing: 1px;
    font-size: 32px;
    color: #404040;
}

article section .ctx .contOver {
    width: 100%;
    display: inline-block;
    overflow-x: auto;
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    article section .ctx {
        width: 100%;
        padding: 20px;
    }

    article section .ctx .breadcrumb {
        font-size: 14px;
       color: #808080;
    }

    article section .ctx .caption {
        font-size: 24px;
    }
}
/*---------- article (start) ----------*/


/*---------- footer (start) ----------*/
footer {
    position: relative;
	background: var(--primary-color);
}

footer .footerCont {
	width: 1200px;
	height: 60px;
	margin: 0 auto;
    padding: 18px 0;
    box-sizing: border-box;
    text-align: center;
}

footer .footerCont .copyright {
    line-height: 1.6em;
    font-size: 14px;
	color: #fff;
}

footer .goTop {
    width: 40px;
    height: 40px;
    padding: 9px 10px 5px;
    border: solid 1px #fff;
    border-radius: 100%;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    font-size: 12px;
    color: #fff;
    background: #0295A3;
    cursor: pointer;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* #footer .content .copyright {
        transform: scale(0.9);
    } */
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    footer .footerCont {
        width: 100%;
        padding: 22px 0;
    }

    footer .footerCont .copyright {
        font-size: 10px;
    }
}
/*---------- footer (end) ----------*/