@charset "UTF-8";

body {
    font-family: "Noto Sans TC", sans-serif;
    color: #000;
    font-size: 0.8vw;
    /*	line-height: 1.8;*/
    overflow-x: hidden;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*:focus {
    outline: none;
}

table {
    width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    /*    text-decoration: underline;*/
}

p,
.p {
    margin: 0;
    line-height: 1.5;
}

.hidden {
    overflow: hidden;
}

.clear:after {
    content: '';
    display: table;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.inner {
/*    max-width: 1050px;*/
    max-width: 54.68vw;
    margin: auto;
/*    padding: 0 25px;*/
    padding: 0 1.3vw;
}

main {}

section {}

.video_wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
    width: 0;
}

img {
    vertical-align: bottom;
}

.max100 {
    max-width: 100%;
}

.full {
    width: 100%;
}

.r {
    position: relative;
}

.a {
    position: absolute;
}

.flex {
    display: flex;
}

.flex_1 {
    flex: 1;
}

.grid {
    display: grid;
}

/* header */
header {
    padding: 3% 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
main {
    padding-top: 10.6vw;
}

nav {}

/* footer */
footer {}

/* title & font-size */
h2 {
    margin: 0;
    line-height: 1.5;
}

h3 {
    margin-bottom: 20px;
}

h4 {
    color: #259bb1;
}

h5 {
    color: #ffffff;
}

big {}

small {
    font-size: 80%;
}

/* breed */
.bread {
    margin-bottom: 40px;
}

.bread a {
    position: relative;
    padding-right: 30px;
}

.bread a:hover {
    text-decoration: underline;
}

.bread a:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #EEA71B;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}

.btns > *[class^='btn']:last-child {
    margin-right: 0;
}

.align_center .btn1 {
    margin-top: 15px;
}

.btn {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
    display: block;
    margin: auto;
}

.btn1 {
    display: inline-block;
    background: #259bb1;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    padding: 15px 65px;
    padding-left: 45px;
    position: relative;
    line-height: 1;
}

.btn1:after {
    position: absolute;
    content: '';
    border: solid white;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -8px;
    top: 50%;
    right: 40px;
    width: 15px;
    height: 15px;
}

.btn1:hover {
    background: #1c7c8e;
}

/* form */
.form_wrap {
    margin-bottom: 1vw;
}

.form_wrap > label {
    display: block;
    color: #259bb1;
}

textarea {
    width: 100%;
    resize: none;
    padding: 1vw;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    padding: 0;
    /* text-align: left; */
    font-size: 1.25vw;
    margin-bottom: 1.5vw;
    overflow: hidden;
    line-height: 1.5;
}

/* input */
.input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    /* must! */
    width: 100%;
    padding: 0 0.5vw;
    border: none;
    height: 2.8vw;
    box-shadow: 0 0.5vw 0.5vw rgb(148 123 7 / 20%);
    margin: 0;
    color: #333333;
    max-width: 20vw;
    border-radius: 2.6vw;
    text-align: center;
    letter-spacing: 0.2vw;
    font-size: 1.4vw;
}

.input::-moz-placeholder {
    color: #777;
    opacity: 1;
    font-size: 1.4vw;
}

.input:-ms-input-placeholder {
    color: #777;
    font-size: 1.4vw;
}

.input::-webkit-input-placeholder {
    color: #777;
    font-size: 1.4vw;
}

.input[disabled] {
    background: #D1D1D1;
    -webkit-text-fill-color: #acacac;
    color: #acacac;
    opacity: 1;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}

.input-group > * {
    display: table-cell;
    vertical-align: top;
}

.input-group input {
    /*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}

.select1 {
    position: relative;
    text-align-last: center;
}

.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    background: #ffffff;
}

.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}

.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}

.radio_wrap input[type='radio'] {
    display: none;
}

.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
}

.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}

.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}

.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}

.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 0.6vw;
    height: 0.6vw;
    border-radius: 5vw;
    background: #259bb1;
    top: 0.6vw;
    left: 0.2vw;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 0.8vw;
    gap: 0.4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox_wrap input[type='checkbox'] {
    /*    display: none;*/
    width: 0.7vw;
    height: 0.7vw;
}

.checkbox_wrap a {
    color: currentColor;
    text-decoration: underline;
}

/*
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    display: inline-block;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 5px;
    border: 2px solid #ffffff;
    top: 50%;
	margin-top: -.5em;
    left: 2px;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
.checkbox_wrap input[type='checkbox']:disabled + label {
    color: #999999;
}
.checkbox_wrap input[type='checkbox']:disabled + label:before {
    border-color: #999999;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 100px;
    border-color: #259bb1;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
*/

/* elements */
.box1 {
    border: 0.1vw solid #fff;
    border-radius: 1vw;
    padding: 2.4vw;
    margin: 1.6vw auto;
    background: #fb7302;
    box-shadow: 0 0 0.2vw rgba(0, 0, 0, .3);
    max-width: 44vw;
    color: #fff;
    font-size: 1.4vw;
    font-weight: 500;
}

.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {}

.tab_btn {
    display: flex;
}

.tab_btn > * {
    padding: 0 2px;
    position: relative;
    z-index: 1;
    padding: 10px;
    text-align: center;
    border: 1px solid #cccccc;
    cursor: pointer;
    flex: 1;
}

.tab_btn > *:not(:last-of-type) {
    border-right: 0;
}

.tab_btn > *:last-of-type {
    border-right: 1px solid #cccccc;
}

.tab_con {
    border: 1px solid #cccccc;
    border-top: none;
}

.tab_con > div {
    opacity: 0;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    display: none;
    padding: 10px;
}

.tab_con > div.show {
    display: block;
}

.tab_con > div.fade {
    opacity: 1;
}

.tab_con .inner {
    padding: 0 94px;
}

/* acc */
.acc_con {
    display: none;
}


/* list */
.no_list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.list1 {
    background: #ffffff;
    border-radius: 10px;
}

.list1 tr {
    border-bottom: 1px solid #c33333;
    padding: 10px 20px;
}

.list1 tr:last-child {
    border-bottom: 0;
}

.list1 td {
    padding: 10px 20px;
    vertical-align: middle;
}

.list1 td:first-child {
    padding-right: 5px;
}

.list1 td:last-child {
    padding-left: 5px;
    width: 110px;
}

/* pagers */
.pagers {
    text-align: center;
    margin: 2.6vw auto;
    position: relative;
    z-index: 1;
}

.pagers .num {
    color: #000;
    font-size: 1.25vw;
    padding: 0.6vw;
    min-width: 1.5vw;
    display: inline-block;
    box-sizing: border-box;
}

.pagers .num.cur,
.pagers .num:hover {
    text-underline-offset: 0.2vw;
    text-decoration: underline;
}

.pagers .btn {
    padding: 6px;
    min-width: 30px;
    display: inline-block;
    box-sizing: border-box;
}

/* owl-carousel */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    font-size: 0px;
    background: url(../img/arrow-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 28px;
    height: 47px;
    position: absolute;
    top: 50%;
    margin-top: -27px;
}

.owl-nav button.owl-prev {
    left: 15px;
}

.owl-nav button.owl-next {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    /*IE*/
    filter: FlipH;
    right: 15px;
}

.owl-dots {
    text-align: center;
    display: flex;
    justify-content: flex-end;
}

.owl-dots button.owl-dot {
    width: 7vw;
    height: 10px;
    background: #434343;
    display: inline-block;
}

.owl-dots button.owl-dot {
    transition: all .3s;
}

.owl-dots button.owl-dot.active,
.owl-dots button.owl-dot:hover {
    background: #CD0001;
}

/* popup */
.p_layout {
    position: relative;
    background: #ff8400;
    padding: 2rem;
    background-image: url(../img/bg-02.jpg);
    background-size: cover;
    min-height: 40vh;
    margin: 10vw auto;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    max-width: 800px;
    font-size: 28px;
}

.mfp-container {
    padding: 0;
}

.mfp-bg {
    background: rgba(0, 0, 0, .75);
}

.mfp-close-btn-in .mfp-close {
    right: 1.5rem;
    top: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 3rem;
    line-height: 1.5rem;
    color: #fff;
    opacity: 1;
}

.mfp-close:active {
    top: 1.5rem;
}

/* scrollbar */
.scroll_con {
    height: 80vh;
    padding-right: 3vw;
}

.mCSB_scrollTools .mCSB_draggerRail {
    /*	width: 18px;*/
    background: none;
    /*	height: calc( 100% - 100px );*/
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 10px;
    /*	width: 18px;*/
    background: #f098bc;
    /*	border: 4px solid #fff;*/
}

/*
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
	position: absolute;
	content: '';
	left: 0;
	top: calc( 70% - 4px );
	width: 100%;
	height: 4px;
	background: #fff;
}
*/
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: #f098bc;
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: #f098bc;
}

