/* 小付同学 2024-02-06*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


/*网站变灰色*/
/*html{*/
/*    filter: grayscale(0.9);*/
/*}*/

/* 配色#372f69  已替换成FFFFFF #a6ff00  */  
body {
    cursor: url("http://oss.yikai520.cn/images/cursor.png"), default;
}

li {
    list-style: none;
}

a {
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
}

.navbar_new a {
    text-decoration: none;
    color: #FFFFFF;

}

.navbar_new a:hover {
    color: #FFFFFF;
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
}

i {
    font-style: normal;
}

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icom.eot?7diezj');
    src: url('fonts/icom.eot?7diezj#iefix') format('embedded-opentype'),
        url('fonts/icom.ttf?7diezj') format('truetype'),
        url('fonts/icom.woff?7diezj') format('woff'),
        url('fonts/icom.svg?7diezj#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.icomoon {
    font-family: 'icomoon';
}

.icon-bars::before {
    content: '\e900';
    font-family: 'icomoon';

}

.icon-cross::before {
    content: '\ea0f';
    font-family: 'icomoon';
    font-size: 22px;
}

.navbar_new {
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.nav_bar {
    position: relative;
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
    padding: 0 30px 0 10px;
}

.navbar_new .logo_new a {
    opacity: 1;
}

.navbar_new .logo_new a img {
    height: 50px;
    margin-right: 30px;
}

.navbar_new .links {
    margin: 0;
    align-items: center;
    display: flex;
    /* gap:1rem; */
}

.links li {
    position: relative;
}

.links li ul {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(30px);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    border-radius: 0 0 15px 15px;
    z-index: 1000;
}

.links li ul li a {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;

}

.links>li a {
    display: inline-block;
    padding: 18px 20px;
    transition: .3s;
}

.links>li a:hover {
    text-shadow: 0 0 10px #ffffff;
    transform: scale(1.3);
}

.links>li:hover ul {
    display: block;
}

.navbar_new .toggle_btn {
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.nav_bar .action_btn {
    position: absolute;
    right: 110px;
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
}

.action_btn {
    background-color: #a6ff00;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s;
    opacity: 1;
}

.weather {
    position: absolute;
    right: 0;
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer !important;
}

.weather a {
    opacity: 1;
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer !important;
}

.action_btn:hover {
    transform: scale(1.1);
    color: #FFFFFF;
    box-shadow: 0 0 20px #a6ff00;
}

.action_btn:active {
    transform: scale(0.9);
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}

.dropdown_menu.open {
    position: absolute;
    height: auto;
    padding: 10px 10px 20px 10px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 15px;
}

@media (max-width:992px) {

    .navbar_new .links,
    .navbar_new .action_btn {
        display: none;
    }

    .nav_bar {
        position: relative;
    }

    .navbar_new .toggle_btn {
        display: block;
        position: absolute;
        right: 30px;
    }

    .dropdown_menu {
        display: block;
        z-index: 1000;
    }

    .weather {
        display: none;
    }
}

@media (max-width:576px) {
    .dropdown_menu {
        left: auto;
        min-width: 170px;
        width: unset;
    }

    .weather {
        display: none;
    }
}