@charset "utf-8";
/*Author: BeiYue*/
/*QQ: 964214970*/
/*Telegram: BeiYue*/
/*==============================================================*/

/* CSS Pingtai */
/*平台部分-------开始-------------------------------------------------*/
.pingtai {
    width: 1400px;
    display: flex;
    margin: 0 auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 0 15px;
    padding-bottom: 20px;
}
.pingtai .pt_box{
    width: 320px;
    height: 340px;
    background: url(../images/pt_bg.png) center 0 no-repeat;
    background-size: 320px 340px;
	border-radius: 18px;
	margin:10px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px rgba(87, 87, 87, 0.2);
}
.pt_box .xl_box {
    width: 80px;
    height: 80px;
    position: absolute;
    right: -3px;
    top: -3px;
    z-index: 99999;
}
.pingtai .pt_box dl {
    padding: 20px;
}
.pt_box dl .pt_name {
    font-size: 24px; 
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.pt_box dl dt {
    width: auto;
    height: 109px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
}
.pt_box dl dt img {
    width: auto;
    height: 100%;
    max-height: 100%;
    transition:all 0.3s;
}
.pingtai .pt_box:hover dl dt img {
    transform: scale(1.1); 
}
.pingtai .pt_box:hover dl .pt_name {
    color: var(--sc01);
}
.pt_box dl .pt_an {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 91;
}
.pt_an a {
    flex: 1 1 calc(100% / 1);
    height: 50px;
    font-size: 18px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 6px;
    margin: 10px auto;
    transition:all 0.3s;
    text-shadow: 1px 2px 5px rgba(87, 87, 87, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pt_box dl .pt_an a {
    color: var(--sc03);
    border: 1px solid var(--sc05);
}
.pt_box:hover dl .pt_an a {
    color: var(--sc01);
    border: 1px solid var(--sc01);
    background: rgba(10, 1, 1, 0);
}
.pt_box dl .pt_an a:hover {
    color: var(--bai);
    border: 1px solid var(--sc01);
    background: var(--sc01);
}
/*平台部分-------结束-------------------------------------------------*/

/*空的链接-------开始-------------------------------------------------*/
.kong_box {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.kong_box .kong_cent {
    width: 300px;
    height: 160px;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    margin: 0 auto;
    background: linear-gradient(45deg, #fafbff, var(--bgs));
    box-shadow: 0 5px 8px 0 rgba(112, 120, 134, 0.2), inset 1px 1px 2px 2px #fafdff, inset 0 0 1px 0 rgba(251, 254, 255, 0.459);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.kong_box .kong_txt {
    font-size: 20px;
    color: var(--c06);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kong_box .kong_btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    border-radius: 50%;
    background: var(--c06);
    color: var(--sc04);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--sc05);
    box-sizing: border-box;
    padding-left: 2px;
    padding-top: 2px;
}

.kong_box .kong_btn:hover {
    color: var(--sc01);
    border: 1px solid var(--sc01);
}
/*空的链接-------结束-------------------------------------------------*/