:root {
    --header-height: 165px;
}

* {
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.indexMain {
    width: 74%;
    margin: 0 auto;
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    height: var(--header-height);
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}

.header_bg {
    position: absolute;
    z-index: 1;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.header .indexMain {
    position: relative;
    z-index: 2;
}

.header .indexMain,
.section01 .indexMain {
    height: 100%;
}

.topBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top_left {
    max-width: 50%;
    margin-right: 100px;
    flex-shrink: 0;
}

.top_logo {
    width: 100%;
}

.top_logo img {
    width: 100%;
    display: block;
}

.top_right {
    width: 100%;
}

.menuBox {}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.menu li {
    position: relative;
    list-style: none;
}

ul.menu>li>a {
    font-size: 20px;
    color: #333333;
}

.sub-menu {
    position: absolute;
    left: 50%;
    top: calc(100%);
    padding-top: 13px;
    width: 130px;
    margin-left: -65px;
    display: none;
}

.sub-menu:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: calc(100% - 13px);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 6px #c3c3c3, -2px -2px 6px #c3c3c3;
}

ul.menu>li:hover .sub-menu {
    display: block;
}

.sub-menu>li {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10px 0;
}

.sub-menu>li a {
    font-size: 16px;
    color: #333333;
}

.sub-menu>li:hover {
    background-color: #6dba44;
}

.sub-menu>li:first-child:hover {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.sub-menu>li:last-child:hover {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sub-menu>li:hover a {
    color: #ffffff;
}

.langBox {
    position: absolute;
    top: 12px;
    right: 0px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 115px;
    height: 35px;
    border: 1px solid #87b1ac;
    border-radius: 35px;
    padding: 0 8px;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
    user-select: none;
}

.langBox:hover {
    border-color: #6dba44;
    background: rgba(109, 186, 68, 0.06);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    min-width: 130px;
    z-index: 10;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    font-size: 14px;
    color: #333333;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.lang-dropdown a:hover {
    background: #6dba44;
    color: #ffffff;
}

.lang-dropdown a.is-active-lang {
    background: rgba(109, 186, 68, 0.1);
    color: #6dba44;
    font-weight: 700;
}

.lang-dropdown a.is-active-lang::before {
    content: '✓';
    font-size: 13px;
}

.langIcon {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-image: url('../images/ny2026/lang_icon.png');
    background-size: cover;
    margin-right: 7px;
    flex-shrink: 0;
}

.langText {
    font-size: 16px;
    color: #333333;
    line-height: 19px;
    text-align: center;
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: calc(1000 + 1);
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333333;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.hamburger span+span {
    margin-top: 5px;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.is-visible {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 88vw);
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    justify-content: flex-end;
}

.mobile-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: #333333;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-close:hover {
    background: #eee;
}

.mobile-menu nav {
    padding: 0;
}

.mobile-menu-item>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 500;
    color: #333333;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.mobile-menu-item>a:hover,
.mobile-menu-item>a:active {
    background: rgba(109, 186, 68, 0.06);
    color: #6dba44;
}

.mobile-menu-item.has-children>a .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-menu-item.has-children.is-expanded>a .arrow {
    transform: rotate(-135deg);
}

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.mobile-menu-item.has-children.is-expanded .mobile-sub-menu {
    max-height: 400px;
}

.mobile-menu-item.has-children.is-expanded .mobile-sub-menu {
    max-height: 400px;
}

.mobile-sub-menu a {
    display: block;
    padding: 13px 20px 13px 44px;
    font-size: 15px;
    color: #555;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-sub-menu a:hover,
.mobile-sub-menu a:active {
    background: rgba(109, 186, 68, 0.08);
    color: #6dba44;
}

.mobile-menu-item.lang-menu-item>a {
    gap: 10px;
}

.mobile-sub-menu .lang-option {
    padding-left: 44px;
    position: relative;
}

.mobile-sub-menu .lang-option.is-active-lang {
    color: #6dba44;
    font-weight: 700;
    background: rgba(109, 186, 68, 0.08);
}

.mobile-sub-menu .lang-option.is-active-lang::before {
    content: '✓';
    position: absolute;
    left: 24px;
    font-size: 14px;
}

.mobile-menu-item.lang-menu-item {
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
}
















.section01 {
    width: 100%;
    aspect-ratio: 16/9;
    background-image: url('../images/ny2026/index01_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.section01Box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.section01Main {
    width: 64%;
    max-width: 893px;
}

.section01Main img {
    width: 100%;
}

.section01BtnBox {
    width: 86%;
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.section01Btn {
    width: 47%;
    height: 53px;
    border-radius: 53px;
    background-color: #ef8028;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
}

.section01,
.section02,
.section03,
.section04,
.section05,
.section06 {
    margin-bottom: 100px;
}

.section02_title,
.section03_title,
.section04_title,
.section05_title {
    text-align: center;
    margin-bottom: 18px;
}

.section02_title p,
.section03_title p,
.section04_title p,
.section05_title p {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    line-height: 28px;
    color: #333333;
    padding: 0px 0px 11px 0px;
    position: relative;
}

.section02_title p:after,
.section03_title p:after,
.section04_title p:after,
.section05_title p:after {
    --w: min(94%, 116px);
    position: absolute;
    content: "";
    width: var(--w);
    height: 3px;
    background-color: #f5c242;
    left: 50%;
    bottom: 0px;
    margin-left: calc(var(--w) / -2);
}

.section02_mainBox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 52px;
}

.section02_main_left {
    width: 40%;
    max-width: 476px;
    flex-shrink: 0;
    margin-right: 2%;
}

.section02_introBox {
    width: 100%;
}

.section02_intro_subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 21px;
}

.section02_intro_title {
    font-size: 28px;
    color: #666666;
    line-height: 40px;
    margin-bottom: 33px;
}

.section02_intro_text {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    text-align: justify;
    margin-bottom: 45px;
}

.section02_intro_btn {
    display: block;
    width: 256px;
    height: 54px;
    border-radius: 54px;
    font-size: 16px;
    background-color: #ef8028;
    color: #ffffff;
    text-align: center;
    line-height: 36px;
    padding: 9px 0;
    box-sizing: border-box;
}

.section02_main_right {
    width: 58%;
    display: flex;
    justify-content: center;
    max-width: 720px;
    overflow: hidden;
    padding: 5%;
    box-sizing: border-box;
}

.section02_graphicBox {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 1/1;
    padding: 9%;
    box-sizing: border-box;
    position: relative;
}

.section02_graphic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #f7f7f7;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section02_graphic_center {
    width: 80%;
    padding-top: 2%;
}

.section02_graphic_center img {
    width: 100%;
    display: block;
}

.section02_orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section02_graphic_list {
    position: absolute;
    width: 30%;
    aspect-ratio: 1/1;
}

.section02_graphic_list img {
    width: 100%;
    display: block;
    animation: counter-rotate 20s linear infinite;
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.section02_graphic_list1 {
    left: 5%;
    top: 5%;
}

.section02_graphic_list2 {
    right: 5%;
    top: 5%;
}

.section02_graphic_list3 {
    left: 5%;
    bottom: 5%;
}

.section02_graphic_list4 {
    right: 5%;
    bottom: 5%;
}

.section02_photo {
    display: flex;
}

.section02_photo_title {
    width: 82%;
    margin: 0 auto;
}

.section02_photo_title img {
    width: 100%;
    display: block;
}

.section02_photo_list {
    width: 25%;
}

.section02_photo_list img {
    width: 100%;
    display: block;
}

.section03_boothBox {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.section03_booth_list {
    padding: 1%;
    box-sizing: border-box;
}

.section03_booth_list:nth-child(7n+1),
.section03_booth_list:nth-child(7n+2),
.section03_booth_list:nth-child(7n+3) {
    width: 33.3%;
}

.section03_booth_list:nth-child(7n+4),
.section03_booth_list:nth-child(7n+5),
.section03_booth_list:nth-child(7n+6),
.section03_booth_list:nth-child(7n) {
    width: 25%;
}

.section03_booth_list .section03_booth_list_cover {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
    cursor: pointer;
}

.section03_booth_list_cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section03_booth_list_title {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 9;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height .39s ease-in;
    padding: 0 15px;
    box-sizing: border-box;
}

.section03_booth_list_title:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    backdrop-filter: blur(5px);
    background-color: rgb(109, 186, 68, 0.6);
}

.section03_booth_list_title p {
    position: relative;
    z-index: 2;
    font-size: 22px;
    color: #ffffff;
}

.section03_booth_list:hover .section03_booth_list_title {
    height: 100%;
}

.section04_newsBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section04_newsBox {
    margin-top: 45px;
}

.section04_news_left {
    width: 45%;
    max-width: 586px;
    /*aspect-ratio: 586/521;*/
    background-color: #f8f8f8;
    border-top-left-radius: 55%;
    padding: 34px;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-right: 90px;
}

.section04_news_first {}

.section04_news_first_date {
    font-size: 24px;
    font-weight: bold;
    color: #999999;
    text-align: right;
    margin-bottom: 26px;
}

.section04_news_first_main {
    width: 100%;
    padding-right: 39px;
    box-sizing: border-box;
}

.section04_news_first_title {
    width: 100%;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    background-color: #ef8028;
    padding: 3px 10px;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.section04_news_first_text {
    padding-left: 47px;
    width: 100%;
    text-align: justify;
    box-sizing: border-box;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin-top: 15px;
}

.section04_news_first_text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section04_news_first_img {
    width: 100%;
    margin-top: 15px;
}

.section04_news_first_img img {
    width: 100%;
    display: block;
}

.section04_news_first_arrow {
    margin-top: 25px;
    text-align: right;
}

.section04_news_first_arrow img {
    width: 32px;
    display: inline-block;
}

.section04_news_right {
    width: 100%;
    overflow: hidden;
}

.section04_news_list {
    display: flex;
    justify-content: flex-start;
    padding: 42px 0;
    border-top: 1px solid #f6f6f6;
}

.section04_news_list:first-child {
    border-top: 0px;
}

.section04_news_list i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #d93e33, #ffb877);
    flex-shrink: 0;
    margin: 10px 0;
    margin-right: 12px;
}

.section04_news_list_main {
    width: 100%;
    overflow: hidden;
}

.section04_news_list_main_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section04_news_list_title,
.section04_news_list_date {
    font-size: 22px;
    line-height: 32px;
    color: #666666;
}

.section04_news_list_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.section04_news_list_date {
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.section04_news_list_main_bottom {
    display: flex;
    justify-content: space-between;
}

.section04_news_list_mess {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    width: 70%;
    max-width: 420px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section05_map {
    width: 74%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.section05_map img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.section05_map p {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.section06 {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.section06_title {
    text-align: center;
    margin-bottom: 30px;
}

.section06_title p {
    font-size: 30px;
    color: #333333;
    line-height: 40px;
    margin-bottom: 10px;
}

.section06_title p.subtitle {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}

.section06_caseBox {
    display: flex;
    justify-content: space-around;
}

.section06_case_list {
    width: 29%;
    background-color: #fcfcfc;
}

.section06_case_list_img {
    width: 100%;
    aspect-ratio: 417/301;
}

.section06_case_list_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section06_case_list_main {
    padding: 24px 26px;
}

.section06_case_list_title {
    font-size: 20px;
    line-height: 30px;
    color: #666666;
    font-weight: bold;
    margin-bottom: 10px;
}

.section06_case_list_mess {
    font-size: 16px;
    color: #666666;
    line-height: 25px;
}

.section06_case_list_lighthigh {
    margin-top: 16px;
    background-color: #ffffff;
    border: 1px solid #f6f6f6;
    padding: 13px 15px;
    box-sizing: border-box;
    border-radius: 10px;
}

.section06_case_list_lighthigh_title {
    display: flex;
    align-items: center;
    line-height: 26px;
    margin-bottom: 5px;
}

.section06_case_list_lighthigh_title i {
    display: block;
    width: 23px;
    height: 23px;
    background-image: url('../images/ny2026/section06_case_icon.png');
    background-size: cover;
    margin-right: 5px;
    flex-shrink: 0;
}

.section06_case_list_lighthigh_title p {
    font-size: 16px;
    color: #666666;
}

.section06_case_list_lighthigh_main {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}


.footer {
    width: 100%;
    height: 280px;
    position: relative;
    background-color: #6dba44;
    /*margin-top: 100px;*/
    padding: 40px 0;
    box-sizing: border-box;
}

.footer:before {
    content: "";
    height: 100%;
    aspect-ratio: 85/275;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url('../images/ny2026/footer_before.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.footer:after {
    content: "";
    width: 37%;
    right: 13%;
    bottom: 0px;
    aspect-ratio: 710/143;
    position: absolute;
    background-image: url('../images/ny2026/footer_after.png');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.footerBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer_left {
    width: 100%;
    padding: 0 10%;
    box-sizing: border-box;
}

.footer_contactBox {
    display: flex;

}

.footer_contact_title {
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    width: 25%;
}

.footer_contact_list {
    margin-bottom: 25px;
}

.footer_contact_list_main {
    font-size: 14px;
    color: #ffffff;
    display: flex;
    line-height: 22px;
}

.footer_contact_list_main .name {
    margin-right: 40px;
}

.footer_contact_list_tips {
    font-size: 12px;
    color: #ffffff;
}

.footer_right {
    flex-shrink: 0;
    width: 250px;
    flex-shrink: 0;
}

.footer_qrcodeBox {
    display: flex;
    justify-content: space-between;
}

.footer_qrcode {
    width: 48%;
}

.footer_qrcode img {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.footer_qrcode p {
    font-size: 12px;
    color: #ffffff;
    line-height: 20px;
    text-align: center;
}

.page_bannerBox {
    padding-top: var(--header-height);
}

.page_banner {
    width: 100%;
    height: 260px;
    background-image: url('../images/ny2026/banner.jpg');
    background-size: cover;
    display: flex;
}

.page_banner_main {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 3%;
    box-sizing: border-box;
}

.page_banner_titleBox {
    color: #2e561f;
}

.page_banner_title {
    font-size: 36px;
    font-weight: bold;
    line-height: 46px;
    margin-bottom: 10px;
}

.page_banner_subtitle {
    font-size: 20px;
    line-height: 30px;
}

.page_navBox {
    width: 100%;
    height: 50px;
    background-color: #6dba44;
}

.page_navBox .indexMain {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.page_nav,
.page_nav a {
    font-size: 16px;
    color: #ffffff;
}

.page_centerbox {
    background-color: #f9f9f9;
    min-height: 500px;
}

.page_centerbox .indexMain {
    padding-top: 33px;
    padding-bottom: 65px;
}

.common_box {
    width: 85%;
    background-color: #ffffff;
    margin: 0 auto;
    padding: 36px 120px;
    box-sizing: border-box;
    border-radius: 20px;
    font-size: 14px;
    color: #666666;
    min-height: 500px;
}

.page_container img {
    width: 100%;
}

.common_box.news,
.common_box.contact {
    background: none;
    padding: 20px 0px;
}

.newsList {
    border: 1px solid #f6f6f6;
    background-color: #ffffff;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.newsList_img {
    width: 30%;
    aspect-ratio: 317/150;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 50px;
    flex-shrink: 0;
}

.newsList_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsList_main {
    width: 100%;
    overflow: hidden;
    padding-right: 40px;
    box-sizing: border-box;
}

.newsList_main_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.newsList_title,
.newsList_date {
    font-size: 22px;
    color: #666666;
}

.newsList_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 50px;
}

.newsList_date {
    flex-shrink: 0;
}

.newsList_main_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsList_mess {
    width: 82%;
    font-size: 14px;
    color: #666666;
    margin-right: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsList_arrow {
    width: 65px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid #999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsList_arrow img {
    width: 35%;
    padding-bottom: 2px;
}

.about_title {
    font-size: 22px;
    color: #666666;
    margin-bottom: 36px;
    text-align: center;
    font-weight: bold;
}

.about_text p {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
    margin-bottom: 5px;
}

.organBox {
    text-align: center;
    color: #666666;
    margin-bottom: 10px;
}

.organ_title {
    font-size: 22px;
    line-height: 32px;
    padding: 10px 0;
    font-weight: bold;
    background-color: #f0f8ec;
}

.organ_text {
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    padding: 7px 13%;
    box-sizing: border-box;
}

.contactBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact_list {
    width: 48%;
    background-color: #ffffff;
    padding: 40px 30px;
    box-sizing: border-box;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.contact_list i {
    width: 93px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #6dba44;
    display: block;
    margin-right: 25px;
    flex-shrink: 0;
    background-size: cover;
}

.contact_list i {
    background-image: url('../images/ny2026/c_phone.png');
}

.contact_list.cl3 i {
    background-image: url('../images/ny2026/c_email.png');
}

.contact_text {
    line-height: 26px;
    font-size: 16px;
    color: #2e552b;
}

.contact_text p:first-child {
    font-size: 20px;
    font-weight: bold;
}

.news_single_title {
    font-size: 22px;
    color: #666666;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    list-style-image: 32px;
}

.news_single_date {
    font-size: 12px;
    color: #999999;
    text-align: center;
    line-height: 22px;
    margin-bottom: 25px;
}

.news_single_img {
    width: 100%;
    margin-bottom: 15px;
}

.news_single_img img {
    width: 100%;
}

.news_single_text {
    color: #666666;
    font-size: 14px;
    line-height: 22px;
}

.news_single_text p {
    margin-bottom: 5px;
}

.news_single_text img {
    max-width: 90%;
    margin: 10px auto;
    display: block;
}

.common_box.photo {
    display: flex;
    flex-wrap: wrap;
    background: none;
    padding: 20px 1%;
    background-color: #f4f4f4;
    border-radius: 0px;
}

.photoList {
    width: 25%;
    aspect-ratio: 238/158;
    padding: 1%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.photoList .news_link {
    display: block;
    width: 100%;
    height: 100%;
}

.photoList .news_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common_box.forDownload {
    padding: 36px;
}

.ex_downloadlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e8f3d6;
    line-height: 32px;
    font-size: 16px;
    padding: 8px 32px;
    box-sizing: border-box;
    color: #527036;
    border-radius: 48px;
    border: 1px solid #a8b19a;
    margin-bottom: 20px;
}

.ex_downloadlist_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ex_downloadlist_icon {
    width: 20px;
    height: 24px;
    background-image: url('../images/ny2026/icon_download.png');
    background-size: cover;
    margin-right: 10px;
    flex-shrink: 0;
}

.ex_downloadlist_mess {
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 20px;
}

@media screen and (max-width: 1600px) {
    :root {
        --header-height: 140px;
    }

    .top_left {
        max-width: 45%;
    }

    .indexMain {
        width: 82%;
    }

    ul.menu>li>a {
        font-size: 18px;
    }

    .section03_booth_list_title p {
        font-size: 18px;
    }

    .section04_news_left {
        margin-right: 60px;
    }
}

@media screen and (max-width: 1360px) {
    .footer_left {
        padding: 0 5%;
    }

    .footer_contact_title {
        width: 23%;
    }

    .footer_right {
        width: 230px;
    }
}

@media screen and (max-width: 1200px) {
    .langBox {
        top: 10px;
        min-width: 90px;
        height: 32px;
        padding: 0 10px;
    }

    .langText {
        font-size: 13px;
    }

    .langIcon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .top_left {
        max-width: 40%;
    }

    ul.menu>li>a {
        font-size: 16px;
    }

    .section03_booth_list_title {
        height: 60px;
    }

    .section03_booth_list_title p {
        font-size: 14px;
    }

    .indexMain {
        width: 92%;
    }

    .footer_left {
        padding: 0 3%;
    }

    .footer_contact_title {
        width: 20%;
    }

    .footer_right {
        width: 200px;
    }

    .footer_qrcode p {
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --header-height: 100px;
    }

    .top_right {
        display: flex;
        justify-content: flex-end;
    }

    .menuBox {
        display: none;
    }

    .langBox {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-overlay.is-visible {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    .section03_booth_list_title {
        height: 50px;
    }

    .section03_booth_list_title p {
        font-size: 12px;
    }

}

@media screen and (max-width: 950px) {
    .footer {
        height: unset;
    }

    .footer_contact_title {
        width: 25%;
    }

    .footer_contact_list_main {
        flex-wrap: wrap;
    }

    .footer_contact_list_main .name {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .section03_booth_list:nth-child(7n+1) {
        width: 100%;
    }

    .section03_booth_list:nth-child(7n+2),
    .section03_booth_list:nth-child(7n+3),
    .section03_booth_list:nth-child(7n+4),
    .section03_booth_list:nth-child(7n+5),
    .section03_booth_list:nth-child(7n+6),
    .section03_booth_list:nth-child(7n) {
        width: 50%;
    }

    .section03_booth_list_title p {
        font-size: 18px;
    }
}

@media screen and (max-width: 750px) {

.ex-control-list .ex-control-title span br {
    display: block !important;
}
    :root {
        --header-height: 80px;
    }

    .indexMain {
        width: 92%;
    }

    .top_left {
        max-width: unset;
        width: 80%;
        margin-right: 0px;
    }

    .menu {
        flex-wrap: wrap;
    }

    ul.menu li {
        width: 100%;
    }

    .section03_booth_list_title p {
        font-size: 16px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hamburger span {
        width: 20px;
    }

    .hamburger span+span {
        margin-top: 4px;
    }

    .mobile-menu {
        width: 100%;
    }

    .section01,
    .section02,
    .section03,
    .section04,
    .section05,
    .section06 {
        margin-bottom: 35px;
    }

    .section02_title p,
    .section03_title p,
    .section04_title p,
    .section05_title p {
        font-size: 18px;
    }

    .section01 {
        margin-top: var(--header-height);
    }

    .section01 {
        aspect-ratio: unset;
        background-size: 100%;
    }

    .section01Main {
        padding-top: 100px;
        width: 100%;
    }

    .section01Main img {
        width: 55%;
    }

    .section01BtnBox {
        width: 100%;
    }

    .section01Btn {
        height: 43px;
        font-size: 16px;
    }

    .section02_mainBox {
        flex-wrap: wrap;
    }

    .section02_main_left {
        width: 100%;
    }

    .section02_intro_subtitle {
        margin-bottom: 10px;
    }

    .section02_main_right {
        width: 100%;
        margin-top: 20px;
    }

    .section02_intro_title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section02_intro_title br {
        display: none;
    }

    .section02_intro_text {
        margin-bottom: 20px;
    }

    .section02_intro_btn {
        width: 47%;
        font-size: 16px;
        height: 43px;
        line-height: 25px;
    }

    .section02_photo_title {
        width: 98%;
    }

    .section02_photo {
        flex-wrap: wrap;
    }

    .section02_photo_list {
        width: 50%;
    }

    .section03_booth_list {
        padding: 0px;
        margin-bottom: 20px;
    }

    .section03_booth_list:nth-child(7n+1),
    .section03_booth_list:nth-child(7n+2),
    .section03_booth_list:nth-child(7n+3),
    .section03_booth_list:nth-child(7n+4),
    .section03_booth_list:nth-child(7n+5),
    .section03_booth_list:nth-child(7n+6),
    .section03_booth_list:nth-child(7n) {
        width: 100%;
    }

    .section03_booth_list_title {
        height: 50px;
    }

    .section03_booth_list_title p {
        font-size: 14px;
    }

    .section04_newsBox {
        flex-wrap: wrap;
    }

    .section04_news_left {
        width: 100%;
        padding: 3% 5%;
        border-top-left-radius: 20%;
    }

    .section04_news_first_main {
        padding-right: 0px;
    }

    .section04_news_first_date {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .section04_news_first_title,
    .section04_news_list_title,
    .section04_news_list_date {
        font-size: 16px;
    }

    .section04_news_first_text {
        padding-left: 0px;
    }

    .section04_news_first_arrow {
        margin-top: 15px;
    }

    .section04_news_list {
        padding: 25px 0;
    }

    .section04_news_list_mess {
        width: 100%;
    }

    .section05_mapBox img {
        max-width: 100%;
    }

    .section06_caseBox {
        flex-wrap: wrap;
    }

    .section06_case_list {
        width: 100%;
        margin-bottom: 20px;
    }

    .section06_title p {
        font-size: 18px;
        line-height: 28px;
    }

    .section06_title p.subtitle {
        font-size: 12px;
        line-height: 22px;
        width: 80%;
        margin: 0 auto;
    }

    .section06_case_list_main {
        padding: 4%;
    }

    .section06_case_list_title {
        font-size: 16px;
        line-height: 26px;
    }

    .section06_case_list_mess {
        font-size: 14px;
        line-height: 24px;
    }

    .section06_case_list_lighthigh {
        padding: 3%;
        margin-top: 15px;
    }

    .section06_case_list_lighthigh_title i {
        width: 20px;
        height: 20px;
    }

    .section06_case_list_lighthigh_title p {
        font-size: 14px;
    }

    .section06_case_list_lighthigh_main {
        font-size: 12px;
        line-height: 22px;
    }

    .footer {
        height: unset;
    }

    .footerBox {
        flex-wrap: wrap;
    }

    .footer_contactBox {
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .footer_contact_title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer_contact_list {
        margin-bottom: 10px;
    }

    .footer_contact_list_main {
        flex-wrap: wrap;
    }

    .footer_contact_list_main .name {
        width: 100%;
    }

    .footer_right {
        margin: 0 auto;
    }


    .footer_right {
        width: 250px;
    }

    .footer_qrcode p {
        font-size: 12px;
    }

    .footer:before {
        height: 30%;
    }

    .footer:after {
        width: 90%;
        right: 0px;
    }

    .page_centerbox .indexMain {
        padding-top: 5%;
    }

    .common_box {
        width: 100%;
        padding: 10% 5%;
    }

    .page_banner_main {
        padding: 0px;
    }

    .page_banner {
        height: 160px;
        background-position: center;
    }

    .page_banner_title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 5px;
    }

    .page_banner_subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .page_navBox {
        height: 38px;
    }

    .page_nav,
    .page_nav a {
        font-size: 14px;
    }

    .contact_list {
        width: 100%;
    }

    .contact_list i {
        width: 50px;
    }

    .photoList {
        width: 50%;
    }

    .newsList {
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .newsList_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .newsList_main {
        padding: 0px;
    }

    .newsList_main_top {
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .newsList_title {
        margin-right: 0px;
        font-size: 16px;
    }

    .newsList_date {
        font-size: 16px;
    }

    .newsList_mess {
        width: 90%;
        margin-right: 5%;
    }

    .newsList_arrow {
        width: 50px;
    }

    .common_box.forDownload {
        padding: 5%;
    }

    .ex_downloadlist {
        flex-wrap: wrap;
        font-size: 14px;
        line-height: 24px;
        border-radius: 20px;
        padding: 15px;
    }

    .ex_downloadlist_mess {
        width: 100%;
        margin: 0px;
        font-size: 12px;
        text-align: right;
    }
}








/*參展申請 start*/
.mianPage {
    width: 90%;
    margin: 0 auto;
}

.ex-control-list {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.ex-control-list .ex-control-title {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    background-color: #e8f3d6;
    border-bottom: 4px solid #dbeac4;
    display: flex;
    align-items: center;
    padding-left: 32px;
    background-image: url('../images/ny2026/registBg.png');
    background-size: auto 100%;
    background-position: right;
    background-repeat: no-repeat;
}

.ex-control-list .ex-control-title span {
    font-size: 18px;
    color: #527036;
    padding: 10px 0;
}

.ex-control-list .ex-control-title span br {
    display: none;
}

.ex-control-groupBox {
    background-color: #ffffff;
    padding: 15px 30px 30px 30px;
    box-sizing: border-box;
    /*border: 1px solid #e6e6e6;*/
    border-top: none;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.ex-control-groupBox.ex-cg-half {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ex-control-list .ex-control-group {
    width: 100%;
    display: block;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.ex-control-groupBox.ex-cg-half .ex-control-group {
    width: calc(50% - 15px);
}

.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child {
    width: 100%;
}

.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child input[type=checkbox],
.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child span {
    flex-shrink: 0;
}

.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child span {
    margin-right: 14px;
}

.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child label,
.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child input[type=text] {
    width: 100%;
}

.ex-control-groupBox.ex-cg-half.hasOthers .ex-control-group:last-child input[type=text] {
    height: 38px;
    background-color: #ffffff;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
    padding: 0 10px;
}

.ex-control-group .ex-control-label {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
    display: inline-flex;
}

.ex-control-group .ex-control-label b {
    color: #ca1a22;
    margin-left: 5px;
    font-weight: normal;
}

.ex-control-group .ex-controls input[type='text'],
.ex-control-group .ex-controls select,
.ex-controls-gray {
    width: 100%;
    height: 38px;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 10px;
}

.ex-control-group .ex-controls input[type='text'],
.ex-control-group .ex-controls select {
    background-color: #ffffff;
    outline: none;
}

.ex-controls-gray {
    line-height: 36px;
    background-color: #eeeeee;
}

.ex-control-groupBox-text,
.ex-cg-bigRContent-bottom p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
}

.ex-control-group label {
    display: inline-flex;
    align-items: center;
}

.ex-control-group label input[type="checkbox"],
.ex-control-group label .ex-checked {
    width: 20px;
    height: 20px;
    border-radius: 0px;
    box-sizing: border-box;
    margin-right: 14px;
    flex-shrink: 0;
}

.ex-control-group label .ex-checked {
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    color: #ffffff;
    box-sizing: border-box;
    background-color: #dddddd;
    border-radius: 5px;
}

.ex-control-group label span {
    font-size: 16px;
    line-height: 32px;
    display: block;
}

.ex-c-singleHalf {
    display: flex;
    border-bottom: 1px solid #e6e6e6;
}

.ex-c-singleHalf .ex-control-group {
    width: 50%;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 0px;
}

.ex-c-singleHalf .ex-control-group:first-child {
    padding-left: 0px;
    border-right: 1px solid #e6e6e6;
}

.ex-c-singleHalf.one .ex-control-group:first-child {
    border: none;
}

.ex-c-singleHalf .ex-control-group:last-child {
    padding-right: 0px;
}

.ex-c-singleHalf .ex-control-group .ex-controls {
    height: 100%;
}

.ex-control-group label.ex-cg-bigRBox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.ex-cg-bigR {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 15px;
    flex-shrink: 0;
}

.ex-cg-bigRContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ex-cg-bigRContent-top {
    height: 100%;
    margin-bottom: 20px;
}

.ex-cg-bigRContent-top p {
    height: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

.ex-cg-bigRContent-top ul.one_ul {
    padding-left: 15px;
    line-height: 39px;
    font-size: 16px;
    margin-bottom: 20px;
}

.ex-cg-bigRContent-top ul.one_ul li::marker {
    content: '· ';
    font-size: 20px;
    font-weight: bold;
}

.ex-cg-bigRContent-top ul.two_ul {
    padding-left: 15px;
    line-height: 29px;
    font-size: 14px;
}

.ex-cg-bigRContent-top ul.two_ul li::marker {
    content: '- ';
    font-size: 20px;
    font-weight: bold;
}

.ex-cg-bigRContent-bottom {
    flex-shrink: 0;
}

.ex-cg-bigRContent-top-img {
    width: 86%;
}

.ex-cg-bigRContent-top-img img {
    width: 100%;
}

.ex-control-group.ex-c-single {
    margin: 0px;
    padding: 25px 0;
    /*    border-bottom: 1px solid #e6e6e6;*/
}

.ex-control-group.ex-c-singleTips {
    margin: 0px;
    padding-top: 25px;
    font-size: 14px;
    color: #747474;
    line-height: 24px;
}

.ex-control-list.noSame .ex-control-title {
    border: none;
    background: none;
    height: 21px;
    padding-left: 18px;
    margin-bottom: 18px;
}

.ex-control-list.noSame .ex-control-title span {
    display: block;
    padding: 0 16px;
    color: #124a3a;
    font-size: 18px;
    line-height: 21px;
    position: relative;
}

.ex-control-list.noSame .ex-control-title span:before,
.ex-control-list.noSame .ex-control-title span:after {
    content: "";
    position: absolute;
    top: 0px;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0b5659 39%, #109e65);
}

.ex-control-list.noSame .ex-control-title span:before {
    left: 0px;
}

.ex-control-list.noSame .ex-control-title span:after {
    right: 0px;
}

.ex-control-list.noSame ol {
    padding-left: 50px;
    color: #747474;
    font-size: 14px;
    line-height: 24px;
}

.ex-control-list.noSame ol li {
    list-style: decimal;
}

.agree_op label {
    display: flex;
}

.agree_op label input[type=checkbox] {
    flex-shrink: 0
}

.agree_op label span {
    font-size: 14px;
    color: #747474;
    line-height: 24px;
}

.ex-control-btnBox .ex-control-group {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.ex-control-btnBox .ex-reset,
.ex-control-btnBox .ex-submit {
    width: 40%;
    max-width: 256px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    box-sizing: border-box;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin: 0 1%;
}

.ex-control-btnBox .ex-reset {
    /*background-image: linear-gradient(to right, #82c0f7, #758bf5, #1752f9);*/
    background-color: #ffffff;
    color: #6c6c6c;
}

.ex-control-btnBox .ex-submit {
    /*background-image: linear-gradient(to right, #3c8c7a, #1c9e79, #124a3a);*/
    background-color: #ef8028;
    color: #ffffff;
}

.intl-tel-input,
.flag-container {
    width: 100%;
}

#inputMobile {
    padding-left: 50px;
}

@media screen and (max-width: 800px) {
    .mianPage {
        width: 96%;
    }

    .ex-c-singleHalf {
        flex-wrap: wrap;
    }

    .ex-control-groupBox.ex-cg-half .ex-control-group,
    .ex-c-singleHalf .ex-control-group {
        width: 100%;
    }

    .ex-c-singleHalf .ex-control-group:first-child {
        border: none;
        border-bottom: 1px solid #e6e6e6;
    }

    .ex-c-singleHalf .ex-control-group:first-child,
    .ex-c-singleHalf .ex-control-group:last-child {
        padding: 25px 0;
    }

    .ex-c-singleHalf .ex-control-group:first-child {
        padding-top: 0px;
    }
}

@media screen and (max-width: 500px) {
    .mianPage {
        width: 100%;
    }

    .ex-control-groupBox {
        padding: 15px;
    }

    .ex-control-list .ex-control-title {
        background-position: right top;
        font-weight: bold;
    }

    .ex-control-list .ex-control-title span,
    .ex-control-list.noSame .ex-control-title span,
    .ex-control-btnBox input,
    .ex-control-btnBox button {
        font-size: 16px;
    }

    .ex-control-group .ex-control-label,
    .ex-control-groupBox-text,
    .ex-cg-bigRContent-bottom p,
    .ex-control-group label span,
    .ex-cg-bigRContent-top p,
    .ex-cg-bigRContent-top ul.one_ul,
    .ex-control-group.ex-c-single {
        font-size: 14px;
    }

    .ex-cg-bigRContent-top ul.two_ul,
    .ex-control-group.ex-c-singleTips,
    .ex-control-list.noSame ol,
    .agree_op label span {
        font-size: 12px;
    }

    .ex-cg-bigRContent-top ul.one_ul {
        line-height: 28px;
    }

    .ex-control-group label input[type="checkbox"],
    .ex-cg-bigR {
        width: 14px;
        height: 14px;
    }

    .ex-c-singleHalf .ex-control-group:first-child,
    .ex-c-singleHalf .ex-control-group:last-child,
    .ex-control-group.ex-c-single {
        padding: 15px 0;
    }

    .ex-control-group.ex-c-singleTips {
        padding-top: 15px;
    }

    .ex-c-singleHalf .ex-control-group:first-child {
        padding-top: 0px;
    }

    .ex-control-list.noSame .ex-control-title,
    .ex-control-list .ex-control-title {
        padding-left: 15px;
    }

    .ex-control-list.noSame ol {
        padding-left: 40px;
    }
}


.mainPage_title {
    color: #2e561f;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    /*margin-top: 20px;*/
    padding: 1px 0 25px 0;
    margin-bottom: 30px;
    position: relative;
    font-weight: bold;
}

.mainPage_title:after {
    content: "";
    width: 58px;
    height: 4px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -29px;
    background-color: #236b57;
}

.mainContent,
.subBaner_content,
.hsFooterBox_Main {
    width: 1080px;
    margin: 0 auto;
}

@media screen and (max-width: 500px) {
    .mainPage_title {
        font-size: 22px;
        line-height: 40px;
        padding: 0 0 12px 0;
    }

    .mainPage_title:after {
        width: 38px;
        margin-left: -19px;
    }
}

/*參展申請 end*/