.price .service_group {
    margin-bottom: 15px;
    display: block;
}

.price .service_group .Header_group {
    position: relative;
    overflow: hidden;
    border: 1px solid #eb1939;
    background: #fff;
    display: block;
    height: 64px;
    font-size: 0;
    line-height: 64px;
    cursor: pointer;
    margin-top: 1px;
}

.price .service_group .Header_group .icon {
    display: inline-block;
    width: 64px;
    height: 100%;
    text-align: center;
    vertical-align: top;
}

.price .service_group .Header_group .icon img {
    width: 40px;
    margin: 12px;
}

.price .service_group .Header_group .name {
    display: inline-block;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    vertical-align: top;
    width: calc(100% - 164px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.price .service_group .Header_group .goto {
    float: right;
    display: inline-block;
    vertical-align: top;
    background: #e6e1e1;
    color: #454545 !important;
    text-decoration: none !important;
    height: 100%;
    font-weight: bold;
    position: absolute;
    line-height: 128px;
    height: 128px;
    outline: none;
    top: -32px;
    right: 59px;
    padding: 0 10px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation-name: gooto_close_effect;
    animation-duration: 0.3s;
}

@media (max-width: 1000px) {
    .price .service_group .Header_group .goto {
        display:none;
    }
}

.price .service_group .Header_group .goto .service_text {
    display: inline-block;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
}

.price .service_group .Header_group .goto .service_text:after {
    content: ">";
    font-size: 16px;
}

.price .service_group .Header_group .goto:hover {
    height: 138px;
    right: 63px;
    top: -33px;
    font-size: 16px;
    animation-name: gooto_open_effect;
    animation-duration: 0.2s;
}

.price .service_group .Header_group .goto:focus .service_text {
    text-decoration: underline !important;
}

.price .service_group .Header_group .arrow2 {
    cursor: pointer;
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    background: #eb1939;
    color: #fff;
    width: 65px;
    text-align: center;
    position: absolute;
    float: right;
    line-height: 128px;
    height: 128px;
    top: -50%;
    right: -13px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
}

.price .service_group .Header_group .arrow2 .arrow {
    position: relative;
    top: 4px;
    left: -3px;
    z-index: 2;
    background-image: url(../img/iconfinder_double-arrow-down_383153.png);
    width: 29px;
    height: 29px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
}

.price .service_group .Header_group:hover {
    z-index: 52;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(50,50,50,0.55);
    -moz-box-shadow: 0px 3px 6px 0px rgba(50,50,50,0.55);
    box-shadow: 0px 3px 6px 0px rgba(50,50,50,0.55);
}

.price .service_group .Header_group:hover .arrow2 .arrow {
    padding: 1px;
}

.price .service_group .sub_items {
    display: none;
}

.price .service_group .sub_items .pos_item {
    position: relative;
    margin: 10px 0 0 30px;
    padding: 2px 0;
    border-bottom: 1px solid #eb1939;
}

.price .service_group .sub_items .pos_item .item_text {
    position: relative;
    width: calc(100% - 54px);
    display: inline-block;
}

.price .service_group .sub_items .pos_item .item_text:before {
    content: "•";
    position: absolute;
    left: -12px;
}

.price .service_group .sub_items .pos_item .item_flag {
    float: right;
    color: #fff;
    background: #eb1939;
    font-weight: bold;
    padding: 0 7px 0 1px;
    width: 45px;
    text-align: right;
    position: absolute;
    height: 23px;
    line-height: 23px;
    bottom: 0;
    right: 0;
    animation-name: item_flag_out;
    animation-duration: 0.2s;
}

.price .service_group .sub_items .pos_item .item_flag:before {
    content: "";
    position: absolute;
    top: 0;
    left: -17px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 23px 17px;
    border-color: transparent transparent #eb1939 transparent;
}

.price .service_group .sub_items .pos_item:hover {
    background-color: #efeded;
}

.price .service_group .sub_items .pos_item:hover .item_flag {
    width: 55px;
    animation-name: item_flag_in;
    animation-duration: 0.2s;
}

.price .service_group.open .sub_items {
    display: block;
}

.price .service_group.nolink .goto {
    display: none;
}