html {
    background-color: #def3f8;
}
.apps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /*row-gap: 5px;*/
}

.apps a {
    display: block;
    width: 90%;
    /* height: calc(100% / 1 * 1) !important; */
    text-decoration: none;
}

.apps a img {
    display: block;
    margin: 0 auto;
    width: 90%;
    height:auto;
    border-radius: 12px;
}

.apps a h5 {
    display: block;
    text-align: center;
    color: #080707;
    height: 14px;
    /*line-height: 24px;*/
    font-size: 0.8rem;
    color: block;
    
}



.header {
    background: #def3f8;
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 16px 0 rgba(48, 143, 173, 0.38);
}

.haeder .logo {
    max-width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.header .logo div {
    text-align: center;
}

.header .logo img {
    max-height: 30px;
    margin: 0 auto;
}

.header .logo .title {
    text-align: center;
    color: #3088a3;
    font-size: 0.8rem;
}

.header .search-icon img {
    width: 30px;
    height: 30px;
}

.header .nav-icon i,
.header .search-icon i {
    font-size: 2.2rem;
    color: #FA255E;
}

.nav-box {
    position: fixed;
    top: 65px;
    left: 0;
    bottom: 0;
    width: 100vw;
    display: none;
    z-index: 9999;
    grid-template-columns: repeat(2, 1fr);
}

.nav-box ul {
    list-style: none;
    overflow-y: auto;
    /*隐藏滚动条*/
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
}

.nav-box ul:first-child li {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-box ul:first-child li.active {
    background: #3088a3;
}

.nav-box ul:first-child li.active a {
    color: white;
    text-shadow: 3px 3px 3px #3088a3;
}

.nav-box ul:last-child li {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #afd8e375;
}

.nav-box ul li:last-child {
    border-bottom: unset;
}

.nav-box ul a {
    text-decoration: none;
    display: block;
    /*溢出省略号*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-box ul:first-child {
    background: #111010d1;
}

.nav-box ul:first-child a {
    color: white;
    font-size: 14px;
    padding-left:16px;
}


.search-box {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 60px);
    display: none;
    z-index: 9999;
    padding: 0.5rem;
}

.search-box form {
    height: 2rem;
    width: 80%;
}

.search-box .input {
    width: 100%;
    height: 2.0rem;
    line-height: 2.5rem;
    border-radius: 1rem;
    background: white;
    border: none;
    margin: 0 auto;
    margin-top: 0.5rem;
    padding: 0.1rem 2.5rem 0.1rem 0.5rem;
    font-size: 1.0rem;
    color: #3088a3;
}

.search-box button {
    position: absolute;
    top: 1.5rem;
    left: calc(94vw - 120px);
    width: 2.0rem;
    background: none;
    border: none;
    color: #FA255E;
    font-size: 1.0rem;
}

.container {
    margin-top: 85px;
}

.tags-box {
    /*渐变背景：纵向渐变，从#3088a3渐变到#c9e9f2*/
    /*background: #c9e9f2;*/
    border-bottom: 1px dashed #3088a3;
    padding: 2px 2px;
    margin-top: -10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.container+.tags-box {
    margin-top: 75px;
}

.tags-box ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    list-style: none;
    padding-inline-start: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 8px auto;
}

.tags-box ul li {
    margin: 0 2px;
    padding: 0 2px;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    cursor: pointer;
}

.tags-box ul li a {
    display: block;
    padding: 5px 10px;
    color: #3088a3;
    border: 1px solid #3088a3;
    border-radius: 5px;
    text-decoration: none;
    height:18px;
}

.tags-box ul li a.active {
    background: #3088a3;
    color: #fff;
}


.star-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.star-link .info{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    gap: 6px;
}

.star-link .star{
    color: gold;
    font-size: 13px;
    margin-left: 10px;
}

.star-link .star img{
    width: 15px;
    height: 15px;
}




.box-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    width: 100%;
}

.box-list .box {
    box-sizing: border-box;
    border-radius: 1rem;
    background: white;
    overflow: hidden;
    position: relative;
}

.box-list .box .ul-box {
    height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #dedede #fff;
}

.box-list .box .title {
    height: 0.3rem;
    line-height: 0.4rem;
    padding: 1rem;
    border-bottom: 3px solid #f28705;
    font-size: 14px;
    font-weight: bold;
    background: #3088a3;
    color: white;
    text-align: center;
}

.box-list .box .title a {
    text-decoration: none;  /* 去下划线 */
    color: inherit;         /* 使用父元素的文字颜色（默认颜色） */
}

.box-list .box ul {
    list-style: none;
    /*height: 400px;*/
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 0 1rem;
    overflow-x: auto;
}

.box-list .box ul li {
    line-height: 25px;
    height: 25px;
    /* border-bottom: 1px solid #ccc; */
    font-size: 0.9rem;
}

.box-list .box ul li a {
    color: #272727;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    /*溢出省略号*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.box-list .box ul li a .num {
    color: white;
    background: #d3d2d2;
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    /*margin-right: 2px;*/
    line-height: 1.2rem;
}

.box-list .box ul li a img {
    vertical-align: middle;
    width: 15px;
    height: 15px;
    margin-right: 2px;
    border-radius: 0.3rem;
}

.box-list .box .more-btn a {
    text-decoration: none;
    color: #666;
    font-weight: 300;
    font-size: 0.8rem;
}

.box-list .more-btn {
    margin: 0 auto;
    margin: 1rem auto;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    border-radius: 1rem;
    
}

.box-list .box .more-info {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #e1edf1;
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
    display: grid;
    text-align: center;
}

.box-list .box .more-info span {
    font-size: 30px;
    font-weight: bold;
}

.pic-list {
    margin: 0.5rem auto;
    border-radius: 1rem;
    background: #c5e7f0;
    padding: 0.5rem;
    border: 1px dashed #3088a3;
}

.pic-list .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
}

