@keyframes animation-zoom-in {
    from {font-size: 12px; top: 10px;}
    to  {font-size: 20px; top: 19px;}
}
@keyframes animation-zoom-out {
    from {font-size: 20px; top: 19px;}
    to  {font-size: 12px; top: 10px;}
}

@keyframes animation-zoom-in-s {
    from {font-size: 11px; top: 5px;}
    to  {font-size: 17px; top: 13px;}
}
@keyframes animation-zoom-out-s {
    from {font-size: 17px; top: 13px;}
    to  {font-size: 11px; top: 5px;}
}

@keyframes loading-round {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation-hidden-fade-out {
    from {visibility: unset; opacity: 1;}
    to  {visibility: hidden; opacity: 0;}
}
.img-cache {
    display: none;
}
.visibility-hidden-fade {
    visibility: hidden;
    animation: animation-hidden-fade-out 0.5s linear 1 forwards;
}

.page-header {
    /*position: static;*/
}
.page-container {
    margin-top: 20px;
    padding-top: 0;
}

.input-search-loading-icon {
    width: 36px;
    height: 36px;
    display: block;
    border: 2px solid #BE207D;
    /*border-top: 2px solid #FFFFFF;*/
    border-right: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: loading-round 0.8s infinite linear;
}

.search-input-box .input-search-loading-icon {
    position: absolute;
    top: 11px;
    right: 8px;
    cursor: text;
    pointer-events: none;
}
.search-selected-items .search-input-box .input-search-loading-icon {
    top: 7px;
    right: 2px;
    width: 34px;
    height: 34px;
}




#section_container {
    display: flex;
    width: 1040px;
    margin: auto;
}
#section_container .wrap-left{
    width: 235px;
}
#section_container .wrap-right{
    flex: 1;
    margin-left: 25px;
}

.welcome {
    display: flex;
    margin-top: 25px;
}
.welcome .explain {
    color: #003399;
    font-size: 18px;
    line-height: 1.6em;
    margin-right: 32px;
}
.example {
    display: flex;
}
.example .eg-img {
    /*border: 1px solid #008CEB;*/
    margin-right: 35px;
    position: relative;
    width: 111px;
    height: 158px;
    border: 1px solid #AAAAAA;
}
.eg-img img{
    width: 100%;
    height: 100%;
}
.eg-img .eg-detail {
    position: absolute;
    width: 454px;
    height: 643px;
    border: 1px solid #008CEB;
    z-index: 9999;
}
.introduce {
    font-size: 16px;
    line-height: 1.8em;
    color: #666666;
    margin-bottom: 20px;
    padding-top: 20px;
}

