audio, canvas, embed, iframe, img, object, svg, video{
    display: unset;
}
.content-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.bg-primary{
    background-color: #009688;
}
.bg-gray-100{
    background-color: #F3F4F6;
}
.bg-white{
    background-color: #fff;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected{
    transition: background-color 5000s ease-out 0.5s;
}
.right-nav{
    font-size: 14px;
    display: flex;
}
.right-nav a{
    display: inline-block;
    padding: 0 24px;
    color: #009284;
    line-height: 1.5;
    border-left: 1px solid #99C7C7;
}
.right-nav a:first-child{
    border-left: none;
}
.right-nav a:hover,
.right-nav a:active{
    color: #fff;
    background-color: #009284;
}

.nav-box {}
.nav-box .content-box {
    display: flex;
}
.nav-box .content-box .item {
    width: 100%;
    text-align: center;
    position: relative;
}
.nav-box .content-box .item > a{
    color: #fff;
    display: block;
    padding: 12px 0;
    font-size: 17px;
}

.nav-box .content-box .item > a:hover{
    background-color: #20B09C;
}

.nav-box .content-box .item .group{
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 99;
}
.nav-box .content-box .item:hover .group{
    display: block;
}
.nav-box .content-box .item:hover .group a{
    color: #009688;
    display: block;
    font-size: 14px;
    padding: 5px 0;
}
.nav-box .content-box .item .group a:hover,
.nav-box .content-box .item .group a:active{
    background-color: #009688;
    color: #fff;
}


.index-news .content-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.index-news .content-box .news-box{
    width: 49%;
}


