/*
* @Author: chenyn
* @Date:   2017-09-07 22:04:13
* @Last Modified by:   chenyn
* @Last Modified time: 2017-09-07 22:42:01
*/

.bg-img{
    /* background: url(/static/img/login.jpg)  ; */
    background: url(/static/img/phc.jpg)  ;
    background-size: cover;
}
  
body {
    overflow: hidden;
}
.layer_notice {
    background: #5fb878 none repeat scroll 0 0;
    float: left;
    height: 75px;
    overflow: hidden;
    padding: 10px;
    width: 330px;
}
.layer_notice ul li {
    color: #fff;
}
.video-player {
    background-color: transparent;
    min-width: 100%;
    min-height: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
}

.video_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.3);
}

.login {
    height: 350px;
    width: 260px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 9px;
    position: absolute;
    left: 80%;
    top: 35%;
    margin: -150px 0 0 -150px;
    z-index: 99;
}

.titlepic {
    height: 50px;
    width: 100%;
    padding: 0px;
    position: absolute;
    left: 0%;
    top: 0%;
    /* margin: -150px 0 0 -150px; */
    z-index: 99;
}


.textDown {
    height: 100px;
    width: 100%;
    position: absolute;
    /* left: 30%; */
    bottom: 0;
    display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;    /* 垂直居中 */
    background-color: rgba(243, 238, 238, 0.5);
    z-index: 99;
}

.login h1 {
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.form_code {
    position: relative;
}

.form_code .code {
    position: absolute;
    right: 0;
    top: 1px;
    cursor: pointer;
}

.login_btn {
    width: 100%;
}

/* 全屏轮播容器 */
.layui-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 置于底层 */
  }
  
  /* 轮播项背景图样式 */
  .layui-carousel [carousel-item] > div {
    width: 100%;
    height: 100%;
    background-size: cover; /* 覆盖整个容器 */
    background-position: center;
  }
  
  /* 页面内容容器 */
  .content {
    position: relative;
    z-index: 1; /* 确保内容在轮播图上方 */
    color: white;
    padding: 20px;
  }