body {
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
}



.main_layout{
    width: 100%;
    display: flex;
    flex-direction: row;
}


.app_title{
    display:flex;
}


.app_title h1{
    font-family:SimHei;
    font-weight:bold;
    background-color:rgb(147, 207, 225) ;
    border-radius: 10px;
    margin: 5px;
    width: auto;
    height: auto;
    display: flex ;
    align-items: center;
    justify-items: center;
 }



.app_sort {
    min-width:6em;
    max-width:6em ;
    word-break: break-all;
    background-color: #f0f0f0;
    overflow-y: scroll;
    height: 100vh;
    border: 1px solid gold;
    border-radius: 10px;
}


table {
    width: 100%;
    margin: 1px;
}

.app_sort table td {
    padding: 10px;
    border: 1px solid rgb(22, 112, 128);
    border-radius: 10px;
   
}


.app_list {
    background-color: #f0f0f0;
    overflow-y: scroll;
    height: 100vh;
    border: 1px solid black;
    flex-grow:1;
    border-radius:10px;
    margin: 1px;
}

.app_list_items {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;

}

.app_list_items img {
    width: 10vw;
    height: 10vw;
    border-radius: 20px;
    margin: 10px;
}



.app_list_items_appname {
    color:#393a40; /*设置文字颜色*/
    font-size:30px;  
    font-weight:bold; 
    text-shadow:
                1px 0px #16ba2f, 1px 2px #36d074, 3px 1px #0a831c
             
}
.app_list_items_date{
    font-size: 10px;

    font-style:italic;
}

.app_list_items a {
    text-decoration: none;
}


.search_plugin{

width: auto;
height: 5vh;
margin-left: 20vw;

padding: 3px;
background-color: #746441;
border-radius: 10px;
}


.search_plugin_model{
    display: flex;
    flex-direction:row;
    margin-right: 10px;
}

.search_plugin button{

border-radius: 20px;
font-weight: bold;
background-color: #edf0cb;

}

.search_plugin input{
border-radius: 20px;
width: 100%;
}
    
    
.page_details_close{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    font-size: 28px;
    color: rgb(255, 255, 255);  
    background-color: #ca1f16;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 60%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.modalpage {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    display: none;

    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-out;
    transform: translateY(100%);
    overflow-y: scroll;
    border-radius: 20px;
}

.modalpage.show {
    transform: translateY(10%)

}



.adshows{
    display: flex;
}
.adshows img{
max-width: 80vw;
border-radius: 15px;

}

.modalpage-content {
   background-color: #85a0bc;
    padding: 10px;
    border-radius: 10px;
    width: 100vw;
    height:100vh;
    margin-bottom: 5px;
    overflow-y: scroll;
}

.app_list_item_info_introduceimg {
    display: flex;
    overflow-x: scroll;
    margin-bottom: 10vh;
    margin-top: 15px;
    border-radius: 5px;
    background-color: #7acc9c;
    padding: 1px;

}


.app_list_item_info_introduceimg img{
 
    border-radius: 5px;
    width: 50vw;
    /* 设置图片宽度 */
    height: auto;
}


.appintroduce{
    width: 100%;
    background-color: rgb(220, 227, 215);
    border-radius: 15px;

}

#downloads {
    /* 基础样式 */
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    width: auto;
    height: auto;
    margin-right: 0px;
    margin-top: 2px;
    /* 主色调（可根据品牌色调整） */
    background-color: #4a90e2;  /* 蓝色 */
    color: white;
    /* 阴影效果 */
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

#downloads:hover {
    background-color: #b61a18;  /* 更深的蓝色 */
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.3);
}

#downloads:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

#downloads:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.3);
}

/* 禁用状态样式 */
#downloads:disabled {
    background-color: #e0e0e0;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

summary{
    background-color: rgba(60, 80, 117, 0.668);
    width: auto;
    height: auto;
    border-radius: 10px;
}

 
summary em{
font-weight: bold;
}

 .adtitle{
    height: auto;
display: flex;
align-items: center;
margin: 0;
 }


#adborder{
border-style:solid;
border-radius: 15px;
border-color:rgb(205, 51, 51);
}