@charset "utf-8";
/* CSS Document */

#page-photo {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    color: whitesmoke;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow: auto;
}

#body-background, #body-backglow {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: .1;
    /*background-image: url(/static/app/base/img/BG.png);*/
	background-position: 50% 50%;
    background-size: 136px 160px;
	background-attachment: fixed;
    transition: 1s;
}
#body-backglow {
    opacity: 1;
    background-image: url(/static/app/base/img/Glow-B.png);
    background-size: 100% 100%;
    z-index: -2;
}

.txt-title {
    position: relative;
    margin: 5em 0 2em 0;
}
.short {margin-top: 1em;}
.txt-title h1, .txt-title h2  {
    color: #320f51;
    font-size: 3em;
    text-align: center;
}
.txt-title h1 {text-shadow: 0 0 15px #17d7e7;}
.txt-title h2 {
    color: white;
    margin-top: -1.15em;
    margin-left: .15em;
}
.small {font-size: 1.8em!important;}
.infotxt {
    width: 90%;
    text-align: center;
    margin: auto auto 2em;
}

#subcatelist, #labellist {
    width: 80%;
    margin: auto;
}
.subcatebox {
    width: calc(100% / 3);
    float: left;
    margin-bottom: 2em;
    text-align: center;
}
.subcate {
    display: inline-block;
    position: relative;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 17px 16px 23px;
    background: #a81da5;
    border-radius: 10% / 50%;
    text-shadow: -3px 3px 0 #510f51;
    transition: .2s;
}
.subcate p {
    position: absolute;
    top: -6px;
    left: 3px;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 10% / 50%;
    -webkit-box-shadow: -3px 3px 0 #510f51;
    box-shadow: -3px 3px 0 #510f51;
}
.subcate:hover {
    background: #d7007c!important;
    -webkit-box-shadow: 0 0 10px #d7007c!important;
    box-shadow: 0 0 10px #d7007c!important;
}

#labellist {
    text-align: center;
    margin-bottom: 1em;
}
.lab {
    display: inline-block;
    margin: 0 1em 1em 1em;
    padding: .2em .8em .35em .8em;
    font-size: .8em;
    font-weight: normal;
    border: 1px solid white;
    border-radius: .4em;
    cursor: pointer;
    transition: .1s;
}
.lab:hover {
    text-shadow: -2px 2px 0 #510f51!important;
    background: #a81da5!important;
}

/*---------------------------------------------详情页*/
#detailbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(60deg, #007aba, #921da7);
    background-size: 200%;
    z-index: +1000;
}
#detailwindow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#turnoff {
    position: absolute;
    right: 5%;
    top: 3%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 5em;
    font-weight: lighter;
    transition: .2s;
    z-index: +1;
}
#turnoff:hover {
    color: #02eff9;
    text-shadow: 0 0 15px #02eff9;
}


@media (max-width: 1024px) {
    #subcatelist, #labellist {width: 85%;}
}

@media (max-width: 768px) {
    #subcatelist, #labellist {width: 90%;}
    #turnoff {top: 1%;}
}

@media (max-width: 580px) {
    .subcatebox {width: 50%;}
    #turnoff {top: 0;}
}