* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    /* background-image: url('/assets/images/bg.jpg'); */
    background-size: fixed;     
    background-position: center;    /* 居中 */
    background-repeat: no-repeat;   /* 放置重复 */
    background-attachment: fixed;   /* 固定背景 */
}

/* 容器样式 */
.box {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 99vh;
    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: 100%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
	margin-bottom: 65px;
    z-index: 1;
}

/* 内部主体内容样式 */
.myp {
    display: flex;
    position: relative;
    width: 50%;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.myp img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .7);
    transition: all .8s;
    opacity: 0.7;
}

.myp img:hover {
    box-shadow: 0px 0px 20px rgba(43, 126, 252, 1);
    opacity: 0.9;
}

/* 摘要样式 */
.myp>h2, .myp>span {
    color: rgba(255, 255, 255, .7);  
}

.myp h2 {
    margin: 20px 0;
}

.myp span {
    margin: 5px 0;
}

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

/* 联系方式样式 */
.myp ul {
    display: flex;
    flex-direction: row;
}

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

.myp ul li a {
    position: relative;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

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

.myp ul li a:hover {
    color: #09b9ffce;
    transition: all .8s;
}

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

.myp ul li a i {
    font-size: 22px;
}
