html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    font-family: "Microsoft JhengHei";
}

button {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

a {
    text-decoration: none;
    color: rgb(77, 77, 77);
}


.menu {
    width: 100%;
    height: 50px;
    background-color: #368ff5;
    display: flex;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.menu ul li {
    font-family: "Microsoft JhengHei";
    display: inline-block;
    color: #fff;
    margin: 0 30px;
    letter-spacing: 2px;
    width: 100px;
    cursor: pointer;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.menu ul li a:hover {
    color: yellow;
    transition: 0.3s;
}

.menu ul li p {
    display: inline-block;
}

.m-img {
    float: left;
}


/* contain left */
.pink-line{
    background-color:#d7063a;
    height:5px;
    width:50%;
    margin-top:4px;
}
.contain-left {
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 12%;
    width: 280px;
    float: left;
    border-right: 2px solid #c9c9ca;
}

.contain-left-wrap{
    margin-bottom: 20%;
}

/* input search */

#input-search {
    position: relative;
    width: 80%;
    height: 40px;
 /*   background: url("../../fimg/help/help01.png") no-repeat 95%; */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    padding: 10px;
    margin-bottom: 30px;
    transition: .3s;
    
}
.problem-wrap{
    width: 100%;
}
.i-q-b {
   
}
.btn-cancel {
    width: 48px;
    font-family: "Microsoft JhengHei";
    font-size: 18px;
    color: red;
    transition: .3s;
    border-radius: 5px;
    font-weight:bold;
    padding: 0px;
 
}
.searchResult-wrap .left-title {
    background-color: rgb(190, 190, 190);
}

.left-title {
    font-family: "Microsoft JhengHei";
    background-color: #fef7f6;
    padding: 15px 5px 15px 10px;
    border-bottom:#c9c9ca 1px solid;
    cursor: pointer;
}

.left-title h3 {
    font-weight: bold !important;
    font-size: 20px;
    color: #595757;
    display: inline-block;
   
}

.i-arrow {
    width: 18px;  
    float: right;
    margin-right: 10px;
    margin-top: 8px;
}


.left-title-list-wrap {
   
  margin-top: -10px;

}
.left-title-list ul {
  
    padding: 10px 0px 10px 0px;
}

.left-title-list ul li {
    height: 26px;
    color: rgb(77, 77, 77);
    cursor: pointer;
}


.left-title-list .itemDiv {
	color: #595757;
	line-height: 3;
	font-size: 16px;
   	padding-left: 15px;
       width : 100%;   
    border-bottom:#c9c9ca 1px solid;
}
.left-title-list img {
    width: 25px !important;
    margin: -6px 7px;
  
  
}

.contain-right {
    width: 57%;
    float: left;
    padding-left: 3%;
    padding-right: 2%;
    font-family: "Microsoft JhengHei";
    margin-top: 3%;
}

.right-title {
    font-family: "Microsoft JhengHei";
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #c9c9ca;
    color: #595757;
    padding-bottom: 20px;
}
p{
    font-size: 20px; 
    color: #595757;
   
}
.right-contain {
    margin-bottom:40px;
}

/* popup window */

.popup {
    position: fixed;
    padding: 50px 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
   /* border-radius: 20px; */
    box-shadow: 5px 5px 10px #1f1f1fcc, -5px -5px 18px #1f1f1fcc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    /* "delay" the visibility transition */
    -webkit-transition: opacity .5s, visibility 0s linear .5s;
    transition: opacity .5s, visibility 0s linear .5s;
    z-index: 1000;
}

.popup:target {
    visibility: visible;
    opacity: 1;
    /* cancel visibility transition delay */
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.close-popup {
    background: rgba(0, 0, 0, .7);
    cursor: default;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    /* "delay" the visibility transition */
    -webkit-transition: opacity .5s, visibility 0s linear .5s;
    transition: opacity .5s, visibility 0s linear .5s;
}

.popup:target+.close-popup {
    opacity: 1;
    visibility: visible;
    /* cancel visibility transition delay */
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.popup h3 {
    font-family: "Microsoft JhengHei";
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #fefefe;
    height: 80px;
    padding-top: 22px;
    background-color: #d7083a;
    margin: -50px -20px 0px -20px;
   
}

.close-popup-btn {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-image: url("../../fimg/help/help07.png");
    position: absolute;
    top: 28px;
    right: 18px;
}

.p-wrap {
    max-height: 500px; 
    font-family: "Microsoft JhengHei";
    padding: 20px 10px;
}

.popup p {
   font-size: 14px;
}

.bottom {
    font-family: "Microsoft JhengHei";
    /*	position: absolute;*/
    /*	bottom: 0;*/
    width: 100%;
    letter-spacing: 2px;
    padding: 30px 0;
    border-top: 1px solid rgb(230, 230, 230);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1920px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        font-family: 微軟正黑體;
        margin-top: 119px;
    }
    .contain-left{
        margin-left: 8%;
        width: 330px;
        padding-right: 2%;
    }
	.contain-right {
		width: 61%;
		float: left;
		padding-left: 3%;
		padding-right: 2%;
		font-family: "Microsoft JhengHei";
		margin-top: 3%;
	}
}
@media (min-width: 1600px) and (max-width: 1919px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        font-family: 微軟正黑體;
        margin-top: 119px;
    }
    .contain-left{
        width: 280px;
        margin-left: 12%;
        padding-right: 2%;
    }
	.contain-right {
		width: 58%;
		float: left;
		padding-left: 3%;
		padding-right: 2%;
		font-family: "Microsoft JhengHei";
		margin-top: 3%;
	}
}
@media (min-width: 1248px) and (max-width: 1599px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        margin-top: 119px;
    }
    .contain-left{
        margin-left: 7%;
        width: 320px;
        padding-right: 2%;
    }
    #input-search{
        width: 77%;
    }
   
}
@media (min-width: 1025px) and (max-width: 1247px){
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        margin-top: 116px;

    }
    .contain-left{
        margin-left: 3%;
        width: 320px;
        padding-right: 1.5%;
    }
    #input-search{
        width: 77%;
    } 
  
} 

