body {
    user-select: none;
    overflow-x: hidden;
}

.profile-container,
.profile-content,
.profile-wrapper {
    height: 100%;
}
.profile-container {
    padding: 195px 0 96px;
    background: var(--color-black) url('../../images/icon_profile_red.png') no-repeat center bottom / 100%;
}
.profile-content,
.profile-wrapper {
    float: left;
}
.profile-content {
    width: 678px;
    padding: 80px 126px 0 126px;
}
.profile-text {
    color: var(--color-white);
}
.profile-text i,
.profile-text span {
    display: block;
}
.profile-text i {
    line-height: 1.2;
    font-size: 50px;
    font-weight: bold;
}
.profile-text span {
    margin-top: 10px;
    font-size: 30px;
}
.profile-year {
    position: relative;
    margin-top: 20px;
    font-size: 0;
    text-align: center;
}
.profile-year div {
    display: inline-block;
}
.profile-year i,
.profile-year span {
    display: block;
    line-height: 1;
    text-align: left;
}
.profile-year i {
    color: var(--theme-color);
    font-size: 200px;
}
.profile-year span {
    position: absolute;
    top: 80px;
    right: 0;
    color: var(--color-white);
    font-size: 45px;
}
.profile-wrapper {
    padding-right: 126px;
    width: calc(100% - 678px);
    overflow: hidden;
}
.profile-name,
.profile-box {
    color: var(--color-white);
}
.profile-name {
    margin-bottom: 35px;
    padding-left: 20px;
    font-size: 22px;
}
.profile-box {
}
.profile-box .text {
    position: relative;
    margin-top: 30px;
    padding-left: 20px;
}
.profile-box .text:first-child {
    margin-top: 0;
}
.profile-box .text s {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
}
.profile-box .text p {
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

.history-container,
.history-content,
.history-box,
.history-item {
    height: 100%;
}
.history-container {
    padding: 48px 0 96px;
    background-color: var(--color-white);
}
.history-content {
    position: relative;
}
.history-line {
    position: relative;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-dark);
    transform: translateY(-50%);
}
.history-box {
    padding: 20px;
}
.history-empty {
    height: 1px;
}
.history-list {
    height: calc((100% - 1px) / 2);
    font-size: 0;
    white-space: nowrap;
}
.history-item {
    display: inline-block;
    position: relative;
    margin-left: 20px;
}
.history-item:first-child {
    margin-left: 0;
}
.history-item .image {
    position: relative;
    height: 100%;
}
.history-item .image img,
.history-item .image i {
    display: block;
    height: 100%;
}
.history-item .image i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.history-item .dot {
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--color-dark);
    border-radius: 100%;
    z-index: 1;
}
.history-item .dot.small {
    width: 13px;
    height: 13px;
}
.history-item .dot.big {
    width: 19px;
    height: 19px;
}
.history-item .dot.red {
    background-color: var(--theme-color);
}
.history-list.top .history-item {
    padding-bottom: 20px;
}
.history-list.top .history-item .dot {
    left: 15px;
    bottom: -5px;
}
.history-list.top .history-item .dot.small {
    bottom: -7px;
}
.history-list.top .history-item .dot.big {
    bottom: -10px;
}
.history-list.bottom .history-item {
    padding-top: 20px;
}
.history-list.bottom .history-item .dot {
    top: -5px;
    right: 15px;
}
.history-list.bottom .history-item .dot.small {
    top: -7px;
}
.history-list.bottom .history-item .dot.big {
    top: -10px;
}

.contact-container,
.contact-content,
.contact-box,
.contact-wrapper {
    height: 100%;
}
.contact-content,
.contact-wrapper {
    float: left;
    padding: 195px 0 96px;
    width: 50%;
}
.contact-container {
    background-color: var(--color-white);
}
.contact-box {
    padding: 90px 80px 0;
}
.contact-text {
    color: var(--theme-color);
}
.contact-text i,
.contact-text span {
    display: block;
}
.contact-text i {
    line-height: 1.2;
    font-size: 50px;
    font-weight: bold;
}
.contact-text span {
    margin-top: 10px;
    font-size: 30px;
}
.contact-traffic {
    margin-top: 50px;
}
.contact-traffic .item {
    margin-top: 20px;
}
.contact-traffic .item:first-child {
    margin-top: 0;
}
.contact-traffic .item .icon,
.contact-traffic .item .box {
    float: left;
}
.contact-traffic .item .icon {
    width: 60px;
    height: 60px;
    background: no-repeat center 0 / 80%;
}
.contact-traffic .item .icon.icon-bus {
    background-image: url('../../images/icon_contact_1.png');
}
.contact-traffic .item .icon.icon-subway {
    background-image: url('../../images/icon_contact_2.png');
}
.contact-traffic .item .box {
    padding-left: 10px;
    width: calc(100% - 60px);
}
.contact-traffic .item .box span {
    display: block;
    color: var(--color-black);
    font-weight: bold;
}
.contact-traffic .item .box p {
    color: var(--color-dark);
}
.contact-wrapper {
    padding-right: 80px;
}
.contact-map {
    display: flex;
    position: relative;
    height: 100%;
    border: 3px solid var(--theme-color);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.contact-image .box {
    width: 1300px;
    height: 932px;
}
.contact-image img {
    display: block;
    width: 100%;
    height: 100%;
}