main > ul:first-of-type{
    display: flex;/*弹性盒模型*/
    position: relative;/*相对定位*/
    width: 1483px;
    height: 90px;
    margin: 50px 0;
    /* background-color: rgb(0, 0, 0); */
}
main > ul:first-of-type > li:first-of-type{
    width: 360px;
    height: 90px;
    background:linear-gradient(90deg,cyan 00%,cyan 10%,
                            rgb(0, 194, 194) 50%,rgb(0, 93, 93) 100%)bottom right/360px 90px no-repeat;
    border-radius: 0 50% 50% 0;/*圆角*/
}
main > ul:first-of-type > li:nth-child(2){
    position: absolute;/* 绝对定位 */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index:1;/* 定位层级 */
    width: 827px;
    height: 70px;
    margin: auto;
    background-color: rgb(0, 165, 165);
    font-size:42px;/*字体大小*/
    color: rgb(255, 254, 254);
    line-height:65px;/*字体垂直居中*/
    text-align:center;/*字体水平居中*/
    border-radius: 25% 25% 25% 25%/50% 50% 50% 50%;/*圆角*/
}
main > ul:first-of-type > li:last-of-type{
    width: 360px;
    height: 90px;
    background:linear-gradient(90deg,rgb(0, 93, 93) 0%,rgb(0, 194, 194) 50%,
    cyan 90%,cyan 100%)bottom right/360px 90px no-repeat;
    margin-left: 763px;
    border-radius: 50% 0 0 50%;/*圆角*/
}