/* 背景色 */
body {
    background-color: #181b62;
    font-size: 16px;
    color: white;
    padding: 0;
    margin: 0;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

ins.adsbygoogle a {
    display: none !important;
}

ins.adsbygoogle[data-ad-status="unfilled"] a {
    display: block;
}


/* 导航 */
.home {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-wrap: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 10px;
    margin-top: 10px;
}

.home .home-title {
    margin-left: 10px;
}

/* 卡片圆角 */
.card {
    background-color: #181b62;
    border-radius: 10px;
    border: 1px solid #717392;
    overflow: hidden;
}


/* 布局 */
.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    /* grid-template-columns: repeat(auto-fill, minmax(11vw, 1fr)); */
    /* grid-template-rows: repeat(auto-fill, minmax(12.7vw, 1fr)); */
    grid-gap: 10px;
    padding: 5px;
    margin: 0 10px;
}

/* mini 1 * 1  */
.grid-container .mini {
    position: relative;
    grid-column-start: span 1;
    grid-row-start: span 1;
    height: 12vw;
}

/* small 2 * 2  */
.grid-container .small {
    position: relative;
    grid-column-start: span 2;
    grid-row-start: span 2;
    height: calc(12vw * 2 + 5px);
}

/* medium 3 * 3 */
.grid-container .medium {
    position: relative;
    grid-column-start: span 3;
    grid-row-start: span 3;
    height: calc(12vw * 3 + 15px);
}

.grid-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* 广告 */
.adver_cart {
    width: 100%;
    max-height: 300px;
    background-color: white;
}

.adver_title {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-align: center;
}


/*去除a标签下划线*/
a {
    text-decoration: none;
    /* 去除默认的下划线 */
    color: #000;
}

/*去除未被访问的a标签的下划线*/
a:link {
    text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
    text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
    text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
    text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
    text-decoration: none;
}



/* 页脚 */
.footer {
    font-weight: normal;
    font-size: 14px;
    padding: 30px 0px;
    box-sizing: border-box;
}

.footer .ali {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.footer .ali a {
    color: white;
}



/* 提示方向 */
#out_rotateDeviceBG {
    background-color: rgba(0, 0, 0, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 998;
}

#out_rotateDeviceBG .out_phone {
    height: 100px;
    width: 200px;
    border: 4px solid white;
    border-radius: 10px;
    animation: out_rotate 1.5s ease-in-out infinite alternate;
}

#out_rotateDeviceBG .out_message {
    color: white;
    font-size: 1em;
    text-align: center;
}

@keyframes out_rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(-90deg)
    }

    100% {
        transform: rotate(-90deg)
    }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

    .out_phone,
    .out_message {
        display: block;
    }
}