.pic-list .box .item {
    border-radius: 1rem;
    height: 200px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pic-list .box .item .txt {
    width: 80%;
    margin: 0 auto;
    padding: 0.5rem;
    border-radius: 1rem;
    background: #5494a5;
    color: white;
    font-size: 1rem;
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    text-align: center;
}

.pic-list .more-btn {
    margin-top: 1rem;
    background: #def3f8;
    border-radius: 1rem;
    padding: 1rem;
}

.pic-list .more-btn a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #3088a3;
    font-size: 1.0rem;
}

.crumb-box {
    width: 100%;
    margin-bottom: 1rem;
    color: #3088a3;
    font-size: 13px;
}

.crumb-box a {
    background: #e6f9fd;
    border: 1px solid #85b1bd;
    color: #3088a3;
    border-radius: 7px;
    text-decoration: none;
    padding: 6px 8px;
    font-weight: 500;
    font-size: 13px;
}

.crumb-box .home {
    padding: 7px 5px;
    border: 1px solid #3088a3;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    background: #3088a3;
    color: #fff;
}

i {
    margin: 0 0.3rem;
}

.crumb-box i:first-child {
    margin-left: unset;
}

.page-category {
    width: 100%;
    background: #4b5050;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page-category .page-header {
    background: #303030;
    padding: 0.5rem;
}

.page-category .page-header .title {
    font-size: 20px;
    line-height: 22px;
    color: white;
    font-weight: 600;
}

.page-category .page-header .intro {
    color: #ddd;
    /*font-weight: 300;*/
    font-size: 15px;
    line-height: 19px;
    margin: 2px 4px;
}

.page-category .page-top {
    background: #404040;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 0.5rem;
}

.page-category .page-box {
    border-radius: 1rem;
    background: #272727;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    border: 2px solid #424242;
    text-decoration: none;
    overflow: hidden;
}

.page-category .page-box .item-logo {
    width: 100%;
    padding-bottom: 50%;
}

.page-category .page-box .item-logo img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.page-category .page-box .item-logo .item-img {
    display: block;
    background: black;
}

.page-category .page-box .item-title {
    z-index: 1;
    background: #606060;
    color: #fff;
    width: calc(100% - 20px);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    max-height: 43px;
    line-height: 20px;
    text-align: center;
    flex-wrap: nowrap;
    font-size: 12px;
}

.page-top .item-title {
    font-size: 16px !important;
    font-weight: 600;
}

.page-top .item-intro {
    font-size: 13px !important;
    padding: 8px !important;
}

.page-category .page-box .item-good-txt {
    z-index: 2;
    background: #fa255e;
    line-height: 18px;
    width: calc(100% - 10px);
    padding: 5px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: lowercase;
}

.page-category .page-box .item-intro {
    background-color: #272727;
    color: #c5c5c5;
    padding: 0.5rem;
    font-size: 12px;
    line-height: 14px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.page-category .page-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.5rem;
    padding: 0.5rem;
}

.view-box {
    display: block;
    opacity: 0;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: hide 0.5s ease;
    min-height: 440px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background: #303030;
    padding: 1rem;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 500ms cubic-bezier(0.6, 0, 0.4, 1);
    visibility: hidden;
    will-change: transform, opacity;
    touch-action: pan-y
}

