/* CSS Document */

@font-face {
    font-display: block;
    font-family: gform-icons-theme;
    font-style: normal;
    font-weight: 400;
    src: url(./font/gform-icons-theme.woff2?cocjn) format("woff2"), url(./font/gform-icons-theme.ttf?cocjn) format("truetype"), url(./font/gform-icons-theme.woff?cocjn) format("woff")
}

body {
    font-family: Georgia;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* flex布局 */

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.flex-1 {
    flex: 1;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-shrink {
    flex-shrink: 0;
}

.j-start {
    justify-content: flex-start;
}

.j-center {
    justify-content: center;
}

.j-end {
    justify-content: flex-end;
}

.j-sb {
    justify-content: space-between;
}

.j-sa {
    justify-content: space-around;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.a-end {
    align-items: flex-end;
}

.a-stretch {
    align-items: stretch;
}

.a-self-start {
    align-self: flex-start;
}

.a-self-auto {
    align-self: auto;
}

.a-self-end {
    align-self: flex-end;
}

.a-self-stretch {
    align-self: stretch;
}

.a-self-baseline {
    align-self: baseline;
}

.hide {
    display: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text_center {
    text-align: center
}

.clear {
    clear: both;
}

.block_center {
    margin: 0 auto;
}

.p_box {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    font-size: 15px;
}

.border_bottom {
    border-bottom: 1px solid #eaeaea;
}


/* 宽高 */

.ht20 {
    height: 50px;
}

.wt_all {
    width: 100%;
}


/* 边距 */

.mt80 {
    margin-top: 80px;
}

.mt50 {
    margin-top: 50px;
}

.mt30 {
    margin-top: 30px;
}

.mt20 {
    margin-top: 20px;
}

.mt10 {
    margin-top: 10px;
}

.mt5 {
    margin-top: 5px;
}

.mt6 {
    margin-top: 6px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb30 {
    margin-bottom: 30px;
}

.mr30 {
    margin-right: 30px;
}

.mr20 {
    margin-right: 20px;
}

.mr10 {
    margin-right: 10px;
}

.ml15 {
    margin-left: 15px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt50 {
    padding-top: 50px;
}

.pl15 {
    padding-left: 15px;
}

.pl30 {
    padding-left: 30px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb30 {
    padding-bottom: 30px;
}

.mb_none {
    margin-bottom: 0
}

.pb_none {
    padding-bottom: 0
}


/* 行高 */

.line_2em {
    line-height: 2em;
}

.line_1_8em {
    line-height: 1.8em;
}


/* 字体颜色 */

.font_black {
    color: #000;
}

.font_white {
    color: #FFF;
}

.font_pink {
    color: #e1005a;
}

.font_gray {
    color: #ccc;
}

.font_blue {
    color: #0071BC;
}

.font_custom_yellow {
    color: #b9975b;
}


/* 字体大小 */

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f24 {
    font-size: 24px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f36 {
    font-size: 36px;
}

.bold {
    font-weight: bold;
}


/*字间距*/

.font_ls_1 {
    letter-spacing: 1px
}

.font_ls_2 {
    letter-spacing: 2px
}

.font_ls_3 {
    letter-spacing: 3px
}


/* 边框 */

.border_l {
    border-left: 1px solid #e5e5e5;
}

.border_r {
    border-right: 1px solid #e5e5e5;
}

.border_b {
    border-bottom: 1px solid #e5e5e5;
}

.border_t {
    border-top: 1px solid #ffffff;
}

.b_l {
    border-left: 1px solid #e5e5e5;
    padding: 40px 10px 10px 10px;
}


/* 按钮 */

.btn-blue {
    display: block;
    width: 100px;
    height: 50px;
    line-height: 50px;
    background-color: #0071BC;
    text-align: center;
    color: #fff;
}

.btn-pink {
    display: block;
    width: 100px;
    height: 50px;
    line-height: 50px;
    background-color: #e1005a;
    text-align: center;
    color: #fff;
}

.btn-white {
    display: block;
    width: 100px;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    text-align: center;
    color: #e1005a;
}


/* 标题 */

.title_blue {
    color: #000;
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 2px solid #0071BC;
    width: 100px;
    text-align: center;
}

.title_pink {
    color: #000;
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 2px solid #e1005a;
    width: 100px;
    text-align: center;
}

.title_white {
    color: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #fff;
    width: 100px;
    text-align: center;
}

.news_title_pink {
    color: #000;
    font-size: 24px;
    padding: 30px 0;
    border-bottom: 2px solid #e1005a;
    text-align: center;
}

.title_white_pink {
    color: #fff;
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 2px solid #e1005a;
    width: 100px;
    text-align: center;
}

#top {
    height: 60px;
    margin-top: 15px;
}

.pro_cates_title {
    text-align: center;
    color: #ffffff;
    height: 30px;
    line-height: 30px;
    background-color: #0C55A4;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
}

.pro_cates ul {
    width: 100%;
    background-color: #0C55A4;
}

.pro_cates ul li {
    padding: 8px;
    border-bottom: 1px dashed #ccc;
    font-size: 14px;
}

.proname {
    height: 60px;
    text-align: center;
    color: #000;
    background-color: #f4f4f4;
}

#company_title {
    height: 50px;
}

#en_company_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 70px;
    line-height: 1.5em
}

#top_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

#top_contact div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

#top_contact .top_contact_icon {
    margin-right: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #0860a9;
    color: #FFF;
    border-radius: 100%;
}

#top_contact .top_contact_icon i {
    font-size: 16px;
}

#top_contact .top_contact_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.title {
    font-family: "微軟正黑體", "微软雅黑", "宋体", "黑体";
    text-align: center;
    color: #000;
    margin-top: 30px;
    font-size: 1.5em;
    font-weight: bold;
}

.subtitle {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
    font-size: 0.9em;
    width: 80%;
    margin: 0 auto;
}


/* 导航 */

#navbox {
    width: 100%;
    height: 60px;
    color: #FFF;
}

.navmenu {
    line-height: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    float: right;
    width: 100%;
}

.navmenu li {
    float: left;
    display: inline;
    width: 16%;
    text-align: center;
}

.navmenu a {
    color: #502120;
    text-decoration: none;
    font-size: 16px;
    display: block;
    height: 60px;
    width: 100%;
}

.navmenu a:hover {
    display: block;
    width: 100%;
    color: #fff;
    background-color: #d2a233;
}

.navmenu li.active {
    text-align: center;
    background-color: #0071BC;
}

.navmenu li.active a {
    color: #fff;
}

.navmenu li.mainMenuLi {
    float: left;
    display: inline;
    width: 16%;
    text-align: center;
    position: relative;
    z-index: 999;
}

.navmenu li.mainMenuLi ul {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    z-index: 999;
}

.navmenu li.mainMenuLi ul li {
    margin-top: -1px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
}

.navmenu li.mainMenuLi ul li a {
    color: #000;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}

.navmenu li.mainMenuLi ul li a:hover {
    background-color: #0071BC;
    color: #fff;
    height: 40px;
    line-height: 40px;
}


/* banner */

#banner {
    width: 100%;
    margin: 0 auto;
}

#banner image {
    width: 100%;
}

