
/********** 头部 **********/
.head {
    width: 100%;
    height: var(--header-height);
    position: absolute;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
}

.head.scrollTop .menu {
    background: none !important;
    backdrop-filter: blur(0px) !important;
}
.head .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: calc(var(--container-max-width) + 10vw);
    margin: 0 auto;
    padding: 0 5vw;
}
.head .container .menu{
    font-family: 'opposans','Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    /* background: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    color: #fff;
    font-size: var(--font-xl);
    border-radius: 50px;
    /* backdrop-filter: blur(10px); */
    transition: all 0.3s;
    padding: 10px 20px;
}
.head .container .menu .lang{
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}
.head .container .menu .lang:hover{
    opacity: 1;
}
.head .container .menu .img{
    width: var(--font-xl);
    height: var(--font-xl);
}


.banner{
    background-image: url(../imgs/banner1.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: relative;
}
.banner .container{
    width: 100%;
}
.banner .img{
    width: 100%;
}
.banner .img_m{
    display: none;
}
.banner .down{
    display: none;
    width: 40px;
    position: absolute;
    bottom: 5%;
    left: calc(50% - 20px);
    animation: 3.4s ease-in-out infinite fadebottom;
    cursor: pointer;
}
@keyframes fadebottom {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    25% {
        opacity: 0;
        transform: translateY(20px)
    }

    30% {
        opacity: 0;
        transform: translateY(0)
    }

    45% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

/********** 主体 **********/
.main .container{
    width: 100%;
    max-width: calc(var(--container-max-width) + 10vw);
    margin: 0 auto;
    padding: 0 5vw;
}
/********** 邀约 **********/
.yaoyue{
    padding: 0 10vw;
}
.yaoyue .title{
    text-align: center;
    margin: 80px 0 30px 0;
    font-size: var(--font-4xl);
}
.yaoyue .des{
    font-size: var(--font-xl);
    margin-bottom: 20px;
    text-align: center;
}
.yaoyue .des span{
    color: var(--primary-color);
    font-weight: bold;
}
.yaoyue .email{
    padding: 10px 0 20px 0;
    display: flex;
    justify-content: center;
    font-size: var(--font-2xl);
}
.yaoyue .email .box{
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    padding: 10px 16px 6px 16px;
    text-align: center;
}
.yaoyue .email .t{
    margin-bottom: 4px;
    font-size: var(--font-xl);
}
.yaoyue .email .txt{
    font-size: var(--font-2xl);
    font-weight: bold;
}
/********** 类别 **********/
.leibie{
}
.leibie .title{
    font-size: var(--font-4xl);
    margin: 80px 0 50px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.leibie .list{
    display: flex;
    gap: 40px;
}
.leibie .list .li{
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #DDD;
}
.leibie .list .li img{
    width: 100%;
    height: 25vh;
    min-height: 280px;
    object-fit: cover;
} 
.leibie .list .li .box{
    border-top: none;
    padding: 30px;
}
.leibie .list .li .box .t1{
    font-size: var(--font-xl);
    margin-bottom: 10px;
}
.leibie .list .li .box .t2{
    font-size: var(--font-md);
    color: var(--light-gray);
}
/********** 奖项 **********/
.jiangxiang{
}
.jiangxiang .title{
    font-size: var(--font-4xl);
    margin: 80px 0 50px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.jiangxiang .list{
    display: flex;
    gap: 20px;
}
.jiangxiang .list .li{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px 0 30px;
    border-radius: 4px;
    overflow: hidden;
    /* border: 1px solid var(--line-color); */
}
.jiangxiang .list .li:nth-child(odd){
    background-color: var(--light-color);
}
.jiangxiang .list .li .img{
    max-width: 60%;
    min-height: 195px;
    margin: 20px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.jiangxiang .list .li img{
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
} 
.jiangxiang .list .li .box{
    width: 100%;
}
.jiangxiang .list .li .t1{
    font-size: var(--font-xl);
    width: 100%;
    color: var(--dark-color);
    font-weight: bold;
}
.jiangxiang .list .li .t3{
    height: 50px;
    margin: 10px 0 0 0;
    width: 100%;
    font-size: var(--font-md);
    color: var(--dark-color);
    font-weight: bold;
}
.jiangxiang .list .li .t2{
    font-size: var(--font-md);
    color: var(--light-gray);
}
/********** 投稿 **********/
.tougao{

}
.tougao .title{
    font-size: var(--font-4xl);
    margin: 80px 0 50px 0;
    text-transform: uppercase;
    font-weight: bold;
}

.tougao ul{
    padding-left: 40px;
}
.tougao li{
    margin-bottom: 40px;
}
.tougao li .t{
    font-weight: bold;
}
.tougao li .des{
    color: var(--gray-color);
    margin-top: 6px;
}
.tougao li .des span{
    color: var(--primary-color);
    font-weight: bold;
}
.tougao li .des span.b{
    color: var(--dark-gray);
}
.tougao li ul{
    margin: 20px 0;
}
.tougao li ul li{
    margin-bottom: 12px;
}
.tougao li ul li .tip{
    color: var(--light-gray);
    font-size: var(--font-sm);
}
.tougao li .des .txt{
}
/********** 评委 **********/
.pingwei{
    
}
.pingwei .title{
    font-size: var(--font-4xl);
    margin: 80px 0 50px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.pingwei .box-wrap{
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* 自定义滚动条样式 */
.pingwei .box-wrap::-webkit-scrollbar {
    width: 300px;
    height: 8px;
    background: var(--light-color);
    border-radius: 4px;
}

.pingwei .box-wrap::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 4px;
}

.pingwei .box-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
    border: none;
}

.pingwei .box-wrap::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.pingwei .box{
    width: 120%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.pingwei .box .li{
    width: calc(33.33% - 20px);
    /* border: 1px solid var(--line-color); */
    background-color: var(--light-color);
    box-sizing: border-box;
    padding: 30px;
    flex-shrink: 0;
    border-radius: 4px;
}
.pingwei .box2{
    /* width: 161%; */
}
.pingwei .box2 .li{
    /* width: calc(25% - 23px); */
}
.pingwei .box .li .top{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.pingwei .box .li .img{
    width: 100px;
    height: 120px;
    object-fit: cover;
    margin-right: 30px;
}
.pingwei .box .li .name{
    font-size: var(--font-xl);
    font-weight: bold;
}
.pingwei .box .li .des a{
    display: inline-block;
    margin-right: 4px;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s;
}
.pingwei .box .li .des a:hover{
    color: var(--dark-primary);
}

/********** 支持 **********/
.zhichi{
    /* border-top: 2px solid var(--line-color); */
    margin-top: 60px;
    display: flex;
    gap: 40px;
    padding: 0 10vw;
}
.zhichi .item{
    flex: 1;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zhichi .item .imgs{
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    /* border: 1px solid var(--line-color); */
    border-radius: 4px;
    overflow: hidden;
}

.zhichi .item .imgs img{
    max-height: 80px;
}
.zhichi .item .title{
    font-size: var(--font-base);
}
.zhichi .item .title .t1{
    font-weight: bold;
    margin: 10px 0 4px 0;
}
.zhichi .item .title .t2{
    color: var(--light-gray);
}


.footer{
    margin-top: 80px;
    background-color: rgba(60, 120, 50, 1);
    padding: 40px 0;
}
.footer .container{
    width: 100%;
    max-width: calc(var(--container-max-width) + 10vw);
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
}
.footer .title{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--white-color);
    font-size: var(--font-xl);
}
.footer .txt{
    color: var(--white-color);
    text-decoration: underline;
    display: flex;
    align-items: center;
}
.footer .txt img{
    width: 50px;
    margin-right: 15px;
}
.footer .tips{
    margin-bottom: 20px;
    font-size: var(--font-xl);
    color: var(--white-color);
}
.footer .links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.footer .links img{
    width: 40px;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .head{
        height: 70px;
    }
    .head .container{
        padding: 0 30px;
    }
    .head .container .menu{
        padding: 0;
    }
    .banner .container{
        height: 210px;
    }
    .banner .container .img{
        display: none;
        height: 100%;
        object-fit: cover;
    }
    .banner .container .img_m{
        display: inline-block;
        height: 100%;
        width: 100%;
    }
    .main .container{
        padding: 0 30px;
    }
    .yaoyue{
        padding: 0;
    }
    .yaoyue .title{
        margin: 30px 0;
        font-size: var(--font-2xl);
    }
    .yaoyue .des{
        text-align: left;
        font-size: var(--font-lg);
    }
    .yaoyue .email{
        padding: 0;
    }
    .yaoyue .email .box{
        width: 100%;
    }
    .yaoyue .email .t{
        font-size: var(--font-lg);
    }
    .yaoyue .email .txt{
        font-size: var(--font-lg);
    }
    
    .leibie .title{
        margin: 45px 0 20px 0;
        font-size: var(--font-2xl);
    }
    .leibie .list{
        gap: 20px;
        flex-direction: column;
    }
    .leibie .list .li img{
        min-height: auto;
        height: 200px;
    }
    .leibie .list .li .box{
        padding: 15px;
    }
    .jiangxiang .title{
        margin: 45px 0 20px 0;
        font-size: var(--font-2xl);
    }
    .jiangxiang .list{
        flex-direction: column;
    }
    .jiangxiang .list .li{
        padding: 15px;
    }
    .jiangxiang .list .li .img{
        margin: 0 0 15px 0;
        min-height: auto;
        height: 120px;
    }
    .tougao .title{
        margin: 45px 0 20px 0;
        font-size: var(--font-2xl);
    }
    .tougao ul{
        padding-left: 20px;
    }
    .tougao li{
        margin-bottom: 15px;
    }
    .pingwei .title{
        margin: 45px 0 20px 0;
        font-size: var(--font-2xl);
    }
    .pingwei .box-wrap{
        overflow: visible;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .pingwei .box{
        padding: 0px;
        display: block;
        width: 100%;
    }
    .pingwei .box .li{
        width: 100%;
        padding: 15px;
        position: relative;
        margin-bottom: 15px;
    }
    .pingwei .box .li .top{
        display: flex;
        flex-direction: column;
    }
    .pingwei .box .li .name{
        margin: 15px 0 0 0;
    }
    .pingwei .box .li .img{
        margin: 0;

    }
    .pingwei .box .li .des{
        top: 15px;
        right: 15px;
    }
    .zhichi{
        margin-top: 40px;
        padding: 0;
        gap: 0px;
        flex-direction: column;
    }
    .zhichi .item{
        margin-bottom: 30px;
    }
    .zhichi .item .imgs{
        min-height: 80px;
    }
    .zhichi .item .imgs .img{
        display: flex;
    }
    .zhichi .item .title .t1{
        margin: 0 0 4px 0;
    }
    .footer{
        margin-top: 40px;
    }
    .footer .container{
        padding: 0 30px;
        flex-direction: column;
    }
    .footer .title{
        margin-bottom: 5px;
        font-size: var(--font-lg);
    }
    .footer .foot-right{
        margin-top: 40px;
    }
    .footer .tips{
        text-align: left;
        font-size: var(--font-lg);
        margin-bottom: 10px;
    }
    .footer .links{
        gap: 10px;
        padding: 0 5px;
        justify-content: space-between;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .main .container{
        padding: 0 50px;
    }
    .yaoyue{
        padding: 0 50px;
    }
    .yaoyue .title{
        margin: 40px 0 20px 0;
        font-size: var(--font-3xl);
    }
    .leibie .title{
        margin: 40px 0 20px 0;
        font-size: var(--font-3xl);
    }
    .leibie .list{
        gap: 30px;
    }
    .leibie .list .li img{
        min-height: auto;
        height: 220px;
    }
    .leibie .list .li .box{
        padding: 20px;
    }
    .jiangxiang .title{
        margin: 40px 0 20px 0;
        font-size: var(--font-3xl);
    }
    .jiangxiang .list{
        flex-wrap: wrap;
    }
    .jiangxiang .list .li{
        flex: none;
        width: calc(50% - 10px);
        padding: 20px 20px 20px 20px;
        background-color: var(--light-color);
    }
    .jiangxiang .list .li .img{
        height: 200px;
        margin: 0 0 20px 0;
    }
    .tougao .title{
        margin: 40px 0 20px 0;
        font-size: var(--font-3xl);
    }
    .pingwei .title{
        margin: 40px 0 20px 0;
        font-size: var(--font-3xl);
    }
    .footer .container{
        gap: 20px;
        padding: 0 50px;
    }
    .footer .tips{
        text-align: left;
    }
    .footer .links{
        justify-content: center;
    }
}
@media (min-width: 1400px) {
    
}