.view-box.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.view-box .title {
    font-size: 18px;
    color: white;
    position: relative;
}

.view-box .title .close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 1.5rem;
}

.view-box .content {
    margin-top: 1rem;
    background: #363636;
    border-radius: 1rem;
    overflow: hidden;
    font-size: 13px;
}

.view-box .content .view-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.view-box .content .view-img {
    /*图片自动上下循环滚动*/
    animation: view-img 20s linear alternate 500ms infinite;
    will-change: transform;
    object-fit: cover;
    object-position: top;
}

.view-box .content .intro-box {
    background: #363636;
    height: max-content;
    padding: 1rem;
    color: #b7b7b7;
    line-height: 1.5rem;
}






.detail-box .intro-box a.btn{
    display:block;
    margin-top:1rem;
    background-color: #fa255e;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    padding:16px 0;
}
.detail-box .intro-box a.btn:hover
{
    background:white;
    color:#fa255e;
}

@keyframes view-img {
    0% {
        transform: translateY(0px)
    }

    60% {
        transform: translateY(-50px)
    }

    100% {
        transform: translateY(0px)
    }
}

.view-box .btn-box {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.view-box .btn-box .button {
    padding: 14px 0;
    text-align: center;
    width: 80%;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.view-box .btn-box .button.read {
    background: #3088a3;
}

.view-box .btn-box .button.visit {
    background: red;
    margin-top: 1rem;
}

.detail-box {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: #303030;
    border-left: 2px solid #303030;
    border-right: 2px solid #303030;
    border-right: 2px solid #303030;
    overflow-y: hidden;
}

.detail-box .top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: black;
}

.detail-box .top-box .carousel {
    flex: 1;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    overflow: hidden;
    height: 250px;
    margin-top: 1rem;
}

.detail-box .top-box .carousel .btn {
    cursor: pointer;
    font-size: 2.4rem;
    color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-box .top-box .carousel .btn i {
    background: #e3e3e3;
    border-radius: 0.5rem;
    color: #303030;
    margin: unset;
}

.detail-box .top-box .carousel .thumbs-wrapper {
    display: block;
    position: relative;
}

.detail-box .top-box .carousel .thumbs-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 1rem;
    cursor: pointer;
    height: 250px;
    z-index: 1;
    filter: blur(0px) brightness(1.2);
    transition: filter 0.2s ease;
}

.detail-box .top-box .carousel .view-txt {
    display: flex;
    animation: show 0.5s ease;
    position: absolute;
    top: 50%;
    left: 3rem;
    right: 3rem;
    bottom: 0;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    background: #fa255e;
    height: fit-content;
    /*垂直居中*/

    height: fit-content;
    padding: 1rem 1rem;
    transition: transform 0.5s ease;
    transform: translateY(-50%);
    /* width: 100%; */
    /* max-width: 330px; */
    border-radius: 10px;
    height: 15px;
}

.detail-box .intro-box {
    padding: 1rem;
    color: white;
}

.detail-box .intro-box .title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.detail-box .intro-box .title-box h1 {
    text-decoration: underline;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
    font-size: 2rem;
}

.detail-box .intro-box a {
    text-decoration: none;
    color: #e3e3e3;
    font-size: 15px;
}

.detail-box .intro-box .review {
    padding: 1rem 2rem;
    background: #3088a3;
    letter-spacing: 2px;
    color: white;
    border-radius: 1rem;
    text-decoration: none;
}

.detail-box .intro-box .review:hover {
    animation: pulse-animation-visit 1s infinite;
    background: #def3f8;
    border: 2px solid #3088a3;
    color: #3088a3;
}

.detail-box .intro-box .intro {
    color: #f3f3f3;
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 20px;
}

.detail-box .intro-box .tags-box {
    background: unset;
}

.detail-content {
    border-radius: 1rem;
    margin: 1rem 0;
    padding: 1.5rem;
    background: #303030;
    color: white;
}

.detail-content .title {
    background: #aaa;
    color: #282828;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.detail-content .content {
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 20px;
}

.page-more{
    padding:1rem;

}
.page-more a.btn{
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    border: 2px solid #3088a3;
    padding: 16px 20px;
    color:#3088a3;
    text-decoration: none;
    text-align:center;
    display: block;
}
.page-more a.btn:hover
{
    background:#3088a3;
    color:white;
}

.detail-box .toolbar {
    display: flex;
    height: 36px;
    padding: 8px 15px 8px 15px;
    background: #252525;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.detail-box .toolbar .left {
    display: flex;
    gap: 6px;
    width: max-content;
}

.detail-box .toolbar .left .txt {
    padding: 5px 8px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px dashed #606060;
    color: #bbb;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.detail-box .toolbar .right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    justify-content: flex-end;
    margin-left: 20px;
}

.detail-box .toolbar .right .box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 4px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    background: #444;
}