.about_content {
    background-color: #FFF;
    padding: 15px;
}

.about_content_words {
    text-align: left;
    line-height: 2em;
    padding: 15px;
}


/* common */

.main_color {
    color: #502120;
}

.bg_main_color {
    background-color: #502120;
}

.second_color {
    color: #d2a233;
}

.bg_second_color {
    background-color: #d2a233;
}

.third_color {
    color: #f8ecde;
}

.bg_third_color {
    background-color: #f8ecde;
}

a.custom_second {
    color: #d2a233;
}

a.custom_second:hover {
    color: #502120;
}

a.custom_nav {
    text-decoration: none;
    color: #502120;
}

a.custom_nav:hover {
    color: #d2a233;
}

.btn-custom {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    text-decoration: none;
    background-color: #502120;
    text-align: center;
    color: #fff;
}

.btn-custom:hover {
    text-decoration: none;
    background-color: #d2a233;
}

.btn-custom-second {
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    text-decoration: none;
    background-color: #d2a233;
    text-align: center;
    color: #fff;
}

.btn-custom-second:hover {
    text-decoration: none;
    background-color: #502120;
}


/* footer */

.footbox {
    background-color: #323238;
}

#footmenu {
    width: 100%;
    margin: 30px auto;
}

#footmenu>li {
    display: inline;
    float: left;
    width: 20%;
    text-align: center;
    font-size: 18px;
}