.mCSB_outside + .mCSB_scrollTools {
    right: 20px;
}

.mCSB_scrollTools .mCSB_draggerContainer {
    top: 50px;
    bottom: 50px;
}

.mCSB_scrollTools .mCSB_dragger {
    /*	height: calc( 100% - 100px ) !important;*/
}

/* global */
.logo {
    display: inline-block;
    margin-left: 6%;
    width: 4vw;
}

.menu_wrap {
    cursor: pointer;
    width: 7.2vw;
}

.menu {
    top: 0;
    right: 0;
    position: fixed;
    background: #fff;
    width: 27.6vw;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 0 3px #fff;
    z-index: 2;
    height: 100%;
    padding: 3% 4% 3% 6%;
    overflow-y: auto;
    box-shadow: 0 10px 10px rgb(148 123 7 / 20%);
    display: none;
}

.menu.show {
    display: block;
}

.menu ul {
    margin-top: 5.2vw;
}

.menu li {
    padding: 0.8vw 0;
}

.menu a {
    display: block;
    position: relative;
}

.menu a:hover:before {
    position: absolute;
    content: '';
    background: url(../img/menu-arrow.png);
    width: 1.25vw;
    height: 1.4vw;
    left: -2vw;
    top: 2vw;
    background-size: 100% 100%;
}

.menu li:nth-of-type(1) a:hover:before {
    top: 2vw;
}

.menu li:nth-of-type(2) a:hover:before {
    top: 2.5vw;
}

.menu li:nth-of-type(3) a:hover:before {
    top: 2.6vw;
}

.mask.show {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(0, 0, 0, .8);
}

.menu_close {
    cursor: pointer;
    width: 1.3vw;
}

/* 首頁 */
body.home {
    background-color: #c5f1ff;
    position: relative;
    /*    overflow-y: hidden;*/
}

body.home:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 14vw;
    background-image: url(../img/index/bg-deco.png);
    background-size: auto 100%;
    background-position: center;
    z-index: -1;
}

body.home .logo {
    display: none;
}

body.home header {
    padding-bottom: 0;
}

.kv_wrap::-webkit-scrollbar,
.kv::-webkit-scrollbar {
    display: none;
}

.kv {
    overflow: hidden;
    height: 100%;
    max-height: 49vw;
}

.kv .a {
    left: 50%;
}

.bg_wrap img.bg {
    object-fit: cover;
    object-position: top center;
    position: relative;
    pointer-events: none;
    margin: 0 auto;
/*    width: 100%;*/
}

.kv .cloud1 {
    width: 15.4%;
    top: 3%;
    margin-left: -54%;
}

.kv .cloud2 {
    width: 12.7%;
    top: 7.8%;
    margin-left: 33.3%;
}

.kv .cloud3 {
    width: 28%;
    bottom: -14%;
    margin-left: -55.7%;
}

.kv .cloud4 {
    width: 32.9%;
    bottom: -10%;
    margin-left: 28%;
}

.kv .bird {
    top: 7.8%;
    margin-left: 16.9%;
    width: 5.8%;
}

.veg_box {
    width: 10.9%;
    margin-left: -33%;
    top: 24.2%;
    aspect-ratio: 210 / 158;
}

.veg_box .box_in {
    width: 66%;
    left: 28.8%;
    top: 16.4%;
}

.veg_box .veg {
    width: 71.4%;
    left: 25.5%;
    top: 0;
}
.kv .market:hover + .veg_box .veg {
    animation: up_down .8s infinite steps(2, start) alternate;
}

.veg_box .box {
    width: 100%;
    bottom: 0;
    left: 0;
}

@keyframes up_down {
    100% {
        /*        opacity: 1;*/
        transform: translateY(-10px) scale(1.05);
    }
}

.girl1 {
    top: 49.7%;
    margin-left: -38.9%;
    z-index: 1;
    width: 5.1%;
}

.kv .link {
/*    background: red;*/
/*    opacity: .5;*/
    z-index: 3;
}

.kv .market {
    width: 18%;
    margin-left: -36.8%;
    top: 24%;
    aspect-ratio: 350/350;
}

.building {
    top: 50.8%;
    margin-left: -29.9%;
    width: 54%;
}

.build {
    position: relative;
    z-index: 1;
}

.dog {
    top: 54%;
    margin-left: -61%;
    width: 25.66%;
/*    border: 1px solid red;*/
}

.kv .msg {
    width: 13%;
    height: 34.7%;
    margin-left: -48%;
    top: 46%;
}

.kv .login {
    width: 20%;
    height: 35%;
    margin-left: -28.9%;
    top: 33%;
}

.kv .canteen {
    width: 25%;
    height: 94%;
    margin-left: 18.2%;
    top: -12%;
}

.kv .curry {
    top: 54.8%;
    margin-left: -26.3%;
    width: 5.6%;
}

.kv .bench {
    top: 38.3%;
    margin-left: -9.9%;
    width: 5%;
}

.kv .spoon {
    width: 13.38%;
    margin-left: 26%;
    top: -11.5%;
    z-index: 1;
}
.kv .spoon .hover {
    display: none;
}
.kv .canteen:hover ~ .spoon .origin {
    display: none;
}
.kv .canteen:hover ~ .spoon .hover {
    display: block;
}

.kv .boy {
    top: 43%;
    /*    margin-left: -57px;*/
    margin-left: -2.2%;
    width: 4.4%;
}
/*
.kv .boy .hover {
    display: none;
}
.kv .boy:hover .boy1 {
    display: none;
}
.kv .boy:hover .hover {
    display: block;
}
*/

.kv .tour {
    top: 69%;
    margin-left: -3.6%;
    z-index: 1;
    width: 12.7%;
}

.kv .pot {
    top: 65%;
    margin-left: 26.9%;
    width: 5.7%;
}

.kv .worker {
    top: 56%;
    margin-left: 36.4%;
    width: 2.2%;
}

.kv .school {
    width: 8.2%;
    height: 33.9%;
    margin-left: -4%;
    top: 14%;
}

.kv .spring {
    top: 41%;
    margin-left: -3.9vw;
    display: none;
}

.kv .pop1 {
    top: 45%;
    margin-left: -50.2%;
    width: 4.8%;
    animation: popup .8s infinite steps(2, start) alternate;
    z-index: 1;
}

.kv .pop2 {
    top: 46%;
    margin-left: -15.9%;
    width: 15%;
    z-index: 2;
}
.kv .login:hover ~ .pop2 {
    animation: popup .8s infinite steps(2, start) alternate;
}

@keyframes popup {
    0% {
        /*        opacity: 0;*/
        transform: scale(1.2);
    }

    100% {
        /*        opacity: 1;*/
        transform: scale(1);
    }
}

.kv .girl2 {
    top: 46%;
    margin-left: -21.5%;
    width: 6%;
    z-index: 1;
}

.kv .total {
    width: 10.8%;
    top: 14.8%;
    margin-left: -22.3%;
    padding: 2.8% 0.5% 0;
    text-align: right;
    aspect-ratio: 205/135;
/*    border: 1px solid red;*/
}

.kv .total:before {
    position: absolute;
    content: '';
    background-image: url(../img/index/light_y.png);
    background-size: 100% auto;
    width: 67%;
    height: 9%;
    animation: flash 1s infinite steps(2, end);
    left: 16%;
    top: 8%;
}

@keyframes flash {
    100% {
        opacity: 0;
    }
}

.kv .total .num {
    font-size: 1.9vw;
    font-weight: 800;
    color: #ef8a37;
    margin-right: 22%;
        margin-top: 12%;
}

.kv .clock {
    width: 3.1%;
    top: 14.6%;
    margin-left: -1.5%;
    aspect-ratio: 1/1;
    /* border: 1px solid green; */
}
.clock .minute {
    width: 38%;
    top: 52%;
    left: 50%;
    transform-origin: left;
}
.clock .hour {
    width: 11.6%;
    top: 22%;
    left: 44%;
    transform-origin: bottom;
}
.kv .school:hover + .clock .minute {
    animation: clock_rotate 6s infinite steps(12, start);
}

.kv .school:hover + .clock .hour {
    animation: clock_rotate 18s infinite steps(12, start);
}

@keyframes clock_rotate {
    100% {
        transform: rotate(360deg);
    }
}

.kv .announce_box {
    background: #fffcf0;
    border: 0.1vw solid #000;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.kv .marquee {
    top: 0;
    margin-left: -15%;
    width: 29%;
    height: 6.5%;
    z-index: 1;
    /* overflow: hidden; */
}

.kv .marquee:before {
    position: absolute;
    content: '';
    background-image: url(../img/index/announce-icon.png);
    width: 14%;
/*    height: 100%;*/
    background-size: 100% 100%;
    left: -9%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    aspect-ratio: 82/64;
}

