/* 
来源
搜码区资源站
www.2ax.cn
 */

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    min-width: 960px;
    background: url(../imgaes/1.jpg) no-repeat;
    background-size: cover;
    /* box-sizing: border-box; */
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

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

.box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    overflow: hidden;
    display: flex;
    width: 1100px;
    height: 70%;
    /* background-color: rgba(255, 255, 255, 0.6); */
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    /* z-index: 1; */
}

.picture {
    position: relative;
    width: 60%;
    height: 100%;
    background: url(../imgaes/1.jpg) no-repeat;
    background-size: cover;
    background-position: top right;
}

.ide {
    display: flex;
    position: relative;
    width: 40%;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(75deg, #1eb9b9af, #58a8cb94, #7495dd8a, #8780eea2);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
}

.ide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .7);
    transition: all .3s;
}

.ide img:hover {
    box-shadow: 0px 0px 8px rgba(43, 126, 252, 1);
}

h2,
span,
li {
    color: #fff;
}

.ide h2 {
    margin: 20px 0;
}

.ide span {
    margin: 5px 0;
}

.fa-map-marker {
    color: #CC3399;
    margin: 0 6px;
}

.ide ul {
    display: flex;
    flex-direction: row;
}

.ide ul li {
    margin: 0 10px;
    margin-top: 15px;
    list-style: none;
}

.ide ul li a {
    position: relative;
    font-size: 16px;
    color: #ffe609;
}

.ide ul li a::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    width: 0%;
    height: 1px;
    background-color: #ffe609;
    transition: all .5s;
}

.ide ul li a:hover {
    color: #ffe609ce;
}

.ide ul li a:hover::after {
    left: 0%;
    width: 100%;
}

.ide ul li a i {
    /* width: 10px;
eight: 10px; */
    font-size: 22px;
}

.aplayer-list-title {
    color: #0099FF;
}

.aplayer-list-author {
    color: #FF99CC;
}

/* 
来源
搜码区资源站
www.2ax.cn
 */