.detail-box .toolbar .right .box .icon-box {
    display: flex;
    font-size: 15px;
    width: 20px;
    height: auto;
    align-items: center;
    justify-content: center;
    color: #707070;
}

.detail-box .toolbar .right .box .txt-box {
    display: flex;
    font-size: 11px;
    width: 100%;
    height: auto;
    max-height: 12px;
    overflow: hidden;
    text-align: center;
    align-items: flex-start;
    justify-content: center;
    color: #bbb;
    text-transform: lowercase;
    font-weight: 400;
    line-height: 12px;
}

.common-list {
    box-shadow: 0px 0px 20px #99bcc7;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
}

.common-list .thumbs {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-bottom: 8px solid #3088a3;
}

.common-list .thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    animation: view-img 20s linear alternate 500ms infinite;
    will-change: transform;
    object-fit: cover;
    object-position: top;
}

.common-list .thumbs .btn-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.common-list .thumbs .btn-box .btn {
    padding: 0 3rem;
    height: 45px;
    line-height: 45px;
    background: #3088a3;
    color: white;
    border-radius: 0.5rem;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.common-list .thumbs .btn-box .btn:hover {
    animation: pulse-animation-visit 1s infinite;
    background: #def3f8;
    border: 2px solid #3088a3;
    color: #3088a3;
}

.common-list .thumbs:hover {
    background: #def3f8;
}

.common-list .thumbs:hover img {
    opacity: 0.5;
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

.common-list .page-category {
    background: unset;
}

.common-list .page-category .page-header {
    background: unset;
}

.common-list .page-header .title {
    font-weight: 700;
    color: #3088a3;
    font-size: 20px;
    padding: 15px 0;
}

.common-list .page-category .more-btn {
    margin: 15px 0.5rem;
    font-size: 19px;
    border: 2px solid #3088a3;
    color: #3088a3;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    display: block;
    border-radius: 10px;
    text-decoration: none;
}


.paginate{
    display: flex;
    justify-content: space-around;
    margin-top:1rem;
    padding:1rem;
}
.paginate .btn{
    padding:7px 15px;
    font-size:13px;
    font-weight:500;
    background: #3088a3;
    color:white;
    border-radius: 8px;
}

.paginate .btn #page{
    font-size:18px;
    margin:0 1rem;
}

.paginate .btn.disabled{
    background: white;
    color:#666;
    cursor: not-allowed;
    border:1px solid #3088a3;
}

.sticker {
    left:0;
    right:0;
    position: fixed;
    z-index:200000;
    bottom: 0;
    border-bottom: none;
    padding: 8px 15px 5px 15px;
    box-shadow: 0px -2px 10px rgba(48, 143, 173, 0.2);
    transform: translateY(100%);
    background-color: rgb(255, 255, 255);
    transition: transform 0.3s ease;
}

.sticker.show {
    transform: translateY(0);
}
.sticker .btn-list{
    display: flex;
    max-width: none;
    margin-left: 0;
    margin-bottom: 4px;
    height: 36px;
    order: -1;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.sticker .btn-list .btn {
    width: 40px;
    min-width: 40px;
    color: #3088a3;
    background: #def3f8;
    border: 1px solid #3088a3;
    height: 100%;
    border-radius: 10px;
    /*垂直居中*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
.sticker .btn-list .link-btn{
    background: #fa255e;
    text-align: center;
    border-radius: 10px;
    width:100%;
    height: 100%;
}
.sticker .btn-list .link-btn a{
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
    /*垂直居中*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size:17px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    overflow: hidden;
}
.sticker .btn-list .link-btn a i{
    margin-left:0.5rem;
}

.sticker .txt-list{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.sticker .txt-list .txt-box{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #3088a3;
}
.sticker .txt-list .txt-box:last-child{
    border-right: none;
}
.sticker .txt-list .txt-box .txt-title{
    color: #3088a3;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: underline;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}
.sticker .txt-list .txt-box .txt-num{
    font-size: 11px;
    line-height: 15px;
    color: #858585;
}

.footer {
    margin-top: 1rem;
    background: #3088a3;
    text-align: center;
    color: white;
    font-weight: 300;
    padding: 2rem;
    font-size: 14px;
}

.sticker+.footer{
    padding-bottom:100px
}