.kv .announce {
    overflow: hidden;
    padding: 1% 0;
}
.marquee1 {
    white-space: nowrap;
    
    font-size: 1.25vw;
    font-weight: 500;
}
.announce .txt {
    font-size: 1.25vw;
    font-weight: 500;
/*    padding: 0.1% 0.3%;*/
/*    display: inline-block;*/
      padding-right: 1.25vw;       /* 每段文字之間的間距 */
    line-height: 1;
}

.marquee-container {
/*      width: 100%;*/
/*
      overflow: hidden;
      background: #f0f0f0;
      border: 1px solid #ccc;
      padding: 10px;
      box-sizing: border-box;
*/
/*        height: 38px;*/
    cursor: default;
    }

/*
.marquee-content {
    display: flex;
    width: 200%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    flex: 0 0 auto;
    grid-column-gap: 5%;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee .scroll {
    animation-name: scroll;
    animation-duration: 50s;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    cursor: default;
    animation-play-state: running;
}

.marquee:hover .scroll {
    animation-play-state: paused;
}

.text-block {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    width: 100%;
}
*/
.slideshow {
    height: 1.5vw;
}

/* 里民登記處 */
body.login {
    background-image: url(../img/bg-login.jpg);
    background-color: #ffeea3;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    max-height: 100dvh;
}
body.login:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 14vw;
    background-image: url(../img/index/bg-deco.png);
    background-size: auto 100%;
    background-position: center;
    z-index: -1;
}

body.login .member_wrap {
    display: none;
}
.login_box {
    width: 30vw;
    margin: auto;
}
.login_box h2 {
    max-width: 9vw;
    margin: auto;
}
.gender_wrap {
    justify-content: center;
    gap: 3%;
    margin: 3% 0;
}

.gender_wrap .item {
    cursor: pointer;
    width: 14vw;
}

.gender_wrap .item.cur {
    opacity: .6;
}

.ps {
    color: #ff0000;
    font-size: 0.7vw;
    line-height: 1.5;
    margin: 1vw 0;
    font-weight: 400;
}

.btn_wrap {
    margin: 2vw auto 1vw;
    display: flex;
    justify-content: center;
}

.member_wrap {
    gap: 0.78vw;
    justify-content: flex-end;
    align-items: center;
    margin: -0.5vw 0.78vw 0 auto;
}

.member_wrap img {
    /*    width: 88px;*/
    width: 4.5vw;
}

.member_wrap .name {
    /*    font-size: 32px;*/
    font-size: 1.6vw;
    font-weight: 500;
    max-width: 8.3vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#finished {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-login {
    width: 8vw;
}
    

/* 愛咖里留言板 */
body.page_index {
    background-image: url(../img/bg-msg-top.png), url(../img/bg-msg-btm.png);
    background-color: #fff9de;
    background-position: top center, bottom center;
    background-repeat: no-repeat;
    /*    padding-bottom: 10%;*/
    padding-bottom: 13vw;
    background-size: contain;
}

body.page_index .inner {
/*    max-width: 1080px;*/
    max-width: 56.25vw;
}

.msg_calendar:before {
    position: absolute;
    content: '';
    background-image: url(../img/deco-bird.png);
    background-size: 100% 100%;
    width: 6.7vw;
    height: 2.1vw;
    left: -29%;
    top: 70%;
}

.msg_top {
    margin: 5% 0;
    gap: 3%;
}
.msg_top .item {
    flex: 1;
}

.msg_top p {
/*    font-size: 22px;*/
    font-size: 1.1vw;
    font-weight: 500;
    line-height: 2;
}

.msg_top h2 {
    margin-top: 20%;
    margin-bottom: 0;
}

.hr {
    background-image: url(../img/hr-tree.png);
    height: 2.2vw;
    background-size: cover;
    margin: 5% 0;
}

.msg_box {
    margin: 3% 0;
}

.msg_box.m1:after {
    /* 1034*511 */
    position: absolute;
    content: '';
    background: url(../img/msg-deco-01.png);
    /* 172*174 */
    background-size: 100% 100%;
    width: 16.6%;
    height: 34%;
    right: -4%;
    bottom: -1%;
}

.msg_box.m2:after {
    /* 1034*511 */
    position: absolute;
    content: '';
    background: url(../img/msg-deco-02.png);
    /* 122*219 */
    background-size: 100% 100%;
    width: 11.7%;
    height: 42%;
    left: -4%;
    bottom: -11%;
}

.chap_wrap {
    margin-top: 10%;
}

.chap_grid {
    gap: 6%;
    grid-template-columns: repeat(2, 1fr);
/*    max-width: 1000px;*/
    max-width: 52vw;
    margin: 0 auto 15%;
}

.chap_grid .img {
    border-radius: 1.5vw 1.5vw 0 0;
    overflow: hidden;
}

.chap_grid .con {
    background: #fff;
    border-radius: 0 0 1.5vw 1.5vw;
    padding: 5% 0 0;
}

.chap_grid .tit {
    font-size: 2.3vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5%;
}

.chap_grid p {
    padding: 0 5% 10%;
    font-size: 1vw;
}

.btn-chap {
    max-width: 22.9vw;
}

.chap_grid .item:nth-of-type(2):after {
    /* 470*647 */
    position: absolute;
    content: '';
    background: url(../img/deco-tree.png);
    /* 107*131 */
    background-size: 100% 100%;
    width: 22.7%;
    height: 20%;
    right: -16%;
    bottom: -6%;
    z-index: 1;
}

