﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #2c2a2a !important;
        }
        .bg {
            width: 100%;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2vw;
            box-sizing: border-box;
        }

        .box {
            width: 100%;
            height: 100%;
            flex: 1;
        }
        .logo {
            text-align: center;
        }
        .logo img {
            width: 96%;
        }
        .list {
            width: 96%;
            min-height: 32%;
            display: flex;
            align-items: center;
            flex-direction: column;
            margin: 20px auto 0;
        }
        .list a {
            display: block;
            width: 100%;
            position: relative;
            text-decoration: none;
            background: #1d1d1d;
            border: 1px solid #ff5b7a;
            border-radius: 15px;
            margin-bottom: 10px;
            max-height: 75px;
        }
        .list a img {
            width: 100%;
            display: flex;
        }
        .list a .text {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            flex-direction: column;
            padding: 10px 0;
            color: #ff5757;
        }
        .list a .text .btnTitle {
            font-size: 16px;
            color: #fff;
        }
        .list a .text .btnLink {
            font-size: 14px;
        }
        .email-box a {
            color: #ff3159;
            font-weight: bold;
        }
        .footer {
            text-align: center;
            font-size: 12px;
            color: #fff;
            line-height: 1.5;
        }
        .notify {
            margin: 0;
            background-color: #000;
            width: 100%;
            height: 45px;
            z-index: 110;
            color: #fff;
            padding: 5px 0px;
            top: 0px;
            position: fixed;
            text-align: center;
            line-height: 40px;
        }
        #load-wrap {
            background: #fff;
            width: 90%;
            padding: 10px 0;
            color: #211f1f;
            border-radius: 5px;
            text-align: center;
            margin: 20px auto;
        }
        .contact {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
        }
        .contact a {
            color: #fff;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 12px;
        }
        .contact img {
            width: 2.625rem;
        }
        .email-box {
            color: #fff;
            padding: 1rem;
            background-image: url("../imges/bj.jpg");
            text-align: center;
            border-radius: 0.5rem;
            width: 96%;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            margin: 10px auto 15px;
        }
        .email-box h1 {
		    color: #ffa500;
		    font-size: 26px;
		    margin-bottom: 12px;
		}
		.email-box p {
		    margin: 8px 0;
		    font-size: 14px;
		}
        #app-btns {
            display: flex;
            flex-direction: row;
            width: 96%;
            margin: 0 auto;
            margin-top: 20px;
        }
        #app-btns a {
            background: #444;
            color: #fff;
            text-decoration: none;
            width: calc((100% - 10px) / 2);
            margin-right: 10px;
            text-align: center;
            padding: 18px 0;
            border-radius: 10px;
        }
        #app-btns a:hover{
        	background: #ff5757;
            color: #fff;
        }
        #app-btns a:last-child {
            margin-right: 0;
        }
        @media (min-width: 768px) {
            .bg {
                max-width: 450px;
            }
        }