.search-selected-items {
    height: 45px;
    display: flex;
}
.search-main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
}
.search-img {
    height: 64px;
    margin-bottom: 15px;
}
.search-img img {
    height: 100%;
}
.search-description {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.search-container {
    position: relative;
    flex: 1;
}
.search-container.locked {
    flex: none;
}
.searcher-box {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
}
.search-input-box {
    position: relative;
    width: 100%;
}
.search-step-box.small-font-size {
    width: 150px;
    flex: none;
}
.small-font-size .search-result-box .search-result-text {
    font-size: 16px;
}
.small-font-size .search-container.locked .search-input-box input.search-input {
    padding: 31px 0 6px;
    color: #000000;
    width: 100%;
    border: none;
}
.small-font-size.search-container.locked .search-input-box .search-box-placeholder.on-focus {
    left: 4px;
}
.search-container.locked .search-icon {
    display: none;
}
.search-input-box:hover .search-icon.edit-icon {
    color: #BE207D;
}
.search-input-box .search-icon.edit-icon.high-light {
    color: #BE207D;
}
.search-input-box .search-icon.edit-icon {
    /*display: none;*/
    color: #999999;
}
.search-input-box .edit-icon.on-focus, .search-container.locked .search-input-box .edit-icon {
    display: none;
}

.search-input-box .search-icon {
    position: absolute;
    right: 16px;
    font-size: 22px;
    top: calc(50% - 11px);
    color: #BE207D;
    cursor: text;
    pointer-events: none;
}
.search-selected-items .search-input-box .search-icon {
    right: 8px;
}

.box-button {
    display: flex;
    text-align: center;
}
.search-input-box .finger_pointer {
    position: absolute;
    top: 21px;
    left: -52px;
}

.search-input-box .search-box-placeholder {
    top: 19px;
    left: 24px;
    color: #999999;
    font-size: 20px;
    pointer-events: none;
    position: absolute;
}
.search-input-box .search-box-placeholder.on-blur {
    font-size: 20px;
    top: 19px;
    animation: animation-zoom-in 0.3s linear 1 forwards;
}
.search-input-box .search-box-placeholder.on-focus {
    font-size: 12px;
    top: 10px;
    animation: animation-zoom-out 0.3s linear 1 forwards;
}
.search-input-box input.search-input {
    border-radius: 4px;
    border: 1px solid #AAAAAA;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    width: calc(100% - 46px);
    padding: 30px 22px 8px;
    height: 24px;
    color: #000000;
}
.has-search-list.search-input-box input.search-input {
    border-radius: 4px 4px 0 0;
}
.search-input-box input.search-input:focus {
    border: 2px solid #20A0FF;
    padding: 29px 21px 7px;
    outline: none;
}

.box-button {
    color: #FFFFFF;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 16px 34px;
    height: fit-content;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0 0;
}
.box-button .btn-text {
    margin-right: 10px;
}
.box-button.blue {
    background-color: #20A0FF;
    padding: 14px 32px;
    margin: 21px 1px 1px;
}
.box-button.blue.unable:hover {
    background-color: #20A0FF;
    border: none;
    box-shadow: none;
    margin: 21px 1px 1px;
}
.box-button.blue:hover {
    /*background-color: #4db3ff;*/
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
    border: 1px solid #dadce0;
    margin: 20px 0 0;
    /*font-size: 16px;*/
}
.box-button.unable {
    opacity: 0.5;
}
.box-button .website-functional-arrow-line-right {
    height: 16px;
}

.search-list {
    width: calc(100% - 42px);
    max-height: 300px;
    padding: 10PX 18px 10px 22px;
    border: 1px solid #AAAAAA;
    position: absolute;
    left: 0;
    top: 61px;
    overflow: auto;
    background-color: #FFFFFF;
    z-index: 500;
    display: none;
}
.search-list.show {
    display: block;
}
.search-list .error-msg {
    font-size: 12px;
    color: #20A0FF;
    font-weight: bold;
}
.search-list .search-result-box {
    display: flex;
    width: calc(100% - 10px);
    padding: 10px 0;
    align-items: center;
    cursor: pointer;
}
.search-result-box .search-result-img {
    width: 120px;
    border: 1px solid #B2B2B2;
    padding: 2px;
    margin-right: 22px;
}
.search-result-box .search-result-img img {
    width: 100%;
}
.search-result-box .search-result-text {
    flex: 1;
    font-size: 16px;
}
.search-result-box:hover .search-result-img, .search-result-box.selecting .search-result-img {
    /*background-color: #8FCFFF;*/
    border: 1px solid #20A0FF;
}
.search-result-box:hover .search-result-text, .search-result-box.selecting .search-result-text {
    /*background-color: #8FCFFF;*/
    text-decoration: underline;
}

/* 75% top */
.search-selected-items {
    height: 45px;
    display: flex;
}
.search-selected-items .search-input-box .search-box-placeholder {
    top: 14px;
    left: 18px;
    font-size: 15px;
}
.search-selected-items .search-input-box .search-box-placeholder.on-blur {
    font-size: 17px;
    top: 13px;
    animation: animation-zoom-in-s 0.3s linear 1 forwards;
}
.search-selected-items .search-input-box .search-box-placeholder.on-focus {
    font-size: 11px;
    top: 5px;
    left: 17px;
    animation: animation-zoom-out-s 0.3s linear 1 forwards;
}
.search-selected-items .search-container {
    margin-right: 10px;
}
.search-selected-items .search-input-box input.search-input {
    font-size: 20px;
    width: calc(100% - 35px);
    padding: 20px 20px 6px 15px;
    border-radius: 4px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.search-selected-items .has-search-list.search-input-box input.search-input {
    border-radius: 4px 4px 0 0;
}

.search-selected-items .search-container.locked .search-input-box input.search-input {
    border: none;
    color: #000000;
    padding: 20px 0 6px 4px;
    width: 110px;
    background-color: #FFFFFF;
}
.search-selected-items .search-list {
    top: 51px;
    width: calc(100% - 40px);
    max-height: 226px;
    padding: 15px;
}

.search-selected-items .search-list .search-result-box {
    width: calc(100% - 7px);
    padding: 7px 0;
}
.search-selected-items .search-result-box .search-result-img {
    width: 90px;
    margin-right: 15px;
}
.search-selected-items .search-result-box .search-result-text {
    flex: 1;
    font-size: 16px;
}
.search-selected-items .small-font-size .search-result-box .search-result-text {
    font-size: 12px;
}

.visibility-hidden {
    visibility: hidden;
}

.fade-box {
    opacity: 0.5;
}
.search-step-box.fade-box .search-icon {
    display: none;
}
.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.steps .search-step-box:last-child {
    margin-right: 0;
}
.search-step-box {
    margin-right: 20px;
    flex: 1;
    max-width: 290px;
}


/*last research*/
.last-research {
    margin: 55px auto 0;
    width: 100%;
}
.last-research .title {
    color: #aaaaaa;
    font-size: 12px;
    margin-bottom: 10px;
}
.last-research .researches {
    display: flex;
    flex-wrap: wrap;
    /*width: 302px;*/
    /*width: 620px;*/
    justify-content: space-between;
}
.last-research .company-box {
    margin-bottom: 10px;
    width:268px;
    cursor: pointer;
    border: 1px solid #AAAAAA;
    display: flex;
    align-items: center;
    padding: 10px;
}
.last-research .company-box:hover {
    border: 1px solid #20A0FF;
}
.company-box .company-logo {
    width: 120px;
    height: 40px;
    border: 1px solid #AAAAAA;
    margin-right: 20px;
}
.company-box .company-logo img {
    width: 100%;
}
.company-box .company-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 42px;
}
.company-info .job-role {
    color: #aaaaaa;
    font-size: 16px;
    font-weight: bold;
}

.company-info .location {
    color: #aaaaaa;
    font-size: 12px;
}