body.page_detail {
    background-image: url(../img/bg-msg-in-top.png);
    background-color: #ffeea4;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

body.page_detail .btm_bg {
    background-image: url(../img/bg-msg-in-btm.png);
    background-size: cover;
    height: 14vw;
    background-position: top center;
    margin-top: -14vw;
    position: relative;
}

article {
    background: #fff;
}

article .con {
    padding: 0 8% 5%;
}

article h2 {
    font-size: 2.5vw;
    /*    letter-spacing: 2px;*/
}

.txt_area {
    font-size: 1vw;
    /*    letter-spacing: 2px;*/
}

.txt_area p {
    margin-bottom: 1.5vw;
    /*    font-weight: 500;*/
}

.txt_area .pic {
    margin-bottom: 1.5vw;
}

.reply {
    background: #fff;
    padding-bottom: 10%;
}

.reply .tit {
    background: #fff9de;
    color: #595656;
    font-weight: 700;
    font-size: 1.25vw;
    padding: 6% 3% 1%;
    border-bottom: 1px solid #ffed98;
}

.reply .member_wrap {
    justify-content: flex-start;
    margin: 0;
}

.reply .member_wrap img {
    width: 4vw;
}

.reply .member_wrap .name {
    /* font-size: 1.5vw; */
}

.reply_box {
    padding: 3%;
    border-bottom: 1px solid #ffed98;
}

.reply_box:last-of-type {
    border-bottom: none;
}

.reply .date {
    color: #b3b3b4;
    font-size: 0.7vw;
}

.reply_top {
    align-items: center;
    justify-content: space-between;
}
.btn-msg {
    width: 15.6vw;
}

.bubble_wrap {
    margin-left: 4.4vw;
    margin-top: -0.5vw;
}

.bubble_top {
    padding: 3% 3% 1%;
    background: #ffed98;
    margin-bottom: 0.7vw;
    border-radius: 0 0.5vw 0.5vw 0.5vw;
    position: relative;
}

.bubble_top:before {
    position: absolute;
    content: '';
    background-image: url(../img/icon-msg-arrow-02.png);
    background-size: 100% 100%;
    width: 0.4vw;
    height: 0.7vw;
    left: -0.3vw;
    top: -0.2vw;
}

.bubble_other {
    padding: 3% 3% 1%;
    background: #ececec;
    border-radius: 0.5vw;
    align-items: flex-start;
    gap: 2%;
}

.bubble_other .member_wrap {
    gap: 0.2vw;
}

.bubble_other .member_wrap img {
    width: 1.9vw;
}

.bubble_other .member_wrap .name {
    font-size: 1.1vw;
}

.bubble_other .bubble_con {
    margin-top: 0.3vw;
}

body.msg {
    background-image: url(../img/bg-login.jpg);
    background-position: top center;
    padding-bottom: 3%;
    background-size: cover;
    background-attachment: fixed;
}

.upload_wrap {
    background: #fff;
    border-radius: 1vw;
    box-shadow: 0 0.3vw 0.3vw #bb9149;
}

.upload_wrap:before {
    position: absolute;
    content: '';
    background-image: url(../img/icon-msg-arrow.png);
    background-size: 100% 100%;
    width: 5.6vw;
    height: 1.3vw;
    left: 50%;
    top: -1.3vw;
    transform: translateX(-50%);
}

.upload_top {
    padding: 3% 3% 1%;
}

.upload_top p {
    font-size: 1.25vw;
}

.upload_btm {
    padding: 2% 5%;
    background: #fff8db;
    border-radius: 0 0 1vw 1vw;
}
.btn-pic {
    width: 2.3vw;
}
.btn-submit {
    width: 8.6vw;
}
.msg_index .msg_img {
    width: 29.5vw;
    flex: initial;
}

/* 學堂 */
body.school_index {
    background-image: url(../img/bg-msg-top.png), url(../img/bg-school-mid.png), url(../img/bg-msg-btm.png);
    background-position: top center, 0 45.5vw, bottom center;
    background-repeat: no-repeat, repeat-x, no-repeat;
}

.news_grid {
    gap: 5%;
    grid-template-columns: repeat(3, 1fr);
/*    max-width: 1000px;*/
    max-width: 52vw;
    margin: 0 auto 30%;
}

.news_grid .item {
    background: #fff;
    padding: 34% 5% 5%;
    border: 0.1vw solid #ff830f;
    margin-top: 25%;
}

.news_grid .tit {
    font-weight: 700;
    line-height: 1.2;
}

.news_grid .img {
    position: absolute;
    top: -20%;
    width: 90%;
}

.btn-detail-s {
    display: block;
    text-align: center;
    max-width: 5.5vw;
    margin: 10% auto 0;
}

.tit_wrap {
    align-items: flex-start;
    gap: 5%;
    justify-content: space-between;
    margin: 5% auto;
}
.msg_index .tit_wrap {
    width: 23.9vw;
}

.tit_wrap .date {
    font-weight: 500;
    border-width: 0 0 0 1px;
    border-style: solid;
    padding-left: 2%;
}
.newsp{
    font-size: 150%;
}
.news_grid .date {
    font-size: 0.6vw;
    border-color: #b3b3b4;
    color: #b3b3b4;
}

.news_top_wrap {
    margin-bottom: 5%;
}

.news_top_wrap .arrow {
    max-width: 16%;
    margin: auto;
}

.news_top {
    background: #ff830f;
    border-radius: 1.5vw;
    padding: 2% 5% 3%;
    color: #fff;
}
.news_top > .tit {
    max-width: 15vw;
    margin: auto;
}

.news_top:before,
.news_top:after {
    position: absolute;
    content: '';
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.news_top:before {
    background-image: url(../img/deco-bird.png);
    background-size: contain;
    width: 6.7vw;
    height: 2vw;
    left: -19%;
    top: 5.7vw;
}

.news_top:after {
    background-image: url(../img/deco-tree-02.png);
    background-size: 100% 100%;
    width: 9%;
    height: 7.4vw;
    right: -3%;
    bottom: -7%;
}

body.school_index .inner {
/*    max-width: 1300px;*/
    max-width: 67.7vw;
}

.news_flex {
    gap: 3%;
    margin-top: 2%;
}

.news_flex .img {
    max-width: 50%;
}

.news_flex .tit {
    font-size: 1.8vw;
    font-weight: 700;
    line-height: 1.2;
}

.news_flex .date {
    font-size: 0.9vw;
    color: #754c2e;
    border-color: #fff;
}

.news_flex .year {
    color: #ba6e3a;
}

body.school_index .news_flex .tit_wrap {
    gap: 0;
    margin: 0;
}

.news_flex .con {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8vw;
}

.btn-detail {
    margin-bottom: 0;
    max-width: 15vw;
}

.btn-challenge {
    margin: 5% auto 10%;
    max-width: 26.7vw;
}

body.school_index .msg_top {
    margin-top: 0;
}

body.school_detail .date {
    font-size: 1vw;
    color: #b3b3b4;
    border-color: #b3b3b4;
}

body.school_detail .date .year {
    color: #c7c8c8;
}

/* 食堂 */
body.canteen .msg_top {
    flex-direction: row-reverse;
    align-items: center;
/*    margin-top: 0;*/
}
.canteen .msg_top {
    gap: 0;
}
.canteen .msg_top h2 {
    width: 23vw;
}
.canteen .msg_img {
    flex: initial;
    width: 36.9vw;
}
.canteen_grid {
    gap: 1.6vw;
    grid-template-columns: repeat(2, 1fr);
    max-width: 52vw;
    margin: 0 auto 15%;
}

.canteen_grid .icon {
    max-width: 5vw;
    height: 1.7vw;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.5vw;
}
.canteen_grid .icon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.canteen_grid .loc {
    padding: 4vw 0;
    position: relative;
}

.canteen_grid .loc1 {
    background: #ffeea4;
}

.canteen_grid .loc2 {
    background: #ef8a37;
    color: #fff;
}

.canteen_grid .loc3 {
    background: #e57870;
    color: #fff;
}

.canteen_grid .img {
    text-align: center;
}

.canteen_grid .img img {
    object-fit: cover;
    height: 19vw;
    max-width: 100%;
}

.tit_menu {
    text-align: center;
    padding: 0.2vw;
    border-width: 1px 0;
    border-style: solid;
    border-color: #333;
    font-size: 1.25vw;
    font-weight: 500;
    margin: 1.6vw 0;
}

.con_menu {
    font-size: 1.1vw;
    /* text-align: center; */
    line-height: 1.5;
}

.tit_store {
    font-weight: 700;
    font-size: 2.5vw;
    padding: 0 1.6vw;
    margin: 0 auto 0.8vw;
    width: fit-content;
    /* line-height: 1; */
}

.tit_store:before,
.tit_store:after {
    position: absolute;
    content: '';
    width: 0.8vw;
    height: 0.9vw;
    top: 50%;
    /* margin-top: 1px; */
    background-image: url(../img/icon-arrow-02.png);
    background-size: 100% 100%;
}

.tit_store:before {
    left: 0;
}

.tit_store:after {
    right: 0;
    transform: scaleX(-1);
}

.tit_store a {
    color: currentColor;
}

.loc1 .tit_store:before,
.loc1 .tit_store:after {
    background-image: url(../img/icon-arrow-01.png);
}

.loc .desc {
    font-size: 1vw;
    line-height: 1.5;
    margin: 0 10% 1rem;
}

.menu_curry {
    margin: 0 10%;
}

.canteen_wrap {
    margin-top: 15%;
}

.canteen_wrap:before,
.canteen_wrap:after {
    position: absolute;
    content: '';
}

.canteen_wrap:before {
    background-image: url(../img/deco-bird.png);
    width: 6.7vw;
    height: 2vw;
    left: -27%;
    top: 36vw;
    background-repeat: no-repeat;
    background-size: contain;
}

.canteen_wrap:after {
    background-image: url(../img/deco-people-01.png);
    width: 8.5vw;
    height: 9.7vw;
    right: -11%;
    top: 49vw;
    background-size: 100% 100%;
}

.canteen_wrap .tit_wrap {
    max-width: 23.6vw;
}

body.canteen {
    background-image: url(../img/bg-msg-top.png), url(../img/bg-school-mid.png), url(../img/bg-msg-btm.png);
    background-position: top center, 0 42.7vw, bottom center;
    background-repeat: no-repeat, repeat-x, no-repeat;
    position: relative;
}

/* RADIO BUTTON SELECTORS */
[value="loc1"]:checked ~ .canteen_grid .loc:not([data-category="loc1"]),
[value="loc2"]:checked ~ .canteen_grid .loc:not([data-category="loc2"]),
[value="loc3"]:checked ~ .canteen_grid .loc:not([data-category="loc3"]) {
    display: none;
}

input[name='curry_loc'] {
    display: none;
}

.label_curry {
    position: relative;
    padding-left: 1.2vw;
    font-weight: 500;
    font-size: 0.9vw;
    margin-right: 0.8vw;
    margin-bottom: 0.8vw;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
}

.label_curry:before {
    position: absolute;
    content: '';
    width: 0.8vw;
    height: 0.8vw;
    display: block;
    left: 0;
    top: 50%;
    margin-top: -0.3vw;
}

.label_curry[for='loc1']:before {
    background: #ffeea4;
}

.label_curry[for='loc2']:before {
    background: #ef8a37;
}

.label_curry[for='loc3']:before {
    background: #e57870;
}

.btn-store {
    position: absolute;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    width: 24vw;
    display: block;
}

body.canteen .inner {
    padding-bottom: 15.6vw;
}

/* 市集 */
body.market_index {
    background-image: url(../img/bg-msg-top.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
body.market_index {
    background-color: #ff8400;
    position: relative;
/*    overflow: hidden;*/
}
body.market_index:before {
    position: absolute;
    width: 100%;
    height: 59%;
    content: '';
    background-image: url(../img/bg-01.png);
    background-size: contain;
     opacity: .05; 
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom;
}
body.market_index:after {
    position: absolute;
    width: 100%;
    height: 12.7vw;
    content: '';
    background-image: url(../img/bg-msg-btm.png);
    background-size: contain;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom;
}
body.market_index .msg_top {
    margin: 7% auto;
}

body.market_index .msg_top h2 {
    margin-top: 25%;
    margin-bottom: 5%;
    width: 21.8vw;
}
body.market_index .msg_img {
    width: 35vw;
    flex: none;
}

.q_curry {
    max-width: 28vw;
    margin: 0 auto 1rem;
}

.q_curry .q {
    max-width: 70%;
    animation: floatUp 2s infinite;
    display: block;
    margin: auto;
    opacity: 0;
}

@keyframes floatUp {
    100% {
        opacity: 1;
        transform: translateY(-1rem);
    }
}

.q_curry .curry_img {
    margin-top: -9%;
}

.trans {
    transition: all .3s;
}

.btn-make {
    margin-top: 1.2vw;
    width: 27vw;
}

.btn-make:hover {
    transform: scale(1.03);
}

body.market_index .box1:after {
    position: absolute;
    content: '';
    background-image: url(../img/deco-girl-01.png);
    background-size: 100% 100%;
    width: 6vw;
    height: 9.4vw;
    left: 3%;
    bottom: 2%;
}

body.recipe {
    background-color: #ff8400;
    background-image: url(../img/bg-recipe.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.txt_make {
    max-width: 10vw;
    margin: auto;
}

.box2 {
    border-radius: 1vw;
    padding: 2.4vw;
    margin: 0.8vw auto 1.6vw;
    background: #fff;
    box-shadow: 0 0 0.2vw rgba(0, 0, 0, .3);
    max-width: 27vw;
}

.box2:before,
.box2:after {
    position: absolute;
    content: '';
    background-size: 100% 100%;
}

.box2:before {
    background-image: url(../img/msg-deco-02.png);
    background-size: 100% 100%;
    width: 3.2vw;
    height: 5.8vw;
    left: -0.8vw;
    bottom: -1.25vw;
}

.box2:after {
    background-image: url(../img/deco-tree.png);
    background-size: 100% 100%;
    width: 3vw;
    height: 4.8vw;
    right: -2.4vw;
    bottom: -1.2vw;
}

.btn-choose {
    margin-bottom: 1.6vw;
    display: flex;
    background: #fc8100;
    box-shadow: 0px 0.1vw 0.2vw 0px rgba(0, 0, 0, 0.4);
    border-radius: 2.6vw;
    padding: 0.4vw 0.8vw;
    color: #fff;
    font-size: 1.4vw;
    gap: 0.4vw;
    font-weight: 900;
    justify-content: center;
    /* padding-left: 9.5rem; */
    align-items: center;
}

.btn-choose:hover {
    transform: scale(1.03);
}

.btn-choose:hover:before {
    position: absolute;
    content: '';
    background-image: url(../img/icon-choose.png);
    background-size: 100% 100%;
    width: 1.1vw;
    height: 1.3vw;
    left: 20%;
    top: 50%;
    margin-top: -0.67vw;
}

.btn-choose .num {
    padding-left: 1.6vw;
    /* width: 80px; */
    letter-spacing: 0.1vw;
    text-align: left;
}
.txt_meat.pc {
    width: 21vw;
    margin: auto;
    display: block;
}
.txt_meat.mo {
    display: none;
}
.meat_list {
    margin: 1.6vw 0 0;
}
.meat_list img {
    width: 8.3vw;
    height: 1.8vw;
    object-fit: contain;
    object-position: left center;
}

.tit_box {
    gap: 0.8vw;
    align-items: center;
    margin-bottom: 1.6vw;
}

.tit_box:before,
.tit_box:after {
    content: '';
    width: 100%;
    height: 0.1vw;
    background: #fc8100;
}

.tit_box img {
    width: 3.1vw;
}

.pot_wrap {
    max-width: 10vw;
    margin: 0 auto 1.6vw;
}

.tableware {
    align-items: flex-end;
    gap: 32%;
    justify-content: space-between;
    margin-bottom: 2.5%;
}

.pot_wrap .fork {
    width: 32.6%;
    animation: tablewareMove .8s infinite alternate;
    transform: rotate(-20deg);
}

.pot_wrap .spoon {
    width: 32.6%;
    animation: tablewareMove .8s infinite alternate;
    transform: rotate(20deg);
}

@keyframes tablewareMove {
    100% {
        transform: rotate(0);
    }
}

/* 193*192 */
.food {
    position: absolute;
    top: 6.25%;
    left: 44%;
    width: 10%;
    height: 24%;
}

.food .item {
    border-radius: 52vw;
    background: #fb7302;
    width: 30%;
    height: 13%;
    opacity: 0;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-delay: calc(var(--i) * 0.6);
}

.food .item.active {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.food .item.i1 {
    margin-left: 0.3vw;
    margin-bottom: 0.4vw;
    margin-left: 1%;
    margin-bottom: 50%;
}

.food .item.i2 {
    width: 42%;
    height: 19%;
    margin-bottom: 22%;
}

.food .item.i3 {
    width: 42%;
    height: 19%;
    margin-left: 66%;
    margin-bottom: 16%;
}

.food .item.i4 {
    margin-left: 30%;
}

.potato {
    width: 44%;
    left: 28%;
    top: 37%;
    animation: floatUp2 .8s infinite alternate;
}

@keyframes floatUp2 {
    100% {
        transform: translateY(-15%);
    }
}

body.recipe_result {
    background-image: url(../img/bg-recipe-result.png);
    background-color: #ff8400;
    background-position: top center;
    background-repeat: no-repeat;
    /*    padding-bottom: 250px;*/
    position: relative;
}

body.recipe_result:after {
    position: absolute;
    content: '';
    background-image: url(../img/bg-msg-btm.png);
    background-size: auto 100%;
    width: 100%;
    height: 12.7vw;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-position: center;
}

.box3 {
    margin: 1.6vw auto 0;
    background: #fb7302;
    box-shadow: 0.2vw 0.2vw 0.2vw rgba(0, 0, 0, .3);
    max-width: 44vw;
}

.box3 .box_top {
    padding: 2.5vw 2.5vw 1.2vw;
    color: #fff;
    position: relative;
    margin-top: 4vw;
}

.box3 .box_top:before {
    position: absolute;
    content: '';
    background-image: url(../img/deco-girl-02.png);
    background-size: 100% 100%;
    width: 9.9vw;
    height: 6.5vw;
    left: 50%;
    transform: translateX(-59%);
    top: -4.3vw;
}

.box3 .box_top figure {
    margin: 0.8vw 0;
}

.box3 .box_btm {
    padding: 1.6vw 2.4vw 12.5vw;
    background: #fff;
    font-size: 1.5vw;
    font-weight: 500;
}

.self {
    font-size: 1.4vw;
    letter-spacing: 0.2vw;
    margin-top: 0.4vw;
}

.self big {
    display: block;
    font-weight: 700;
    font-size: 225%;
    margin-top: 0.4vw;
}

.box_subtit {
    text-align: center;
    padding: 0.4vw;
    border-width: 1px 0;
    border-style: solid;
    border-color: #fb7302;
    font-size: 1.6vw;
    font-weight: 700;
    margin: 0 auto 0.8vw;
    color: #fb7302;
    max-width: 31vw;
}

.box_subtit.deco {
    position: relative;
}

.box_subtit.deco:before {
    position: absolute;
    content: '';
    background-image: url(../img/msg-deco-02.png);
    background-size: 100% 100%;
    width: 5vw;
    height: 9.6vw;
    left: -9.8vw;
    top: -1.5vw;
}

.food_list {
    max-width: 31vw;
    margin: 0 auto 3.2vw;
}

.food_list td {
    padding: 0.4vw;
    white-space: nowrap;
}

.food_list td:last-of-type {
    text-align: right;
}

.food_list td.subM {
    text-align: left;
}

.steps_list {
    max-width: 31vw;
    margin: 0 auto 3.2vw;
}

.steps_list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.4vw;
    gap: 0.8vw;
    margin-bottom: 1.6vw;
}

.steps_list .num {
    color: #ea882f;
    font-size: 4.7vw;
    font-weight: 400;
    line-height: 1;
}

.steps_list .num.carry {
    text-indent: -1ch;
}

.steps_list .con {
    line-height: 1.8;
    padding-top: 0.4vw;
}

.tips {
    font-size: 1vw;
    color: #f78c23;
    font-weight: 500;
    gap: 0.8vw;
    line-height: 1.5;
    justify-content: center;
    align-items: center;
    max-width: 31vw;
    margin: 3.2vw auto;
}

.tips .txt {
    flex: 1;
}
.btn-join {
    width: 23.6vw;
}

.scroll_right {
    background: #ff830f;
    display: block;
    padding: 0.5vw 1vw;
    position: relative;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 3;
    
    display: none;
}

.scroll_right img {
    max-width: 20vw;
}

body.home {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100dvh;
    gap: 1rem;
}

body.home header {
/*    position: relative;*/
    z-index: 3;
    width: 100%;
/*    right: 0;*/
    top: 0;
    justify-content: flex-end;
    
    position: fixed;
}

body.home main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    
    padding-top: 7.7vw;
}
/* 隱私權政策 */
.privacy .inner {
    padding-bottom: 0.8vw;
}
.privacy h2 {
    font-size: 1.25vw;
}
.privacy p {
    margin-bottom: 0.8vw;
}

/* pc & mobile */
.pc {
    display: initial;
}

.mo {
    display: none;
}

@media only screen and (max-width: 1280px) {
    .announce .txt {
/*        font-size: 1.25rem;*/
        font-size: 1vw;
    }
}
@media only screen and (max-width: 1024px) {
    .mobile_body .login_box {
        width: auto;
    }
    .mobile_body .inner {
        max-width: inherit;
        padding: 0 25px;
    }
    .mobile_body .gender_wrap .item {
        width: 35vw;
        max-width: 130px;
    }
    .mobile_body .login_box h2 {
        max-width: 42vw;
    }
    .mobile_body .scroll_right {
        padding: 10px 20px;
    }
    .mobile_body .scroll_right img {
        max-width: 400px;
    }
    .mobile_body .gender_wrap {
        gap: 15px;
        margin: 6% 0;
    }

    .mobile_body .input {
        font-size: 24px;
        height: 40px;
        max-width: 290px;
        border-radius: 50px;
    }
    .mobile_body .input::-moz-placeholder {
        font-size: 24px;
    }

    .mobile_body .input:-ms-input-placeholder {
        font-size: 24px;
    }

    .mobile_body .input::-webkit-input-placeholder {
        font-size: 24px;
    }
    .mobile_body .ps {
        font-size: 14px;
        margin: 20px 0;
    }
    .mobile_body .checkbox_wrap input[type='checkbox'] {
        width: 13px;
        height: 13px;
    }
    .mobile_body .btn-login {
        width: 160px;
    }
    .mobile_body .checkbox_wrap {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    body.page_index.mobile_body {
        background-image: url(../img/bg-msg-top.png), url(../img/bg-msg-btm-m.png);
        background-size: 300%, 100%;
        padding-bottom: 15%;
    }

    .mobile_body .msg_top {
        flex-direction: column;
        align-items: center;
    }

    .mobile_body .msg_top p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .mobile_body .q_curry {
        max-width: 72vw;
    }

    .mobile_body .hr {
        height: 4vw;
        background-size: 100% 100%;
    }

    .mobile_body .msg_calendar:before {
        width: 17vw;
        height: 5.4vw;
        right: 0;
        top: -8vw;
        left: inherit;
        background-size: 100% 100%;
    }
    .mobile_body.msg_index .tit_wrap {
        width: 60vw;
    }
    .mobile_body .chap_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 3%;
        max-width: none;
    }
    .mobile_body .chap_grid .img {
        border-radius: 15px 15px 0 0;
    }
    .mobile_body .chap_grid .con {
        border-radius: 0 0 15px 15px;
    }

    .mobile_body .chap_grid .tit {
        font-size: 24px
    }

    .mobile_body .chap_grid p {
        font-size: 16px;
    }

    .mobile_body .chap_grid .item:nth-of-type(2):after {
        opacity: 0;
    }

    .mobile_body .btn-chap {
        max-width: 63vw;
    }

    .mobile_body .pagers .num {
        font-size: 16px;
    }

    body.page_detail.mobile_body {
        background-size: 100% auto;
    }

    body.page_detail.mobile_body .btm_bg {
        background-image: url(../img/bg-msg-in-btm-m.png);
        height: 31vw;
        margin-top: -15vw;
        background-size: 100% 100%;
    }

    .mobile_body article h2 {
        font-size: 26px;
    }

    .mobile_body .reply .member_wrap img {
        width: 44px;
    }

    .mobile_body .reply .member_wrap .name {
        font-size: 24px;
    }

    .mobile_body .bubble_wrap {
        margin-left: 3rem;
        margin-top: 0.2rem;
    }

    .mobile_body .bubble_other .member_wrap img {
        width: 32px;
    }

    .mobile_body .bubble_other .member_wrap .name {
        font-size: 18px;
    }

    .mobile_body .bubble_other {
        flex-direction: column;
        padding: 2rem 1rem 1rem;
    }

    .mobile_body .btn-msg {
        width: 50vw;
    }

    .mobile_body .bubble_top {
        padding: 1rem;
    }

    .mobile_body .reply .tit {
        font-size: 16px;
        padding: 1.5rem 1rem 1rem;
    }

    .mobile_body .reply_box {
        padding: 2rem 2rem 2rem 1rem;
    }

    .mobile_body .upload_top {
        padding: 1rem 1rem 0;
    }

    .mobile_body .upload_top p {
        font-size: 2.1vw;
    }

    .mobile_body textarea {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    .mobile_body .btn-pic {
        width: 24px;
    }

    .mobile_body .upload_wrap:before {
        width: 9.6vw;
        height: 2.1vw;
        top: -2.1vw;
    }

    .mobile_body .upload_btm {
        padding: 0.5rem 1rem;
    }
    .mobile_body .btn-submit {
        width: 150px;
    }
    .mobile_body .btn_wrap {
        margin: 1.5rem auto 1rem;
    }

    body.school_index .msg_top {
        max-width: 90%;
    }

    body.school_index .msg_top item:nth-of-type(1) {
        position: relative;
        left: -2%;
    }

    body.school_index.mobile_body .msg_top h2 {
        margin-top: 5%;
        position: relative;
        left: 14%;
    }

    body.school_index.mobile_body .msg_top p {
        position: relative;
        left: 7%;
    }

    .mobile_body .news_top {
        margin: 0 -3.3vw;
        border-radius: 0;
        padding: 10% 10% 5%;
    }

    .mobile_body .news_top > .tit {
        max-width: 40vw;
        margin: 0 auto 5%;
    }

    .mobile_body .news_flex {
        flex-direction: column;
        gap: 2vw;
    }

    .news_top:before {
        display: none;
    }

    .mobile_body .news_flex .img {
        max-width: inherit;
    }
    .mobile_body {
        font-size: 16px;
    }
    .newsp{
        font-size: 100%;
    }
    .mobile_body .news_flex .tit {
/*        font-size: 3.5vw;*/
        font-size: 26px;
    }

    .mobile_body .news_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2vw;
        max-width: none;
    }
    .mobile_body .btn-detail-s {
        max-width: 40vw;
    }

    .mobile_body .btn-detail {
        max-width: 52vw;
        margin-top: 2vw;
    }

    body.mobile_body .news_top:after {
        width: 16vw;
        height: 19vw;
        right: -6%;
        bottom: 1%;
    }

    body.mobile_body .news_top_wrap .arrow {
        max-width: 100px;
    }

    body.school_index.mobile_body {
        background-image: url(../img/bg-msg-top.png), url(../img/bg-msg-btm-m.png);
        background-size: 270%, 100%;
        background-position: top center, bottom center;
        background-repeat: no-repeat, no-repeat;
    }
    
    body.school_index.mobile_body {
        max-width: inherit;
    }
    
    body.page_index.mobile_body .inner {
/*        padding: 0 25px;*/
        max-width: inherit;
    }
    .mobile_body .txt_area {
        font-size: 16px;
    }
    .mobile_body.msg_detail .txt_area {
        padding: 0;
    }

    body.school_detail.mobile_body article {
        margin: 0 -25px;
    }

    .mobile_body .btn-challenge {
        max-width: 70vw;
        margin: 0% auto 10%;
    }

    .mobile_body article .con {
        padding: 0 25px 5%;
    }

    body.canteen.mobile_body {
        background-image: url(../img/bg-msg-top.png), url(../img/bg-msg-btm-02-m.png);
        background-size: 270%, 100%;
        background-position: top center, bottom center;
        background-repeat: no-repeat, no-repeat;
    }

    body.canteen.mobile_body .msg_top {
        flex-direction: column;
        margin-top: 3rem;
    }

    body.canteen.mobile_body .msg_top h2 {
        margin-left: 10%;
        width: auto;
        margin-top: 6%;
    }

    .mobile_body .canteen_grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: inherit;
        gap: 2rem;
    }

    .mobile_body .canteen_grid .img img {
        height: 180px;
    }

    .mobile_body .label_curry {
        font-size: 14px;
        padding-left: 1.5rem;
        margin-right: 1rem;
    margin-bottom: 1rem;
    }
    
    .mobile_body .label_curry:before {
        width: 1rem;
        height: 1rem;
        margin-top: -7px;
    }

    body.canteen.mobile_body .tit_wrap {
/*        max-width: 30vw;*/
        max-width: 60vw;
        margin: 5% auto;
    }

    .mobile_body .tit_store {
        font-size: 28px;
        padding: 0 1rem;
    }

    .mobile_body .tit_store:before,
    .mobile_body .tit_store:after {
        width: 8px;
        height: 10px;
    }

    .mobile_body .loc .desc {
        font-size: 14px;
    }

    .mobile_body .tit_menu {
        font-size: 16px;
        margin: 1rem 0;
    }

    .mobile_body .con_menu {
        font-size: 14px;
    }
    
    .mobile_body .canteen_grid .icon {
        max-width: 50px;
        height: 18px;
        top: 1.5rem;
    }

    .canteen_wrap:before {
        display: none;
    }

    .mobile_body .canteen_grid .loc {
        padding: 3rem 0;
    }

    .mobile_body .canteen_wrap:after {
        width: 82px;
        height: 93px;
        right: -7%;
        top: 317vw;
        display: none;
    }

    body.canteen.mobile_body .inner {
        padding-bottom: 47%;
    }

    .mobile_body .btn-store {
        bottom: 0.5%;
        width: 60vw;
    }
    
    .mobile_body .pagers {
        margin: 3rem 0;
    }

    body.market_index.mobile_body {
        background-size: 230%, 100%;
    }
    body.market_index.mobile_body:before {
        opacity: 0;
    }

    body.market_index.mobile_body .msg_top {
        margin: 0;
    }

    body.market_index.mobile_body .msg_top h2 {
        width: 90%;
        margin: 10% auto 5%;
    }

    .mobile_body .box1 {
        font-size: 14px;
        padding: 2rem 1.5rem;
        margin-bottom: 5rem;
        max-width: inherit;
        border-radius: 20px;
    }

    body.market_index.mobile_body .box1:after {
        position: static;
        width: 60px;
        height: 90px;
        display: block;
        margin: auto;
    }

    .mobile_body .btn-make {
        margin-top: 0;
        width: 70vw;
    }

    body.market_index.mobile_body .btn_wrap {
        margin: 1.5rem 0;
    }
    body.market_index.mobile_body:after {
        background-image: url(../img/bg-msg-btm-m.png);
        height: 23.7vw;
    }
    body.market_index.mobile_body .msg_img {
        width: auto;
    }

    body.recipe.mobile_body {
        background-image: url(../img/bg-recipe-m.png);
        background-size: 100% auto;
    }

    .mobile_body .box2 {
        padding: 2rem 1.5rem 3rem;
        margin-bottom: 3rem;
        max-width: inherit;
        border-radius: 20px;
    }

    .mobile_body .tit_box {
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .mobile_body .tit_box img {
        height: 35px;
        width: auto;
    }

    .mobile_body .txt_meat.mo {
        width: 45%;
        margin: auto;
        display: block;
    }
    .mobile_body .txt_meat.pc {
        display: none;
    }

    .mobile_body .pot_wrap {
        margin-bottom: 1rem;
        max-width: 42%;
    }

    .mobile_body .btn-choose {
        margin-bottom: 1rem;
        gap: 0.5rem;
        border-radius: 50px;
        padding: 0.5rem 1rem;
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
    }

    .mobile_body .btn-choose:hover:before {
        width: 12px;
        height: 15px;
        margin-top: -7px;
    }

    .mobile_body .meat_list {
        margin-top: 1rem;
    }

    .mobile_body .box2:before {
        width: 43px;
        height: 75px;
        left: -3%;
        bottom: -4%;
    }

    .mobile_body .box2:after {
        width: 57px;
        height: 64px;
        right: -5%;
        bottom: -5%;
    }

    .mobile_body .txt_make {
        max-width: 50%;
        margin: 0 auto 1rem;
    }

    .mobile_body .btn-choose .num {
        font-size: 22px;
        padding-left: 3rem;
    }

    .mobile_body .btn-choose img {
        height: 25px;
        width: 100px;
    }

    body.recipe_result.mobile_body {
        background-image: url(../img/bg-recipe-result-m.png);
    }

    body.recipe_result.mobile_body .inner {
        padding: 0;
    }
    .mobile_body .box3 {
        max-width: inherit;
    }
    .mobile_body .box3 .box_top:before {
        width: 95px;
        height: 63px;
        top: -40px;
    }

    .mobile_body .self {
        font-size: 14px;
    }

    .mobile_body .self big {
        margin-top: 0;
    }

    .mobile_body .box3 .box_top {
        padding: 1.5rem 1.5rem 0.7rem;
        margin-top: 40px;
    }

    .mobile_body .box_subtit {
        font-size: 16px;
        max-width: 80%;
        padding: 0.3rem;
    }

    body.recipe_result.mobile_body:after {
        background-image: url(../img/bg-msg-btm-m.png);
        width: 100%;
        height: 23.7vw;
    }

    .mobile_body .box3 .box_btm {
        padding: 2rem 1rem 30vw;
        font-size: 14px;
    }

    .mobile_body .food_list {
        max-width: 80%;
        margin: 0 auto 2rem;
    }

    .mobile_body .steps_list {
        max-width: 80%;
    }

    .mobile_body .steps_list li {
        font-size: 14px;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .mobile_body .steps_list .num {
        font-size: 45px;
    }

    .mobile_body .steps_list .con {
        padding-top: 0.3rem;
    }

    .mobile_body .tips {
        font-size: 14px;
        gap: 0.5rem;
        max-width: 80%;
        margin: 2rem auto;
    }

    .mobile_body .tips .icon {
        width: 60px;
    }

    .mobile_body .btn-join {
        width: 80%;
    }

    .mobile_body .food_list td {
        padding: 0.3rem;
    }

    .mobile_body .box_subtit.deco:before {
        left: -11vw;
        width: 40px;
        height: 72px;
        top: -4vw;
    }

    .mobile_body .p_layout {
        max-width: 90%;
        font-size: 1.5rem;
    }
    
    .mobile_body .kv {
        max-height: 100dvh;
    }
    .mobile_body .kv_wrap {
        overflow-y: hidden;
        text-align: center;
        overflow-x: scroll;
        white-space: nowrap;
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
/*        height: 100%;*/

    }
    body.mobile_body .tit_wrap {
        font-size: 20px;
    }
    body.mobile_body .news_grid .date {
        font-size: 14px;
    }
    .msg_index .msg_img {
        width: auto;
    }
    .mobile_body .txt_area p {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .mobile_body .txt_area .pic {
        margin-bottom: 1rem;
    }
    .mobile_body .reply .date {
        font-size: 14px;
    }
    .mobile_body .reply .member_wrap {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    .mobile_body .bubble_top:before {
        width: 9px;
        height: 14px;
        left: -8px;
        top: -6px;
    }
    .mobile_body.privacy .inner {
        padding-bottom: 1rem;
    }
    .mobile_body.privacy h2 {
        font-size: 24px;
    }
    .mobile_body.privacy p {
        margin-bottom: 1rem;
    }
    .mobile_body.canteen .msg_img {
        width: auto;
    }
    .pc {
        display: none;
    }

    .mo {
        display: initial;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
    .mobile_body header {
/*        padding: 30px 0;*/
        padding: 15px 0;
    }

    .mobile_body .logo {
        width: 50px;
        margin-left: 15px;
    }

    .mobile_body .menu_wrap {
        width: 85px;
    }

    .mobile_body .menu {
        width: 100%;
        background: #ffefaa;
        padding: 25px 50px;
    }

    .mobile_body .menu ul {
        margin-top: 40px;
    }

    .mobile_body .menu li {
        text-align: center;
        border-bottom: 2px dashed #7b7b7b;
        padding: 15px 0;
    }

    .mobile_body .menu li:last-of-type {
        border: none;
    }

    .mobile_body .menu a:hover:before {
        display: none;
    }

    .mobile_body .menu_close {
        margin-right: -25px;
        width: 25px;
    }

    .mobile_body .member_wrap {
        gap: 6px;
        margin: -10px 15px 0 auto;
    }

    .mobile_body .member_wrap img {
        width: 44px;
    }

    .mobile_body .member_wrap .name {
        font-size: 16px;
        max-width: 80px;
    }

    .mobile_body .kv {
        display: inline-block;
        height: 100%;
    }

    .mobile_body .veg_box .box_in {
        width: 66%;
        left: 28.8%;
    }

    .mobile_body .veg_box .veg {
        width: 71.4%;
        left: 25.5%;
    }

    .mobile_body .veg_box .box {
        width: 100%;
        bottom: 0;
        left: 0;
    }

    .mobile_body .kv .market {
        width: 18%;
        margin-left: -36.8%;
        top: 18%;
    }
    
    .mobile_body .kv .boy {
        top: 31%;
    }
    
    .mobile_body .kv .bench {
        top: 28.3%;
    }
    
    .mobile_body .girl1 {
        top: 35.7%;
    }
    
    .mobile_body .kv .worker {
        top: 39%;
    }
    
    .mobile_body .building {
        top: 39%;
    }

    .mobile_body .build {
        width: 100%;
    }
    
    .mobile_body .kv .pot {
        top: 48%;
    }
    
    .mobile_body .kv .curry {
        top: 37.8%;
    }

    .mobile_body .dog {
/*        margin-left: -37%;*/
/*        width: 140px;*/
    }

    .mobile_body .kv .spoon {
        margin-left: 26%;
    }

    .mobile_body .kv .tour {
        margin-left: -2.5%;
        top: 56%;
    }

    .mobile_body .kv .school {
        width: 8.2%;
        height: 28.9%;
        margin-left: -4%;
        top: 5%;
    }

    .mobile_body .kv .spring {
        margin-left: -3.7%;
        width: 75px;
    }

    .mobile_body .kv .pop1 {
        margin-left: -50%;
    }

    .mobile_body .kv .total {
        /* width: 9%; */
        /* height: 11%; */
        margin-left: -22.5%;
        padding: 2.8% 1% 0;
        /* aspect-ratio: 207/136; */
        top: 10.2%;
    }

    .mobile_body .veg_box {
        top: 18%;
    }

    .mobile_body .kv .total:before {
        left: 18%;
    }

    .mobile_body .kv .total .num {
        font-size: 19px;
        /*        border: 1px solid green;*/
        margin-right: 16%;
        margin-top: 13%;
    }

    .mobile_body .kv .clock {
        width: 57px;
        margin-left: -1.5%;
        top: 19%;
    }

    .mobile_body .kv .announce_box {
        border: 1px solid #000;
        width: 100%;
        height: 70%;
    }

    .mobile_body .announce .txt {
/*        font-size: 16px;*/
        font-size: 0.8vw;
/*        padding: 0 0.3vw;*/
        padding: 2vw;
    }

    body.home.mobile_body:before {
        position: fixed;
        left: 0;
        top: 0;
        height: 135px;
    }
    body.mobile_body header {
        transition: all .4s;
    }
    body.home.mobile_body header {
/*        position: relative;*/
        z-index: 4;
        width: 100%;
        right: 0;
        top: 0;
        justify-content: flex-end;
    }
    body.home.mobile_body header.fixed {
        background: #c5f1ff;
    }
    body.mobile_body header.fixed {
        background: #ffeea6;
    }
    body.mobile_body main {
        padding-top: 25vw;
    }
    .mobile_body .scroll_right {
        display: block;
    }
    .mobile_body .kv {
        width: 960px;
        height: auto;
    }
    .mobile_body .bg_wrap {
        height: 660px;
/*        height: 470px;*/
    }
    
}

@media (max-width: 1024px) and (orientation: landscape) {
    body.home.mobile_body {
        max-height: inherit;
    }
    

    .mobile_body .announce .txt {
/*        font-size: 16px;*/
        font-size: 0.8vw;
        line-height: 1;
    }

    .mobile_body .kv .total .num {
        font-size: 20px;
        margin-top: 9%;
    }

    .mobile_body .kv .marquee:before {
        width: 12%;
        left: -9%;
    }

    .mobile_body .news_grid .item {
        padding: 40% 5% 5%;
        margin-top: 18%;
    }

    .mobile_body .kv .total {
        top: 10.3%;
        margin-left: -22.2%;
        padding: 3% 0.5% 0;
    }

    .mobile_body .kv .market {
        top: 17%;
    }

    .mobile_body .veg_box {
        top: 18%;
    }

    .mobile_body .kv .boy {
        margin-left: -2.5%;
        top: 31%;
    }

    .mobile_body .building {
        top: 37.8%;
        margin-left: -34%;
        width: 62%;
    }

    .mobile_body .kv .bench {
        top: 28.3%;
    }

    .mobile_body .kv .worker {
        top: 40%;
    }

    .mobile_body .kv .pot {
        top: 49%;
        margin-left: 27.9%;
    }

    .mobile_body .kv .curry {
        top: 39.8%;
        margin-left: -28.3%;
    }

    .mobile_body .girl1 {
        top: 34.7%;
    }

    .mobile_body .kv .clock {
        top: 10.5%;
    }
    .mobile_body .kv .school {
        top: 7%;
    }
    .mobile_body .kv .tour {
        top: 54%;
        margin-left: -2.6%;
    }
    .mobile_body .kv .cloud3 {
        bottom: -5%;
    }
    .mobile_body .kv .cloud4 {
        bottom: 0;
    }
}

@media (max-width: 750px) and (orientation: portrait) {
    .mobile_body .kv .market {
        top: 18%;
    }
    .mobile_body .girl1 {
        top: 35%;
    }
    .mobile_body .kv .curry {
        top: 39%;
    }
    .mobile_body .kv .bench {
        top: 28%;
    }
    .mobile_body .kv .school {
        top: 10%;
    }
    .mobile_body .kv .boy {
        top: 31%;
    }
    .mobile_body .kv .worker {
        top: 40%;
    }
    .mobile_body .kv .pot {
        top: 49%;
    }
    .mobile_body .kv .clock {
        width: 30px;
        top: 10.5%;
    }
    .mobile_body .building {
        top: 36.8%;
        margin-left: -33.9%;
        width: 60%;
    }
    .mobile_body .kv .tour {
        top: 53%;
    }
    .mobile_body .kv .total {
        width: 11%;
        height: auto;
        margin-left: -22.6%;
        padding: 3% 0.5% 0;
/*        aspect-ratio: 207 / 136;*/
        top: 10.6%;
    }
    .mobile_body .kv .total .num {
        font-size: 19px;
        margin-right: 19%;
        margin-top: 8%;
    }
    .mobile_body .kv .marquee:before {
        left: -10%;
    }
    .mobile_body .veg_box {
        top: 18%;
    }
    .mobile_body .kv .cloud3 {
        bottom: 0%;
    }
    .mobile_body .kv .cloud4 {
        bottom: 0%;
    }
    .mobile_body .announce .txt {
        font-size: 16px;
    }
    .mobile_body .slideshow {
        height: 30px;
    }
}

@media (max-width: 960px) and (orientation: landscape) {
    .mobile_body .kv {
        width: 960px;
        height: auto;
        max-height: inherit;
    }
    .mobile_body .bg_wrap {
        height: 550px;
    }
    .mobile_body .kv .market {
        top: 21%;
    }
    .mobile_body .veg_box {
        top: 21%;
    }
    .mobile_body .kv .school {
        top: 16%;
        height: 25%;
    }
    .mobile_body .kv .clock {
        top: 12.5%;
    }
    .mobile_body .kv .total {
        top: 12.3%;
    }
    .mobile_body .girl1 {
        top: 42.7%;
    }
    .mobile_body .building {
        top: 44.8%;
    }
    .mobile_body .scroll_right {
        display: block;
    }
    .mobile_body .kv .tour {
        top: 62%;
    }
    .mobile_body .kv .pot {
        top: 57%;
    }
    .mobile_body .kv .worker {
        top: 48%;
    }
    .mobile_body .kv .bench {
        top: 34.3%;
    }
}

/* index hover... */
.kv .school:before {
    position: absolute;
    content: '';
    background-image: url(../img/text2.png);
    aspect-ratio: 1;
/*    width: 3.6vw;*/
    /* width: 44%;
    background-size: contain;
    left: 70%;
    top: 25%; */
    width: 41.5%;
    background-size: contain;
    left: 28.3%;
    top: 18.9%;
    height: 64%;
}
.kv .school:hover:before {
    background-image: url(../img/text2-2.png);
}
.kv .canteen2:before {
    position: absolute;
    content: '';
    background-image: url(../img/text4-1.png);
    aspect-ratio: 1;
    background-size: contain;
    width: 67.7%;
    height: 29%;
    margin-left: -3.2%;
    top: 40.5%;
}
.kv .canteen2:hover:before {
    background-image: url(../img/text4.png);
}
.kv .login2:before {
    position: absolute;
    content: '';
    background-image: url(../img/text1-1.png);
    aspect-ratio: 1;
    background-size: contain;
    width: 90.5%;
    height: 42.5%;
    margin-left: 6%;
    top: -2%;
}
.kv .login2:hover:before {
    background-image: url(../img/text1.png);
}
.kv .msg2:before {
    position: absolute;
    content: '';
    background-image: url(../img/text5-1.png);
    aspect-ratio: 1;
    background-size: contain;
    width: 69%;
    height: 31.5%;
    margin-left: 18%;
    top: -4.8%;
}
.kv .msg2:hover:before {
    background-image: url(../img/text5.png);
}
.kv .market2:before {
    position: absolute;
    content: '';
    background-image: url(../img/text3-1.png);
    aspect-ratio: 1;
    background-size: contain;
    width: 46%;
    height: 31.5%;
    margin-left: 43%;
    top: 27.2%;
}
.kv .market2:hover:before {
    background-image: url(../img/text3.png);
}
@media (max-width: 1024px) and (orientation: portrait) {
    .mobile_body .kv .school:before {
        display:none;
    }
    .mobile_body .kv .canteen2:before {
        display:none;
    }
    .mobile_body .kv .login2:before {
        display:none;
    }
    .mobile_body .kv .msg2:before {
        display:none;
    }
    .mobile_body .kv .market2:before {
        display:none;
    }
}