* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #1b1e21
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}


/*---------顶部导航栏样式--------------*/
.header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
}

/* 初始状态透明背景 */
.header.transparent {
    background-color: transparent;
}

/* 滚动后有背景颜色 */
.header.scrolled {
    background-color: rgba(0, 0, 0, .8);
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0) !important;
    color: #ffffff !important;
    transition: .3s;
}

.navbar:hover {
    background-color: rgba(0, 0, 0, .8) !important;
}

.navbar-toggler-icon {
    color: #ffffff;
}

#navbarNavDropdown {
    flex-grow: 0 !important;
}

.nav-item a {
    color: #ffffff !important;
    font-size: 15px;
}

.nav-link {
    display: inline-block;
    position: relative;
}

.nav-link:before {
    transition: .3s;
    content: "";
    width: 0;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99;
}

.nav-link:hover::before {
    width: 100%;
}

/*顶部导航logo-通用*/
.navbar-brand img {
    width: 40px;
}

.navbar-brand span {
    font-size: 14px;
    color: #ffffff;
}

/*顶部导航栏右侧按钮样式*/
.navbar-btn {
    padding: 4px 25px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: .4s;
    outline: none;
    display: inline-block;
}

.btn-l:hover {
    background: #ffffff;
    color: #1b1e21;
}

.btn-r {
    background-color: #ffffff;
    color: #1b1e21;
}

/*待开通业务*/
.index-wait {
    padding: 50px 0;
}

.wait-left p {
    font-size: 30px;
}

.wait-left ul {
    display: flex;
    align-items: center;
}

.wait-left ul li {
    margin-right: 10px;
}

.wait-left ul li a {
    font-size: 17px;
}

.index-wait .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-wait .container .wait-right img {
    width: 400px;
    height: 250px;
}

/*页脚样式*/
footer {
    padding: 20px 0 20px 0;
    background: #1b1e21;
    color: #ffffff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer ul {
    display: flex;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0;
}

footer ul li {
    margin-right: 25px;
}

footer ul li a {
    color: #ffffff;
}

footer .footer-info {
    display: flex;
    justify-content: center;
}

footer .footer-info a {
    margin-right: 20px;
    color: #ffffff;
}

footer .footer-info img {
    width: 20px;
    height: 20px;
}

.bi {
    color: #ffffff;
}

.ft-28 {
    font-size: 28px;
}
.ft-24{
    font-size: 24px;
}

/*第一版面统一样式*/
.top-warp {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.top-warp .ft-ti {
    font-size: 45px;
    font-weight: bold;
    color: #FFC000;
    margin-bottom: 30px;
}

.top-warp li {
    text-align: center;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500;
}

.top-warp .row {
    margin-top: 80px;
}

.top-warp .row .col-md {
    padding-left: 0;
    padding-right: 0;
    margin: 0 5px;
}

.top-warp div a {
    font-size: 14px;
    display: inline-block;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 6px 90px;
    text-align: center;
    margin-top: 20px;
}

.top-warp div .btn-l {
    color: #ffffff;
}


/*第二三四页面第一版面统一样式*/
/*首屏样式*/
.first-screen {
    position: relative;
}
.first-screen img {
    width: 100%;
    height: 100vh;
    aspect-ratio: 1280/605;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.btn-wrappers {
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.btn1s {
    font-size: 14px;
    display: inline-block;
    background: #fff;
    border-radius: 6px;
    padding: 6px 60px;
    text-align: center;
    transition: .3s;
    color: #000;
    cursor: pointer;
}

.btn2s {
    font-size: 14px;
    display: inline-block;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 6px 60px;
    text-align: center;
    transition: .3s;
    color: #ffffff;
    cursor: pointer;
}

.btn2s:hover {
    background-color: transparent;
}

.title-wrappers {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
}

.title-tops {
    color: #ffffff;
    font-size: 45px;
}

.title-bottoms {
    font-size: 25px;
    font-weight: bold;
    color: #FFC000;
}

/*视频样式*/
.video-mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 98;
    background-color: rgba(0, 0, 0, .8);
}

.video-mask div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
}

.video-mask div button {
    position: absolute;
    top: -30px;
    right: -30px;
    color: #ffffff;
    width: 30px;
    height: 30px;
}

.video-mask div video {
    width: 100%;
}


/*文本域样式*/
.hy-textarea{
    width: 100%;
    min-height: 100px;
    height: auto;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    resize: none;
    background: none;
    outline: none;
    border: none;
    padding: 2px;
}
/*响应式样式*/
@media (max-width: 768px) {
    .top-warp {
        width: 70%;
    }

    .top-warp .ft-ti {
        font-size: 30px;
    }

    .top-warp li {
        font-size: 16px;
    }

    .top-warp .row .col-md {
        margin-bottom: 10px;
    }
    .title-tops {
        font-size: 30px;
    }

    .title-bottoms {
        font-size: 16px;
    }
    .footer-info {
        margin-top: 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    .footer-info a {
        margin-top: 5px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .top-warp {
        width: 50%;
    }

    .nav-item {
        margin: 0 5px;
    }

    .nav-item a {
        font-size: 11px;
    }

    .navbar-btn {
        padding: 4px 15px;
        font-size: 11px;
    }
}

@media (min-width: 992px) {
    .top-warp {
        width: 40%;
    }

    .nav-item {
        margin: 0 8px;
    }

    .navbar-brand img {
        width: 40px;
    }

    .nav-item a {
        color: #ffffff !important;
        font-size: 13px;
    }

    .navbar-brand span {
        font-size: 13px;
    }

    .navbar-btn {
        padding: 4px 15px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    footer {
        flex-direction: column !important;
    }
}

@media (min-width: 1200px) {
    .top-warp {
        width: 30%;
    }

    .nav-item {
        margin: 0 20px;
    }

    .navbar-brand img {
        width: 40px;
    }

    .navbar-brand span {
        font-size: 15px;
    }

    .navbar-btn {
        padding: 4px 20px;
    }
}

/*-------------------*/