.menulist{
    display: flex;
    align-items: flex-end;
}
.menulist .item{
    width: 200px;
    height: 40px;
    background: linear-gradient(to right, #009284, #56C1B3);
    color: #fff;
    font-size: 18px;
    border-top-right-radius: 5px;
    transform: skew(10deg);
    margin-left: -5px;
    text-align: center;
    line-height: 40px;
}
.menulist .item button{
    transform: skew(-10deg);
    outline: none;
}
.menulist .item.active{
    width: 200px;
    /* transform: skew(0); */
    color: #000;
    font-size: 24px;
    border-bottom: 52px solid #fff;                  
    border-right: 10px solid transparent;
    position: relative;
    letter-spacing: 2px;
}
.menulist .item:first-child.active{
    transform: skew(0);
}
.menulist .item.active button{
    width: 100%;
    line-height: 52px;
    position: absolute;
    top: 0;
    left: 0;
}
.menulist .item:first-child{
    margin-left: 0;
    transform: skew(0);
}
.menulist .item:first-child button{
    transform: skew(0);
}
.menulist .item.active button text{
    color: #009284;
}


.search-box{
    padding: 30px 30px 40px 30px;
}
.search-box .search-input{
    border: 2px solid #0F988B;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 3px;
    line-height: 44px;
    display: none;
}
.search-box .search-input select{
    flex: 0 0 100px;   
    padding: 0 10px;
    height: 44px;
    border-radius: 15px;
    outline: none;
}

.search-box .search-input select option:hover{
    background-color: #0F988B;
}
.search-box .search-input input{
    height: 44px;
    border: 0;
    outline: none;
    border-radius: 10px;
}
.search-box .search-input button{
    flex: 0 0 100px;   
    border-radius: 0 0 10px 0; 
    background: linear-gradient(to right, #009284, #56C1B3);
    color: #fff;
}
.search-box .search-input.active{
    display: flex;
}
.search-box form{
    width: 100%;
    display: flex;
    margin-bottom: 0 !important;
}

.quicklist{
    display: flex;
    flex-wrap: wrap;
}
.quicklist .item{
    width: 20%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}
.quicklist .item img{
    margin: 0 auto;
}
.quicklist .item .img{
    width: 127px;
    height: 98px;
    overflow:hidden;
    position: relative;
    margin: 0 auto;
    margin-bottom: 6px;
}
.quicklist .item a:hover .img::after{
    content: '';
    position: absolute;
    inset: -20%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 40%, rgba(255, 255, 255, 0.7), rgba(255,255,255,0) 60%);
    animation: shark-wrap 1.5s infinite;
    transform: translateX(-100%);
}
@keyframes shark-wrap {
    to {
      transform: translateX(100%);
    }
}

.swiper {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.activities-swiper{
    height: 284px;
}
.banner-swiper{
    height: 500px;
}
.banner-swiper .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper-button-next, .banner .swiper-button-prev{
    color: #fff;
    font-size: 32px;
    font-weight: lighter;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    padding-bottom: 6px;
    box-sizing: border-box;
}

.news-box{
    background-color: #F4FFFD;
    padding: 30px 20px 20px 20px;
}
.news-box .title-box{
    position: relative;
}
.news-box .title-box .bigtitle{
    color: #EBEAEA;
    font-size: 36px;
    font-weight: lighter;
    position: absolute;
    z-index: 1;
    top: -15px;
    left: 0;
}
.news-box .title-box .title{
    color: #009284;
    font-size: 28px;
    position: relative;
    z-index: 2;
}
.news-box .title-box .more{
    display: flex;
    align-items: center;
    color: #009284;
    font-size: 14px;
}
.news-box .more img{
    margin-left: 6px;
}
.news-box .list{
    
}
.news-box .list .item{
    border-bottom: 1px solid #E0F2F1;
    padding: 15px 0;
    align-items: center;
}
.news-box .list .item .icon{
    width: 40px;
    margin-right: 10px;
    flex: 0 0 40px;
}
.news-box .list .item .icon img{
    
}
.news-box .list .item .title{
    font-size: 16px;
    color: #009284;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}
.news-box .list .item .date{
    font-size: 14px;
    color: #999;
    margin-top: 2px;
}
.news-box .list .item .flex-1{
    width: calc(100% - 40px);
}

.activities-box{
    background: linear-gradient(to bottom, #fff, #D5DEDE);
    padding-bottom: 50px;
}
.activities-box .top{
    background: linear-gradient(to right, #009284 50%, #26FB7E 100%);
    padding: 30px 40px 70px;
}
.activities-box .top .bigtitle{
    color: #38B4A6;
    font-size: 36px;
    font-weight: lighter;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 38px;
}
.activities-box .top .title{
    color: #fff;
    font-size: 28px;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
    padding-right: 20px;
    border-bottom: 1px solid #fff;
}
.activities-box .top .more{
    display: flex;
    align-items: center;
    color: #009284;
    font-size: 14px;
}
.activities-box .more img{
    margin-left: 6px;
}
.activities-box .swiper-box{
    margin-top: -70px;
    padding: 0 20px;
}
.activities-box .swiper-box .item{
    padding: 12px;
}

.activities-box .swiper-box .title-box{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.activities-box .swiper-box .title-box .date{
    background-color: #009284;
    color: #fff;
    text-align: center;
    width: 68px;
    padding: 8px 0;
    margin-right: 10px;
    border-radius: 5px;
    flex: 0 0 68px;
}
.activities-box .swiper-box .title-box .date .day{
    font-size: 40px;
    font-weight: lighter;
    line-height: 1;
}
.activities-box .swiper-box .title-box .date .month{
    font-size: 12px;
    color: #eee;
}
.activities-box .swiper-box .title-box .title{
    font-size: 16px;
    color: #009284;
    display: -webkit-box;
    -webkit-line-clamp: 3;     /* 显示行数 */
    -webkit-box-orient: vertical; /* 排列方向 */
    overflow: hidden;
    height: 72px;
}
.activities-box .swiper-button-prev,
.activities-box .swiper-button-next{
    width: 30px;
    font-size: 36px;
    border-radius: 50%;
    color: #009284;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.activities-box .swiper-button-prev{
    left: -5px !important;
    /* padding-right: 25px; */
}
.activities-box .swiper-button-next{
    right: -5px !important;
    /* padding-left: 25px; */
}
.activities-box .swiper-box .item img{  
    border-radius: 5px;
}




footer .footnav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .title{
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
footer .title img{
    width: 24px;
    margin-left: 6px;
}
footer a{
    font-size: 14px;
    color: #ededed;
    line-height: 2;
}
footer .footnav .nav a{
    margin-right: 10px;
}
footer .footnav .nav{
    display: flex;
    width: 210px;
    flex-wrap: wrap;
}
footer .footnav .nav li{
    width: 68px;
}
footer .footnav .addressbox{
    border-left: 1px solid #ddd;
    padding-left: 20px;
}



select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    padding: 8px 30px 8px 10px;
    width: 160px;
    font-size: 14px;
}
select::-ms-value {
    background: none; /* 移除背景 */
    color: #000; /* 设置文字颜色 */
}
select:focus {
    outline: none;
    background-color: #fff;
}
select option:checked {
    background-color: #009688;
    color: #fff;
}
/* IE10+ 隐藏下拉箭头 */
select::-ms-expand {
    display: none;
}

/* 自定义下拉箭头 */
.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: "▼";
    font-size: 13px;
    color: #333;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* 修复IE9及以下版本 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    select {
        padding-right: 30px;
    }
}