* {
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Rajdhani-Regular', sans-serif;
}

@font-face {
    font-family: 'Rajdhani-Bold';
    src: url('/static/font/Rajdhani-Bold.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Rajdhani-Light';
    src: url('/static/font/Rajdhani-Light.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Rajdhani-Medium';
    src: url('/static/font/Rajdhani-Medium.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Rajdhani-Regular';
    src: url('/static/font/Rajdhani-Regular.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

p {
    font-family: 'Rajdhani-Light', sans-serif;
    font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rajdhani-Bold', sans-serif;
}






/* 网站头部 */
.header {
    position: relative;
    width: 100%;
}

.header-menu {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 0;
    width: 100%;
}

.header-menu .header-logo img {
    width: 160px;
}

.header-menu .header-menu-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
}

.header-menu .header-menu-list .header-menu-list-item-select {
    list-style: none;
    height: 60px;
    width: 100%;
    text-align: center;
}

.header-menu .header-menu-list .menu-select {
    color: #fff;
    font-family: 'Rajdhani-Bold', sans-serif;
    font-size: 1.3rem;
    text-decoration: none;
    width: 100%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    
}

.header-menu .header-menu-list .header-menu-list-item-select:hover {
    background-color: #fff;
    color: #000;
}

.header-menu .header-menu-list .header-menu-list-item-select:hover .menu-select {
    color: #000;
}

.header-menu .dropdown-menu li  {
    color: #000;
    list-style: none;
}

.header-menu .dropdown-menu {
    display: none;
    padding: 20px 30px;
    
}

.header-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.header-menu .dropdown-menu a {
    color: #000;
    font-size: 1.2rem;
    font-family: 'Rajdhani-Bold', sans-serif;
    text-decoration: none;
}

.header-menu .dropdown-menu-item {
    display: flex;
    flex-direction: column;
    gap:10px;
    padding: 20px;
    width: 200px;
}

.header-menu .message-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 60px;
}

.header-menu .message-box-icon {
    padding: 10px 30px;
    background-color: #1782c6;
}

.header-menu .message-box-icon i {
    color: #fff;
    font-size: 2rem;
}

.slider img {
    width: 100%;
}

.related-switch {
    position: absolute;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    bottom: 50px;
    padding: 0 30px;
}

.switch-btn {
    color:#fff;
    display: flex;
    align-items: center;
}

.switch-btn i {
    font-size: 2.5rem;
}

.float-menu {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: none;
}

.float-menu .header-logo img {
    width: 160px;
}

.float-menu .header-menu-list-item {
    display: flex;
    justify-content: space-between;
    line-height: 100px;
    height: 100px;
    width: 100%;
}

.float-menu .header-menu-list .header-menu-list-item-select {
    list-style: none;
}

.float-menu .header-menu-list .menu-select {
    color: #000;
    font-family: 'Rajdhani-Bold', sans-serif;
    font-size: 1.3rem;
    text-decoration: none;
    width: 100%;
    height: 60px;
    text-align: center;
    line-height: 60px;  
}

.float-menu .header-menu-list .header-menu-list-item-select:hover {
    background-color: #fff;
    color: #000;
}

.float-menu .header-menu-list .header-menu-list-item-select:hover .menu-select {
    color: #000;
}

.float-menu .dropdown-menu li  {
    color: #000;
    list-style: none;
}

.float-menu .dropdown-menu {
    display: none;
    padding: 20px 30px;
    
}

.float-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.float-menu .dropdown-menu a {
    color: #000;
    font-size: 1.2rem;
    font-family: 'Rajdhani-Bold', sans-serif;
    text-decoration: none;
}

.float-menu .dropdown-menu-item {
    display: flex;
    flex-direction: column;
    gap:10px;
    padding: 20px;
    width: 200px;
    transform: translateY(-35px);
}

.float-menu .dropdown-menu-item li {
    height: 30px;
    list-style: none;
}

.float-menu .message-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100px;
}

.float-menu .message-box-icon {
    padding: 10px 30px;
    background-color: #1782c6;
}

.float-menu .message-box-icon i {
    color: #fff;
    font-size: 2rem;
}
/* 网站头部 */







/* 首页关于我们 */
.home-about {
    padding: 120px 0;
}

.home-about-text h6 {
    color: #1782c6;
}

.home-about-text-content {
    margin: 20px 0 40px 0;
}

.home-about-text-btn a {
    color: #000;
    font-size: 1.3rem;
    font-family: 'Rajdhani-Medium', sans-serif;
}

.home-about-img img {
    width: 100%;
}
/* 首页关于我们 */




/* 首页生产线滚图 */
.home-production {
    padding: 50px 0 120px 0;
}

.home-production-title {
    display: flex;
    gap:15px;
    justify-content: center;
    align-items: center;
}

.home-production-title-line {
    border-right: 1px solid #000;
    height: 30px;
    transform: translateY(-5px);
}

.home-production-title h6 {
    color: #1782c6;
}

.home-production-content {
    margin-top: 50px;
}

.home-production-content-img img {
    width: 100%;
}

.home-production-content-text {
    margin-top: 10px;
    text-align: center;
}

.home-production-content-text p {
    font-family: 'Rajdhani-Medium', sans-serif;
}
/* 首页生产线滚图 */





/* 首页优势 */
.home-advantage {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.home-advantage-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.home-advantage-bg img {
    width: 100%;
}

.home-advantage-title {
    padding: 120px 0;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-advantage-title h6 {
    color: #1782c6;
    margin-bottom: 30px;
}

.home-advantage-title h2 {
    color: #fff;
    font-size: 4.5rem;
    line-height: 4rem;
}

.home-advantage-btn {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    gap:10px;
}

.home-advantage-btn i {
    font-size: 6rem;
}
/* 首页优势 */





/* 首页新闻 */
.home-news {
    padding: 120px 0;
}

.home-news-content {
    margin-top: 50px;
}

.home-news-item {
    box-shadow: 0 0 20px 7px #00000008;
}

.home-news-item-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.home-news-item-img img {
    width: 110%;
    transform: translateX(-10px);
}

.home-news-item-text {
    padding: 20px;
}

.home-news-item-text span {
    color: #1782c6;
}

.home-news-item-text-title {
    word-break: break-all;
    margin-top: 15px;
    display: -webkit-box;          /* 必须结合的弹性盒子模型 */
    -webkit-box-orient: vertical;  /* 设置子元素的排列方式 */
    -webkit-line-clamp: 3;         /* 限制显示行数（此处为3行） */
    overflow: hidden;              /* 隐藏超出内容 */
    text-overflow: ellipsis;  
}

.home-news-item-text-title a {
    color: #000;
    font-size: 1.2rem;
    font-family: 'Rajdhani-Medium', sans-serif;
    line-height: 1.2rem;
}

.home-news-item-text-title a:hover {
    text-decoration: none;
    color: #1782c6;
    transition: all 0.3s;
}

.home-news-item-text-des {
    word-break: break-all;
}

.home-news-item-text-btn {
    margin-top: 20px;
}

.home-news-item-text-btn a {
    color: #000;
    font-size: 1.3rem;
    font-family: 'Rajdhani-Medium', sans-serif;
}

.home-news-item-text-btn a:hover {
    text-decoration: none;
    color: #1782c6;
    transition: all 0.3s;
}

.home-news-item:hover .home-news-item-img img {
    transform: translateX(0);
    transition: all 0.3s;
}
/* 首页新闻 */





/* 网站底部 */
.footer {
    padding: 120px 0 0 0;
    background-color: #0d0d0d;
}

.footer-item-title h3 {
    color: #fff;
}

.footer-item-text {
    color: #808080;
}

.footer-item-select {
    display: flex;
    flex-direction: column;
}

.footer-item-select a {
    color: #808080;
}

.footer-item-select a:hover {
    color: #1782c6;
    text-decoration: none;
}

.footer-item-contact li {
    list-style: none;
    display: flex;
    align-items: center;
    color: #808080;
    gap:8px;
}

.footer-item-contact i {
    color: #fff;
}

.footer-item-location-img img {
    width: 100%;
}

.footer-item-location-social {
    margin-top: 20px;
}

.footer-item-location-social a {
    color: #808080;
}

.footer-item-location-social a:hover {
    color: #1782c6;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-item-location-social i {
    font-size: 1.6rem;
}

.footer-copyright {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #000;
    display: flex;
    gap:30px;
    justify-content: center;
    align-items: center;
}

.footer-copyright a {
    color: #808080;
}

.footer-copyright a:hover {
    color: #1782c6;
    text-decoration: none;
    transition: all 0.3s;
}
/* 网站底部 */






/* 关于我们 */
.pagebg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.pagebg-image img {
    width: 100%;
}

.page-title {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title h6 {
    color: #1782c6;
}

.page-title h1 {
    color: #fff;
    font-size: 3.8rem;
}

.timeline {
    position: relative;
    padding: 120px 0;
}

.timeline-box-title h1 {
    text-align: center;
    color: #004071;
}

.timeline-line {
    position: absolute;
    border-bottom: 2px solid #c7c7c7;
    top:285px;
    left: 50%;
    width: 1060px;
    margin: 0 auto;
    transform: translateX(-50%);
}

.timeline-switch {
    position: absolute;
    z-index: 9;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.timeline-switch i {
    color: #d5d3d3;
}

.timeline .swiper {
    margin-top: 50px;
}

.timeline-item-box {
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
}

.timeline-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.timeline-item-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.timeline-item-content-arrow {
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    position: absolute;
    z-index: -1;
    left:44%;
}

.timeline-item-content-title {
    padding: 15px;
    border-radius: 5px 5px 0 0;
}

.timeline-item-content-title h5 {
    color: #fff;
}

.timeline-item-content-text {
    padding: 15px;
    border-radius: 0 0 5px 5px;
    background-color: #f0f0f0;
}

.timeline-item-content-text p {
    word-break: break-all;
}
/* 关于我们 */





/* 核心团队 */
.team-title h1 {
    text-align: center;
    color: #004071;
}

.team .swiper {
    margin-top: 50px;
}

.team-item-img {
    border-radius: 15px;
    overflow: hidden;
}

.team-item-img img {
    width: 100%;
}

.team-item-title {
    text-align: center;
    margin-top: 20px;
}

.team-item-title-icon {
    margin: 15px 0;
}

.team-item-title-icon i {
    font-size: 2rem;
    color: #808080;
}

.team-item-title-des p {
    font-size: 1rem;
    color: #808080;
}
/* 核心团队 */





/* 研发中心 */
.development {
    margin: 120px 0;
}

.development-title {
    text-align: center;
}

.development-title h6 {
    color: #1782c6;
}

.development-des {
    text-align: center;
    word-break: break-all;
    margin: 30px 0;
}

.development-item {
    position: relative;
}

.development-item-img img {
    width: 100%;
}

.development-item-btn {
    position: absolute;
    bottom:20px;
    right:20px;
    background-color: #fff;
    padding: 8px 15px;
}

.development-item-btn a {
    color: #000;
    font-family: 'Rajdhani-Medium', sans-serif;
}

.development-item-btn:hover {
    background-color: #1782c6;
    transition: all 0.3s;
}

.development-item-btn:hover a {
    text-decoration: none;
    color: #fff;
}

/* 研发中心 */





/* 产品列表 */
.product {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.product .swiper img {
    width: 100%;
}

.product-list {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.product-list-item {
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.product-list-item-bg img {
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left:0;
}

.pagination {
    position: fixed;
    top:50%;
    left:50px;
    transform: translateY(-50%);
}

.pagination ul li {
    list-style: none;
    padding: 10px;
    display: flex;
    gap:15px;
    align-items: center;
    cursor: pointer;
}

.pagination-line {
    border-left: 3px solid #fff;
    height: 25px;
}

.pagination-title a {
    color: #fff;
}

.pagination-title a:hover {
    text-decoration: none;
}

.pagination ul li.active .pagination-line {
    border-left: 3px solid #1782c6;
}

.pagination ul li.active .pagination-title a {
    color: #1782c6;
}

.product-list-item-title {
    height: 100vh;
}

.product-list-item-title-content {
    margin-top: 400px;
}

.product-list-item-title-content h1 {
    color: #fff;
}

.product-list-item-title-content p {
    color: #fff;
    font-size: 1.5rem;  
    word-break: break-all;
}

.product-list-item-title-btn {
    margin-top: 30px;
}

.product-list-item-title-btn a {
    padding: 10px 25px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.product-list-item-title-btn a:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

.product-list-item-video {
    position: absolute;
    z-index: -1;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

.page-title-info {
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title-info h1 {
    color: #fff;
}

.pagebg-gradient {
    position: absolute;
    left:50%;
    bottom:-10px;
    transform: translateX(-50%);
}

.pagebg-gradient a {
    padding: 10px 25px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.pagebg-gradient a:hover {
    background-color: #60bb46;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.list-box-bread {
    margin-top: 15px;
}

.list-box-bread a {
    color: #808080;
}

.list-box-bread a:hover {
    color: #1782c6;
    text-decoration: none;
}

.list-box-menu {
    padding: 60px 0 120px 0;
    width:100%;
}

.list-box-menu-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.list-box-menu-title-line {
    border-bottom: 2px solid #1782c6;
    width: 30px;
}

.list-box-item-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.list-box-item-img img {
    width: 100%;
}

.list-box-item-text {
    padding-top: 15px;
}

.list-box-item-text a {
    color: #000;
    font-family: 'Rajdhani-bold', sans-serif;
}

.list-box-item:hover img {
    background-color: #c7c7c7;
    transition: all 0.3s;
}

.list-box-item:hover .list-box-item-text a {
    color: #1782c6;
    text-decoration: none;
    transition: all 0.3s;
}
/* 产品列表 */





/* 产品详情 */
.product-detail-img img {
    width: 100%;
}

.product-detail-video {
    width: 100%;
    text-align: center;
}

.product-detail-video a {
    padding: 10px 25px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.product-detail-des {
    margin: 50px 0 0 50px;
}

.product-detail-des-text h4 {
    font-family: 'Rajdhani-Medium', sans-serif;
    word-break: break-all;
}

.product-detail-des-text-line {
    border-bottom: 1px solid #c7c7c7;
    margin: 20px 0;
}

.product-detail-des-text p {
    word-break: break-all;
}

.product-detail-des-btn {
    margin-top: 50px;
}

.product-detail-des-btn a {
    padding: 10px 25px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.product-detail-des-btn a:hover {
    background-color: #60bb46;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.product-list-item-title-text-img img {
    width: 100%;
}
/* 产品详情 */





/* 为什么选择立维 */
.why-lewee {
    position: relative;
}

.why-lewee-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
}

.why-lewee-bg img {
    width: 100%;
}

.why-lewee-content-text {
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-lewee-content-text-title {
    color: #fff;
}

.why-lewee-content-text-title h1 {
    word-break: break-all;
}

.why-lewee-content-text-title-line {
    border-bottom: 2px solid #fff;
    margin: 20px 0;
    width: 50px;
}

.why-lewee-content-text-info {
    margin: 30px 0;
}

.why-lewee-content-text-info p {
    color: #fff;
    word-break: break-all;
}

.why-lewee-content-text-button a {
    padding: 10px 25px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.why-lewee-content-text-button a:hover {
    background-color: #60bb46;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.lewee-box {
    margin-top: 300px;
}

.lewee-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.lewee-item-img {
    width: 100%;
    overflow: hidden;
}

.lewee-item-img img {
    width: 100%;
}

.lewee-item-text {
    padding: 15px;
    text-align: center;
}

.lewee-item-text a {
    font-size: 1.5rem;
    color: #000;
}

.lewee-item:hover {
    background-color: #1782c6;
    transition: all 0.3s;
}

.lewee-item:hover a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.lewee-item:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.manu-box {
    margin-top: 400px;
    display: flex;
    justify-content: space-between;
    gap:20px;
    background-color: #00000087;
    padding: 30px;
}

.manu-box-item {
    color: #fff;
    width: 18%;
}

.manu-box-item-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.manu-box-item-icon i {
    font-size: 3.5rem;
}

.manu-box-item-text {
    width: 100%;
    word-break: break-all;
    text-align: center;
    margin-bottom: 20px;
}

.manu-box-item-des p {
    width: 100%;
    word-break: break-all;
    text-align: center;
}
/* 为什么选择立维 */




/* 新闻详情 */
.list-box-item {
    margin-bottom: 30px;
}

.list-box-item-datetime {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.article-detail {
    margin: 60px 0 120px 0;
    width: 100%;
}

.article-detail-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-detail-line {
    border-bottom: 2px solid #1782c6;
    width: 30px;
}

.article-detail-datetime {
    display: flex;
    gap:50px;
    justify-content: center;
    margin: 20px 0 50px 0;
}

.article-detail-content p {
    word-break: break-all;
}

.article-detail-pageinfo {
    border-bottom: 1px solid #c7c7c7;
    margin: 50px 0 20px 0;
}

.pageinfo {
    display: flex;
    justify-content: space-between;
}

.pageinfo a {
    color: #000;
    font-family: 'Rajdhani-Medium', sans-serif;
}

.pageinfo a:hover {
    color: #1782c6;
    text-decoration: none;
    transition: all 0.3s;
}

.article-detail-datetime p {
    width: 60%;
    word-break: break-all;
    text-align: center;
}
/* 新闻详情 */






/* 联系我们 */
.contact-info {
    margin-top: 30px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-family: 'Rajdhani-Medium', sans-serif; 
}

.contact-info-item-text p {
    word-break: break-all;
    display: flex;
    gap:8px;
    align-items: center;
}

.contact-info-item-text i {
    color: #000;
}

.contact-info input {
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    border: none;
    border-bottom: 1px solid #c7c7c7;
}

::-webkit-input-placeholder {
    color: #1782c6;
    font-family: 'Rajdhani-Medium', sans-serif; 
  }

.contact-info button {
    padding: 10px 35px;
    background-color: #1782c6;
    color: #fff;
    font-family: 'Rajdhani-bold', sans-serif;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    margin-top: 15px;
}
  
/* 联系我们 */




.float-sidebar {
    position: fixed;
    top:0;
    right:0;
    width: 550px;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    padding: 120px 50px;
    display: none;
}

.float-sidebar-box-title p {
    word-break: break-all;
}

.float-sidebar-box-content {
    margin-top: 30px;
}

.float-sidebar-box-content ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap:10px;
}

.float-sidebar-box-content i {
    color: #1782c6;
    font-size: 1.5rem;
}

.closed {
    position: fixed;
    z-index: 10;
    top:25px;
    right:25px;
    display: none;
}

.closed i {
    font-size: 1.5rem;
    color: #1782c6;
    cursor: pointer;
}




.fixed-video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000e3;
    z-index: 9999;
    display: none;
}

.fixed-video-box {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-video-box video {
    width: 800px;
}

.close-video {
    display: none;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 999999;
}

.close-video i {
    color: #fff;
    font-size: 1.8rem;
}