@media (min-width: 980px) and (max-width: 1024px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 26px;
        padding-top: 4px;
        margin-top: 65px
    }
     /********/
     .pink-line{
        margin-top:14px;
        width: 119px;
    }
    /* mobile menu */
    .contain-left {
        width: 100%;
       padding-right: 0%;
        margin-left: 0%;
        border-right: none;
    }
    .popup p {
        font-size: 18px;
     }
    #input-search {
        width: 70%;
      
        margin:5px 0px 30px 12%;
    }
    .i-search {
        top: 65px;
        left: 78%;
    }
    .contain-left-wrap {
        margin-top: -10px;
    }
    
    .left-title-list ul li {
        padding: 10px 0px 20px 0px;
    }
    .left-title-list ul li a {
        width: 100%;
    }
    .left-title-list-wrap{
        margin-top: -20px;
      
    }
    .left-title-list img{
    margin: -6px 7px -6px 45px;
    }
    .left-title h3{
        padding-left: 30px;
    }
   
   
}



@media (min-width: 768px) and (max-width: 979px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 26px;
        padding-top: 4px;
        margin-top: 65px;
    }
    .left-title-list .itemDiv{
        font-size: 18px;
    }
     /********/
     .pink-line{
        margin-top:14px;
        width: 119px;
    }
    /* mobile menu */
    .contain-left {
        width: 100%;
       padding-right: 0%;
        margin-left: 0%;
        border-right: none;
    }
    .popup p {
        font-size: 18px;
     }
    #input-search {
        width: 70%;
      
        margin:5px 0px 30px 12%;
    }
    .i-search {
        top: 65px;
        left: 78%;
    }
    .contain-left-wrap {
        margin-top: -10px;
    }
    
    .left-title-list ul li {
        padding: 10px 0px 20px 0px;
    }
    .left-title-list ul li a {
        width: 100%;
    }
    .left-title-list-wrap{
        margin-top: -20px;
      
    }
    .left-title-list img{
    margin: -6px 7px -6px 45px;
    }
    .left-title h3{
        padding-left: 30px;
    }
   
     .left-title {
       margin-top: 0px;
    }
}
/**************************************************************/
@media screen and (max-width: 815px) {
    .btn-cancel {
        width: 60px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    /****popup跳出滿版****/

    
     /********/
    .pink-line{
        margin-top:14px;
        width: 119px;
    }
    /* mobile menu */
    .contain-left {
        width: 100%;
       padding-right: 0%;
        margin-left: 0%;
        border-right: none;
    }
    .popup p {
        font-size: 18px;
     }
    #input-search {
        width: 70%;
      
        margin:5px 0px 30px 12%;
    }
    .i-search {
        top: 65px;
        left: 78%;
    }
    .contain-left-wrap {
        margin-top: -10px;
    }
    
    .left-title-list ul li {
        padding: 10px 0px 20px 0px;
    }
    .left-title-list ul li a {
        width: 100%;
    }
    .left-title-list-wrap{
        margin-top: -20px;
      
    }
    .left-title-list img{
    margin: -6px 7px -6px 45px;
    }
    .left-title h3{
        padding-left: 20px;
    }
    .left-title-list .itemDiv{
        padding-left:0px;
    }
   
     /***********滾動條*******************/
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
  
  }
::-webkit-scrollbar-track {
    background-color: #c9c9ca;
}
 
::-webkit-scrollbar-thumb {
  min-height: 20px;
  border: 3px solid transparent; /*製作一個3px的透明邊框*/
  background-clip: content-box;/*更改背景的附加位置,使其僅延伸到填充框的邊緣*/
  background-color: #888889;

}
 
::-webkit-scrollbar-corner {
  background: transparent;
}
/***********滾動條*******************/
}


@media (min-width: 702px) and (max-width: 767px){
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        margin-top: 56px;
        
    }
    
}

@media (min-width: 561px) and (max-width: 701px){
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 24px;
        padding-top: 6px;
        margin-top: 56px;
    }

}


@media (min-width: 481px) and (max-width: 560px){
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 20px;
        padding-top: 10px;
        margin-top: 56px;
    }
   
}
@media (max-width: 480px) {
    .login-top {
        width: 100%;
        background-color: #EEEFEF;
        height: 45px;
        text-align: center;
        color: #595757;
        font-weight: bold;
        font-size: 20px;
        padding-top: 10px;
        margin-top: 56px;
    }
    .popup {
        padding: 20px;
        
        
    }
    .popup h3 {
       height: 60px;
       font-size: 20px;
       padding-top: 15px;
        margin: -20px -20px 0px -20px;
    }
    .close-popup-btn {
        top: 17px;
        right: 10px;
    }
    
   
}

@media screen and (max-width: 400px) {
 
}
@media screen and (max-width: 375px) {
    
 }
@media screen and (max-width: 320px) {
    
      
    
}