#footmenu li a {
    color: #FFF;
}

#footmenu li ul {
    margin-top: 20px;
}

#footmenu li ul li {
    margin-top: 10px;
}

#footmenu li ul a {
    font-size: 14px;
    color: #787878;
}

.footer {
    padding: 50px;
    border-top: 1px solid #787878;
}

.address h1 {
    color: #FFF;
    padding-top: 10px;
}

.address p {
    color: #eaeaea;
    margin-top: 10px;
}

.article_link {
    padding: 10px;
    background-color: #f5f5f5;
    line-height: 2em;
}

h2.title {
    text-align: center;
    font-size: 30px;
}

#navicon {
    width: 36px;
    height: 36px;
    text-align: center;
    float: right;
    margin-top: 18px;
}

#navtitle {
    font-size: 30px;
    color: #000;
}

#menubox {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    z-index: 999;
    background-color: #502120;
}

#menubox ul {
    margin: 40px 0;
    padding: 0;
}

#menubox ul li {
    width: 100%;
    text-align: left;
}

#menubox ul li a {
    width: 100%;
    display: block;
    height: 45px;
    line-height: 45px;
    color: #fff;
    text-indent: 20px;
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
    text-decoration: none;
}

.left_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.left_nav li {
    margin-bottom: 25px;
}

.left_nav li a {
    text-decoration: none;
    color: #502120;
}

.left_nav li a:hover {
    text-decoration: none;
    color: #d2a233;
}

.left_nav .active {
    color: #d2a233;
}

.text-custom {
    color: #d2a233;
}

.bg-custom-second {
    background-color: #d2a233;
}



.fixed-left {
    position: fixed;
    padding: 0;
    width: 270px;
    /* 根据需要设置宽度 */
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    text-align: center;
}

.scrollable-right {
    margin-left: 270px;
    /* 留出左侧固定宽度的空间 */
    height: 100%;
    overflow-y: auto;
    /* 允许垂直滚动 */
    box-shadow: inset 8px 0 15px -1px rgba(0, 0, 0, 0.1)
}

.category {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 15px;
    background-color: #502120;
}

.category a {
    color: #f8ecde;
    text-decoration: none;
}

.category a:hover {
    color: #d2a233;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fixed-left {
        display: none;
        position: relative;
        /* 在小屏幕设备上取消固定 */
        width: 100%;
        /* 全宽 */
        height: auto;
        /* 根据内容调整高度 */
    }
    .scrollable-right {
        margin-left: 0;
        /* 不需要额外的空间 */
        /* 根据需要添加顶部间距 */
    }
    #navbox {
        display: none;
    }
    #ban {
        height: 300px;
        align-items: center;
        justify-content: center;
    }
    #ban image {
        height: 100%;
    }
    #ban p {
        width: 96%;
        font-size: 24px;
    }
    .category {
        flex-direction: column;
    }
    .category div {
        padding: 5px 0;
    }
}

.mySwiper {
    overflow: hidden;
}

.mySwiper a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.mySwiper .swiper-slide:hover {
    background-color: #502120;
    text-decoration: underline;
}

.mySwiper p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    overflow: hidden;
}

.mask {
    position: absolute;
    top: 0px;
    filter: alpha(opacity=80);
    background-color: #777;
    z-index: 800;
    left: 0px;
    opacity: 0.8;
    -moz-opacity: 0.8;
    display: none;
}